Project Title: Understanding and Analyzing Video Game Sales

NAME: Sahil Garg

EMAIL: sahilgarg3098@gmail.com

COLLEGE / COMPANY: Manipal Institute of Technology, Manipal

Video Game Sales

About Video Games

A video game is an electronic game that can be played on a computing device, such as a personal computer, gaming console or mobile phone. Depending on the platform, video games can be subcategorized into computer games and console games. In recent years however, the emergence of social networks, smartphones and tablets introduced new categories such as mobile and social games. Video games have come a long way since the first games emerged in the 1970s. Today’s video games offer photorealistic graphics and simulate reality to a degree which is astonishing in many cases.

About Video Game Industry

The video game industry is the economic sector involved in the development, marketing, and monetization of video games. It encompasses dozens of job disciplines and its component parts employ thousands of people worldwide.

The computer and video game industry has grown from focused markets to mainstream. They took in about US$9.5 billion in the US in 2007, 11.7 billion in 2008, and 25.1 billion in 2010 (ESA annual report).

Modern personal computers owe many advancements and innovations to the game industry: sound cards, graphics cards and 3D graphic accelerators, faster CPUs, and dedicated co-processors like PhysX are a few of the more notable improvements.

Understanding the requirements

We study the given data set of sales of video games to find relations between different factors that affect video game sales. Our main objectives are - - Finding which platform is more popular in which region and affects sale by how much - Finding which year and period was more popular and how has it affected sales - Finding which publisher is more popular in which region and affects sale by how much - Finding which genre is more popular in which region and affects sale by how much - How are the sales of America, Europe, Japan and other regions of the world correlated and is there a common pattern amongst all, or do they follow different trends - Realising and understanding the needs and trends in the video game industry to target the maximum customers in a new release of a game etc.

Reading the data

Read your dataset in R and visualize the length and breadth of your dataset.

setwd("D:/manipal-year2/internship/IIML_dataAnalytics/project/videogamesales")
game.df <- read.csv(paste("vgsales.csv",sep=""))
View(game.df)
head(game.df)
##   Rank                     Name Platform Year        Genre Publisher
## 1    1               Wii Sports      Wii 2006       Sports  Nintendo
## 2    2        Super Mario Bros.      NES 1985     Platform  Nintendo
## 3    3           Mario Kart Wii      Wii 2008       Racing  Nintendo
## 4    4        Wii Sports Resort      Wii 2009       Sports  Nintendo
## 5    5 Pokemon Red/Pokemon Blue       GB 1996 Role-Playing  Nintendo
## 6    6                   Tetris       GB 1989       Puzzle  Nintendo
##   NA_Sales EU_Sales JP_Sales Other_Sales Global_Sales
## 1    41.49    29.02     3.77        8.46        82.74
## 2    29.08     3.58     6.81        0.77        40.24
## 3    15.85    12.88     3.79        3.31        35.82
## 4    15.75    11.01     3.28        2.96        33.00
## 5    11.27     8.89    10.22        1.00        31.37
## 6    23.20     2.26     4.22        0.58        30.26
dim(game.df)
## [1] 16598    11

Describe each variable

Create a descriptive statistics (min, max, median etc) of each variable.

attach(game.df)
summary(game.df)
##       Rank                                Name          Platform   
##  Min.   :    1   Need for Speed: Most Wanted:   12   DS     :2163  
##  1st Qu.: 4151   FIFA 14                    :    9   PS2    :2161  
##  Median : 8300   LEGO Marvel Super Heroes   :    9   PS3    :1329  
##  Mean   : 8301   Madden NFL 07              :    9   Wii    :1325  
##  3rd Qu.:12450   Ratatouille                :    9   X360   :1265  
##  Max.   :16600   Angry Birds Star Wars      :    8   PSP    :1213  
##                  (Other)                    :16542   (Other):7142  
##       Year               Genre                             Publisher    
##  2009   :1431   Action      :3316   Electronic Arts             : 1351  
##  2008   :1428   Sports      :2346   Activision                  :  975  
##  2010   :1259   Misc        :1739   Namco Bandai Games          :  932  
##  2007   :1202   Role-Playing:1488   Ubisoft                     :  921  
##  2011   :1139   Shooter     :1310   Konami Digital Entertainment:  832  
##  2006   :1008   Adventure   :1286   THQ                         :  715  
##  (Other):9131   (Other)     :5113   (Other)                     :10872  
##     NA_Sales          EU_Sales          JP_Sales         Other_Sales      
##  Min.   : 0.0000   Min.   : 0.0000   Min.   : 0.00000   Min.   : 0.00000  
##  1st Qu.: 0.0000   1st Qu.: 0.0000   1st Qu.: 0.00000   1st Qu.: 0.00000  
##  Median : 0.0800   Median : 0.0200   Median : 0.00000   Median : 0.01000  
##  Mean   : 0.2647   Mean   : 0.1467   Mean   : 0.07778   Mean   : 0.04806  
##  3rd Qu.: 0.2400   3rd Qu.: 0.1100   3rd Qu.: 0.04000   3rd Qu.: 0.04000  
##  Max.   :41.4900   Max.   :29.0200   Max.   :10.22000   Max.   :10.57000  
##                                                                           
##   Global_Sales    
##  Min.   : 0.0100  
##  1st Qu.: 0.0600  
##  Median : 0.1700  
##  Mean   : 0.5374  
##  3rd Qu.: 0.4700  
##  Max.   :82.7400  
## 
library(psych)
describe(game.df)
##              vars     n    mean      sd  median trimmed     mad  min
## Rank            1 16598 8300.61 4791.85 8300.50 8300.56 6152.05 1.00
## Name*           2 16598 5795.86 3324.01 5864.50 5810.22 4270.63 1.00
## Platform*       3 16598   16.71    8.29   17.00   16.67   10.38 1.00
## Year*           4 16598   27.61    6.00   28.00   28.00    5.93 1.00
## Genre*          5 16598    5.93    3.76    6.00    5.86    5.93 1.00
## Publisher*      6 16598  299.40  181.98  329.00  303.97  272.80 1.00
## NA_Sales        7 16598    0.26    0.82    0.08    0.13    0.12 0.00
## EU_Sales        8 16598    0.15    0.51    0.02    0.06    0.03 0.00
## JP_Sales        9 16598    0.08    0.31    0.00    0.02    0.00 0.00
## Other_Sales    10 16598    0.05    0.19    0.01    0.02    0.01 0.00
## Global_Sales   11 16598    0.54    1.56    0.17    0.27    0.21 0.01
##                   max    range  skew kurtosis    se
## Rank         16600.00 16599.00  0.00    -1.20 37.19
## Name*        11493.00 11492.00 -0.03    -1.21 25.80
## Platform*       31.00    30.00 -0.05    -1.00  0.06
## Year*           40.00    39.00 -0.86     1.68  0.05
## Genre*          12.00    11.00  0.07    -1.43  0.03
## Publisher*     579.00   578.00 -0.15    -1.40  1.41
## NA_Sales        41.49    41.49 18.80   648.86  0.01
## EU_Sales        29.02    29.02 18.87   755.71  0.00
## JP_Sales        10.22    10.22 11.20   194.15  0.00
## Other_Sales     10.57    10.57 24.23  1024.92  0.00
## Global_Sales    82.74    82.73 17.40   603.68  0.01
str(game.df)
## 'data.frame':    16598 obs. of  11 variables:
##  $ Rank        : int  1 2 3 4 5 6 7 8 9 10 ...
##  $ Name        : Factor w/ 11493 levels "'98 Koshien",..: 10991 9343 5532 10993 7370 9707 6648 10989 6651 2594 ...
##  $ Platform    : Factor w/ 31 levels "2600","3DO","3DS",..: 26 12 26 26 6 6 5 26 26 12 ...
##  $ Year        : Factor w/ 40 levels "1980","1981",..: 27 6 29 30 17 10 27 27 30 5 ...
##  $ Genre       : Factor w/ 12 levels "Action","Adventure",..: 11 5 7 11 8 6 5 4 5 9 ...
##  $ Publisher   : Factor w/ 579 levels "10TACLE Studios",..: 369 369 369 369 369 369 369 369 369 369 ...
##  $ NA_Sales    : num  41.5 29.1 15.8 15.8 11.3 ...
##  $ EU_Sales    : num  29.02 3.58 12.88 11.01 8.89 ...
##  $ JP_Sales    : num  3.77 6.81 3.79 3.28 10.22 ...
##  $ Other_Sales : num  8.46 0.77 3.31 2.96 1 0.58 2.9 2.85 2.26 0.47 ...
##  $ Global_Sales: num  82.7 40.2 35.8 33 31.4 ...
min(NA_Sales)
## [1] 0
max(NA_Sales)
## [1] 41.49
mean(NA_Sales)
## [1] 0.2646674
median(NA_Sales)
## [1] 0.08
min(EU_Sales)
## [1] 0
max(EU_Sales)
## [1] 29.02
mean(EU_Sales)
## [1] 0.146652
median(EU_Sales)
## [1] 0.02
min(JP_Sales)
## [1] 0
max(JP_Sales)
## [1] 10.22
mean(JP_Sales)
## [1] 0.07778166
median(JP_Sales)
## [1] 0
min(Other_Sales)
## [1] 0
max(Other_Sales)
## [1] 10.57
mean(Other_Sales)
## [1] 0.04806302
median(Other_Sales)
## [1] 0.01
min(Global_Sales)
## [1] 0.01
max(Global_Sales)
## [1] 82.74
mean(Global_Sales)
## [1] 0.5374407
median(Global_Sales)
## [1] 0.17

We can see that the mean sales in North America are the highest, followed by Europe, then Japan and then the rest of the world. The maximum sales also show a similar trend, however the sales of Japan and the rest of the world are quite comparable. Electronic Arts is the most popular publisher for video games. Action games are higher in number and are more preffered according to the sales statistics.

Contingency Tables

Create one-way contingency tables for the categorical variables in your dataset.

myTable <- table(Platform)
myTable
## Platform
## 2600  3DO  3DS   DC   DS   GB  GBA   GC  GEN   GG  N64  NES   NG   PC PCFX 
##  133    3  509   52 2163   98  822  556   27    1  319   98   12  960    1 
##   PS  PS2  PS3  PS4  PSP  PSV  SAT  SCD SNES TG16  Wii WiiU   WS X360   XB 
## 1196 2161 1329  336 1213  413  173    6  239    2 1325  143    6 1265  824 
## XOne 
##  213
prop.table(myTable)*100
## Platform
##         2600          3DO          3DS           DC           DS 
##  0.801301362  0.018074467  3.066634534  0.313290758 13.031690565 
##           GB          GBA           GC          GEN           GG 
##  0.590432582  4.952403904  3.349801181  0.162670201  0.006024822 
##          N64          NES           NG           PC         PCFX 
##  1.921918303  0.590432582  0.072297867  5.783829377  0.006024822 
##           PS          PS2          PS3          PS4          PSP 
##  7.205687432 13.019640921  8.006988794  2.024340282  7.308109411 
##          PSV          SAT          SCD         SNES         TG16 
##  2.488251597  1.042294252  0.036148934  1.439932522  0.012049645 
##          Wii         WiiU           WS         X360           XB 
##  7.982889505  0.861549584  0.036148934  7.621400169  4.964453549 
##         XOne 
##  1.283287143

DS and PS2 are the most popular consoles on which games are released, followed by PS and XBOX360.

myTable <- table(Year)
myTable
## Year
## 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 
##    9   46   36   17   14   14   21   16   15   17   16   41   43   60  121 
## 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 
##  219  263  289  379  338  349  482  829  775  763  941 1008 1202 1428 1431 
## 2010 2011 2012 2013 2014 2015 2016 2017 2020  N/A 
## 1259 1139  657  546  582  614  344    3    1  271
prop.table(myTable)*100
## Year
##        1980        1981        1982        1983        1984        1985 
## 0.054223400 0.277141824 0.216893602 0.102421979 0.084347512 0.084347512 
##        1986        1987        1988        1989        1990        1991 
## 0.126521268 0.096397156 0.090372334 0.102421979 0.096397156 0.247017713 
##        1992        1993        1994        1995        1996        1997 
## 0.259067358 0.361489336 0.729003494 1.319436077 1.584528256 1.741173635 
##        1998        1999        2000        2001        2002        2003 
## 2.283407639 2.036389926 2.102662971 2.903964333 4.994577660 4.669237258 
##        2004        2005        2006        2007        2008        2009 
## 4.596939390 5.669357754 6.073020846 7.241836366 8.603446198 8.621520665 
##        2010        2011        2012        2013        2014        2015 
## 7.585251235 6.862272563 3.958308230 3.289552958 3.506446560 3.699240872 
##        2016        2017        2020         N/A 
## 2.072538860 0.018074467 0.006024822 1.632726835

The video game industry has been seeing more video games every year, and the high was seen in the years 2007-2011. Maximum video games were released in 2008 and 2009.

myTable <- table(Genre)
myTable
## Genre
##       Action    Adventure     Fighting         Misc     Platform 
##         3316         1286          848         1739          886 
##       Puzzle       Racing Role-Playing      Shooter   Simulation 
##          582         1249         1488         1310          867 
##       Sports     Strategy 
##         2346          681
prop.table(myTable)*100
## Genre
##       Action    Adventure     Fighting         Misc     Platform 
##    19.978311     7.747921     5.109049    10.477166     5.337993 
##       Puzzle       Racing Role-Playing      Shooter   Simulation 
##     3.506447     7.525003     8.964936     7.892517     5.223521 
##       Sports     Strategy 
##    14.134233     4.102904

Most of the games released were action games, followed by sports, misc, role-playing, shooting and racing.

myTable <- table(Publisher)
myTable
## Publisher
##                        10TACLE Studios 
##                                      3 
##                             1C Company 
##                                      3 
##           20th Century Fox Video Games 
##                                      5 
##                                 2D Boy 
##                                      1 
##                                    3DO 
##                                     36 
##                                49Games 
##                                      1 
##                              505 Games 
##                                    192 
##                                    5pb 
##                                     61 
##                               7G//AMES 
##                                      4 
##                             989 Sports 
##                                      1 
##                            989 Studios 
##                                     14 
##                               Abylight 
##                                      1 
##                  Acclaim Entertainment 
##                                    184 
##                               Accolade 
##                                      3 
##                            Ackkstudios 
##                                     10 
##                                Acquire 
##                                     13 
##                             Activision 
##                                    975 
##                    Activision Blizzard 
##                                      1 
##                       Activision Value 
##                                     29 
##                       Adeline Software 
##                                      1 
##                               Aerosoft 
##                                      2 
##                 Agatsuma Entertainment 
##                                      3 
##                                 Agetec 
##                                      8 
##                            Aksys Games 
##                                      8 
##                   Alawar Entertainment 
##                                      2 
##                              Alchemist 
##                                     43 
##                   Alternative Software 
##                                      6 
##                                 Altron 
##                                      1 
##                                 Alvion 
##                                      2 
##                     American Softworks 
##                                      1 
##                          Angel Studios 
##                                      3 
##                        Answer Software 
##                                      1 
##                         AQ Interactive 
##                                      5 
##                              Aqua Plus 
##                                     23 
##                                  Aques 
##                                      1 
##                       Arc System Works 
##                                     26 
##                    Arena Entertainment 
##                                      2 
##                                   Aria 
##                                      1 
##                                  Arika 
##                                      3 
##                                ArtDink 
##                                      9 
##                             Aruze Corp 
##                                      3 
##                              ASC Games 
##                                      3 
##                  Ascaron Entertainment 
##                                      1 
##             Ascaron Entertainment GmbH 
##                                      3 
##                    ASCII Entertainment 
##                                     20 
##                      ASCII Media Works 
##                                      9 
##                                 Asgard 
##                                      8 
##                                    ASK 
##                                      1 
##                Asmik Ace Entertainment 
##                                      3 
##                             Asmik Corp 
##                                      2 
##                                  Aspyr 
##                                      8 
##                               Astragon 
##                                      6 
##                   Asylum Entertainment 
##                                      6 
##                                  Atari 
##                                    363 
##                                 Athena 
##                                      2 
##                                  Atlus 
##                                     67 
##                     Avalon Interactive 
##                                      6 
##                              Avanquest 
##                                     26 
##                     Avanquest Software 
##                                      9 
##                                  Axela 
##                                      1 
##                     BAM! Entertainment 
##                                     35 
##                              Banpresto 
##                                     73 
##                                Benesse 
##                                      6 
##                               Berkeley 
##                                      1 
##                     Bethesda Softworks 
##                                     71 
##                    Big Ben Interactive 
##                                      7 
##                         Big Fish Games 
##                                      2 
##                     Bigben Interactive 
##                                     13 
##                      bitComposer Games 
##                                      5 
##                       Black Bean Games 
##                                     34 
##                      Black Label Games 
##                                      1 
##               Blast! Entertainment Ltd 
##                                      6 
##                              Blue Byte 
##                                      2 
##          BMG Interactive Entertainment 
##                                      7 
##                    Bohemia Interactive 
##                                      1 
##                                   Bomb 
##                                      1 
##                               Boost On 
##                                      1 
##                                    BPS 
##                                      2 
##                    Brash Entertainment 
##                                     10 
##                               Broccoli 
##                                     22 
##                              BushiRoad 
##                                      1 
##                                 Capcom 
##                                    381 
##                                   Cave 
##                                     10 
##                        CBS Electronics 
##                                      1 
##                                    CCP 
##                                      1 
##             CDV Software Entertainment 
##                                      6 
##                               ChunSoft 
##                                     18 
##                       City Interactive 
##                                     19 
##       Cloud Imperium Games Corporation 
##                                      2 
##                         Coconuts Japan 
##                                      2 
##                            Codemasters 
##                                    152 
##                     Codemasters Online 
##                                      1 
##                      CokeM Interactive 
##                                      1 
##                                 Coleco 
##                                      5 
##                                Comfort 
##                                      6 
##                               Commseed 
##                                      1 
##                                Compile 
##                                      6 
##                          Compile Heart 
##                                     20 
##               Conspiracy Entertainment 
##                                     14 
##                       Core Design Ltd. 
##                                      2 
##                           CPG Products 
##                                      1 
##                    Crave Entertainment 
##                                     71 
##                          Creative Core 
##                                      3 
##                            Crimson Cow 
##                                      2 
##                       Crystal Dynamics 
##                                      5 
##                                CTO SpA 
##                                      2 
##                          Culture Brain 
##                                      4 
##                     Culture Publishers 
##                                      1 
##                             CyberFront 
##                                     14 
##                                Cygames 
##                                      1 
##                            D3Publisher 
##                                    184 
##                               Daedalic 
##                                      3 
##                 Daedalic Entertainment 
##                                      3 
##                                  Daito 
##                                      4 
##                               Data Age 
##                                      2 
##                Data Design Interactive 
##                                      3 
##                              Data East 
##                                      2 
##                         Datam Polystar 
##                                      2 
##                            Deep Silver 
##                                    122 
##              Destination Software, Inc 
##                                     12 
##                              Destineer 
##                                     45 
##                            Detn8 Games 
##                                      1 
##                       Devolver Digital 
##                                      2 
##                        DHM Interactive 
##                                      3 
##                               DigiCube 
##                                      1 
##             Disney Interactive Studios 
##                                    218 
##                                 Dorart 
##                                      2 
##                        dramatic create 
##                                      5 
##               DreamCatcher Interactive 
##                                     17 
##                 DreamWorks Interactive 
##                                      1 
##                              DSI Games 
##                                      6 
##                      DTP Entertainment 
##                                     45 
##               Dusenberry Martin Racing 
##                                      2 
##                               EA Games 
##                                      1 
##                       Easy Interactive 
##                                      2 
##                                  Ecole 
##                                      1 
##                                   Edia 
##                                      2 
##                      Eidos Interactive 
##                                    198 
##                        Electronic Arts 
##                                   1351 
##                 Electronic Arts Victor 
##                                      2 
##                                    Elf 
##                                      2 
##                                  Elite 
##                                      1 
##                     Empire Interactive 
##                                     52 
##                                 Encore 
##                                      4 
##                       Enix Corporation 
##                                     30 
##                      Enjoy Gaming ltd. 
##                                      1 
##                             Enterbrain 
##                                     15 
##              EON Digital Entertainment 
##                                      1 
##                             Epic Games 
##                                      1 
##                                  Epoch 
##                                      7 
##                                 Ertain 
##                                      1 
##                                    ESP 
##                                      5 
##                        Essential Games 
##                                      3 
##                        Evolution Games 
##                                      1 
##                          Evolved Games 
##                                      8 
##                   Excalibur Publishing 
##                                      4 
##                        Experience Inc. 
##                                      3 
##            Extreme Entertainment Group 
##                                      1 
##                     Falcom Corporation 
##                                     16 
##                                 Fields 
##                                      1 
##                       Flashpoint Games 
##                                      2 
##                            Flight-Plan 
##                                      2 
##                 Focus Home Interactive 
##                                     58 
##                       Focus Multimedia 
##                                      3 
##                                 fonfun 
##                                      1 
##                    Foreign Media Games 
##                                      9 
##                              Fortyfive 
##                                      1 
##                        Fox Interactive 
##                                      8 
##                          From Software 
##                                     15 
##                                   Fuji 
##                                      1 
##                           Funbox Media 
##                                      6 
##                                 Funcom 
##                                      2 
##                                FunSoft 
##                                      1 
##                                 Funsta 
##                                      4 
##                                  FuRyu 
##                                     27 
##                      FuRyu Corporation 
##                                      1 
##                                  G.Rev 
##                                      2 
##                                   Gaga 
##                                      1 
##                 Gainax Network Systems 
##                                      2 
##                                 Gakken 
##                                      2 
##                              Game Arts 
##                                      1 
##                           Game Factory 
##                                     32 
##                              Game Life 
##                                      2 
##                             Gamebridge 
##                                      2 
##                               Gamecock 
##                                      4 
##                               Gameloft 
##                                      1 
##                 GameMill Entertainment 
##                                      8 
##                                GameTek 
##                                      1 
##                Gathering of Developers 
##                                      9 
##                  General Entertainment 
##                                      1 
##                                  Genki 
##                                      8 
##                            Genterprise 
##                                      1 
##                             Ghostlight 
##                                     15 
##                                   Giga 
##                                      1 
##                                 Giza10 
##                                      1 
##                                  Glams 
##                                      1 
##                 Global A Entertainment 
##                                      4 
##                            Global Star 
##                                     39 
##                            GN Software 
##                                      3 
##                                    GOA 
##                                      1 
##                           Gotham Games 
##                                      7 
##                               Graffiti 
##                                      6 
##                       Grand Prix Games 
##                                      1 
##                 Graphsim Entertainment 
##                                      1 
##                Gremlin Interactive Ltd 
##                                      9 
##                  Griffin International 
##                                      1 
##                           Groove Games 
##                                      2 
##                                    GSP 
##                                     16 
##                         GT Interactive 
##                                     45 
##                                 GungHo 
##                                     13 
##                                   Gust 
##                                     13 
##                              Hackberry 
##                                      7 
##                         HAL Laboratory 
##                                      1 
##                    Hamster Corporation 
##                                      2 
##                               Happinet 
##                                      5 
##                 Harmonix Music Systems 
##                                      2 
##                     Hasbro Interactive 
##                                     16 
##                      Havas Interactive 
##                                      1 
##                           Headup Games 
##                                      1 
##                           Hearty Robin 
##                                      1 
##                                   Hect 
##                                      3 
##                            Hello Games 
##                                      1 
##                        Her Interactive 
##                                      1 
##                        Hip Interactive 
##                                      5 
##                        HMH Interactive 
##                                      2 
##           Home Entertainment Suppliers 
##                                      5 
##                   Hudson Entertainment 
##                                     11 
##                            Hudson Soft 
##                                     81 
##                    Human Entertainment 
##                                     13 
##                                  HuneX 
##                                      2 
##                    Iceberg Interactive 
##                                      3 
##                            id Software 
##                                      1 
##                           Idea Factory 
##                                    129 
##             Idea Factory International 
##                                      6 
##                           IE Institute 
##                                      5 
##                 Ignition Entertainment 
##                                     61 
##                     Illusion Softworks 
##                                      1 
##                                 Imadio 
##                                      1 
##                            Image Epoch 
##                                      1 
##                        imageepoch Inc. 
##                                      2 
##                             Imageworks 
##                                      1 
##                                 Imagic 
##                                      4 
##                              Imagineer 
##                                     16 
##                                   Imax 
##                                      1 
##                            Indie Games 
##                                      3 
##                             Infogrames 
##                                     62 
##                        Insomniac Games 
##                                      3 
##                           Interchannel 
##                                      4 
##                     Interchannel-Holon 
##                                      1 
##                              Intergrow 
##                                      1 
##                              Interplay 
##                                     30 
##                  Interplay Productions 
##                                      1 
##             Interworks Unlimited, Inc. 
##                                      1 
##                           Inti Creates 
##                                      1 
##                  Introversion Software 
##                                      1 
##                   inXile Entertainment 
##                                      1 
##              Irem Software Engineering 
##                                     12 
##                       ITT Family Games 
##                                      1 
##                              Ivolgamus 
##                                      1 
##                                   iWin 
##                                      1 
##                      Jack of All Games 
##                                      3 
##                                 Jaleco 
##                                     23 
##                     Jester Interactive 
##                                      3 
##                                Jorudan 
##                                      3 
##                     JoWood Productions 
##                                     22 
##                            Just Flight 
##                                      1 
##                                    JVC 
##                                      8 
##                         Kadokawa Games 
##                                     15 
##                        Kadokawa Shoten 
##                                     50 
##                            Kaga Create 
##                                      6 
##                          Kalypso Media 
##                                     29 
##                                  Kamui 
##                                      1 
##                            Kando Games 
##                                      1 
##                    Karin Entertainment 
##                                      1 
##                                  Kemco 
##                                     21 
##                                    KID 
##                                      4 
##                           Kids Station 
##                                      1 
##                           King Records 
##                                      1 
##                    Knowledge Adventure 
##                                      4 
##                             Koch Media 
##                                     17 
##               Kokopeli Digital Studios 
##                                      1 
##           Konami Digital Entertainment 
##                                    832 
##                              Kool Kizz 
##                                      1 
##                                    KSS 
##                                      1 
##                                 Laguna 
##                                      4 
##                     Legacy Interactive 
##                                      1 
##                             LEGO Media 
##                                      7 
##                                Level 5 
##                                     27 
##                  Lexicon Entertainment 
##                                      2 
##                            Licensed 4U 
##                                      3 
##                 Lighthouse Interactive 
##                                      1 
##                           Liquid Games 
##                                      2 
##                           Little Orbit 
##                                     26 
##                                  Locus 
##                                      1 
##                              LSP Games 
##                                      4 
##                              LucasArts 
##                                     90 
##                               Mad Catz 
##                                      3 
##                        Magical Company 
##                                      1 
##                                  Magix 
##                                      2 
##                  Majesco Entertainment 
##                                     92 
##                            Mamba Games 
##                                      2 
##                   Marvel Entertainment 
##                                      1 
##                Marvelous Entertainment 
##                                     12 
##                        Marvelous Games 
##                                      1 
##                  Marvelous Interactive 
##                                     56 
##                      Masque Publishing 
##                                      1 
##                           Mastertronic 
##                                     13 
##                                Mastiff 
##                                     16 
##                     Mattel Interactive 
##                                     12 
##                               Max Five 
##                                      1 
##                   Maximum Family Games 
##                                      1 
##                                  Maxis 
##                                      3 
##                      MC2 Entertainment 
##                                      3 
##                    Media Entertainment 
##                                      1 
##                          Media Factory 
##                                      2 
##                            Media Rings 
##                                      3 
##                            Media Works 
##                                      5 
##                             MediaQuest 
##                                      1 
##                           Men-A-Vision 
##                                      1 
##                     Mentor Interactive 
##                                      5 
##                          Mercury Games 
##                                      4 
##                            Merscom LLC 
##                                      1 
##                               Metro 3D 
##                                     12 
##                            Michaelsoft 
##                                      1 
##                            Micro Cabin 
##                                      3 
##                               Microids 
##                                     10 
##                             Microprose 
##                                      6 
##                 Microsoft Game Studios 
##                                    189 
##        Midas Interactive Entertainment 
##                                     24 
##                           Midway Games 
##                                    198 
##                              Milestone 
##                                      1 
##                        Milestone S.r.l 
##                                      2 
##                       Milestone S.r.l. 
##                                     16 
##                         Minato Station 
##                                      3 
##                              Mindscape 
##                                     32 
##                          Mirai Shounen 
##                                      1 
##                                 Misawa 
##                                      2 
##                                 Mitsui 
##                                      1 
##                              mixi, Inc 
##                                      1 
##                                MLB.com 
##                                      1 
##                                 Mojang 
##                                      5 
##               Monte Christo Multimedia 
##                                      1 
##                                   Moss 
##                                      2 
##                                    MTO 
##                                      8 
##                              MTV Games 
##                                     41 
##                   Mud Duck Productions 
##                                      3 
##                            Mumbo Jumbo 
##                                      6 
##                                  Mycom 
##                                      1 
##                           Myelin Media 
##                                      3 
##                               Mystique 
##                                      1 
##                                    N/A 
##                                     58 
##                     Namco Bandai Games 
##                                    932 
##                                Natsume 
##                                     17 
##                           Navarre Corp 
##                                      1 
##                             Naxat Soft 
##                                      1 
##                                    NCS 
##                                      3 
##                                 NCSoft 
##                                      6 
##                        NDA Productions 
##                                      1 
##                                    NEC 
##                                      3 
##                       NEC Interchannel 
##                                      8 
##                     Neko Entertainment 
##                                      7 
##                                NetRevo 
##                                      2 
##                                    New 
##                                      1 
##                    New World Computing 
##                                      1 
##                               NewKidCo 
##                                      9 
##                                  Nexon 
##                                      1 
##                             Nichibutsu 
##                                      1 
##               Nihon Falcom Corporation 
##                                      7 
##                               Nintendo 
##                                    703 
##                           Nippon Amuse 
##                                      1 
##                        Nippon Columbia 
##                                      7 
##                   Nippon Ichi Software 
##                                    105 
##                         Nippon Telenet 
##                                      2 
##                              Nitroplus 
##                                      2 
##                                Nobilis 
##                                     13 
##                            Nordcurrent 
##                                      5 
##                           Nordic Games 
##                                     35 
##                              NovaLogic 
##                                      3 
##                            Number None 
##                                      1 
##                                O-Games 
##                                     17 
##                       O3 Entertainment 
##                                      3 
##                                  Ocean 
##                                     14 
##                          Office Create 
##                                      2 
##                              On Demand 
##                                      1 
##                              Ongakukan 
##                                      1 
##                         Origin Systems 
##                                      1 
##                                Otomate 
##                                      1 
##                     Oxygen Interactive 
##                                     22 
##                               P2 Games 
##                                      3 
##            Pacific Century Cyber Works 
##                                      1 
##                          Pack-In-Video 
##                                      2 
##                           Pack In Soft 
##                                      1 
##                                 Palcom 
##                                      1 
##                       Panther Software 
##                                      1 
##                                   Paon 
##                                      6 
##                       Paon Corporation 
##                                      1 
##                    Paradox Development 
##                                      1 
##                    Paradox Interactive 
##                                     23 
##                           Parker Bros. 
##                                      7 
##          Performance Designed Products 
##                                      2 
##                             Phantagram 
##                                      1 
##                            Phantom EFX 
##                                      1 
##                             Phenomedia 
##                                      4 
##                          Phoenix Games 
##                                      1 
##                                 Piacci 
##                                      1 
##                               Pinnacle 
##                                      5 
##                            Pioneer LDC 
##                                      4 
##                                Play It 
##                                     14 
##                 Playlogic Game Factory 
##                                     14 
##                              Playmates 
##                                      1 
##                               Playmore 
##                                      1 
##                                  PlayV 
##                                      4 
##                                 Plenty 
##                                      1 
##                             PM Studios 
##                                      1 
##                            Pony Canyon 
##                                      1 
##                           PopCap Games 
##                                     15 
##                         Popcorn Arcade 
##                                     10 
##                        PopTop Software 
##                                      1 
##                                    Pow 
##                                      1 
##                                  PQube 
##                                     39 
##                          Princess Soft 
##                                      3 
##                              Prototype 
##                                     27 
##                              Psygnosis 
##                                     32 
##                                 Quelle 
##                                      1 
##                                  Quest 
##                                      1 
##                               Quinrose 
##                                     14 
##                                Quintet 
##                                      1 
##                          Rage Software 
##                                      7 
##                             Rain Games 
##                                      1 
##                              Rebellion 
##                                      2 
##                 Rebellion Developments 
##                                      2 
##                      RED Entertainment 
##                                      1 
##                                Red Orb 
##                                      2 
##                Red Storm Entertainment 
##                                      3 
##                              RedOctane 
##                                      4 
##                     Reef Entertainment 
##                                      7 
##                           responDESIGN 
##                                      2 
##                     Revolution (Japan) 
##                                      1 
##                    Revolution Software 
##                                      2 
##                      Rising Star Games 
##                                     86 
##                          Riverhillsoft 
##                                      1 
##                         Rocket Company 
##                                     17 
##                             Rondomedia 
##                                     14 
##                                    RTL 
##                                      8 
##                                 Russel 
##                                      6 
##                      Sammy Corporation 
##                                     11 
##                                 Saurus 
##                                      1 
##                        Scholastic Inc. 
##                                     10 
##                                    SCi 
##                                     17 
##                             Screenlife 
##                                      6 
##                           SCS Software 
##                                      1 
##                                  Sears 
##                                      1 
##                                   Sega 
##                                    639 
##                       Seta Corporation 
##                                      6 
##                          Seventh Chord 
##                                      1 
##                             Shogakukan 
##                                      5 
##           Simon & Schuster Interactive 
##                                      1 
##                   Slightly Mad Studios 
##                                      3 
##                    Slitherine Software 
##                                      4 
##                                    SNK 
##                                     22 
##                           SNK Playmore 
##                                     18 
##                                Societa 
##                                      1 
##                               Sold Out 
##                                      1 
##                                 Sonnet 
##                                      2 
##            Sony Computer Entertainment 
##                                    683 
##    Sony Computer Entertainment America 
##                                      3 
##     Sony Computer Entertainment Europe 
##                                     15 
##               Sony Music Entertainment 
##                                      1 
##              Sony Online Entertainment 
##                                      8 
##                        SouthPeak Games 
##                                     37 
##                                  Spike 
##                                     37 
##                                    SPS 
##                                      1 
##                                 Square 
##                                      6 
##                              Square EA 
##                                      1 
##                            Square Enix 
##                                    233 
##                             SquareSoft 
##                                     52 
##                                    SSI 
##                                      1 
##                        Stainless Games 
##                                      1 
##                               Starfish 
##                                     10 
##                         Starpath Corp. 
##                                      1 
##                                  Sting 
##                                      9 
##                       Storm City Games 
##                                     19 
##                         Strategy First 
##                                      1 
##                                Success 
##                                     19 
##                             Summitsoft 
##                                      1 
##                             Sunflowers 
##                                      1 
##                    Sunrise Interactive 
##                                      4 
##                                Sunsoft 
##                                     10 
##                                 Sweets 
##                                      2 
##                   Swing! Entertainment 
##                                      6 
##                                 Syscom 
##                                      2 
##                               System 3 
##                                      3 
##               System 3 Arcade Software 
##                                     14 
##                            System Soft 
##                                      4 
##                               T&E Soft 
##                                      1 
##                                  Taito 
##                                     19 
##                                 Takara 
##                                     16 
##                            Takara Tomy 
##                                     37 
##                   Take-Two Interactive 
##                                    413 
##                                 Takuyo 
##                                      1 
##                              TalonSoft 
##                                      1 
##                               TDK Core 
##                                      5 
##                         TDK Mediactive 
##                                     36 
##                        Team17 Software 
##                                      1 
##              Technos Japan Corporation 
##                                      1 
##                             TechnoSoft 
##                                      1 
##                             Tecmo Koei 
##                                    338 
##                              Telegames 
##                                      8 
##                         Telltale Games 
##                                     25 
##                                Telstar 
##                                      3 
##                          Tetris Online 
##                                      1 
##                                    TGL 
##                                      4 
##                  The Adventure Company 
##                                      5 
##                   The Learning Company 
##                                      1 
##                                    THQ 
##                                    715 
##                            Tigervision 
##                                      3 
##                Time Warner Interactive 
##                                      5 
##                                  Titus 
##                                     19 
##                                 Tivola 
##                                      3 
##                                   TOHO 
##                                      1 
##                                  Tommo 
##                                      5 
##                       Tomy Corporation 
##                                     18 
##                    TopWare Interactive 
##                                      4 
##                             Touchstone 
##                                      4 
##                              Tradewest 
##                                      3 
##                           Trion Worlds 
##                                      4 
##                   Tripwire Interactive 
##                                      1 
##                  Tru Blu Entertainment 
##                                      8 
##                               Tryfirst 
##                                      1 
##                                    TYO 
##                                      1 
##                              Type-Moon 
##                                      1 
##                              U.S. Gold 
##                                      4 
##                                Ubisoft 
##                                    921 
##                         Ubisoft Annecy 
##                                     14 
##                            UEP Systems 
##                                      1 
##                        UFO Interactive 
##                                     16 
##                      UIG Entertainment 
##                                      1 
##                            Ultravision 
##                                      1 
##                        Universal Gamex 
##                                      1 
##                  Universal Interactive 
##                                     23 
##                                Unknown 
##                                    203 
##                           Valcon Games 
##                                      8 
##                               ValuSoft 
##                                      4 
##                                  Valve 
##                                      1 
##                         Valve Software 
##                                      3 
##                                    Vap 
##                                      1 
##                  Vatical Entertainment 
##                                      2 
##                              Vic Tokai 
##                                      2 
##                     Victor Interactive 
##                                      9 
##                           Video System 
##                                      4 
##                                  Views 
##                                      2 
##                          Vir2L Studios 
##                                      3 
##                     Virgin Interactive 
##                                     62 
##                     Virtual Play Games 
##                                      2 
##                                  Visco 
##                                      1 
##                          Vivendi Games 
##                                    164 
##                                Wanadoo 
##                                      5 
##                                Warashi 
##                                      1 
##                          Wargaming.net 
##                                      1 
## Warner Bros. Interactive Entertainment 
##                                    232 
##                                   Warp 
##                                      1 
##                WayForward Technologies 
##                                      1 
##                       Westwood Studios 
##                                      1 
##                White Park Bay Software 
##                                      1 
##                     Wizard Video Games 
##                                      1 
##                      Xicat Interactive 
##                                      3 
##                     Xing Entertainment 
##                                      1 
##                                Xplosiv 
##                                     10 
##                               XS Games 
##                                     12 
##                            Xseed Games 
##                                      4 
##                       Yacht Club Games 
##                                      3 
##                   Yamasa Entertainment 
##                                      2 
##                                   Yeti 
##                                     11 
##                                 Yuke's 
##                                      3 
##                                Yumedia 
##                                      1 
##                                 Zenrin 
##                                      2 
##                 Zoo Digital Publishing 
##                                    104 
##                              Zoo Games 
##                                     33 
##                            Zushi Games 
##                                     18
prop.table(myTable)*100
## Publisher
##                        10TACLE Studios 
##                            0.018074467 
##                             1C Company 
##                            0.018074467 
##           20th Century Fox Video Games 
##                            0.030124111 
##                                 2D Boy 
##                            0.006024822 
##                                    3DO 
##                            0.216893602 
##                                49Games 
##                            0.006024822 
##                              505 Games 
##                            1.156765875 
##                                    5pb 
##                            0.367514158 
##                               7G//AMES 
##                            0.024099289 
##                             989 Sports 
##                            0.006024822 
##                            989 Studios 
##                            0.084347512 
##                               Abylight 
##                            0.006024822 
##                  Acclaim Entertainment 
##                            1.108567297 
##                               Accolade 
##                            0.018074467 
##                            Ackkstudios 
##                            0.060248223 
##                                Acquire 
##                            0.078322689 
##                             Activision 
##                            5.874201711 
##                    Activision Blizzard 
##                            0.006024822 
##                       Activision Value 
##                            0.174719846 
##                       Adeline Software 
##                            0.006024822 
##                               Aerosoft 
##                            0.012049645 
##                 Agatsuma Entertainment 
##                            0.018074467 
##                                 Agetec 
##                            0.048198578 
##                            Aksys Games 
##                            0.048198578 
##                   Alawar Entertainment 
##                            0.012049645 
##                              Alchemist 
##                            0.259067358 
##                   Alternative Software 
##                            0.036148934 
##                                 Altron 
##                            0.006024822 
##                                 Alvion 
##                            0.012049645 
##                     American Softworks 
##                            0.006024822 
##                          Angel Studios 
##                            0.018074467 
##                        Answer Software 
##                            0.006024822 
##                         AQ Interactive 
##                            0.030124111 
##                              Aqua Plus 
##                            0.138570912 
##                                  Aques 
##                            0.006024822 
##                       Arc System Works 
##                            0.156645379 
##                    Arena Entertainment 
##                            0.012049645 
##                                   Aria 
##                            0.006024822 
##                                  Arika 
##                            0.018074467 
##                                ArtDink 
##                            0.054223400 
##                             Aruze Corp 
##                            0.018074467 
##                              ASC Games 
##                            0.018074467 
##                  Ascaron Entertainment 
##                            0.006024822 
##             Ascaron Entertainment GmbH 
##                            0.018074467 
##                    ASCII Entertainment 
##                            0.120496445 
##                      ASCII Media Works 
##                            0.054223400 
##                                 Asgard 
##                            0.048198578 
##                                    ASK 
##                            0.006024822 
##                Asmik Ace Entertainment 
##                            0.018074467 
##                             Asmik Corp 
##                            0.012049645 
##                                  Aspyr 
##                            0.048198578 
##                               Astragon 
##                            0.036148934 
##                   Asylum Entertainment 
##                            0.036148934 
##                                  Atari 
##                            2.187010483 
##                                 Athena 
##                            0.012049645 
##                                  Atlus 
##                            0.403663092 
##                     Avalon Interactive 
##                            0.036148934 
##                              Avanquest 
##                            0.156645379 
##                     Avanquest Software 
##                            0.054223400 
##                                  Axela 
##                            0.006024822 
##                     BAM! Entertainment 
##                            0.210868779 
##                              Banpresto 
##                            0.439812026 
##                                Benesse 
##                            0.036148934 
##                               Berkeley 
##                            0.006024822 
##                     Bethesda Softworks 
##                            0.427762381 
##                    Big Ben Interactive 
##                            0.042173756 
##                         Big Fish Games 
##                            0.012049645 
##                     Bigben Interactive 
##                            0.078322689 
##                      bitComposer Games 
##                            0.030124111 
##                       Black Bean Games 
##                            0.204843957 
##                      Black Label Games 
##                            0.006024822 
##               Blast! Entertainment Ltd 
##                            0.036148934 
##                              Blue Byte 
##                            0.012049645 
##          BMG Interactive Entertainment 
##                            0.042173756 
##                    Bohemia Interactive 
##                            0.006024822 
##                                   Bomb 
##                            0.006024822 
##                               Boost On 
##                            0.006024822 
##                                    BPS 
##                            0.012049645 
##                    Brash Entertainment 
##                            0.060248223 
##                               Broccoli 
##                            0.132546090 
##                              BushiRoad 
##                            0.006024822 
##                                 Capcom 
##                            2.295457284 
##                                   Cave 
##                            0.060248223 
##                        CBS Electronics 
##                            0.006024822 
##                                    CCP 
##                            0.006024822 
##             CDV Software Entertainment 
##                            0.036148934 
##                               ChunSoft 
##                            0.108446801 
##                       City Interactive 
##                            0.114471623 
##       Cloud Imperium Games Corporation 
##                            0.012049645 
##                         Coconuts Japan 
##                            0.012049645 
##                            Codemasters 
##                            0.915772985 
##                     Codemasters Online 
##                            0.006024822 
##                      CokeM Interactive 
##                            0.006024822 
##                                 Coleco 
##                            0.030124111 
##                                Comfort 
##                            0.036148934 
##                               Commseed 
##                            0.006024822 
##                                Compile 
##                            0.036148934 
##                          Compile Heart 
##                            0.120496445 
##               Conspiracy Entertainment 
##                            0.084347512 
##                       Core Design Ltd. 
##                            0.012049645 
##                           CPG Products 
##                            0.006024822 
##                    Crave Entertainment 
##                            0.427762381 
##                          Creative Core 
##                            0.018074467 
##                            Crimson Cow 
##                            0.012049645 
##                       Crystal Dynamics 
##                            0.030124111 
##                                CTO SpA 
##                            0.012049645 
##                          Culture Brain 
##                            0.024099289 
##                     Culture Publishers 
##                            0.006024822 
##                             CyberFront 
##                            0.084347512 
##                                Cygames 
##                            0.006024822 
##                            D3Publisher 
##                            1.108567297 
##                               Daedalic 
##                            0.018074467 
##                 Daedalic Entertainment 
##                            0.018074467 
##                                  Daito 
##                            0.024099289 
##                               Data Age 
##                            0.012049645 
##                Data Design Interactive 
##                            0.018074467 
##                              Data East 
##                            0.012049645 
##                         Datam Polystar 
##                            0.012049645 
##                            Deep Silver 
##                            0.735028317 
##              Destination Software, Inc 
##                            0.072297867 
##                              Destineer 
##                            0.271117002 
##                            Detn8 Games 
##                            0.006024822 
##                       Devolver Digital 
##                            0.012049645 
##                        DHM Interactive 
##                            0.018074467 
##                               DigiCube 
##                            0.006024822 
##             Disney Interactive Studios 
##                            1.313411254 
##                                 Dorart 
##                            0.012049645 
##                        dramatic create 
##                            0.030124111 
##               DreamCatcher Interactive 
##                            0.102421979 
##                 DreamWorks Interactive 
##                            0.006024822 
##                              DSI Games 
##                            0.036148934 
##                      DTP Entertainment 
##                            0.271117002 
##               Dusenberry Martin Racing 
##                            0.012049645 
##                               EA Games 
##                            0.006024822 
##                       Easy Interactive 
##                            0.012049645 
##                                  Ecole 
##                            0.006024822 
##                                   Edia 
##                            0.012049645 
##                      Eidos Interactive 
##                            1.192914809 
##                        Electronic Arts 
##                            8.139534884 
##                 Electronic Arts Victor 
##                            0.012049645 
##                                    Elf 
##                            0.012049645 
##                                  Elite 
##                            0.006024822 
##                     Empire Interactive 
##                            0.313290758 
##                                 Encore 
##                            0.024099289 
##                       Enix Corporation 
##                            0.180744668 
##                      Enjoy Gaming ltd. 
##                            0.006024822 
##                             Enterbrain 
##                            0.090372334 
##              EON Digital Entertainment 
##                            0.006024822 
##                             Epic Games 
##                            0.006024822 
##                                  Epoch 
##                            0.042173756 
##                                 Ertain 
##                            0.006024822 
##                                    ESP 
##                            0.030124111 
##                        Essential Games 
##                            0.018074467 
##                        Evolution Games 
##                            0.006024822 
##                          Evolved Games 
##                            0.048198578 
##                   Excalibur Publishing 
##                            0.024099289 
##                        Experience Inc. 
##                            0.018074467 
##            Extreme Entertainment Group 
##                            0.006024822 
##                     Falcom Corporation 
##                            0.096397156 
##                                 Fields 
##                            0.006024822 
##                       Flashpoint Games 
##                            0.012049645 
##                            Flight-Plan 
##                            0.012049645 
##                 Focus Home Interactive 
##                            0.349439692 
##                       Focus Multimedia 
##                            0.018074467 
##                                 fonfun 
##                            0.006024822 
##                    Foreign Media Games 
##                            0.054223400 
##                              Fortyfive 
##                            0.006024822 
##                        Fox Interactive 
##                            0.048198578 
##                          From Software 
##                            0.090372334 
##                                   Fuji 
##                            0.006024822 
##                           Funbox Media 
##                            0.036148934 
##                                 Funcom 
##                            0.012049645 
##                                FunSoft 
##                            0.006024822 
##                                 Funsta 
##                            0.024099289 
##                                  FuRyu 
##                            0.162670201 
##                      FuRyu Corporation 
##                            0.006024822 
##                                  G.Rev 
##                            0.012049645 
##                                   Gaga 
##                            0.006024822 
##                 Gainax Network Systems 
##                            0.012049645 
##                                 Gakken 
##                            0.012049645 
##                              Game Arts 
##                            0.006024822 
##                           Game Factory 
##                            0.192794313 
##                              Game Life 
##                            0.012049645 
##                             Gamebridge 
##                            0.012049645 
##                               Gamecock 
##                            0.024099289 
##                               Gameloft 
##                            0.006024822 
##                 GameMill Entertainment 
##                            0.048198578 
##                                GameTek 
##                            0.006024822 
##                Gathering of Developers 
##                            0.054223400 
##                  General Entertainment 
##                            0.006024822 
##                                  Genki 
##                            0.048198578 
##                            Genterprise 
##                            0.006024822 
##                             Ghostlight 
##                            0.090372334 
##                                   Giga 
##                            0.006024822 
##                                 Giza10 
##                            0.006024822 
##                                  Glams 
##                            0.006024822 
##                 Global A Entertainment 
##                            0.024099289 
##                            Global Star 
##                            0.234968068 
##                            GN Software 
##                            0.018074467 
##                                    GOA 
##                            0.006024822 
##                           Gotham Games 
##                            0.042173756 
##                               Graffiti 
##                            0.036148934 
##                       Grand Prix Games 
##                            0.006024822 
##                 Graphsim Entertainment 
##                            0.006024822 
##                Gremlin Interactive Ltd 
##                            0.054223400 
##                  Griffin International 
##                            0.006024822 
##                           Groove Games 
##                            0.012049645 
##                                    GSP 
##                            0.096397156 
##                         GT Interactive 
##                            0.271117002 
##                                 GungHo 
##                            0.078322689 
##                                   Gust 
##                            0.078322689 
##                              Hackberry 
##                            0.042173756 
##                         HAL Laboratory 
##                            0.006024822 
##                    Hamster Corporation 
##                            0.012049645 
##                               Happinet 
##                            0.030124111 
##                 Harmonix Music Systems 
##                            0.012049645 
##                     Hasbro Interactive 
##                            0.096397156 
##                      Havas Interactive 
##                            0.006024822 
##                           Headup Games 
##                            0.006024822 
##                           Hearty Robin 
##                            0.006024822 
##                                   Hect 
##                            0.018074467 
##                            Hello Games 
##                            0.006024822 
##                        Her Interactive 
##                            0.006024822 
##                        Hip Interactive 
##                            0.030124111 
##                        HMH Interactive 
##                            0.012049645 
##           Home Entertainment Suppliers 
##                            0.030124111 
##                   Hudson Entertainment 
##                            0.066273045 
##                            Hudson Soft 
##                            0.488010604 
##                    Human Entertainment 
##                            0.078322689 
##                                  HuneX 
##                            0.012049645 
##                    Iceberg Interactive 
##                            0.018074467 
##                            id Software 
##                            0.006024822 
##                           Idea Factory 
##                            0.777202073 
##             Idea Factory International 
##                            0.036148934 
##                           IE Institute 
##                            0.030124111 
##                 Ignition Entertainment 
##                            0.367514158 
##                     Illusion Softworks 
##                            0.006024822 
##                                 Imadio 
##                            0.006024822 
##                            Image Epoch 
##                            0.006024822 
##                        imageepoch Inc. 
##                            0.012049645 
##                             Imageworks 
##                            0.006024822 
##                                 Imagic 
##                            0.024099289 
##                              Imagineer 
##                            0.096397156 
##                                   Imax 
##                            0.006024822 
##                            Indie Games 
##                            0.018074467 
##                             Infogrames 
##                            0.373538981 
##                        Insomniac Games 
##                            0.018074467 
##                           Interchannel 
##                            0.024099289 
##                     Interchannel-Holon 
##                            0.006024822 
##                              Intergrow 
##                            0.006024822 
##                              Interplay 
##                            0.180744668 
##                  Interplay Productions 
##                            0.006024822 
##             Interworks Unlimited, Inc. 
##                            0.006024822 
##                           Inti Creates 
##                            0.006024822 
##                  Introversion Software 
##                            0.006024822 
##                   inXile Entertainment 
##                            0.006024822 
##              Irem Software Engineering 
##                            0.072297867 
##                       ITT Family Games 
##                            0.006024822 
##                              Ivolgamus 
##                            0.006024822 
##                                   iWin 
##                            0.006024822 
##                      Jack of All Games 
##                            0.018074467 
##                                 Jaleco 
##                            0.138570912 
##                     Jester Interactive 
##                            0.018074467 
##                                Jorudan 
##                            0.018074467 
##                     JoWood Productions 
##                            0.132546090 
##                            Just Flight 
##                            0.006024822 
##                                    JVC 
##                            0.048198578 
##                         Kadokawa Games 
##                            0.090372334 
##                        Kadokawa Shoten 
##                            0.301241113 
##                            Kaga Create 
##                            0.036148934 
##                          Kalypso Media 
##                            0.174719846 
##                                  Kamui 
##                            0.006024822 
##                            Kando Games 
##                            0.006024822 
##                    Karin Entertainment 
##                            0.006024822 
##                                  Kemco 
##                            0.126521268 
##                                    KID 
##                            0.024099289 
##                           Kids Station 
##                            0.006024822 
##                           King Records 
##                            0.006024822 
##                    Knowledge Adventure 
##                            0.024099289 
##                             Koch Media 
##                            0.102421979 
##               Kokopeli Digital Studios 
##                            0.006024822 
##           Konami Digital Entertainment 
##                            5.012652127 
##                              Kool Kizz 
##                            0.006024822 
##                                    KSS 
##                            0.006024822 
##                                 Laguna 
##                            0.024099289 
##                     Legacy Interactive 
##                            0.006024822 
##                             LEGO Media 
##                            0.042173756 
##                                Level 5 
##                            0.162670201 
##                  Lexicon Entertainment 
##                            0.012049645 
##                            Licensed 4U 
##                            0.018074467 
##                 Lighthouse Interactive 
##                            0.006024822 
##                           Liquid Games 
##                            0.012049645 
##                           Little Orbit 
##                            0.156645379 
##                                  Locus 
##                            0.006024822 
##                              LSP Games 
##                            0.024099289 
##                              LucasArts 
##                            0.542234004 
##                               Mad Catz 
##                            0.018074467 
##                        Magical Company 
##                            0.006024822 
##                                  Magix 
##                            0.012049645 
##                  Majesco Entertainment 
##                            0.554283649 
##                            Mamba Games 
##                            0.012049645 
##                   Marvel Entertainment 
##                            0.006024822 
##                Marvelous Entertainment 
##                            0.072297867 
##                        Marvelous Games 
##                            0.006024822 
##                  Marvelous Interactive 
##                            0.337390047 
##                      Masque Publishing 
##                            0.006024822 
##                           Mastertronic 
##                            0.078322689 
##                                Mastiff 
##                            0.096397156 
##                     Mattel Interactive 
##                            0.072297867 
##                               Max Five 
##                            0.006024822 
##                   Maximum Family Games 
##                            0.006024822 
##                                  Maxis 
##                            0.018074467 
##                      MC2 Entertainment 
##                            0.018074467 
##                    Media Entertainment 
##                            0.006024822 
##                          Media Factory 
##                            0.012049645 
##                            Media Rings 
##                            0.018074467 
##                            Media Works 
##                            0.030124111 
##                             MediaQuest 
##                            0.006024822 
##                           Men-A-Vision 
##                            0.006024822 
##                     Mentor Interactive 
##                            0.030124111 
##                          Mercury Games 
##                            0.024099289 
##                            Merscom LLC 
##                            0.006024822 
##                               Metro 3D 
##                            0.072297867 
##                            Michaelsoft 
##                            0.006024822 
##                            Micro Cabin 
##                            0.018074467 
##                               Microids 
##                            0.060248223 
##                             Microprose 
##                            0.036148934 
##                 Microsoft Game Studios 
##                            1.138691409 
##        Midas Interactive Entertainment 
##                            0.144595734 
##                           Midway Games 
##                            1.192914809 
##                              Milestone 
##                            0.006024822 
##                        Milestone S.r.l 
##                            0.012049645 
##                       Milestone S.r.l. 
##                            0.096397156 
##                         Minato Station 
##                            0.018074467 
##                              Mindscape 
##                            0.192794313 
##                          Mirai Shounen 
##                            0.006024822 
##                                 Misawa 
##                            0.012049645 
##                                 Mitsui 
##                            0.006024822 
##                              mixi, Inc 
##                            0.006024822 
##                                MLB.com 
##                            0.006024822 
##                                 Mojang 
##                            0.030124111 
##               Monte Christo Multimedia 
##                            0.006024822 
##                                   Moss 
##                            0.012049645 
##                                    MTO 
##                            0.048198578 
##                              MTV Games 
##                            0.247017713 
##                   Mud Duck Productions 
##                            0.018074467 
##                            Mumbo Jumbo 
##                            0.036148934 
##                                  Mycom 
##                            0.006024822 
##                           Myelin Media 
##                            0.018074467 
##                               Mystique 
##                            0.006024822 
##                                    N/A 
##                            0.349439692 
##                     Namco Bandai Games 
##                            5.615134354 
##                                Natsume 
##                            0.102421979 
##                           Navarre Corp 
##                            0.006024822 
##                             Naxat Soft 
##                            0.006024822 
##                                    NCS 
##                            0.018074467 
##                                 NCSoft 
##                            0.036148934 
##                        NDA Productions 
##                            0.006024822 
##                                    NEC 
##                            0.018074467 
##                       NEC Interchannel 
##                            0.048198578 
##                     Neko Entertainment 
##                            0.042173756 
##                                NetRevo 
##                            0.012049645 
##                                    New 
##                            0.006024822 
##                    New World Computing 
##                            0.006024822 
##                               NewKidCo 
##                            0.054223400 
##                                  Nexon 
##                            0.006024822 
##                             Nichibutsu 
##                            0.006024822 
##               Nihon Falcom Corporation 
##                            0.042173756 
##                               Nintendo 
##                            4.235450054 
##                           Nippon Amuse 
##                            0.006024822 
##                        Nippon Columbia 
##                            0.042173756 
##                   Nippon Ichi Software 
##                            0.632606338 
##                         Nippon Telenet 
##                            0.012049645 
##                              Nitroplus 
##                            0.012049645 
##                                Nobilis 
##                            0.078322689 
##                            Nordcurrent 
##                            0.030124111 
##                           Nordic Games 
##                            0.210868779 
##                              NovaLogic 
##                            0.018074467 
##                            Number None 
##                            0.006024822 
##                                O-Games 
##                            0.102421979 
##                       O3 Entertainment 
##                            0.018074467 
##                                  Ocean 
##                            0.084347512 
##                          Office Create 
##                            0.012049645 
##                              On Demand 
##                            0.006024822 
##                              Ongakukan 
##                            0.006024822 
##                         Origin Systems 
##                            0.006024822 
##                                Otomate 
##                            0.006024822 
##                     Oxygen Interactive 
##                            0.132546090 
##                               P2 Games 
##                            0.018074467 
##            Pacific Century Cyber Works 
##                            0.006024822 
##                          Pack-In-Video 
##                            0.012049645 
##                           Pack In Soft 
##                            0.006024822 
##                                 Palcom 
##                            0.006024822 
##                       Panther Software 
##                            0.006024822 
##                                   Paon 
##                            0.036148934 
##                       Paon Corporation 
##                            0.006024822 
##                    Paradox Development 
##                            0.006024822 
##                    Paradox Interactive 
##                            0.138570912 
##                           Parker Bros. 
##                            0.042173756 
##          Performance Designed Products 
##                            0.012049645 
##                             Phantagram 
##                            0.006024822 
##                            Phantom EFX 
##                            0.006024822 
##                             Phenomedia 
##                            0.024099289 
##                          Phoenix Games 
##                            0.006024822 
##                                 Piacci 
##                            0.006024822 
##                               Pinnacle 
##                            0.030124111 
##                            Pioneer LDC 
##                            0.024099289 
##                                Play It 
##                            0.084347512 
##                 Playlogic Game Factory 
##                            0.084347512 
##                              Playmates 
##                            0.006024822 
##                               Playmore 
##                            0.006024822 
##                                  PlayV 
##                            0.024099289 
##                                 Plenty 
##                            0.006024822 
##                             PM Studios 
##                            0.006024822 
##                            Pony Canyon 
##                            0.006024822 
##                           PopCap Games 
##                            0.090372334 
##                         Popcorn Arcade 
##                            0.060248223 
##                        PopTop Software 
##                            0.006024822 
##                                    Pow 
##                            0.006024822 
##                                  PQube 
##                            0.234968068 
##                          Princess Soft 
##                            0.018074467 
##                              Prototype 
##                            0.162670201 
##                              Psygnosis 
##                            0.192794313 
##                                 Quelle 
##                            0.006024822 
##                                  Quest 
##                            0.006024822 
##                               Quinrose 
##                            0.084347512 
##                                Quintet 
##                            0.006024822 
##                          Rage Software 
##                            0.042173756 
##                             Rain Games 
##                            0.006024822 
##                              Rebellion 
##                            0.012049645 
##                 Rebellion Developments 
##                            0.012049645 
##                      RED Entertainment 
##                            0.006024822 
##                                Red Orb 
##                            0.012049645 
##                Red Storm Entertainment 
##                            0.018074467 
##                              RedOctane 
##                            0.024099289 
##                     Reef Entertainment 
##                            0.042173756 
##                           responDESIGN 
##                            0.012049645 
##                     Revolution (Japan) 
##                            0.006024822 
##                    Revolution Software 
##                            0.012049645 
##                      Rising Star Games 
##                            0.518134715 
##                          Riverhillsoft 
##                            0.006024822 
##                         Rocket Company 
##                            0.102421979 
##                             Rondomedia 
##                            0.084347512 
##                                    RTL 
##                            0.048198578 
##                                 Russel 
##                            0.036148934 
##                      Sammy Corporation 
##                            0.066273045 
##                                 Saurus 
##                            0.006024822 
##                        Scholastic Inc. 
##                            0.060248223 
##                                    SCi 
##                            0.102421979 
##                             Screenlife 
##                            0.036148934 
##                           SCS Software 
##                            0.006024822 
##                                  Sears 
##                            0.006024822 
##                                   Sega 
##                            3.849861429 
##                       Seta Corporation 
##                            0.036148934 
##                          Seventh Chord 
##                            0.006024822 
##                             Shogakukan 
##                            0.030124111 
##           Simon & Schuster Interactive 
##                            0.006024822 
##                   Slightly Mad Studios 
##                            0.018074467 
##                    Slitherine Software 
##                            0.024099289 
##                                    SNK 
##                            0.132546090 
##                           SNK Playmore 
##                            0.108446801 
##                                Societa 
##                            0.006024822 
##                               Sold Out 
##                            0.006024822 
##                                 Sonnet 
##                            0.012049645 
##            Sony Computer Entertainment 
##                            4.114953609 
##    Sony Computer Entertainment America 
##                            0.018074467 
##     Sony Computer Entertainment Europe 
##                            0.090372334 
##               Sony Music Entertainment 
##                            0.006024822 
##              Sony Online Entertainment 
##                            0.048198578 
##                        SouthPeak Games 
##                            0.222918424 
##                                  Spike 
##                            0.222918424 
##                                    SPS 
##                            0.006024822 
##                                 Square 
##                            0.036148934 
##                              Square EA 
##                            0.006024822 
##                            Square Enix 
##                            1.403783588 
##                             SquareSoft 
##                            0.313290758 
##                                    SSI 
##                            0.006024822 
##                        Stainless Games 
##                            0.006024822 
##                               Starfish 
##                            0.060248223 
##                         Starpath Corp. 
##                            0.006024822 
##                                  Sting 
##                            0.054223400 
##                       Storm City Games 
##                            0.114471623 
##                         Strategy First 
##                            0.006024822 
##                                Success 
##                            0.114471623 
##                             Summitsoft 
##                            0.006024822 
##                             Sunflowers 
##                            0.006024822 
##                    Sunrise Interactive 
##                            0.024099289 
##                                Sunsoft 
##                            0.060248223 
##                                 Sweets 
##                            0.012049645 
##                   Swing! Entertainment 
##                            0.036148934 
##                                 Syscom 
##                            0.012049645 
##                               System 3 
##                            0.018074467 
##               System 3 Arcade Software 
##                            0.084347512 
##                            System Soft 
##                            0.024099289 
##                               T&E Soft 
##                            0.006024822 
##                                  Taito 
##                            0.114471623 
##                                 Takara 
##                            0.096397156 
##                            Takara Tomy 
##                            0.222918424 
##                   Take-Two Interactive 
##                            2.488251597 
##                                 Takuyo 
##                            0.006024822 
##                              TalonSoft 
##                            0.006024822 
##                               TDK Core 
##                            0.030124111 
##                         TDK Mediactive 
##                            0.216893602 
##                        Team17 Software 
##                            0.006024822 
##              Technos Japan Corporation 
##                            0.006024822 
##                             TechnoSoft 
##                            0.006024822 
##                             Tecmo Koei 
##                            2.036389926 
##                              Telegames 
##                            0.048198578 
##                         Telltale Games 
##                            0.150620557 
##                                Telstar 
##                            0.018074467 
##                          Tetris Online 
##                            0.006024822 
##                                    TGL 
##                            0.024099289 
##                  The Adventure Company 
##                            0.030124111 
##                   The Learning Company 
##                            0.006024822 
##                                    THQ 
##                            4.307747921 
##                            Tigervision 
##                            0.018074467 
##                Time Warner Interactive 
##                            0.030124111 
##                                  Titus 
##                            0.114471623 
##                                 Tivola 
##                            0.018074467 
##                                   TOHO 
##                            0.006024822 
##                                  Tommo 
##                            0.030124111 
##                       Tomy Corporation 
##                            0.108446801 
##                    TopWare Interactive 
##                            0.024099289 
##                             Touchstone 
##                            0.024099289 
##                              Tradewest 
##                            0.018074467 
##                           Trion Worlds 
##                            0.024099289 
##                   Tripwire Interactive 
##                            0.006024822 
##                  Tru Blu Entertainment 
##                            0.048198578 
##                               Tryfirst 
##                            0.006024822 
##                                    TYO 
##                            0.006024822 
##                              Type-Moon 
##                            0.006024822 
##                              U.S. Gold 
##                            0.024099289 
##                                Ubisoft 
##                            5.548861309 
##                         Ubisoft Annecy 
##                            0.084347512 
##                            UEP Systems 
##                            0.006024822 
##                        UFO Interactive 
##                            0.096397156 
##                      UIG Entertainment 
##                            0.006024822 
##                            Ultravision 
##                            0.006024822 
##                        Universal Gamex 
##                            0.006024822 
##                  Universal Interactive 
##                            0.138570912 
##                                Unknown 
##                            1.223038920 
##                           Valcon Games 
##                            0.048198578 
##                               ValuSoft 
##                            0.024099289 
##                                  Valve 
##                            0.006024822 
##                         Valve Software 
##                            0.018074467 
##                                    Vap 
##                            0.006024822 
##                  Vatical Entertainment 
##                            0.012049645 
##                              Vic Tokai 
##                            0.012049645 
##                     Victor Interactive 
##                            0.054223400 
##                           Video System 
##                            0.024099289 
##                                  Views 
##                            0.012049645 
##                          Vir2L Studios 
##                            0.018074467 
##                     Virgin Interactive 
##                            0.373538981 
##                     Virtual Play Games 
##                            0.012049645 
##                                  Visco 
##                            0.006024822 
##                          Vivendi Games 
##                            0.988070852 
##                                Wanadoo 
##                            0.030124111 
##                                Warashi 
##                            0.006024822 
##                          Wargaming.net 
##                            0.006024822 
## Warner Bros. Interactive Entertainment 
##                            1.397758766 
##                                   Warp 
##                            0.006024822 
##                WayForward Technologies 
##                            0.006024822 
##                       Westwood Studios 
##                            0.006024822 
##                White Park Bay Software 
##                            0.006024822 
##                     Wizard Video Games 
##                            0.006024822 
##                      Xicat Interactive 
##                            0.018074467 
##                     Xing Entertainment 
##                            0.006024822 
##                                Xplosiv 
##                            0.060248223 
##                               XS Games 
##                            0.072297867 
##                            Xseed Games 
##                            0.024099289 
##                       Yacht Club Games 
##                            0.018074467 
##                   Yamasa Entertainment 
##                            0.012049645 
##                                   Yeti 
##                            0.066273045 
##                                 Yuke's 
##                            0.018074467 
##                                Yumedia 
##                            0.006024822 
##                                 Zenrin 
##                            0.012049645 
##                 Zoo Digital Publishing 
##                            0.626581516 
##                              Zoo Games 
##                            0.198819135 
##                            Zushi Games 
##                            0.108446801

Activision and Nintendo are having the maximum number of video game releases, with almost 975 and 700 games in the market.

2-way Contingency Tables

Create two-way contingency tables for the categorical variables in your dataset.

myTable <-xtabs(~Platform+Year)
library(gmodels)
addmargins(myTable)
##         Year
## Platform  1980  1981  1982  1983  1984  1985  1986  1987  1988  1989  1990
##     2600     9    46    36    11     1     1     2     6     2     2     0
##     3DO      0     0     0     0     0     0     0     0     0     0     0
##     3DS      0     0     0     0     0     0     0     0     0     0     0
##     DC       0     0     0     0     0     0     0     0     0     0     0
##     DS       0     0     0     0     0     1     0     0     0     0     0
##     GB       0     0     0     0     0     0     0     0     1    10     3
##     GBA      0     0     0     0     0     0     0     0     0     0     0
##     GC       0     0     0     0     0     0     0     0     0     0     0
##     GEN      0     0     0     0     0     0     0     0     0     0     1
##     GG       0     0     0     0     0     0     0     0     0     0     0
##     N64      0     0     0     0     0     0     0     0     0     0     0
##     NES      0     0     0     6    13    11    19    10    11     5     8
##     NG       0     0     0     0     0     0     0     0     0     0     0
##     PC       0     0     0     0     0     1     0     0     1     0     0
##     PCFX     0     0     0     0     0     0     0     0     0     0     0
##     PS       0     0     0     0     0     0     0     0     0     0     0
##     PS2      0     0     0     0     0     0     0     0     0     0     0
##     PS3      0     0     0     0     0     0     0     0     0     0     0
##     PS4      0     0     0     0     0     0     0     0     0     0     0
##     PSP      0     0     0     0     0     0     0     0     0     0     0
##     PSV      0     0     0     0     0     0     0     0     0     0     0
##     SAT      0     0     0     0     0     0     0     0     0     0     0
##     SCD      0     0     0     0     0     0     0     0     0     0     0
##     SNES     0     0     0     0     0     0     0     0     0     0     4
##     TG16     0     0     0     0     0     0     0     0     0     0     0
##     Wii      0     0     0     0     0     0     0     0     0     0     0
##     WiiU     0     0     0     0     0     0     0     0     0     0     0
##     WS       0     0     0     0     0     0     0     0     0     0     0
##     X360     0     0     0     0     0     0     0     0     0     0     0
##     XB       0     0     0     0     0     0     0     0     0     0     0
##     XOne     0     0     0     0     0     0     0     0     0     0     0
##     Sum      9    46    36    17    14    14    21    16    15    17    16
##         Year
## Platform  1991  1992  1993  1994  1995  1996  1997  1998  1999  2000  2001
##     2600     0     0     0     0     0     0     0     0     0     0     0
##     3DO      0     0     0     1     2     0     0     0     0     0     0
##     3DS      0     0     0     0     0     0     0     0     0     0     0
##     DC       0     0     0     0     0     0     0     7    14    20     8
##     DS       0     0     0     0     0     0     0     0     0     0     0
##     GB       9     7     0     3     4     6     8     8    11    17    10
##     GBA      0     0     0     0     0     0     0     0     0     1   107
##     GC       0     0     0     0     0     0     0     0     0     0    22
##     GEN      1     6     7    12     0     0     0     0     0     0     0
##     GG       0     1     0     0     0     0     0     0     0     0     0
##     N64      0     0     0     0     0    18    49    77   102    60     9
##     NES      7     3     4     1     0     0     0     0     0     0     0
##     NG       0     0     2     4     4     2     0     0     0     0     0
##     PC       0     5     0     6     2     4     6     8     7     7    15
##     PCFX     0     0     0     0     0     1     0     0     0     0     0
##     PS       0     0     0    17    99   164   188   248   200   159    91
##     PS2      0     0     0     0     0     0     0     0     0    82   185
##     PS3      0     0     0     0     0     0     0     0     0     0     0
##     PS4      0     0     0     0     0     0     0     0     0     0     0
##     PSP      0     0     0     0     0     0     0     0     0     0     0
##     PSV      0     0     0     0     0     0     0     0     0     0     0
##     SAT      0     0     0    19    52    38    34    29     1     0     0
##     SCD      0     0     1     5     0     0     0     0     0     0     0
##     SNES    24    21    46    53    54    30     4     2     1     0     0
##     TG16     0     0     0     0     2     0     0     0     0     0     0
##     Wii      0     0     0     0     0     0     0     0     0     0     0
##     WiiU     0     0     0     0     0     0     0     0     0     0     0
##     WS       0     0     0     0     0     0     0     0     2     2     2
##     X360     0     0     0     0     0     0     0     0     0     0     0
##     XB       0     0     0     0     0     0     0     0     0     1    33
##     XOne     0     0     0     0     0     0     0     0     0     0     0
##     Sum     41    43    60   121   219   263   289   379   338   349   482
##         Year
## Platform  2002  2003  2004  2005  2006  2007  2008  2009  2010  2011  2012
##     2600     0     0     0     0     0     0     0     0     0     0     0
##     3DO      0     0     0     0     0     0     0     0     0     0     0
##     3DS      0     0     0     0     0     0     0     0     0   116    93
##     DC       1     0     0     0     0     1     1     0     0     0     0
##     DS       0     0    23   118   202   377   492   405   326   153    25
##     GB       0     0     0     0     0     0     0     0     0     0     0
##     GBA    198   150   175   135    39     6     0     0     0     0     0
##     GC     152   144    83    97    40     4     0     0     0     0     0
##     GEN      0     0     0     0     0     0     0     0     0     0     0
##     GG       0     0     0     0     0     0     0     0     0     0     0
##     N64      1     0     0     0     0     0     0     0     0     0     0
##     NES      0     0     0     0     0     0     0     0     0     0     0
##     NG       0     0     0     0     0     0     0     0     0     0     0
##     PC      19    33    31    37    52    63    76   109    90   140    61
##     PCFX     0     0     0     0     0     0     0     0     0     0     0
##     PS      20     3     0     0     0     0     0     0     0     0     0
##     PS2    280   256   259   260   259   214   191    96    38     7     0
##     PS3      0     0     0     0    27    90   139   162   181   216   148
##     PS4      0     0     0     0     0     0     0     0     0     0     0
##     PSP      0     0    15    97   190   134   100   161   188   139   106
##     PSV      0     0     0     0     0     0     0     0     0    18    54
##     SAT      0     0     0     0     0     0     0     0     0     0     0
##     SCD      0     0     0     0     0     0     0     0     0     0     0
##     SNES     0     0     0     0     0     0     0     0     0     0     0
##     TG16     0     0     0     0     0     0     0     0     0     0     0
##     Wii      0     0     0     0    44   187   282   325   254   144    32
##     WiiU     0     0     0     0     0     0     0     0     0     0    32
##     WS       0     0     0     0     0     0     0     0     0     0     0
##     X360     0     0     0    18    93   123   146   173   182   206   106
##     XB     158   189   177   179    62     3     1     0     0     0     0
##     XOne     0     0     0     0     0     0     0     0     0     0     0
##     Sum    829   775   763   941  1008  1202  1428  1431  1259  1139   657
##         Year
## Platform  2013  2014  2015  2016  2017  2020   N/A   Sum
##     2600     0     0     0     0     0     0    17   133
##     3DO      0     0     0     0     0     0     0     3
##     3DS     91    79    86    35     0     0     9   509
##     DC       0     0     0     0     0     0     0    52
##     DS       9     1     0     0     0     1    30  2163
##     GB       0     0     0     0     0     0     1    98
##     GBA      0     0     0     0     0     0    11   822
##     GC       0     0     0     0     0     0    14   556
##     GEN      0     0     0     0     0     0     0    27
##     GG       0     0     0     0     0     0     0     1
##     N64      0     0     0     0     0     0     3   319
##     NES      0     0     0     0     0     0     0    98
##     NG       0     0     0     0     0     0     0    12
##     PC      38    44    50    38     0     0    17   960
##     PCFX     0     0     0     0     0     0     0     1
##     PS       0     0     0     0     0     0     7  1196
##     PS2      0     0     0     0     0     0    34  2161
##     PS3    127   108    74    32     0     0    25  1329
##     PS4     16    75   137   107     1     0     0   336
##     PSP     54    10     3     0     0     0    16  1213
##     PSV     63   102   113    60     2     0     1   413
##     SAT      0     0     0     0     0     0     0   173
##     SCD      0     0     0     0     0     0     0     6
##     SNES     0     0     0     0     0     0     0   239
##     TG16     0     0     0     0     0     0     0     2
##     Wii     12     6     4     0     0     0    35  1325
##     WiiU    42    31    28    10     0     0     0   143
##     WS       0     0     0     0     0     0     0     6
##     X360    75    65    40     8     0     0    30  1265
##     XB       0     0     0     0     0     0    21   824
##     XOne    19    61    79    54     0     0     0   213
##     Sum    546   582   614   344     3     1   271 16598
myTable
##         Year
## Platform 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
##     2600    9   46   36   11    1    1    2    6    2    2    0    0    0
##     3DO     0    0    0    0    0    0    0    0    0    0    0    0    0
##     3DS     0    0    0    0    0    0    0    0    0    0    0    0    0
##     DC      0    0    0    0    0    0    0    0    0    0    0    0    0
##     DS      0    0    0    0    0    1    0    0    0    0    0    0    0
##     GB      0    0    0    0    0    0    0    0    1   10    3    9    7
##     GBA     0    0    0    0    0    0    0    0    0    0    0    0    0
##     GC      0    0    0    0    0    0    0    0    0    0    0    0    0
##     GEN     0    0    0    0    0    0    0    0    0    0    1    1    6
##     GG      0    0    0    0    0    0    0    0    0    0    0    0    1
##     N64     0    0    0    0    0    0    0    0    0    0    0    0    0
##     NES     0    0    0    6   13   11   19   10   11    5    8    7    3
##     NG      0    0    0    0    0    0    0    0    0    0    0    0    0
##     PC      0    0    0    0    0    1    0    0    1    0    0    0    5
##     PCFX    0    0    0    0    0    0    0    0    0    0    0    0    0
##     PS      0    0    0    0    0    0    0    0    0    0    0    0    0
##     PS2     0    0    0    0    0    0    0    0    0    0    0    0    0
##     PS3     0    0    0    0    0    0    0    0    0    0    0    0    0
##     PS4     0    0    0    0    0    0    0    0    0    0    0    0    0
##     PSP     0    0    0    0    0    0    0    0    0    0    0    0    0
##     PSV     0    0    0    0    0    0    0    0    0    0    0    0    0
##     SAT     0    0    0    0    0    0    0    0    0    0    0    0    0
##     SCD     0    0    0    0    0    0    0    0    0    0    0    0    0
##     SNES    0    0    0    0    0    0    0    0    0    0    4   24   21
##     TG16    0    0    0    0    0    0    0    0    0    0    0    0    0
##     Wii     0    0    0    0    0    0    0    0    0    0    0    0    0
##     WiiU    0    0    0    0    0    0    0    0    0    0    0    0    0
##     WS      0    0    0    0    0    0    0    0    0    0    0    0    0
##     X360    0    0    0    0    0    0    0    0    0    0    0    0    0
##     XB      0    0    0    0    0    0    0    0    0    0    0    0    0
##     XOne    0    0    0    0    0    0    0    0    0    0    0    0    0
##         Year
## Platform 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
##     2600    0    0    0    0    0    0    0    0    0    0    0    0    0
##     3DO     0    1    2    0    0    0    0    0    0    0    0    0    0
##     3DS     0    0    0    0    0    0    0    0    0    0    0    0    0
##     DC      0    0    0    0    0    7   14   20    8    1    0    0    0
##     DS      0    0    0    0    0    0    0    0    0    0    0   23  118
##     GB      0    3    4    6    8    8   11   17   10    0    0    0    0
##     GBA     0    0    0    0    0    0    0    1  107  198  150  175  135
##     GC      0    0    0    0    0    0    0    0   22  152  144   83   97
##     GEN     7   12    0    0    0    0    0    0    0    0    0    0    0
##     GG      0    0    0    0    0    0    0    0    0    0    0    0    0
##     N64     0    0    0   18   49   77  102   60    9    1    0    0    0
##     NES     4    1    0    0    0    0    0    0    0    0    0    0    0
##     NG      2    4    4    2    0    0    0    0    0    0    0    0    0
##     PC      0    6    2    4    6    8    7    7   15   19   33   31   37
##     PCFX    0    0    0    1    0    0    0    0    0    0    0    0    0
##     PS      0   17   99  164  188  248  200  159   91   20    3    0    0
##     PS2     0    0    0    0    0    0    0   82  185  280  256  259  260
##     PS3     0    0    0    0    0    0    0    0    0    0    0    0    0
##     PS4     0    0    0    0    0    0    0    0    0    0    0    0    0
##     PSP     0    0    0    0    0    0    0    0    0    0    0   15   97
##     PSV     0    0    0    0    0    0    0    0    0    0    0    0    0
##     SAT     0   19   52   38   34   29    1    0    0    0    0    0    0
##     SCD     1    5    0    0    0    0    0    0    0    0    0    0    0
##     SNES   46   53   54   30    4    2    1    0    0    0    0    0    0
##     TG16    0    0    2    0    0    0    0    0    0    0    0    0    0
##     Wii     0    0    0    0    0    0    0    0    0    0    0    0    0
##     WiiU    0    0    0    0    0    0    0    0    0    0    0    0    0
##     WS      0    0    0    0    0    0    2    2    2    0    0    0    0
##     X360    0    0    0    0    0    0    0    0    0    0    0    0   18
##     XB      0    0    0    0    0    0    0    1   33  158  189  177  179
##     XOne    0    0    0    0    0    0    0    0    0    0    0    0    0
##         Year
## Platform 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2020
##     2600    0    0    0    0    0    0    0    0    0    0    0    0    0
##     3DO     0    0    0    0    0    0    0    0    0    0    0    0    0
##     3DS     0    0    0    0    0  116   93   91   79   86   35    0    0
##     DC      0    1    1    0    0    0    0    0    0    0    0    0    0
##     DS    202  377  492  405  326  153   25    9    1    0    0    0    1
##     GB      0    0    0    0    0    0    0    0    0    0    0    0    0
##     GBA    39    6    0    0    0    0    0    0    0    0    0    0    0
##     GC     40    4    0    0    0    0    0    0    0    0    0    0    0
##     GEN     0    0    0    0    0    0    0    0    0    0    0    0    0
##     GG      0    0    0    0    0    0    0    0    0    0    0    0    0
##     N64     0    0    0    0    0    0    0    0    0    0    0    0    0
##     NES     0    0    0    0    0    0    0    0    0    0    0    0    0
##     NG      0    0    0    0    0    0    0    0    0    0    0    0    0
##     PC     52   63   76  109   90  140   61   38   44   50   38    0    0
##     PCFX    0    0    0    0    0    0    0    0    0    0    0    0    0
##     PS      0    0    0    0    0    0    0    0    0    0    0    0    0
##     PS2   259  214  191   96   38    7    0    0    0    0    0    0    0
##     PS3    27   90  139  162  181  216  148  127  108   74   32    0    0
##     PS4     0    0    0    0    0    0    0   16   75  137  107    1    0
##     PSP   190  134  100  161  188  139  106   54   10    3    0    0    0
##     PSV     0    0    0    0    0   18   54   63  102  113   60    2    0
##     SAT     0    0    0    0    0    0    0    0    0    0    0    0    0
##     SCD     0    0    0    0    0    0    0    0    0    0    0    0    0
##     SNES    0    0    0    0    0    0    0    0    0    0    0    0    0
##     TG16    0    0    0    0    0    0    0    0    0    0    0    0    0
##     Wii    44  187  282  325  254  144   32   12    6    4    0    0    0
##     WiiU    0    0    0    0    0    0   32   42   31   28   10    0    0
##     WS      0    0    0    0    0    0    0    0    0    0    0    0    0
##     X360   93  123  146  173  182  206  106   75   65   40    8    0    0
##     XB     62    3    1    0    0    0    0    0    0    0    0    0    0
##     XOne    0    0    0    0    0    0    0   19   61   79   54    0    0
##         Year
## Platform N/A
##     2600  17
##     3DO    0
##     3DS    9
##     DC     0
##     DS    30
##     GB     1
##     GBA   11
##     GC    14
##     GEN    0
##     GG     0
##     N64    3
##     NES    0
##     NG     0
##     PC    17
##     PCFX   0
##     PS     7
##     PS2   34
##     PS3   25
##     PS4    0
##     PSP   16
##     PSV    1
##     SAT    0
##     SCD    0
##     SNES   0
##     TG16   0
##     Wii   35
##     WiiU   0
##     WS     0
##     X360  30
##     XB    21
##     XOne   0
prop.table(myTable,1)
##         Year
## Platform         1980         1981         1982         1983         1984
##     2600 0.0676691729 0.3458646617 0.2706766917 0.0827067669 0.0075187970
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0612244898 0.1326530612
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         1985         1986         1987         1988         1989
##     2600 0.0075187970 0.0150375940 0.0451127820 0.0150375940 0.0150375940
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0004623209 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0102040816 0.1020408163
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.1122448980 0.1938775510 0.1020408163 0.1122448980 0.0510204082
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0010416667 0.0000000000 0.0000000000 0.0010416667 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         1990         1991         1992         1993         1994
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0306122449 0.0918367347 0.0714285714 0.0000000000 0.0306122449
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0370370370 0.0370370370 0.2222222222 0.2592592593 0.4444444444
##     GG   0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0816326531 0.0714285714 0.0306122449 0.0408163265 0.0102040816
##     NG   0.0000000000 0.0000000000 0.0000000000 0.1666666667 0.3333333333
##     PC   0.0000000000 0.0000000000 0.0052083333 0.0000000000 0.0062500000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0142140468
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1098265896
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.1666666667 0.8333333333
##     SNES 0.0167364017 0.1004184100 0.0878661088 0.1924686192 0.2217573222
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         1995         1996         1997         1998         1999
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.6666666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.1346153846 0.2692307692
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0408163265 0.0612244898 0.0816326531 0.0816326531 0.1122448980
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0564263323 0.1536050157 0.2413793103 0.3197492163
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.3333333333 0.1666666667 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0020833333 0.0041666667 0.0062500000 0.0083333333 0.0072916667
##     PCFX 0.0000000000 1.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0827759197 0.1371237458 0.1571906355 0.2073578595 0.1672240803
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.3005780347 0.2196531792 0.1965317919 0.1676300578 0.0057803468
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.2259414226 0.1255230126 0.0167364017 0.0083682008 0.0041841004
##     TG16 1.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         2000         2001         2002         2003         2004
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.3846153846 0.1538461538 0.0192307692 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0106333796
##     GB   0.1734693878 0.1020408163 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0012165450 0.1301703163 0.2408759124 0.1824817518 0.2128953771
##     GC   0.0000000000 0.0395683453 0.2733812950 0.2589928058 0.1492805755
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.1880877743 0.0282131661 0.0031347962 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0072916667 0.0156250000 0.0197916667 0.0343750000 0.0322916667
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.1329431438 0.0760869565 0.0167224080 0.0025083612 0.0000000000
##     PS2  0.0379453957 0.0856085146 0.1295696437 0.1184636742 0.1198519204
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0123660346
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.3333333333 0.3333333333 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0012135922 0.0400485437 0.1917475728 0.2293689320 0.2148058252
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         2005         2006         2007         2008         2009
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0192307692 0.0192307692 0.0000000000
##     DS   0.0545538604 0.0933888118 0.1742949607 0.2274618585 0.1872399445
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.1642335766 0.0474452555 0.0072992701 0.0000000000 0.0000000000
##     GC   0.1744604317 0.0719424460 0.0071942446 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0385416667 0.0541666667 0.0656250000 0.0791666667 0.1135416667
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.1203146691 0.1198519204 0.0990282277 0.0883850069 0.0444238778
##     PS3  0.0000000000 0.0203160271 0.0677200903 0.1045899172 0.1218961625
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0799670239 0.1566364386 0.1104699093 0.0824402308 0.1327287716
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0332075472 0.1411320755 0.2128301887 0.2452830189
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0142292490 0.0735177866 0.0972332016 0.1154150198 0.1367588933
##     XB   0.2172330097 0.0752427184 0.0036407767 0.0012135922 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         2010         2011         2012         2013         2014
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.2278978389 0.1827111984 0.1787819253 0.1552062868
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.1507165973 0.0707350902 0.0115580213 0.0041608877 0.0004623209
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0937500000 0.1458333333 0.0635416667 0.0395833333 0.0458333333
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0175844516 0.0032392411 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.1361926260 0.1625282167 0.1113619263 0.0955605719 0.0812641084
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.2232142857
##     PSP  0.1549876340 0.1145919209 0.0873866447 0.0445177246 0.0082440231
##     PSV  0.0000000000 0.0435835351 0.1307506053 0.1525423729 0.2469733656
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.1916981132 0.1086792453 0.0241509434 0.0090566038 0.0045283019
##     WiiU 0.0000000000 0.0000000000 0.2237762238 0.2937062937 0.2167832168
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.1438735178 0.1628458498 0.0837944664 0.0592885375 0.0513833992
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0892018779 0.2863849765
##         Year
## Platform         2015         2016         2017         2020          N/A
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1278195489
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.1689587426 0.0687622790 0.0000000000 0.0000000000 0.0176817289
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0004623209 0.0138696255
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0102040816
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0133819951
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0251798561
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0094043887
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0520833333 0.0395833333 0.0000000000 0.0000000000 0.0177083333
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0058528428
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0157334567
##     PS3  0.0556809631 0.0240782543 0.0000000000 0.0000000000 0.0188111362
##     PS4  0.4077380952 0.3184523810 0.0029761905 0.0000000000 0.0000000000
##     PSP  0.0024732069 0.0000000000 0.0000000000 0.0000000000 0.0131904369
##     PSV  0.2736077482 0.1452784504 0.0048426150 0.0000000000 0.0024213075
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0030188679 0.0000000000 0.0000000000 0.0000000000 0.0264150943
##     WiiU 0.1958041958 0.0699300699 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0316205534 0.0063241107 0.0000000000 0.0000000000 0.0237154150
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0254854369
##     XOne 0.3708920188 0.2535211268 0.0000000000 0.0000000000 0.0000000000
prop.table(myTable,2)
##         Year
## Platform         1980         1981         1982         1983         1984
##     2600 1.0000000000 1.0000000000 1.0000000000 0.6470588235 0.0714285714
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.3529411765 0.9285714286
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         1985         1986         1987         1988         1989
##     2600 0.0714285714 0.0952380952 0.3750000000 0.1333333333 0.1176470588
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0714285714 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.5882352941
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.7857142857 0.9047619048 0.6250000000 0.7333333333 0.2941176471
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0714285714 0.0000000000 0.0000000000 0.0666666667 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         1990         1991         1992         1993         1994
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0082644628
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.1875000000 0.2195121951 0.1627906977 0.0000000000 0.0247933884
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0625000000 0.0243902439 0.1395348837 0.1166666667 0.0991735537
##     GG   0.0000000000 0.0000000000 0.0232558140 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.5000000000 0.1707317073 0.0697674419 0.0666666667 0.0082644628
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0333333333 0.0330578512
##     PC   0.0000000000 0.0000000000 0.1162790698 0.0000000000 0.0495867769
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1404958678
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1570247934
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0166666667 0.0413223140
##     SNES 0.2500000000 0.5853658537 0.4883720930 0.7666666667 0.4380165289
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         1995         1996         1997         1998         1999
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0091324201 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0184696570 0.0414201183
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0182648402 0.0228136882 0.0276816609 0.0211081794 0.0325443787
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0684410646 0.1695501730 0.2031662269 0.3017751479
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0182648402 0.0076045627 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0091324201 0.0152091255 0.0207612457 0.0211081794 0.0207100592
##     PCFX 0.0000000000 0.0038022814 0.0000000000 0.0000000000 0.0000000000
##     PS   0.4520547945 0.6235741445 0.6505190311 0.6543535620 0.5917159763
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.2374429224 0.1444866920 0.1176470588 0.0765171504 0.0029585799
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.2465753425 0.1140684411 0.0138408304 0.0052770449 0.0029585799
##     TG16 0.0091324201 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0059171598
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         2000         2001         2002         2003         2004
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0573065903 0.0165975104 0.0012062726 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0301441678
##     GB   0.0487106017 0.0207468880 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0028653295 0.2219917012 0.2388419783 0.1935483871 0.2293577982
##     GC   0.0000000000 0.0456431535 0.1833534379 0.1858064516 0.1087811271
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.1719197708 0.0186721992 0.0012062726 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0200573066 0.0311203320 0.0229191797 0.0425806452 0.0406290957
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.4555873926 0.1887966805 0.0241254524 0.0038709677 0.0000000000
##     PS2  0.2349570201 0.3838174274 0.3377563329 0.3303225806 0.3394495413
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0196592398
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0057306590 0.0041493776 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0028653295 0.0684647303 0.1905910736 0.2438709677 0.2319790301
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         2005         2006         2007         2008         2009
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0008319468 0.0007002801 0.0000000000
##     DS   0.1253985122 0.2003968254 0.3136439268 0.3445378151 0.2830188679
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.1434643996 0.0386904762 0.0049916805 0.0000000000 0.0000000000
##     GC   0.1030818278 0.0396825397 0.0033277870 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0393198725 0.0515873016 0.0524126456 0.0532212885 0.0761705101
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.2763018066 0.2569444444 0.1780366057 0.1337535014 0.0670859539
##     PS3  0.0000000000 0.0267857143 0.0748752080 0.0973389356 0.1132075472
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.1030818278 0.1884920635 0.1114808652 0.0700280112 0.1125087352
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0436507937 0.1555740433 0.1974789916 0.2271139064
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0191285866 0.0922619048 0.1023294509 0.1022408964 0.1208944794
##     XB   0.1902231668 0.0615079365 0.0024958403 0.0007002801 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Year
## Platform         2010         2011         2012         2013         2014
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.1018437226 0.1415525114 0.1666666667 0.1357388316
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.2589356632 0.1343283582 0.0380517504 0.0164835165 0.0017182131
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0714853058 0.1229148376 0.0928462709 0.0695970696 0.0756013746
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0301826847 0.0061457419 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.1437648928 0.1896400351 0.2252663623 0.2326007326 0.1855670103
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0293040293 0.1288659794
##     PSP  0.1493248610 0.1220368745 0.1613394216 0.0989010989 0.0171821306
##     PSV  0.0000000000 0.0158033363 0.0821917808 0.1153846154 0.1752577320
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.2017474186 0.1264266901 0.0487062405 0.0219780220 0.0103092784
##     WiiU 0.0000000000 0.0000000000 0.0487062405 0.0769230769 0.0532646048
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.1445591739 0.1808604039 0.1613394216 0.1373626374 0.1116838488
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0347985348 0.1048109966
##         Year
## Platform         2015         2016         2017         2020          N/A
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0627306273
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.1400651466 0.1017441860 0.0000000000 0.0000000000 0.0332103321
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 1.0000000000 0.1107011070
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0036900369
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0405904059
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0516605166
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0110701107
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0814332248 0.1104651163 0.0000000000 0.0000000000 0.0627306273
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0258302583
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1254612546
##     PS3  0.1205211726 0.0930232558 0.0000000000 0.0000000000 0.0922509225
##     PS4  0.2231270358 0.3110465116 0.3333333333 0.0000000000 0.0000000000
##     PSP  0.0048859935 0.0000000000 0.0000000000 0.0000000000 0.0590405904
##     PSV  0.1840390879 0.1744186047 0.6666666667 0.0000000000 0.0036900369
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0065146580 0.0000000000 0.0000000000 0.0000000000 0.1291512915
##     WiiU 0.0456026059 0.0290697674 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0651465798 0.0232558140 0.0000000000 0.0000000000 0.1107011070
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0774907749
##     XOne 0.1286644951 0.1569767442 0.0000000000 0.0000000000 0.0000000000

The PS was popular between 1998 to 2000, and then came the DS between 2003 and 2007, after which the PSP was more sought after.

myTable <-xtabs(~Platform+Genre)
addmargins(myTable)
##         Genre
## Platform Action Adventure Fighting  Misc Platform Puzzle Racing
##     2600     61         2        2     5        9     11      6
##     3DO       0         1        0     0        0      1      0
##     3DS     182        37       14    53       28     20     11
##     DC        3        11       12     0        2      0      6
##     DS      343       240       36   393       92    238     67
##     GB        6         5        0     8       19     15      2
##     GBA     167        38       23   110      142     41     64
##     GC      101        20       42    36       73     13     63
##     GEN       3         2        5     1        7      0      1
##     GG        0         0        0     0        1      0      0
##     N64      38         4       29    18       30     12     57
##     NES      13         1        4     2       28     14      4
##     NG        0         0       11     0        0      0      0
##     PC      165        65        6    24       11     25     60
##     PCFX      0         0        0     0        0      0      0
##     PS      157        69      108    76       64     32    145
##     PS2     348       196      150   222      103     18    216
##     PS3     380        74       76   124       37      3     92
##     PS4     122        19       17    15       11      1     17
##     PSP     222       213       74   106       36     44     65
##     PSV     142        86       16    24       10      3     11
##     SAT       3        26       31    15        5      5      8
##     SCD       0         0        0     2        1      0      1
##     SNES     12         4       25    17       26     13      9
##     TG16      0         1        0     0        0      0      0
##     Wii     238        84       42   280       58     55     94
##     WiiU     63         3        5    21       16      4      3
##     WS        0         0        0     0        0      0      0
##     X360    324        47       65   126       24      7    105
##     XB      155        26       48    46       49      7    123
##     XOne     68        12        7    15        4      0     19
##     Sum    3316      1286      848  1739      886    582   1249
##         Genre
## Platform Role-Playing Shooter Simulation Sports Strategy   Sum
##     2600            0      24          1     12        0   133
##     3DO             0       0          1      0        0     3
##     3DS            86       7         30     26       15   509
##     DC              4       3          1     10        0    52
##     DS            200      42        285    148       79  2163
##     GB             21       1          5      9        7    98
##     GBA            73      40         18     88       18   822
##     GC             27      48         12    110       11   556
##     GEN             3       1          0      3        1    27
##     GG              0       0          0      0        0     1
##     N64             8      24         10     80        9   319
##     NES            11       7          0     14        0    98
##     NG              0       0          0      1        0    12
##     PC            104     148        115     49      188   960
##     PCFX            1       0          0      0        0     1
##     PS             97      96         60    222       70  1196
##     PS2           187     160         90    400       71  2161
##     PS3           119     156         31    213       24  1329
##     PS4            47      34          5     43        5   336
##     PSP           192      37         29    135       60  1213
##     PSV            83       5          3     23        7   413
##     SAT            17      22          7     16       18   173
##     SCD             1       0          0      0        1     6
##     SNES           50      10          9     49       15   239
##     TG16            0       1          0      0        0     2
##     Wii            35      66         87    261       25  1325
##     WiiU            6      10          1      8        3   143
##     WS              4       0          0      0        2     6
##     X360           76     203         40    220       28  1265
##     XB             23     132         24    170       21   824
##     XOne           13      33          3     36        3   213
##     Sum          1488    1310        867   2346      681 16598
myTable
##         Genre
## Platform Action Adventure Fighting Misc Platform Puzzle Racing
##     2600     61         2        2    5        9     11      6
##     3DO       0         1        0    0        0      1      0
##     3DS     182        37       14   53       28     20     11
##     DC        3        11       12    0        2      0      6
##     DS      343       240       36  393       92    238     67
##     GB        6         5        0    8       19     15      2
##     GBA     167        38       23  110      142     41     64
##     GC      101        20       42   36       73     13     63
##     GEN       3         2        5    1        7      0      1
##     GG        0         0        0    0        1      0      0
##     N64      38         4       29   18       30     12     57
##     NES      13         1        4    2       28     14      4
##     NG        0         0       11    0        0      0      0
##     PC      165        65        6   24       11     25     60
##     PCFX      0         0        0    0        0      0      0
##     PS      157        69      108   76       64     32    145
##     PS2     348       196      150  222      103     18    216
##     PS3     380        74       76  124       37      3     92
##     PS4     122        19       17   15       11      1     17
##     PSP     222       213       74  106       36     44     65
##     PSV     142        86       16   24       10      3     11
##     SAT       3        26       31   15        5      5      8
##     SCD       0         0        0    2        1      0      1
##     SNES     12         4       25   17       26     13      9
##     TG16      0         1        0    0        0      0      0
##     Wii     238        84       42  280       58     55     94
##     WiiU     63         3        5   21       16      4      3
##     WS        0         0        0    0        0      0      0
##     X360    324        47       65  126       24      7    105
##     XB      155        26       48   46       49      7    123
##     XOne     68        12        7   15        4      0     19
##         Genre
## Platform Role-Playing Shooter Simulation Sports Strategy
##     2600            0      24          1     12        0
##     3DO             0       0          1      0        0
##     3DS            86       7         30     26       15
##     DC              4       3          1     10        0
##     DS            200      42        285    148       79
##     GB             21       1          5      9        7
##     GBA            73      40         18     88       18
##     GC             27      48         12    110       11
##     GEN             3       1          0      3        1
##     GG              0       0          0      0        0
##     N64             8      24         10     80        9
##     NES            11       7          0     14        0
##     NG              0       0          0      1        0
##     PC            104     148        115     49      188
##     PCFX            1       0          0      0        0
##     PS             97      96         60    222       70
##     PS2           187     160         90    400       71
##     PS3           119     156         31    213       24
##     PS4            47      34          5     43        5
##     PSP           192      37         29    135       60
##     PSV            83       5          3     23        7
##     SAT            17      22          7     16       18
##     SCD             1       0          0      0        1
##     SNES           50      10          9     49       15
##     TG16            0       1          0      0        0
##     Wii            35      66         87    261       25
##     WiiU            6      10          1      8        3
##     WS              4       0          0      0        2
##     X360           76     203         40    220       28
##     XB             23     132         24    170       21
##     XOne           13      33          3     36        3
prop.table(myTable,1)
##         Genre
## Platform      Action   Adventure    Fighting        Misc    Platform
##     2600 0.458646617 0.015037594 0.015037594 0.037593985 0.067669173
##     3DO  0.000000000 0.333333333 0.000000000 0.000000000 0.000000000
##     3DS  0.357563851 0.072691552 0.027504912 0.104125737 0.055009823
##     DC   0.057692308 0.211538462 0.230769231 0.000000000 0.038461538
##     DS   0.158576052 0.110957004 0.016643551 0.181692094 0.042533518
##     GB   0.061224490 0.051020408 0.000000000 0.081632653 0.193877551
##     GBA  0.203163017 0.046228710 0.027980535 0.133819951 0.172749392
##     GC   0.181654676 0.035971223 0.075539568 0.064748201 0.131294964
##     GEN  0.111111111 0.074074074 0.185185185 0.037037037 0.259259259
##     GG   0.000000000 0.000000000 0.000000000 0.000000000 1.000000000
##     N64  0.119122257 0.012539185 0.090909091 0.056426332 0.094043887
##     NES  0.132653061 0.010204082 0.040816327 0.020408163 0.285714286
##     NG   0.000000000 0.000000000 0.916666667 0.000000000 0.000000000
##     PC   0.171875000 0.067708333 0.006250000 0.025000000 0.011458333
##     PCFX 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##     PS   0.131270903 0.057692308 0.090301003 0.063545151 0.053511706
##     PS2  0.161036557 0.090698751 0.069412309 0.102730217 0.047663119
##     PS3  0.285929270 0.055680963 0.057185854 0.093303236 0.027840482
##     PS4  0.363095238 0.056547619 0.050595238 0.044642857 0.032738095
##     PSP  0.183017312 0.175597692 0.061005771 0.087386645 0.029678483
##     PSV  0.343825666 0.208232446 0.038740920 0.058111380 0.024213075
##     SAT  0.017341040 0.150289017 0.179190751 0.086705202 0.028901734
##     SCD  0.000000000 0.000000000 0.000000000 0.333333333 0.166666667
##     SNES 0.050209205 0.016736402 0.104602510 0.071129707 0.108786611
##     TG16 0.000000000 0.500000000 0.000000000 0.000000000 0.000000000
##     Wii  0.179622642 0.063396226 0.031698113 0.211320755 0.043773585
##     WiiU 0.440559441 0.020979021 0.034965035 0.146853147 0.111888112
##     WS   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##     X360 0.256126482 0.037154150 0.051383399 0.099604743 0.018972332
##     XB   0.188106796 0.031553398 0.058252427 0.055825243 0.059466019
##     XOne 0.319248826 0.056338028 0.032863850 0.070422535 0.018779343
##         Genre
## Platform      Puzzle      Racing Role-Playing     Shooter  Simulation
##     2600 0.082706767 0.045112782  0.000000000 0.180451128 0.007518797
##     3DO  0.333333333 0.000000000  0.000000000 0.000000000 0.333333333
##     3DS  0.039292731 0.021611002  0.168958743 0.013752456 0.058939096
##     DC   0.000000000 0.115384615  0.076923077 0.057692308 0.019230769
##     DS   0.110032362 0.030975497  0.092464170 0.019417476 0.131761442
##     GB   0.153061224 0.020408163  0.214285714 0.010204082 0.051020408
##     GBA  0.049878345 0.077858881  0.088807786 0.048661800 0.021897810
##     GC   0.023381295 0.113309353  0.048561151 0.086330935 0.021582734
##     GEN  0.000000000 0.037037037  0.111111111 0.037037037 0.000000000
##     GG   0.000000000 0.000000000  0.000000000 0.000000000 0.000000000
##     N64  0.037617555 0.178683386  0.025078370 0.075235110 0.031347962
##     NES  0.142857143 0.040816327  0.112244898 0.071428571 0.000000000
##     NG   0.000000000 0.000000000  0.000000000 0.000000000 0.000000000
##     PC   0.026041667 0.062500000  0.108333333 0.154166667 0.119791667
##     PCFX 0.000000000 0.000000000  1.000000000 0.000000000 0.000000000
##     PS   0.026755853 0.121237458  0.081103679 0.080267559 0.050167224
##     PS2  0.008329477 0.099953725  0.086534012 0.074039796 0.041647385
##     PS3  0.002257336 0.069224981  0.089541008 0.117381490 0.023325809
##     PS4  0.002976190 0.050595238  0.139880952 0.101190476 0.014880952
##     PSP  0.036273702 0.053586150  0.158285243 0.030502885 0.023907667
##     PSV  0.007263923 0.026634383  0.200968523 0.012106538 0.007263923
##     SAT  0.028901734 0.046242775  0.098265896 0.127167630 0.040462428
##     SCD  0.000000000 0.166666667  0.166666667 0.000000000 0.000000000
##     SNES 0.054393305 0.037656904  0.209205021 0.041841004 0.037656904
##     TG16 0.000000000 0.000000000  0.000000000 0.500000000 0.000000000
##     Wii  0.041509434 0.070943396  0.026415094 0.049811321 0.065660377
##     WiiU 0.027972028 0.020979021  0.041958042 0.069930070 0.006993007
##     WS   0.000000000 0.000000000  0.666666667 0.000000000 0.000000000
##     X360 0.005533597 0.083003953  0.060079051 0.160474308 0.031620553
##     XB   0.008495146 0.149271845  0.027912621 0.160194175 0.029126214
##     XOne 0.000000000 0.089201878  0.061032864 0.154929577 0.014084507
##         Genre
## Platform      Sports    Strategy
##     2600 0.090225564 0.000000000
##     3DO  0.000000000 0.000000000
##     3DS  0.051080550 0.029469548
##     DC   0.192307692 0.000000000
##     DS   0.068423486 0.036523347
##     GB   0.091836735 0.071428571
##     GBA  0.107055961 0.021897810
##     GC   0.197841727 0.019784173
##     GEN  0.111111111 0.037037037
##     GG   0.000000000 0.000000000
##     N64  0.250783699 0.028213166
##     NES  0.142857143 0.000000000
##     NG   0.083333333 0.000000000
##     PC   0.051041667 0.195833333
##     PCFX 0.000000000 0.000000000
##     PS   0.185618729 0.058528428
##     PS2  0.185099491 0.032855160
##     PS3  0.160270880 0.018058691
##     PS4  0.127976190 0.014880952
##     PSP  0.111294312 0.049464138
##     PSV  0.055690073 0.016949153
##     SAT  0.092485549 0.104046243
##     SCD  0.000000000 0.166666667
##     SNES 0.205020921 0.062761506
##     TG16 0.000000000 0.000000000
##     Wii  0.196981132 0.018867925
##     WiiU 0.055944056 0.020979021
##     WS   0.000000000 0.333333333
##     X360 0.173913043 0.022134387
##     XB   0.206310680 0.025485437
##     XOne 0.169014085 0.014084507
prop.table(myTable,2)
##         Genre
## Platform       Action    Adventure     Fighting         Misc     Platform
##     2600 0.0183956574 0.0015552100 0.0023584906 0.0028752156 0.0101580135
##     3DO  0.0000000000 0.0007776050 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0548854041 0.0287713841 0.0165094340 0.0304772858 0.0316027088
##     DC   0.0009047045 0.0085536547 0.0141509434 0.0000000000 0.0022573363
##     DS   0.1034378770 0.1866251944 0.0424528302 0.2259919494 0.1038374718
##     GB   0.0018094089 0.0038880249 0.0000000000 0.0046003450 0.0214446953
##     GBA  0.0503618818 0.0295489891 0.0271226415 0.0632547441 0.1602708804
##     GC   0.0304583836 0.0155520995 0.0495283019 0.0207015526 0.0823927765
##     GEN  0.0009047045 0.0015552100 0.0058962264 0.0005750431 0.0079006772
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0011286682
##     N64  0.0114595899 0.0031104199 0.0341981132 0.0103507763 0.0338600451
##     NES  0.0039203860 0.0007776050 0.0047169811 0.0011500863 0.0316027088
##     NG   0.0000000000 0.0000000000 0.0129716981 0.0000000000 0.0000000000
##     PC   0.0497587455 0.0505443235 0.0070754717 0.0138010351 0.0124153499
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0473462002 0.0536547434 0.1273584906 0.0437032777 0.0722347630
##     PS2  0.1049457177 0.1524105754 0.1768867925 0.1276595745 0.1162528217
##     PS3  0.1145958987 0.0575427683 0.0896226415 0.0713053479 0.0417607223
##     PS4  0.0367913148 0.0147744946 0.0200471698 0.0086256469 0.0124153499
##     PSP  0.0669481303 0.1656298600 0.0872641509 0.0609545716 0.0406320542
##     PSV  0.0428226779 0.0668740280 0.0188679245 0.0138010351 0.0112866817
##     SAT  0.0009047045 0.0202177294 0.0365566038 0.0086256469 0.0056433409
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0011500863 0.0011286682
##     SNES 0.0036188179 0.0031104199 0.0294811321 0.0097757332 0.0293453725
##     TG16 0.0000000000 0.0007776050 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0717732207 0.0653188180 0.0495283019 0.1610120759 0.0654627540
##     WiiU 0.0189987937 0.0023328149 0.0058962264 0.0120759057 0.0180586907
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0977080820 0.0365474339 0.0766509434 0.0724554342 0.0270880361
##     XB   0.0467430639 0.0202177294 0.0566037736 0.0264519839 0.0553047404
##     XOne 0.0205066345 0.0093312597 0.0082547170 0.0086256469 0.0045146727
##         Genre
## Platform       Puzzle       Racing Role-Playing      Shooter   Simulation
##     2600 0.0189003436 0.0048038431 0.0000000000 0.0183206107 0.0011534025
##     3DO  0.0017182131 0.0000000000 0.0000000000 0.0000000000 0.0011534025
##     3DS  0.0343642612 0.0088070456 0.0577956989 0.0053435115 0.0346020761
##     DC   0.0000000000 0.0048038431 0.0026881720 0.0022900763 0.0011534025
##     DS   0.4089347079 0.0536429143 0.1344086022 0.0320610687 0.3287197232
##     GB   0.0257731959 0.0016012810 0.0141129032 0.0007633588 0.0057670127
##     GBA  0.0704467354 0.0512409928 0.0490591398 0.0305343511 0.0207612457
##     GC   0.0223367698 0.0504403523 0.0181451613 0.0366412214 0.0138408304
##     GEN  0.0000000000 0.0008006405 0.0020161290 0.0007633588 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0206185567 0.0456365092 0.0053763441 0.0183206107 0.0115340254
##     NES  0.0240549828 0.0032025620 0.0073924731 0.0053435115 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0429553265 0.0480384307 0.0698924731 0.1129770992 0.1326412918
##     PCFX 0.0000000000 0.0000000000 0.0006720430 0.0000000000 0.0000000000
##     PS   0.0549828179 0.1160928743 0.0651881720 0.0732824427 0.0692041522
##     PS2  0.0309278351 0.1729383507 0.1256720430 0.1221374046 0.1038062284
##     PS3  0.0051546392 0.0736589271 0.0799731183 0.1190839695 0.0357554787
##     PS4  0.0017182131 0.0136108887 0.0315860215 0.0259541985 0.0057670127
##     PSP  0.0756013746 0.0520416333 0.1290322581 0.0282442748 0.0334486736
##     PSV  0.0051546392 0.0088070456 0.0557795699 0.0038167939 0.0034602076
##     SAT  0.0085910653 0.0064051241 0.0114247312 0.0167938931 0.0080738178
##     SCD  0.0000000000 0.0008006405 0.0006720430 0.0000000000 0.0000000000
##     SNES 0.0223367698 0.0072057646 0.0336021505 0.0076335878 0.0103806228
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0007633588 0.0000000000
##     Wii  0.0945017182 0.0752602082 0.0235215054 0.0503816794 0.1003460208
##     WiiU 0.0068728522 0.0024019215 0.0040322581 0.0076335878 0.0011534025
##     WS   0.0000000000 0.0000000000 0.0026881720 0.0000000000 0.0000000000
##     X360 0.0120274914 0.0840672538 0.0510752688 0.1549618321 0.0461361015
##     XB   0.0120274914 0.0984787830 0.0154569892 0.1007633588 0.0276816609
##     XOne 0.0000000000 0.0152121697 0.0087365591 0.0251908397 0.0034602076
##         Genre
## Platform       Sports     Strategy
##     2600 0.0051150895 0.0000000000
##     3DO  0.0000000000 0.0000000000
##     3DS  0.0110826939 0.0220264317
##     DC   0.0042625746 0.0000000000
##     DS   0.0630861040 0.1160058737
##     GB   0.0038363171 0.0102790015
##     GBA  0.0375106564 0.0264317181
##     GC   0.0468883205 0.0161527166
##     GEN  0.0012787724 0.0014684288
##     GG   0.0000000000 0.0000000000
##     N64  0.0341005968 0.0132158590
##     NES  0.0059676044 0.0000000000
##     NG   0.0004262575 0.0000000000
##     PC   0.0208866155 0.2760646109
##     PCFX 0.0000000000 0.0000000000
##     PS   0.0946291560 0.1027900147
##     PS2  0.1705029838 0.1042584435
##     PS3  0.0907928389 0.0352422907
##     PS4  0.0183290708 0.0073421439
##     PSP  0.0575447570 0.0881057269
##     PSV  0.0098039216 0.0102790015
##     SAT  0.0068201194 0.0264317181
##     SCD  0.0000000000 0.0014684288
##     SNES 0.0208866155 0.0220264317
##     TG16 0.0000000000 0.0000000000
##     Wii  0.1112531969 0.0367107195
##     WiiU 0.0034100597 0.0044052863
##     WS   0.0000000000 0.0029368576
##     X360 0.0937766411 0.0411160059
##     XB   0.0724637681 0.0308370044
##     XOne 0.0153452685 0.0044052863

The action games are more popular on almost all consoles, but sports games are also played on the PS and the XBOX360. Misc. games on DS and racing games on PS2 are also more in numbers.

myTable <-xtabs(~Platform+Publisher)
addmargins(myTable)
##         Publisher
## Platform 10TACLE Studios 1C Company 20th Century Fox Video Games 2D Boy
##     2600               0          0                            5      0
##     3DO                0          0                            0      0
##     3DS                0          0                            0      0
##     DC                 0          0                            0      0
##     DS                 2          0                            0      0
##     GB                 0          0                            0      0
##     GBA                0          0                            0      0
##     GC                 0          0                            0      0
##     GEN                0          0                            0      0
##     GG                 0          0                            0      0
##     N64                0          0                            0      0
##     NES                0          0                            0      0
##     NG                 0          0                            0      0
##     PC                 0          3                            0      1
##     PCFX               0          0                            0      0
##     PS                 0          0                            0      0
##     PS2                1          0                            0      0
##     PS3                0          0                            0      0
##     PS4                0          0                            0      0
##     PSP                0          0                            0      0
##     PSV                0          0                            0      0
##     SAT                0          0                            0      0
##     SCD                0          0                            0      0
##     SNES               0          0                            0      0
##     TG16               0          0                            0      0
##     Wii                0          0                            0      0
##     WiiU               0          0                            0      0
##     WS                 0          0                            0      0
##     X360               0          0                            0      0
##     XB                 0          0                            0      0
##     XOne               0          0                            0      0
##     Sum                3          3                            5      1
##         Publisher
## Platform   3DO 49Games 505 Games   5pb 7G//AMES 989 Sports 989 Studios
##     2600     0       0         0     0        0          0           0
##     3DO      0       0         0     0        0          0           0
##     3DS      0       0         3     1        0          0           0
##     DC       0       0         0     0        0          0           0
##     DS       0       0        65     0        2          0           0
##     GB       0       0         0     0        0          0           0
##     GBA      0       0         0     0        0          0           0
##     GC       1       0         0     0        0          0           0
##     GEN      0       0         0     0        0          0           0
##     GG       0       0         0     0        0          0           0
##     N64      5       0         0     0        0          0           0
##     NES      0       0         0     0        0          0           0
##     NG       0       0         0     0        0          0           0
##     PC       0       0         4     0        0          0           0
##     PCFX     0       0         0     0        0          0           0
##     PS      16       0         0     0        0          1          14
##     PS2     13       0        22     7        0          0           0
##     PS3      0       0        15    10        0          0           0
##     PS4      0       0         6     1        0          0           0
##     PSP      0       0        10    12        0          0           0
##     PSV      0       0         1    14        0          0           0
##     SAT      0       0         0     0        0          0           0
##     SCD      0       0         0     0        0          0           0
##     SNES     0       0         0     0        0          0           0
##     TG16     0       0         0     0        0          0           0
##     Wii      0       0        30     0        2          0           0
##     WiiU     0       0         2     0        0          0           0
##     WS       0       0         0     0        0          0           0
##     X360     0       1        27    15        0          0           0
##     XB       1       0         1     0        0          0           0
##     XOne     0       0         6     1        0          0           0
##     Sum     36       1       192    61        4          1          14
##         Publisher
## Platform Abylight Acclaim Entertainment Accolade Ackkstudios Acquire
##     2600        0                     0        0           0       0
##     3DO         0                     0        0           0       0
##     3DS         0                     0        0           1       1
##     DC          0                     1        0           0       0
##     DS          0                     0        0           1       0
##     GB          0                     0        0           0       0
##     GBA         0                    10        0           0       0
##     GC          0                    24        0           0       0
##     GEN         0                     2        0           0       0
##     GG          0                     0        0           0       0
##     N64         0                    31        0           0       0
##     NES         0                     0        0           0       0
##     NG          0                     0        0           0       0
##     PC          0                     1        0           0       0
##     PCFX        0                     0        0           0       0
##     PS          0                    54        3           0       0
##     PS2         0                    33        0           0       1
##     PS3         1                     0        0           3       3
##     PS4         0                     0        0           0       1
##     PSP         0                     0        0           3       7
##     PSV         0                     0        0           0       0
##     SAT         0                     3        0           0       0
##     SCD         0                     0        0           0       0
##     SNES        0                     4        0           0       0
##     TG16        0                     0        0           0       0
##     Wii         0                     0        0           2       0
##     WiiU        0                     0        0           0       0
##     WS          0                     0        0           0       0
##     X360        0                     0        0           0       0
##     XB          0                    21        0           0       0
##     XOne        0                     0        0           0       0
##     Sum         1                   184        3          10      13
##         Publisher
## Platform Activision Activision Blizzard Activision Value Adeline Software
##     2600         28                   0                0                0
##     3DO           0                   0                0                0
##     3DS          27                   0                0                0
##     DC            1                   0                0                0
##     DS          111                   0                0                0
##     GB            1                   0                0                0
##     GBA          49                   0                1                0
##     GC           44                   0                1                0
##     GEN           0                   0                0                0
##     GG            0                   0                0                0
##     N64          13                   0                0                0
##     NES           0                   0                0                0
##     NG            0                   0                0                0
##     PC           56                   1                0                0
##     PCFX          0                   0                0                0
##     PS           32                   0                1                1
##     PS2         103                   0                6                0
##     PS3         108                   0                4                0
##     PS4          21                   0                0                0
##     PSP          34                   0                2                0
##     PSV           3                   0                0                0
##     SAT           0                   0                0                0
##     SCD           0                   0                0                0
##     SNES          0                   0                0                0
##     TG16          0                   0                0                0
##     Wii         111                   0                5                0
##     WiiU         18                   0                0                0
##     WS            0                   0                0                0
##     X360        134                   0                7                0
##     XB           61                   0                2                0
##     XOne         20                   0                0                0
##     Sum         975                   1               29                1
##         Publisher
## Platform Aerosoft Agatsuma Entertainment Agetec Aksys Games
##     2600        0                      0      0           0
##     3DO         0                      0      0           0
##     3DS         0                      2      0           1
##     DC          0                      0      0           0
##     DS          0                      0      0           1
##     GB          0                      0      0           0
##     GBA         0                      1      0           0
##     GC          0                      0      0           0
##     GEN         0                      0      0           0
##     GG          0                      0      0           0
##     N64         0                      0      0           0
##     NES         0                      0      0           0
##     NG          0                      0      0           0
##     PC          2                      0      0           0
##     PCFX        0                      0      0           0
##     PS          0                      0      3           0
##     PS2         0                      0      4           0
##     PS3         0                      0      0           1
##     PS4         0                      0      0           1
##     PSP         0                      0      1           0
##     PSV         0                      0      0           4
##     SAT         0                      0      0           0
##     SCD         0                      0      0           0
##     SNES        0                      0      0           0
##     TG16        0                      0      0           0
##     Wii         0                      0      0           0
##     WiiU        0                      0      0           0
##     WS          0                      0      0           0
##     X360        0                      0      0           0
##     XB          0                      0      0           0
##     XOne        0                      0      0           0
##     Sum         2                      3      8           8
##         Publisher
## Platform Alawar Entertainment Alchemist Alternative Software Altron Alvion
##     2600                    0         0                    0      0      0
##     3DO                     0         0                    0      0      0
##     3DS                     0         5                    0      0      0
##     DC                      0         0                    0      0      0
##     DS                      0         6                    0      0      2
##     GB                      0         0                    0      0      0
##     GBA                     0         0                    0      1      0
##     GC                      0         0                    0      0      0
##     GEN                     0         0                    0      0      0
##     GG                      0         0                    0      0      0
##     N64                     0         0                    0      0      0
##     NES                     0         0                    0      0      0
##     NG                      0         0                    0      0      0
##     PC                      2         0                    1      0      0
##     PCFX                    0         0                    0      0      0
##     PS                      0         0                    0      0      0
##     PS2                     0        13                    0      0      0
##     PS3                     0         2                    1      0      0
##     PS4                     0         0                    1      0      0
##     PSP                     0        15                    0      0      0
##     PSV                     0         0                    0      0      0
##     SAT                     0         0                    0      0      0
##     SCD                     0         0                    0      0      0
##     SNES                    0         0                    0      0      0
##     TG16                    0         0                    0      0      0
##     Wii                     0         0                    1      0      0
##     WiiU                    0         0                    0      0      0
##     WS                      0         0                    0      0      0
##     X360                    0         2                    1      0      0
##     XB                      0         0                    0      0      0
##     XOne                    0         0                    1      0      0
##     Sum                     2        43                    6      1      2
##         Publisher
## Platform American Softworks Angel Studios Answer Software AQ Interactive
##     2600                  0             0               1              0
##     3DO                   0             0               0              0
##     3DS                   0             0               0              0
##     DC                    0             0               0              0
##     DS                    0             0               0              2
##     GB                    0             0               0              0
##     GBA                   0             0               0              0
##     GC                    0             0               0              0
##     GEN                   0             0               0              0
##     GG                    0             0               0              0
##     N64                   0             0               0              0
##     NES                   0             0               0              0
##     NG                    0             0               0              0
##     PC                    0             0               0              0
##     PCFX                  0             0               0              0
##     PS                    1             0               0              0
##     PS2                   0             0               0              2
##     PS3                   0             0               0              0
##     PS4                   0             0               0              0
##     PSP                   0             0               0              1
##     PSV                   0             0               0              0
##     SAT                   0             0               0              0
##     SCD                   0             0               0              0
##     SNES                  0             3               0              0
##     TG16                  0             0               0              0
##     Wii                   0             0               0              0
##     WiiU                  0             0               0              0
##     WS                    0             0               0              0
##     X360                  0             0               0              0
##     XB                    0             0               0              0
##     XOne                  0             0               0              0
##     Sum                   1             3               1              5
##         Publisher
## Platform Aqua Plus Aques Arc System Works Arena Entertainment  Aria Arika
##     2600         0     0                0                   0     0     0
##     3DO          0     0                0                   0     0     0
##     3DS          0     0                4                   0     0     0
##     DC           0     0                0                   0     0     0
##     DS           0     0                9                   0     0     1
##     GB           0     0                0                   0     0     0
##     GBA          0     0                0                   0     0     0
##     GC           0     0                0                   0     0     0
##     GEN          0     0                0                   2     0     0
##     GG           0     0                0                   0     0     0
##     N64          0     0                0                   0     0     0
##     NES          0     0                0                   0     0     0
##     NG           0     0                0                   0     0     0
##     PC           0     0                0                   0     0     0
##     PCFX         0     0                0                   0     0     0
##     PS           1     1                0                   0     0     0
##     PS2          2     0                0                   0     1     2
##     PS3          8     0                5                   0     0     0
##     PS4          2     0                1                   0     0     0
##     PSP          6     0                2                   0     0     0
##     PSV          4     0                5                   0     0     0
##     SAT          0     0                0                   0     0     0
##     SCD          0     0                0                   0     0     0
##     SNES         0     0                0                   0     0     0
##     TG16         0     0                0                   0     0     0
##     Wii          0     0                0                   0     0     0
##     WiiU         0     0                0                   0     0     0
##     WS           0     0                0                   0     0     0
##     X360         0     0                0                   0     0     0
##     XB           0     0                0                   0     0     0
##     XOne         0     0                0                   0     0     0
##     Sum         23     1               26                   2     1     3
##         Publisher
## Platform ArtDink Aruze Corp ASC Games Ascaron Entertainment
##     2600       0          0         0                     0
##     3DO        0          0         0                     0
##     3DS        1          0         0                     0
##     DC         0          0         0                     0
##     DS         1          0         0                     0
##     GB         0          0         0                     0
##     GBA        0          0         0                     0
##     GC         0          0         0                     0
##     GEN        0          0         0                     0
##     GG         0          0         0                     0
##     N64        0          0         0                     0
##     NES        0          0         0                     0
##     NG         0          0         0                     0
##     PC         0          0         0                     1
##     PCFX       0          0         0                     0
##     PS         4          3         3                     0
##     PS2        2          0         0                     0
##     PS3        0          0         0                     0
##     PS4        0          0         0                     0
##     PSP        1          0         0                     0
##     PSV        0          0         0                     0
##     SAT        0          0         0                     0
##     SCD        0          0         0                     0
##     SNES       0          0         0                     0
##     TG16       0          0         0                     0
##     Wii        0          0         0                     0
##     WiiU       0          0         0                     0
##     WS         0          0         0                     0
##     X360       0          0         0                     0
##     XB         0          0         0                     0
##     XOne       0          0         0                     0
##     Sum        9          3         3                     1
##         Publisher
## Platform Ascaron Entertainment GmbH ASCII Entertainment ASCII Media Works
##     2600                          0                   0                 0
##     3DO                           0                   0                 0
##     3DS                           0                   0                 0
##     DC                            0                   0                 0
##     DS                            0                   0                 4
##     GB                            0                   1                 0
##     GBA                           0                   0                 0
##     GC                            0                   0                 0
##     GEN                           0                   0                 0
##     GG                            0                   0                 0
##     N64                           0                   1                 0
##     NES                           0                   0                 0
##     NG                            0                   0                 0
##     PC                            3                   0                 0
##     PCFX                          0                   0                 0
##     PS                            0                   8                 0
##     PS2                           0                   1                 1
##     PS3                           0                   0                 0
##     PS4                           0                   0                 0
##     PSP                           0                   0                 3
##     PSV                           0                   0                 1
##     SAT                           0                   1                 0
##     SCD                           0                   0                 0
##     SNES                          0                   8                 0
##     TG16                          0                   0                 0
##     Wii                           0                   0                 0
##     WiiU                          0                   0                 0
##     WS                            0                   0                 0
##     X360                          0                   0                 0
##     XB                            0                   0                 0
##     XOne                          0                   0                 0
##     Sum                           3                  20                 9
##         Publisher
## Platform Asgard   ASK Asmik Ace Entertainment Asmik Corp Aspyr Astragon
##     2600      0     0                       0          0     0        0
##     3DO       0     0                       0          0     0        0
##     3DS       0     0                       0          0     0        0
##     DC        0     0                       0          0     0        0
##     DS        0     0                       0          0     4        4
##     GB        0     0                       0          0     0        0
##     GBA       0     0                       0          0     1        0
##     GC        0     0                       0          0     0        0
##     GEN       0     0                       0          0     0        0
##     GG        0     0                       0          0     0        0
##     N64       0     0                       0          0     0        0
##     NES       0     0                       0          0     0        0
##     NG        0     0                       0          0     0        0
##     PC        0     0                       0          0     2        2
##     PCFX      0     0                       0          0     0        0
##     PS        0     0                       1          0     0        0
##     PS2       0     0                       2          0     0        0
##     PS3       0     0                       0          0     0        0
##     PS4       0     0                       0          0     0        0
##     PSP       7     0                       0          0     0        0
##     PSV       1     0                       0          0     0        0
##     SAT       0     1                       0          0     0        0
##     SCD       0     0                       0          0     0        0
##     SNES      0     0                       0          2     0        0
##     TG16      0     0                       0          0     0        0
##     Wii       0     0                       0          0     0        0
##     WiiU      0     0                       0          0     0        0
##     WS        0     0                       0          0     0        0
##     X360      0     0                       0          0     1        0
##     XB        0     0                       0          0     0        0
##     XOne      0     0                       0          0     0        0
##     Sum       8     1                       3          2     8        6
##         Publisher
## Platform Asylum Entertainment Atari Athena Atlus Avalon Interactive
##     2600                    0    54      0     0                  1
##     3DO                     0     0      0     0                  0
##     3DS                     1     1      0    10                  0
##     DC                      0     0      0     0                  0
##     DS                      3    36      0     9                  0
##     GB                      0     0      0     0                  0
##     GBA                     0    44      0     4                  0
##     GC                      0    18      0     1                  0
##     GEN                     0     0      0     0                  0
##     GG                      0     0      0     0                  0
##     N64                     0     0      1     2                  0
##     NES                     0     0      0     0                  0
##     NG                      0     0      0     0                  0
##     PC                      0    25      0     0                  0
##     PCFX                    0     0      0     0                  0
##     PS                      0    11      0     8                  1
##     PS2                     0    70      1     6                  2
##     PS3                     0     6      0     2                  0
##     PS4                     0     0      0     1                  0
##     PSP                     0    17      0    10                  0
##     PSV                     0     0      0     2                  0
##     SAT                     0     0      0     5                  0
##     SCD                     0     0      0     0                  0
##     SNES                    0     0      0     2                  0
##     TG16                    0     0      0     0                  0
##     Wii                     2    24      0     0                  0
##     WiiU                    0     0      0     1                  0
##     WS                      0     0      0     0                  0
##     X360                    0    20      0     2                  0
##     XB                      0    37      0     2                  2
##     XOne                    0     0      0     0                  0
##     Sum                     6   363      2    67                  6
##         Publisher
## Platform Avanquest Avanquest Software Axela BAM! Entertainment Banpresto
##     2600         0                  0     0                  0         0
##     3DO          0                  0     0                  0         0
##     3DS          0                  2     0                  0         0
##     DC           0                  0     0                  0         0
##     DS          16                  3     0                  0         6
##     GB           0                  0     0                  0         1
##     GBA          0                  0     0                 14        11
##     GC           0                  0     0                  6         0
##     GEN          0                  0     0                  0         0
##     GG           0                  0     0                  0         0
##     N64          0                  0     0                  1         2
##     NES          0                  0     0                  0         0
##     NG           0                  0     0                  0         0
##     PC           4                  2     0                  0         0
##     PCFX         0                  0     0                  0         0
##     PS           0                  0     1                  2        10
##     PS2          0                  0     0                  8        21
##     PS3          0                  1     0                  0         0
##     PS4          2                  0     0                  0         0
##     PSP          0                  0     0                  0         5
##     PSV          0                  0     0                  0         0
##     SAT          0                  0     0                  0         2
##     SCD          0                  0     0                  0         0
##     SNES         0                  0     0                  0        13
##     TG16         0                  0     0                  0         0
##     Wii          4                  0     0                  0         0
##     WiiU         0                  0     0                  0         0
##     WS           0                  0     0                  0         0
##     X360         0                  1     0                  0         2
##     XB           0                  0     0                  4         0
##     XOne         0                  0     0                  0         0
##     Sum         26                  9     1                 35        73
##         Publisher
## Platform Benesse Berkeley Bethesda Softworks Big Ben Interactive
##     2600       0        0                  0                   0
##     3DO        0        0                  0                   0
##     3DS        0        0                  0                   1
##     DC         0        0                  0                   0
##     DS         6        0                  0                   2
##     GB         0        0                  0                   0
##     GBA        0        0                  0                   0
##     GC         0        0                  0                   0
##     GEN        0        0                  0                   0
##     GG         0        0                  0                   0
##     N64        0        0                  0                   0
##     NES        0        0                  0                   0
##     NG         0        0                  0                   0
##     PC         0        0                 15                   0
##     PCFX       0        0                  0                   0
##     PS         0        1                  0                   0
##     PS2        0        0                  6                   1
##     PS3        0        0                 13                   0
##     PS4        0        0                  7                   0
##     PSP        0        0                  0                   0
##     PSV        0        0                  0                   0
##     SAT        0        0                  0                   0
##     SCD        0        0                  0                   0
##     SNES       0        0                  0                   0
##     TG16       0        0                  0                   0
##     Wii        0        0                  4                   3
##     WiiU       0        0                  0                   0
##     WS         0        0                  0                   0
##     X360       0        0                 15                   0
##     XB         0        0                  4                   0
##     XOne       0        0                  7                   0
##     Sum        6        1                 71                   7
##         Publisher
## Platform Big Fish Games Bigben Interactive bitComposer Games
##     2600              0                  0                 0
##     3DO               0                  0                 0
##     3DS               0                  0                 0
##     DC                0                  0                 0
##     DS                0                  0                 0
##     GB                0                  0                 0
##     GBA               0                  0                 0
##     GC                0                  0                 0
##     GEN               0                  0                 0
##     GG                0                  0                 0
##     N64               0                  0                 0
##     NES               0                  0                 0
##     NG                0                  0                 0
##     PC                2                  0                 3
##     PCFX              0                  0                 0
##     PS                0                  0                 0
##     PS2               0                  0                 0
##     PS3               0                  3                 1
##     PS4               0                  3                 0
##     PSP               0                  0                 0
##     PSV               0                  2                 0
##     SAT               0                  0                 0
##     SCD               0                  0                 0
##     SNES              0                  0                 0
##     TG16              0                  0                 0
##     Wii               0                  0                 0
##     WiiU              0                  0                 0
##     WS                0                  0                 0
##     X360              0                  3                 1
##     XB                0                  0                 0
##     XOne              0                  2                 0
##     Sum               2                 13                 5
##         Publisher
## Platform Black Bean Games Black Label Games Blast! Entertainment Ltd
##     2600                0                 0                        0
##     3DO                 0                 0                        0
##     3DS                 0                 0                        0
##     DC                  0                 0                        0
##     DS                  2                 0                        3
##     GB                  0                 0                        0
##     GBA                 0                 0                        0
##     GC                  0                 0                        0
##     GEN                 0                 0                        0
##     GG                  0                 0                        0
##     N64                 0                 0                        0
##     NES                 0                 0                        0
##     NG                  0                 0                        0
##     PC                  2                 0                        0
##     PCFX                0                 0                        0
##     PS                  0                 0                        0
##     PS2                 3                 1                        1
##     PS3                10                 0                        0
##     PS4                 0                 0                        0
##     PSP                 2                 0                        0
##     PSV                 0                 0                        0
##     SAT                 0                 0                        0
##     SCD                 0                 0                        0
##     SNES                0                 0                        0
##     TG16                0                 0                        0
##     Wii                 6                 0                        2
##     WiiU                0                 0                        0
##     WS                  0                 0                        0
##     X360                9                 0                        0
##     XB                  0                 0                        0
##     XOne                0                 0                        0
##     Sum                34                 1                        6
##         Publisher
## Platform Blue Byte BMG Interactive Entertainment Bohemia Interactive  Bomb
##     2600         0                             0                   0     1
##     3DO          0                             0                   0     0
##     3DS          0                             0                   0     0
##     DC           0                             0                   0     0
##     DS           0                             0                   0     0
##     GB           0                             0                   0     0
##     GBA          0                             0                   0     0
##     GC           0                             0                   0     0
##     GEN          0                             0                   0     0
##     GG           0                             0                   0     0
##     N64          0                             0                   0     0
##     NES          0                             0                   0     0
##     NG           0                             0                   0     0
##     PC           2                             0                   1     0
##     PCFX         0                             0                   0     0
##     PS           0                             7                   0     0
##     PS2          0                             0                   0     0
##     PS3          0                             0                   0     0
##     PS4          0                             0                   0     0
##     PSP          0                             0                   0     0
##     PSV          0                             0                   0     0
##     SAT          0                             0                   0     0
##     SCD          0                             0                   0     0
##     SNES         0                             0                   0     0
##     TG16         0                             0                   0     0
##     Wii          0                             0                   0     0
##     WiiU         0                             0                   0     0
##     WS           0                             0                   0     0
##     X360         0                             0                   0     0
##     XB           0                             0                   0     0
##     XOne         0                             0                   0     0
##     Sum          2                             7                   1     1
##         Publisher
## Platform Boost On   BPS Brash Entertainment Broccoli BushiRoad Capcom
##     2600        0     0                   0        0         0      0
##     3DO         0     0                   0        0         0      0
##     3DS         0     0                   0        0         0     15
##     DC          0     0                   0        0         0      3
##     DS          0     0                   4        2         0     25
##     GB          0     0                   0        0         0      3
##     GBA         0     0                   0        0         0     22
##     GC          0     0                   0        0         0     19
##     GEN         0     0                   0        0         0      2
##     GG          0     0                   0        0         0      0
##     N64         0     0                   0        0         0      1
##     NES         0     1                   0        0         0     12
##     NG          0     0                   0        0         0      0
##     PC          0     0                   0        0         0     16
##     PCFX        0     0                   0        0         0      0
##     PS          0     0                   0        0         0     18
##     PS2         0     0                   3        5         0     61
##     PS3         0     0                   0        0         0     42
##     PS4         0     0                   0        0         0     16
##     PSP         1     0                   0       13         1     26
##     PSV         0     0                   0        2         0      3
##     SAT         0     0                   0        0         0      9
##     SCD         0     0                   0        0         0      0
##     SNES        0     1                   0        0         0     12
##     TG16        0     0                   0        0         0      0
##     Wii         0     0                   2        0         0     18
##     WiiU        0     0                   0        0         0      2
##     WS          0     0                   0        0         0      0
##     X360        0     0                   1        0         0     35
##     XB          0     0                   0        0         0     16
##     XOne        0     0                   0        0         0      5
##     Sum         1     2                  10       22         1    381
##         Publisher
## Platform  Cave CBS Electronics   CCP CDV Software Entertainment ChunSoft
##     2600     0               1     0                          0        0
##     3DO      0               0     0                          0        0
##     3DS      0               0     0                          0        1
##     DC       0               0     0                          0        0
##     DS       1               0     0                          3        3
##     GB       0               0     0                          0        1
##     GBA      0               0     0                          0        0
##     GC       0               0     0                          0        0
##     GEN      0               0     0                          0        0
##     GG       0               0     0                          0        0
##     N64      0               0     0                          0        1
##     NES      0               0     0                          0        0
##     NG       0               0     0                          0        0
##     PC       0               0     1                          2        0
##     PCFX     0               0     0                          0        0
##     PS       0               0     0                          0        1
##     PS2      0               0     0                          0        1
##     PS3      0               0     0                          0        0
##     PS4      0               0     0                          0        0
##     PSP      0               0     0                          0        2
##     PSV      0               0     0                          0        2
##     SAT      0               0     0                          0        1
##     SCD      0               0     0                          0        0
##     SNES     0               0     0                          0        4
##     TG16     0               0     0                          0        0
##     Wii      0               0     0                          1        0
##     WiiU     0               0     0                          0        0
##     WS       0               0     0                          0        0
##     X360     9               0     0                          0        1
##     XB       0               0     0                          0        0
##     XOne     0               0     0                          0        0
##     Sum     10               1     1                          6       18
##         Publisher
## Platform City Interactive Cloud Imperium Games Corporation Coconuts Japan
##     2600                0                                0              0
##     3DO                 0                                0              0
##     3DS                 0                                0              0
##     DC                  0                                0              0
##     DS                  9                                0              0
##     GB                  0                                0              0
##     GBA                 0                                0              0
##     GC                  0                                0              0
##     GEN                 0                                0              0
##     GG                  0                                0              0
##     N64                 0                                0              0
##     NES                 0                                0              0
##     NG                  0                                0              0
##     PC                  3                                0              0
##     PCFX                0                                0              0
##     PS                  0                                0              1
##     PS2                 0                                0              0
##     PS3                 3                                1              0
##     PS4                 0                                0              0
##     PSP                 0                                0              0
##     PSV                 0                                0              0
##     SAT                 0                                0              0
##     SCD                 0                                0              0
##     SNES                0                                0              1
##     TG16                0                                0              0
##     Wii                 2                                0              0
##     WiiU                0                                0              0
##     WS                  0                                0              0
##     X360                2                                1              0
##     XB                  0                                0              0
##     XOne                0                                0              0
##     Sum                19                                2              2
##         Publisher
## Platform Codemasters Codemasters Online CokeM Interactive Coleco Comfort
##     2600           0                  0                 0      5       0
##     3DO            0                  0                 0      0       0
##     3DS            1                  0                 0      0       0
##     DC             0                  0                 0      0       0
##     DS             7                  0                 1      0       0
##     GB             0                  0                 0      0       0
##     GBA            2                  0                 0      0       0
##     GC             1                  0                 0      0       0
##     GEN            0                  0                 0      0       0
##     GG             0                  0                 0      0       0
##     N64            1                  0                 0      0       0
##     NES            0                  0                 0      0       0
##     NG             0                  0                 0      0       0
##     PC            27                  1                 0      0       0
##     PCFX           0                  0                 0      0       0
##     PS             9                  0                 0      0       0
##     PS2           17                  0                 0      0       2
##     PS3           26                  0                 0      0       0
##     PS4            3                  0                 0      0       0
##     PSP            6                  0                 0      0       4
##     PSV            1                  0                 0      0       0
##     SAT            0                  0                 0      0       0
##     SCD            0                  0                 0      0       0
##     SNES           0                  0                 0      0       0
##     TG16           0                  0                 0      0       0
##     Wii            6                  0                 0      0       0
##     WiiU           0                  0                 0      0       0
##     WS             0                  0                 0      0       0
##     X360          27                  0                 0      0       0
##     XB            15                  0                 0      0       0
##     XOne           3                  0                 0      0       0
##     Sum          152                  1                 1      5       6
##         Publisher
## Platform Commseed Compile Compile Heart Conspiracy Entertainment
##     2600        0       0             0                        0
##     3DO         0       0             0                        0
##     3DS         0       0             0                        0
##     DC          0       0             0                        0
##     DS          1       0             0                        3
##     GB          0       0             0                        0
##     GBA         0       0             0                        2
##     GC          0       0             0                        0
##     GEN         0       0             0                        0
##     GG          0       0             0                        0
##     N64         0       1             0                        0
##     NES         0       0             0                        0
##     NG          0       0             0                        0
##     PC          0       0             0                        0
##     PCFX        0       0             0                        0
##     PS          0       1             0                        1
##     PS2         0       0             0                        1
##     PS3         0       0             6                        1
##     PS4         0       0             1                        0
##     PSP         0       0             2                        1
##     PSV         0       0             8                        0
##     SAT         0       2             0                        0
##     SCD         0       0             0                        0
##     SNES        0       2             0                        0
##     TG16        0       0             0                        0
##     Wii         0       0             0                        4
##     WiiU        0       0             0                        0
##     WS          0       0             0                        0
##     X360        0       0             3                        1
##     XB          0       0             0                        0
##     XOne        0       0             0                        0
##     Sum         1       6            20                       14
##         Publisher
## Platform Core Design Ltd. CPG Products Crave Entertainment Creative Core
##     2600                0            1                   0             0
##     3DO                 0            0                   0             0
##     3DS                 0            0                   4             0
##     DC                  0            0                   0             0
##     DS                  0            0                   5             3
##     GB                  0            0                   0             0
##     GBA                 0            0                   7             0
##     GC                  0            0                   4             0
##     GEN                 0            0                   0             0
##     GG                  0            0                   0             0
##     N64                 0            0                   5             0
##     NES                 0            0                   0             0
##     NG                  0            0                   0             0
##     PC                  0            0                   0             0
##     PCFX                0            0                   0             0
##     PS                  2            0                   5             0
##     PS2                 0            0                   8             0
##     PS3                 0            0                   3             0
##     PS4                 0            0                   0             0
##     PSP                 0            0                   4             0
##     PSV                 0            0                   0             0
##     SAT                 0            0                   0             0
##     SCD                 0            0                   0             0
##     SNES                0            0                   0             0
##     TG16                0            0                   0             0
##     Wii                 0            0                  13             0
##     WiiU                0            0                   0             0
##     WS                  0            0                   0             0
##     X360                0            0                   4             0
##     XB                  0            0                   9             0
##     XOne                0            0                   0             0
##     Sum                 2            1                  71             3
##         Publisher
## Platform Crimson Cow Crystal Dynamics CTO SpA Culture Brain
##     2600           0                0       0             0
##     3DO            0                0       0             0
##     3DS            0                0       0             0
##     DC             0                0       0             0
##     DS             0                0       0             2
##     GB             0                0       0             0
##     GBA            0                0       0             0
##     GC             0                0       0             0
##     GEN            0                0       0             0
##     GG             0                0       0             0
##     N64            0                0       0             0
##     NES            0                0       0             0
##     NG             0                0       0             0
##     PC             2                0       0             0
##     PCFX           0                0       0             0
##     PS             0                5       2             0
##     PS2            0                0       0             0
##     PS3            0                0       0             0
##     PS4            0                0       0             0
##     PSP            0                0       0             0
##     PSV            0                0       0             0
##     SAT            0                0       0             0
##     SCD            0                0       0             0
##     SNES           0                0       0             2
##     TG16           0                0       0             0
##     Wii            0                0       0             0
##     WiiU           0                0       0             0
##     WS             0                0       0             0
##     X360           0                0       0             0
##     XB             0                0       0             0
##     XOne           0                0       0             0
##     Sum            2                5       2             4
##         Publisher
## Platform Culture Publishers CyberFront Cygames D3Publisher Daedalic
##     2600                  0          0       0           0        0
##     3DO                   0          0       0           0        0
##     3DS                   0          0       0           7        0
##     DC                    0          0       0           0        0
##     DS                    0          0       0          48        0
##     GB                    0          0       0           0        0
##     GBA                   0          0       0           2        0
##     GC                    0          0       0           1        0
##     GEN                   0          0       0           0        0
##     GG                    0          0       0           0        0
##     N64                   0          0       0           0        0
##     NES                   0          0       0           0        0
##     NG                    0          0       0           0        0
##     PC                    0          0       0           0        3
##     PCFX                  0          0       0           0        0
##     PS                    1          0       0           4        0
##     PS2                   0          2       0          24        0
##     PS3                   0          0       0          14        0
##     PS4                   0          0       0           2        0
##     PSP                   0          8       0          32        0
##     PSV                   0          2       1           9        0
##     SAT                   0          0       0           0        0
##     SCD                   0          0       0           0        0
##     SNES                  0          0       0           0        0
##     TG16                  0          0       0           0        0
##     Wii                   0          0       0          22        0
##     WiiU                  0          0       0           3        0
##     WS                    0          0       0           0        0
##     X360                  0          2       0          16        0
##     XB                    0          0       0           0        0
##     XOne                  0          0       0           0        0
##     Sum                   1         14       1         184        3
##         Publisher
## Platform Daedalic Entertainment Daito Data Age Data Design Interactive
##     2600                      0     0        2                       0
##     3DO                       0     0        0                       0
##     3DS                       0     0        0                       0
##     DC                        0     0        0                       0
##     DS                        0     0        0                       0
##     GB                        0     0        0                       0
##     GBA                       0     0        0                       0
##     GC                        0     0        0                       0
##     GEN                       0     0        0                       0
##     GG                        0     0        0                       0
##     N64                       0     0        0                       0
##     NES                       0     0        0                       0
##     NG                        0     0        0                       0
##     PC                        3     0        0                       0
##     PCFX                      0     0        0                       0
##     PS                        0     0        0                       0
##     PS2                       0     2        0                       0
##     PS3                       0     0        0                       0
##     PS4                       0     0        0                       0
##     PSP                       0     2        0                       0
##     PSV                       0     0        0                       0
##     SAT                       0     0        0                       0
##     SCD                       0     0        0                       0
##     SNES                      0     0        0                       0
##     TG16                      0     0        0                       0
##     Wii                       0     0        0                       3
##     WiiU                      0     0        0                       0
##     WS                        0     0        0                       0
##     X360                      0     0        0                       0
##     XB                        0     0        0                       0
##     XOne                      0     0        0                       0
##     Sum                       3     4        2                       3
##         Publisher
## Platform Data East Datam Polystar Deep Silver Destination Software, Inc
##     2600         0              0           0                         0
##     3DO          0              0           0                         0
##     3DS          0              0           2                         0
##     DC           0              0           0                         0
##     DS           0              0          21                         5
##     GB           0              0           0                         0
##     GBA          0              0           0                         7
##     GC           0              0           0                         0
##     GEN          0              0           0                         0
##     GG           0              0           0                         0
##     N64          0              0           0                         0
##     NES          0              0           0                         0
##     NG           0              0           0                         0
##     PC           0              0          21                         0
##     PCFX         0              0           0                         0
##     PS           0              0           0                         0
##     PS2          0              2           0                         0
##     PS3          0              0          20                         0
##     PS4          0              0          10                         0
##     PSP          0              0           3                         0
##     PSV          0              0           0                         0
##     SAT          1              0           0                         0
##     SCD          0              0           0                         0
##     SNES         1              0           0                         0
##     TG16         0              0           0                         0
##     Wii          0              0          13                         0
##     WiiU         0              0           1                         0
##     WS           0              0           0                         0
##     X360         0              0          22                         0
##     XB           0              0           3                         0
##     XOne         0              0           6                         0
##     Sum          2              2         122                        12
##         Publisher
## Platform Destineer Detn8 Games Devolver Digital DHM Interactive DigiCube
##     2600         0           0                0               0        0
##     3DO          0           0                0               0        0
##     3DS          0           0                0               0        0
##     DC           0           0                0               0        0
##     DS          22           0                0               1        0
##     GB           0           0                0               0        0
##     GBA          0           0                0               0        0
##     GC           0           0                0               0        0
##     GEN          0           0                0               0        0
##     GG           0           0                0               0        0
##     N64          0           0                0               0        0
##     NES          0           0                0               0        0
##     NG           0           0                0               0        0
##     PC           1           0                1               0        0
##     PCFX         0           0                0               0        0
##     PS           0           0                0               0        0
##     PS2          1           0                0               0        1
##     PS3          0           0                0               0        0
##     PS4          0           0                1               0        0
##     PSP          2           0                0               2        0
##     PSV          0           0                0               0        0
##     SAT          0           0                0               0        0
##     SCD          0           0                0               0        0
##     SNES         0           0                0               0        0
##     TG16         0           0                0               0        0
##     Wii         19           1                0               0        0
##     WiiU         0           0                0               0        0
##     WS           0           0                0               0        0
##     X360         0           0                0               0        0
##     XB           0           0                0               0        0
##     XOne         0           0                0               0        0
##     Sum         45           1                2               3        1
##         Publisher
## Platform Disney Interactive Studios Dorart dramatic create
##     2600                          0      0               0
##     3DO                           0      0               0
##     3DS                           7      0               0
##     DC                            0      0               0
##     DS                           59      0               0
##     GB                            0      0               0
##     GBA                          19      0               0
##     GC                            3      0               0
##     GEN                           0      0               0
##     GG                            0      0               0
##     N64                           0      0               0
##     NES                           0      0               0
##     NG                            0      0               0
##     PC                            4      0               0
##     PCFX                          0      0               0
##     PS                            0      0               0
##     PS2                          17      0               0
##     PS3                          22      0               0
##     PS4                           2      0               0
##     PSP                          10      2               0
##     PSV                           2      0               5
##     SAT                           0      0               0
##     SCD                           0      0               0
##     SNES                          0      0               0
##     TG16                          0      0               0
##     Wii                          39      0               0
##     WiiU                          6      0               0
##     WS                            0      0               0
##     X360                         21      0               0
##     XB                            4      0               0
##     XOne                          3      0               0
##     Sum                         218      2               5
##         Publisher
## Platform DreamCatcher Interactive DreamWorks Interactive DSI Games
##     2600                        0                      0         0
##     3DO                         0                      0         0
##     3DS                         0                      0         0
##     DC                          0                      0         0
##     DS                         10                      0         5
##     GB                          0                      0         0
##     GBA                         0                      0         1
##     GC                          0                      0         0
##     GEN                         0                      0         0
##     GG                          0                      0         0
##     N64                         0                      0         0
##     NES                         0                      0         0
##     NG                          0                      0         0
##     PC                          2                      0         0
##     PCFX                        0                      0         0
##     PS                          0                      1         0
##     PS2                         2                      0         0
##     PS3                         0                      0         0
##     PS4                         0                      0         0
##     PSP                         0                      0         0
##     PSV                         0                      0         0
##     SAT                         0                      0         0
##     SCD                         0                      0         0
##     SNES                        0                      0         0
##     TG16                        0                      0         0
##     Wii                         0                      0         0
##     WiiU                        0                      0         0
##     WS                          0                      0         0
##     X360                        0                      0         0
##     XB                          3                      0         0
##     XOne                        0                      0         0
##     Sum                        17                      1         6
##         Publisher
## Platform DTP Entertainment Dusenberry Martin Racing EA Games
##     2600                 0                        0        0
##     3DO                  0                        0        0
##     3DS                  2                        0        0
##     DC                   0                        0        0
##     DS                   9                        0        0
##     GB                   0                        0        0
##     GBA                  2                        0        0
##     GC                   0                        0        0
##     GEN                  0                        0        0
##     GG                   0                        0        0
##     N64                  0                        0        0
##     NES                  0                        0        0
##     NG                   0                        0        0
##     PC                  13                        0        0
##     PCFX                 0                        0        0
##     PS                   0                        0        0
##     PS2                  1                        0        0
##     PS3                  4                        0        1
##     PS4                  0                        1        0
##     PSP                  0                        0        0
##     PSV                  0                        0        0
##     SAT                  0                        0        0
##     SCD                  0                        0        0
##     SNES                 0                        0        0
##     TG16                 0                        0        0
##     Wii                  7                        0        0
##     WiiU                 0                        0        0
##     WS                   0                        0        0
##     X360                 7                        0        0
##     XB                   0                        0        0
##     XOne                 0                        1        0
##     Sum                 45                        2        1
##         Publisher
## Platform Easy Interactive Ecole  Edia Eidos Interactive Electronic Arts
##     2600                0     0     0                 0               0
##     3DO                 0     0     0                 0               0
##     3DS                 0     0     0                 0               7
##     DC                  0     0     0                 2               0
##     DS                  2     0     0                21              79
##     GB                  0     0     0                 1               1
##     GBA                 0     0     0                 2              40
##     GC                  0     0     0                 8              90
##     GEN                 0     0     0                 0               0
##     GG                  0     0     0                 0               0
##     N64                 0     0     0                 0              23
##     NES                 0     0     0                 0               0
##     NG                  0     0     0                 0               0
##     PC                  0     0     0                28             148
##     PCFX                0     0     0                 0               0
##     PS                  0     0     0                28             106
##     PS2                 0     1     0                44             199
##     PS3                 0     0     0                 7             142
##     PS4                 0     0     0                 0              26
##     PSP                 0     0     2                 7              72
##     PSV                 0     0     0                 0               6
##     SAT                 0     0     0                 0               1
##     SCD                 0     0     0                 0               0
##     SNES                0     0     0                 0               0
##     TG16                0     0     0                 0               0
##     Wii                 0     0     0                12              90
##     WiiU                0     0     0                 0               4
##     WS                  0     0     0                 0               0
##     X360                0     0     0                14             167
##     XB                  0     0     0                24             123
##     XOne                0     0     0                 0              27
##     Sum                 2     1     2               198            1351
##         Publisher
## Platform Electronic Arts Victor   Elf Elite Empire Interactive Encore
##     2600                      0     0     0                  0      0
##     3DO                       0     0     0                  0      0
##     3DS                       0     0     0                  0      0
##     DC                        0     0     0                  0      0
##     DS                        0     0     0                  6      0
##     GB                        0     0     0                  0      0
##     GBA                       0     0     0                  2      0
##     GC                        0     0     0                  3      1
##     GEN                       0     0     0                  0      0
##     GG                        0     0     0                  0      0
##     N64                       0     0     0                  0      0
##     NES                       0     0     0                  0      0
##     NG                        0     0     0                  0      0
##     PC                        0     0     0                  4      1
##     PCFX                      0     0     0                  0      0
##     PS                        2     0     1                  6      1
##     PS2                       0     0     0                 16      0
##     PS3                       0     0     0                  0      0
##     PS4                       0     0     0                  0      0
##     PSP                       0     0     0                  3      0
##     PSV                       0     0     0                  0      0
##     SAT                       0     2     0                  0      0
##     SCD                       0     0     0                  0      0
##     SNES                      0     0     0                  0      0
##     TG16                      0     0     0                  0      0
##     Wii                       0     0     0                  0      0
##     WiiU                      0     0     0                  0      0
##     WS                        0     0     0                  0      0
##     X360                      0     0     0                  1      0
##     XB                        0     0     0                 11      1
##     XOne                      0     0     0                  0      0
##     Sum                       2     2     1                 52      4
##         Publisher
## Platform Enix Corporation Enjoy Gaming ltd. Enterbrain
##     2600                0                 0          0
##     3DO                 0                 0          0
##     3DS                 0                 0          0
##     DC                  0                 0          0
##     DS                  0                 1          3
##     GB                  4                 0          0
##     GBA                 1                 0          1
##     GC                  0                 0          0
##     GEN                 0                 0          0
##     GG                  0                 0          0
##     N64                 1                 0          0
##     NES                 3                 0          0
##     NG                  0                 0          0
##     PC                  0                 0          0
##     PCFX                0                 0          0
##     PS                  6                 0          1
##     PS2                 6                 0          9
##     PS3                 0                 0          0
##     PS4                 0                 0          0
##     PSP                 0                 0          1
##     PSV                 0                 0          0
##     SAT                 0                 0          0
##     SCD                 0                 0          0
##     SNES                9                 0          0
##     TG16                0                 0          0
##     Wii                 0                 0          0
##     WiiU                0                 0          0
##     WS                  0                 0          0
##     X360                0                 0          0
##     XB                  0                 0          0
##     XOne                0                 0          0
##     Sum                30                 1         15
##         Publisher
## Platform EON Digital Entertainment Epic Games Epoch Ertain   ESP
##     2600                         0          0     0      0     0
##     3DO                          0          0     0      0     0
##     3DS                          0          0     0      0     0
##     DC                           0          0     0      0     0
##     DS                           0          0     0      1     0
##     GB                           0          0     0      0     0
##     GBA                          0          0     0      0     1
##     GC                           0          0     0      0     0
##     GEN                          0          0     0      0     0
##     GG                           0          0     0      0     0
##     N64                          0          0     1      0     0
##     NES                          0          0     0      0     0
##     NG                           0          0     0      0     0
##     PC                           0          0     0      0     0
##     PCFX                         0          0     0      0     0
##     PS                           1          0     0      0     1
##     PS2                          0          0     0      0     0
##     PS3                          0          0     0      0     0
##     PS4                          0          1     0      0     0
##     PSP                          0          0     0      0     0
##     PSV                          0          0     0      0     0
##     SAT                          0          0     0      0     3
##     SCD                          0          0     0      0     0
##     SNES                         0          0     6      0     0
##     TG16                         0          0     0      0     0
##     Wii                          0          0     0      0     0
##     WiiU                         0          0     0      0     0
##     WS                           0          0     0      0     0
##     X360                         0          0     0      0     0
##     XB                           0          0     0      0     0
##     XOne                         0          0     0      0     0
##     Sum                          1          1     7      1     5
##         Publisher
## Platform Essential Games Evolution Games Evolved Games
##     2600               0               0             0
##     3DO                0               0             0
##     3DS                0               0             0
##     DC                 0               0             0
##     DS                 0               0             0
##     GB                 0               0             0
##     GBA                0               0             0
##     GC                 0               0             0
##     GEN                0               0             0
##     GG                 0               0             0
##     N64                0               0             0
##     NES                0               0             0
##     NG                 0               0             0
##     PC                 0               0             1
##     PCFX               0               0             0
##     PS                 0               1             0
##     PS2                3               0             2
##     PS3                0               0             1
##     PS4                0               0             0
##     PSP                0               0             0
##     PSV                0               0             0
##     SAT                0               0             0
##     SCD                0               0             0
##     SNES               0               0             0
##     TG16               0               0             0
##     Wii                0               0             0
##     WiiU               0               0             0
##     WS                 0               0             0
##     X360               0               0             2
##     XB                 0               0             2
##     XOne               0               0             0
##     Sum                3               1             8
##         Publisher
## Platform Excalibur Publishing Experience Inc. Extreme Entertainment Group
##     2600                    0               0                           0
##     3DO                     0               0                           0
##     3DS                     1               0                           1
##     DC                      0               0                           0
##     DS                      0               0                           0
##     GB                      0               0                           0
##     GBA                     0               0                           0
##     GC                      0               0                           0
##     GEN                     0               0                           0
##     GG                      0               0                           0
##     N64                     0               0                           0
##     NES                     0               0                           0
##     NG                      0               0                           0
##     PC                      3               0                           0
##     PCFX                    0               0                           0
##     PS                      0               0                           0
##     PS2                     0               0                           0
##     PS3                     0               0                           0
##     PS4                     0               0                           0
##     PSP                     0               0                           0
##     PSV                     0               3                           0
##     SAT                     0               0                           0
##     SCD                     0               0                           0
##     SNES                    0               0                           0
##     TG16                    0               0                           0
##     Wii                     0               0                           0
##     WiiU                    0               0                           0
##     WS                      0               0                           0
##     X360                    0               0                           0
##     XB                      0               0                           0
##     XOne                    0               0                           0
##     Sum                     4               3                           1
##         Publisher
## Platform Falcom Corporation Fields Flashpoint Games Flight-Plan
##     2600                  0      0                0           0
##     3DO                   0      0                0           0
##     3DS                   0      0                0           0
##     DC                    0      0                0           0
##     DS                    0      0                0           0
##     GB                    0      0                0           0
##     GBA                   0      0                1           0
##     GC                    0      0                0           0
##     GEN                   0      0                0           0
##     GG                    0      0                0           0
##     N64                   0      0                0           0
##     NES                   0      0                0           0
##     NG                    0      0                0           0
##     PC                    0      0                0           0
##     PCFX                  0      0                0           0
##     PS                    0      0                0           0
##     PS2                   0      0                0           2
##     PS3                   3      1                0           0
##     PS4                   0      0                0           0
##     PSP                  12      0                0           0
##     PSV                   1      0                0           0
##     SAT                   0      0                0           0
##     SCD                   0      0                0           0
##     SNES                  0      0                0           0
##     TG16                  0      0                0           0
##     Wii                   0      0                1           0
##     WiiU                  0      0                0           0
##     WS                    0      0                0           0
##     X360                  0      0                0           0
##     XB                    0      0                0           0
##     XOne                  0      0                0           0
##     Sum                  16      1                2           2
##         Publisher
## Platform Focus Home Interactive Focus Multimedia fonfun
##     2600                      0                0      0
##     3DO                       0                0      0
##     3DS                       0                0      0
##     DC                        0                0      0
##     DS                        5                0      0
##     GB                        0                0      0
##     GBA                       0                0      0
##     GC                        0                0      0
##     GEN                       0                0      0
##     GG                        0                0      0
##     N64                       0                0      0
##     NES                       0                0      0
##     NG                        0                0      0
##     PC                       28                3      0
##     PCFX                      0                0      0
##     PS                        0                0      0
##     PS2                       0                0      0
##     PS3                       5                0      0
##     PS4                       6                0      0
##     PSP                       0                0      1
##     PSV                       1                0      0
##     SAT                       0                0      0
##     SCD                       0                0      0
##     SNES                      0                0      0
##     TG16                      0                0      0
##     Wii                       2                0      0
##     WiiU                      0                0      0
##     WS                        0                0      0
##     X360                      8                0      0
##     XB                        0                0      0
##     XOne                      3                0      0
##     Sum                      58                3      1
##         Publisher
## Platform Foreign Media Games Fortyfive Fox Interactive From Software  Fuji
##     2600                   0         0               0             0     0
##     3DO                    0         0               0             0     0
##     3DS                    0         0               0             0     0
##     DC                     0         1               0             0     0
##     DS                     9         0               0             1     0
##     GB                     0         0               0             0     0
##     GBA                    0         0               0             0     0
##     GC                     0         0               0             0     0
##     GEN                    0         0               0             0     0
##     GG                     0         0               0             0     0
##     N64                    0         0               1             0     0
##     NES                    0         0               0             0     0
##     NG                     0         0               0             0     0
##     PC                     0         0               0             0     0
##     PCFX                   0         0               0             0     0
##     PS                     0         0               7             6     1
##     PS2                    0         0               0             1     0
##     PS3                    0         0               0             1     0
##     PS4                    0         0               0             0     0
##     PSP                    0         0               0             5     0
##     PSV                    0         0               0             0     0
##     SAT                    0         0               0             0     0
##     SCD                    0         0               0             0     0
##     SNES                   0         0               0             0     0
##     TG16                   0         0               0             0     0
##     Wii                    0         0               0             0     0
##     WiiU                   0         0               0             0     0
##     WS                     0         0               0             0     0
##     X360                   0         0               0             0     0
##     XB                     0         0               0             1     0
##     XOne                   0         0               0             0     0
##     Sum                    9         1               8            15     1
##         Publisher
## Platform Funbox Media Funcom FunSoft Funsta FuRyu FuRyu Corporation G.Rev
##     2600            0      0       0      0     0                 0     0
##     3DO             0      0       0      0     0                 0     0
##     3DS             2      0       0      0    14                 0     0
##     DC              0      0       0      0     0                 0     0
##     DS              0      0       0      2     1                 0     0
##     GB              0      0       0      0     0                 0     0
##     GBA             0      0       0      0     0                 0     0
##     GC              0      0       0      0     0                 0     0
##     GEN             0      0       0      0     0                 0     0
##     GG              0      0       0      0     0                 0     0
##     N64             0      0       0      0     0                 0     0
##     NES             0      0       0      0     0                 0     0
##     NG              0      0       0      0     0                 0     0
##     PC              0      2       0      0     0                 0     0
##     PCFX            0      0       0      0     0                 0     0
##     PS              0      0       1      0     0                 0     0
##     PS2             0      0       0      0     0                 0     0
##     PS3             1      0       0      0     0                 0     0
##     PS4             0      0       0      0     0                 1     0
##     PSP             0      0       0      1     6                 0     0
##     PSV             1      0       0      0     6                 0     0
##     SAT             0      0       0      0     0                 0     0
##     SCD             0      0       0      0     0                 0     0
##     SNES            0      0       0      0     0                 0     0
##     TG16            0      0       0      0     0                 0     0
##     Wii             2      0       0      1     0                 0     0
##     WiiU            0      0       0      0     0                 0     0
##     WS              0      0       0      0     0                 0     0
##     X360            0      0       0      0     0                 0     2
##     XB              0      0       0      0     0                 0     0
##     XOne            0      0       0      0     0                 0     0
##     Sum             6      2       1      4    27                 1     2
##         Publisher
## Platform  Gaga Gainax Network Systems Gakken Game Arts Game Factory
##     2600     0                      0      0         0            0
##     3DO      0                      0      0         0            0
##     3DS      0                      0      0         0            0
##     DC       0                      0      0         0            0
##     DS       0                      0      2         0           18
##     GB       0                      0      0         0            0
##     GBA      0                      0      0         0            5
##     GC       0                      0      0         0            0
##     GEN      0                      0      0         1            0
##     GG       0                      0      0         0            0
##     N64      0                      0      0         0            0
##     NES      0                      0      0         0            0
##     NG       0                      0      0         0            0
##     PC       0                      0      0         0            0
##     PCFX     0                      0      0         0            0
##     PS       0                      2      0         0            0
##     PS2      0                      0      0         0            2
##     PS3      0                      0      0         0            0
##     PS4      0                      0      0         0            0
##     PSP      0                      0      0         0            2
##     PSV      0                      0      0         0            0
##     SAT      1                      0      0         0            0
##     SCD      0                      0      0         0            0
##     SNES     0                      0      0         0            0
##     TG16     0                      0      0         0            0
##     Wii      0                      0      0         0            5
##     WiiU     0                      0      0         0            0
##     WS       0                      0      0         0            0
##     X360     0                      0      0         0            0
##     XB       0                      0      0         0            0
##     XOne     0                      0      0         0            0
##     Sum      1                      2      2         1           32
##         Publisher
## Platform Game Life Gamebridge Gamecock Gameloft GameMill Entertainment
##     2600         0          0        0        0                      0
##     3DO          0          0        0        0                      0
##     3DS          0          0        0        0                      0
##     DC           0          0        0        0                      0
##     DS           2          0        1        1                      5
##     GB           0          0        0        0                      0
##     GBA          0          0        0        0                      0
##     GC           0          0        0        0                      0
##     GEN          0          0        0        0                      0
##     GG           0          0        0        0                      0
##     N64          0          0        0        0                      0
##     NES          0          0        0        0                      0
##     NG           0          0        0        0                      0
##     PC           0          0        1        0                      0
##     PCFX         0          0        0        0                      0
##     PS           0          0        0        0                      0
##     PS2          0          0        0        0                      0
##     PS3          0          1        1        0                      0
##     PS4          0          0        0        0                      0
##     PSP          0          0        0        0                      0
##     PSV          0          0        0        0                      0
##     SAT          0          0        0        0                      0
##     SCD          0          0        0        0                      0
##     SNES         0          0        0        0                      0
##     TG16         0          0        0        0                      0
##     Wii          0          0        0        0                      2
##     WiiU         0          0        0        0                      0
##     WS           0          0        0        0                      0
##     X360         0          1        1        0                      1
##     XB           0          0        0        0                      0
##     XOne         0          0        0        0                      0
##     Sum          2          2        4        1                      8
##         Publisher
## Platform GameTek Gathering of Developers General Entertainment Genki
##     2600       0                       0                     0     0
##     3DO        0                       0                     0     0
##     3DS        0                       0                     0     1
##     DC         0                       0                     0     1
##     DS         0                       0                     0     1
##     GB         0                       0                     0     0
##     GBA        0                       0                     0     0
##     GC         0                       0                     0     0
##     GEN        0                       0                     0     0
##     GG         0                       0                     0     0
##     N64        1                       0                     0     0
##     NES        0                       0                     0     0
##     NG         0                       0                     0     0
##     PC         0                       3                     0     0
##     PCFX       0                       0                     0     0
##     PS         0                       0                     1     0
##     PS2        0                       3                     0     2
##     PS3        0                       0                     0     1
##     PS4        0                       0                     0     0
##     PSP        0                       0                     0     1
##     PSV        0                       0                     0     0
##     SAT        0                       0                     0     0
##     SCD        0                       0                     0     0
##     SNES       0                       0                     0     0
##     TG16       0                       0                     0     0
##     Wii        0                       0                     0     0
##     WiiU       0                       0                     0     0
##     WS         0                       0                     0     0
##     X360       0                       0                     0     0
##     XB         0                       3                     0     1
##     XOne       0                       0                     0     0
##     Sum        1                       9                     1     8
##         Publisher
## Platform Genterprise Ghostlight  Giga Giza10 Glams Global A Entertainment
##     2600           0          0     0      0     0                      0
##     3DO            0          0     0      0     0                      0
##     3DS            0          1     0      0     0                      0
##     DC             0          0     0      0     0                      0
##     DS             1          5     0      0     0                      2
##     GB             0          0     0      0     0                      0
##     GBA            0          0     0      0     0                      0
##     GC             0          0     0      0     0                      0
##     GEN            0          0     0      0     0                      0
##     GG             0          0     0      0     0                      0
##     N64            0          0     0      0     0                      0
##     NES            0          0     0      0     0                      0
##     NG             0          0     0      0     0                      0
##     PC             0          0     0      0     0                      0
##     PCFX           0          0     0      0     0                      0
##     PS             0          0     0      0     0                      0
##     PS2            0          4     0      0     0                      0
##     PS3            0          2     0      0     0                      0
##     PS4            0          0     0      0     0                      0
##     PSP            0          2     0      1     0                      2
##     PSV            0          0     1      0     0                      0
##     SAT            0          0     0      0     1                      0
##     SCD            0          0     0      0     0                      0
##     SNES           0          0     0      0     0                      0
##     TG16           0          0     0      0     0                      0
##     Wii            0          1     0      0     0                      0
##     WiiU           0          0     0      0     0                      0
##     WS             0          0     0      0     0                      0
##     X360           0          0     0      0     0                      0
##     XB             0          0     0      0     0                      0
##     XOne           0          0     0      0     0                      0
##     Sum            1         15     1      1     1                      4
##         Publisher
## Platform Global Star GN Software   GOA Gotham Games Graffiti
##     2600           0           0     0            0        0
##     3DO            0           0     0            0        0
##     3DS            0           0     0            0        0
##     DC             0           0     0            0        0
##     DS             0           0     0            0        3
##     GB             0           0     0            0        0
##     GBA            3           0     0            1        0
##     GC             6           0     0            1        0
##     GEN            0           0     0            0        0
##     GG             0           0     0            0        0
##     N64            0           0     0            0        0
##     NES            0           0     0            0        0
##     NG             0           0     0            0        0
##     PC             0           0     1            0        0
##     PCFX           0           0     0            0        0
##     PS             0           0     0            1        0
##     PS2           14           2     0            3        0
##     PS3            0           0     0            0        0
##     PS4            0           0     0            0        0
##     PSP            0           1     0            0        1
##     PSV            0           0     0            0        0
##     SAT            0           0     0            0        0
##     SCD            0           0     0            0        0
##     SNES           0           0     0            0        0
##     TG16           0           0     0            0        0
##     Wii            0           0     0            0        2
##     WiiU           0           0     0            0        0
##     WS             0           0     0            0        0
##     X360           0           0     0            0        0
##     XB            16           0     0            1        0
##     XOne           0           0     0            0        0
##     Sum           39           3     1            7        6
##         Publisher
## Platform Grand Prix Games Graphsim Entertainment Gremlin Interactive Ltd
##     2600                0                      0                       0
##     3DO                 0                      0                       0
##     3DS                 0                      0                       0
##     DC                  0                      0                       0
##     DS                  0                      0                       0
##     GB                  0                      0                       0
##     GBA                 0                      0                       0
##     GC                  0                      0                       0
##     GEN                 0                      0                       0
##     GG                  0                      0                       0
##     N64                 0                      0                       1
##     NES                 0                      0                       0
##     NG                  0                      0                       0
##     PC                  0                      1                       0
##     PCFX                0                      0                       0
##     PS                  0                      0                       8
##     PS2                 0                      0                       0
##     PS3                 0                      0                       0
##     PS4                 0                      0                       0
##     PSP                 1                      0                       0
##     PSV                 0                      0                       0
##     SAT                 0                      0                       0
##     SCD                 0                      0                       0
##     SNES                0                      0                       0
##     TG16                0                      0                       0
##     Wii                 0                      0                       0
##     WiiU                0                      0                       0
##     WS                  0                      0                       0
##     X360                0                      0                       0
##     XB                  0                      0                       0
##     XOne                0                      0                       0
##     Sum                 1                      1                       9
##         Publisher
## Platform Griffin International Groove Games   GSP GT Interactive GungHo
##     2600                     0            0     0              0      0
##     3DO                      0            0     0              0      0
##     3DS                      0            0     0              0      2
##     DC                       0            0     0              0      0
##     DS                       0            0    14              0      4
##     GB                       0            0     0              0      0
##     GBA                      0            0     0              0      0
##     GC                       0            0     0              0      0
##     GEN                      0            0     0              0      0
##     GG                       0            0     0              0      0
##     N64                      0            0     0             18      0
##     NES                      0            0     0              0      0
##     NG                       0            0     0              0      0
##     PC                       0            0     1              0      0
##     PCFX                     0            0     0              0      0
##     PS                       0            0     0             27      0
##     PS2                      0            0     0              0      0
##     PS3                      0            0     0              0      1
##     PS4                      0            0     0              0      0
##     PSP                      0            0     0              0      3
##     PSV                      0            0     0              0      3
##     SAT                      0            0     0              0      0
##     SCD                      0            0     0              0      0
##     SNES                     0            0     0              0      0
##     TG16                     0            0     0              0      0
##     Wii                      0            0     1              0      0
##     WiiU                     0            0     0              0      0
##     WS                       0            0     0              0      0
##     X360                     1            0     0              0      0
##     XB                       0            2     0              0      0
##     XOne                     0            0     0              0      0
##     Sum                      1            2    16             45     13
##         Publisher
## Platform  Gust Hackberry HAL Laboratory Hamster Corporation Happinet
##     2600     0         0              0                   0        0
##     3DO      0         0              0                   0        0
##     3DS      0         0              0                   0        5
##     DC       0         0              0                   0        0
##     DS       2         0              0                   0        0
##     GB       0         0              0                   0        0
##     GBA      0         0              0                   0        0
##     GC       0         0              0                   0        0
##     GEN      0         0              0                   0        0
##     GG       0         0              0                   0        0
##     N64      0         0              0                   0        0
##     NES      0         0              1                   0        0
##     NG       0         0              0                   0        0
##     PC       0         0              0                   0        0
##     PCFX     0         0              0                   0        0
##     PS       2         0              0                   1        0
##     PS2      3         7              0                   1        0
##     PS3      0         0              0                   0        0
##     PS4      0         0              0                   0        0
##     PSP      3         0              0                   0        0
##     PSV      3         0              0                   0        0
##     SAT      0         0              0                   0        0
##     SCD      0         0              0                   0        0
##     SNES     0         0              0                   0        0
##     TG16     0         0              0                   0        0
##     Wii      0         0              0                   0        0
##     WiiU     0         0              0                   0        0
##     WS       0         0              0                   0        0
##     X360     0         0              0                   0        0
##     XB       0         0              0                   0        0
##     XOne     0         0              0                   0        0
##     Sum     13         7              1                   2        5
##         Publisher
## Platform Harmonix Music Systems Hasbro Interactive Havas Interactive
##     2600                      0                  0                 0
##     3DO                       0                  0                 0
##     3DS                       0                  0                 0
##     DC                        0                  0                 0
##     DS                        0                  0                 0
##     GB                        0                  0                 0
##     GBA                       0                  1                 0
##     GC                        0                  0                 0
##     GEN                       0                  0                 0
##     GG                        0                  0                 0
##     N64                       0                  2                 0
##     NES                       0                  0                 0
##     NG                        0                  0                 0
##     PC                        0                  1                 1
##     PCFX                      0                  0                 0
##     PS                        0                 12                 0
##     PS2                       0                  0                 0
##     PS3                       0                  0                 0
##     PS4                       1                  0                 0
##     PSP                       0                  0                 0
##     PSV                       0                  0                 0
##     SAT                       0                  0                 0
##     SCD                       0                  0                 0
##     SNES                      0                  0                 0
##     TG16                      0                  0                 0
##     Wii                       0                  0                 0
##     WiiU                      0                  0                 0
##     WS                        0                  0                 0
##     X360                      0                  0                 0
##     XB                        0                  0                 0
##     XOne                      1                  0                 0
##     Sum                       2                 16                 1
##         Publisher
## Platform Headup Games Hearty Robin  Hect Hello Games Her Interactive
##     2600            0            0     0           0               0
##     3DO             0            0     0           0               0
##     3DS             0            0     0           0               0
##     DC              0            0     0           0               0
##     DS              0            0     0           0               0
##     GB              0            0     0           0               0
##     GBA             0            0     0           0               0
##     GC              0            0     0           0               0
##     GEN             0            0     0           0               0
##     GG              0            0     0           0               0
##     N64             0            0     0           0               0
##     NES             0            0     0           0               0
##     NG              0            0     0           0               0
##     PC              1            0     0           0               1
##     PCFX            0            0     0           0               0
##     PS              0            1     1           0               0
##     PS2             0            0     0           0               0
##     PS3             0            0     0           0               0
##     PS4             0            0     0           1               0
##     PSP             0            0     0           0               0
##     PSV             0            0     0           0               0
##     SAT             0            0     0           0               0
##     SCD             0            0     0           0               0
##     SNES            0            0     2           0               0
##     TG16            0            0     0           0               0
##     Wii             0            0     0           0               0
##     WiiU            0            0     0           0               0
##     WS              0            0     0           0               0
##     X360            0            0     0           0               0
##     XB              0            0     0           0               0
##     XOne            0            0     0           0               0
##     Sum             1            1     3           1               1
##         Publisher
## Platform Hip Interactive HMH Interactive Home Entertainment Suppliers
##     2600               0               0                            0
##     3DO                0               0                            0
##     3DS                0               0                            0
##     DC                 0               0                            0
##     DS                 0               1                            0
##     GB                 0               0                            0
##     GBA                2               0                            0
##     GC                 0               0                            0
##     GEN                0               0                            0
##     GG                 0               0                            0
##     N64                0               0                            0
##     NES                0               0                            0
##     NG                 0               0                            0
##     PC                 0               1                            1
##     PCFX               0               0                            0
##     PS                 0               0                            0
##     PS2                1               0                            0
##     PS3                0               0                            2
##     PS4                0               0                            0
##     PSP                0               0                            0
##     PSV                0               0                            0
##     SAT                0               0                            0
##     SCD                0               0                            0
##     SNES               0               0                            0
##     TG16               0               0                            0
##     Wii                0               0                            0
##     WiiU               0               0                            0
##     WS                 0               0                            0
##     X360               0               0                            2
##     XB                 2               0                            0
##     XOne               0               0                            0
##     Sum                5               2                            5
##         Publisher
## Platform Hudson Entertainment Hudson Soft Human Entertainment HuneX
##     2600                    0           0                   0     0
##     3DO                     0           0                   0     0
##     3DS                     0           2                   0     0
##     DC                      0           0                   0     0
##     DS                      1          15                   0     0
##     GB                      0           0                   0     0
##     GBA                     4           2                   0     0
##     GC                      0           2                   0     0
##     GEN                     0           0                   0     0
##     GG                      0           0                   0     0
##     N64                     1           3                   0     0
##     NES                     0           7                   0     0
##     NG                      0           1                   0     0
##     PC                      0           0                   0     0
##     PCFX                    0           0                   0     0
##     PS                      2           2                   8     0
##     PS2                     0           6                   0     0
##     PS3                     0           1                   0     0
##     PS4                     0           0                   0     0
##     PSP                     1           4                   0     0
##     PSV                     0           0                   0     2
##     SAT                     0           3                   1     0
##     SCD                     0           0                   0     0
##     SNES                    0          18                   4     0
##     TG16                    0           1                   0     0
##     Wii                     2          12                   0     0
##     WiiU                    0           0                   0     0
##     WS                      0           0                   0     0
##     X360                    0           1                   0     0
##     XB                      0           1                   0     0
##     XOne                    0           0                   0     0
##     Sum                    11          81                  13     2
##         Publisher
## Platform Iceberg Interactive id Software Idea Factory
##     2600                   0           0            0
##     3DO                    0           0            0
##     3DS                    0           0            0
##     DC                     0           0            0
##     DS                     0           0            6
##     GB                     0           0            0
##     GBA                    0           0            0
##     GC                     0           0            0
##     GEN                    0           0            0
##     GG                     0           0            0
##     N64                    0           0            0
##     NES                    0           0            0
##     NG                     0           0            0
##     PC                     3           1            0
##     PCFX                   0           0            0
##     PS                     0           0            0
##     PS2                    0           0           17
##     PS3                    0           0            2
##     PS4                    0           0            1
##     PSP                    0           0           69
##     PSV                    0           0           32
##     SAT                    0           0            0
##     SCD                    0           0            0
##     SNES                   0           0            0
##     TG16                   0           0            0
##     Wii                    0           0            0
##     WiiU                   0           0            0
##     WS                     0           0            0
##     X360                   0           0            2
##     XB                     0           0            0
##     XOne                   0           0            0
##     Sum                    3           1          129
##         Publisher
## Platform Idea Factory International IE Institute Ignition Entertainment
##     2600                          0            0                      0
##     3DO                           0            0                      0
##     3DS                           0            1                      0
##     DC                            0            0                      0
##     DS                            0            4                     13
##     GB                            0            0                      0
##     GBA                           0            0                      6
##     GC                            0            0                      3
##     GEN                           0            0                      0
##     GG                            0            0                      0
##     N64                           0            0                      0
##     NES                           0            0                      0
##     NG                            0            0                      0
##     PC                            0            0                      0
##     PCFX                          0            0                      0
##     PS                            0            0                      0
##     PS2                           0            0                     17
##     PS3                           0            0                      3
##     PS4                           2            0                      0
##     PSP                           0            0                      8
##     PSV                           4            0                      0
##     SAT                           0            0                      0
##     SCD                           0            0                      0
##     SNES                          0            0                      0
##     TG16                          0            0                      0
##     Wii                           0            0                      6
##     WiiU                          0            0                      0
##     WS                            0            0                      0
##     X360                          0            0                      2
##     XB                            0            0                      3
##     XOne                          0            0                      0
##     Sum                           6            5                     61
##         Publisher
## Platform Illusion Softworks Imadio Image Epoch imageepoch Inc. Imageworks
##     2600                  0      0           0               0          0
##     3DO                   0      0           0               0          1
##     3DS                   0      0           0               2          0
##     DC                    0      0           0               0          0
##     DS                    0      0           0               0          0
##     GB                    0      0           0               0          0
##     GBA                   0      0           0               0          0
##     GC                    0      0           0               0          0
##     GEN                   0      0           0               0          0
##     GG                    0      0           0               0          0
##     N64                   0      0           0               0          0
##     NES                   0      0           0               0          0
##     NG                    0      0           0               0          0
##     PC                    0      0           0               0          0
##     PCFX                  0      0           0               0          0
##     PS                    0      0           0               0          0
##     PS2                   1      0           0               0          0
##     PS3                   0      0           0               0          0
##     PS4                   0      0           0               0          0
##     PSP                   0      0           1               0          0
##     PSV                   0      0           0               0          0
##     SAT                   0      1           0               0          0
##     SCD                   0      0           0               0          0
##     SNES                  0      0           0               0          0
##     TG16                  0      0           0               0          0
##     Wii                   0      0           0               0          0
##     WiiU                  0      0           0               0          0
##     WS                    0      0           0               0          0
##     X360                  0      0           0               0          0
##     XB                    0      0           0               0          0
##     XOne                  0      0           0               0          0
##     Sum                   1      1           1               2          1
##         Publisher
## Platform Imagic Imagineer  Imax Indie Games Infogrames Insomniac Games
##     2600      4         0     0           0          0               0
##     3DO       0         0     0           0          0               0
##     3DS       0         0     0           0          0               0
##     DC        0         0     0           0          1               0
##     DS        0         0     0           0          0               0
##     GB        0         4     0           0          0               0
##     GBA       0         0     0           0          8               0
##     GC        0         0     0           0          8               0
##     GEN       0         0     0           0          0               0
##     GG        0         0     0           0          0               0
##     N64       0         5     0           0          8               0
##     NES       0         0     0           0          0               0
##     NG        0         0     0           0          0               0
##     PC        0         0     0           0          1               1
##     PCFX      0         0     0           0          0               0
##     PS        0         1     0           0         23               0
##     PS2       0         0     0           3          7               0
##     PS3       0         0     0           0          0               0
##     PS4       0         0     0           0          0               1
##     PSP       0         0     0           0          0               0
##     PSV       0         0     0           0          0               0
##     SAT       0         3     0           0          0               0
##     SCD       0         0     0           0          0               0
##     SNES      0         3     1           0          0               0
##     TG16      0         0     0           0          0               0
##     Wii       0         0     0           0          0               0
##     WiiU      0         0     0           0          0               0
##     WS        0         0     0           0          0               0
##     X360      0         0     0           0          0               0
##     XB        0         0     0           0          6               0
##     XOne      0         0     0           0          0               1
##     Sum       4        16     1           3         62               3
##         Publisher
## Platform Interchannel Interchannel-Holon Intergrow Interplay
##     2600            0                  0         0         0
##     3DO             0                  0         0         0
##     3DS             0                  0         1         0
##     DC              0                  0         0         0
##     DS              0                  0         0         0
##     GB              0                  0         0         0
##     GBA             0                  0         0         2
##     GC              0                  0         0         0
##     GEN             0                  0         0         0
##     GG              0                  0         0         0
##     N64             0                  0         0         3
##     NES             0                  0         0         0
##     NG              0                  0         0         0
##     PC              0                  0         0         3
##     PCFX            0                  0         0         0
##     PS              0                  0         0        15
##     PS2             4                  1         0         4
##     PS3             0                  0         0         0
##     PS4             0                  0         0         0
##     PSP             0                  0         0         0
##     PSV             0                  0         0         0
##     SAT             0                  0         0         0
##     SCD             0                  0         0         0
##     SNES            0                  0         0         1
##     TG16            0                  0         0         0
##     Wii             0                  0         0         0
##     WiiU            0                  0         0         0
##     WS              0                  0         0         0
##     X360            0                  0         0         0
##     XB              0                  0         0         2
##     XOne            0                  0         0         0
##     Sum             4                  1         1        30
##         Publisher
## Platform Interplay Productions Interworks Unlimited, Inc. Inti Creates
##     2600                     0                          0            0
##     3DO                      0                          0            0
##     3DS                      0                          0            1
##     DC                       0                          0            0
##     DS                       0                          0            0
##     GB                       0                          0            0
##     GBA                      0                          0            0
##     GC                       0                          0            0
##     GEN                      0                          0            0
##     GG                       0                          0            0
##     N64                      0                          0            0
##     NES                      0                          0            0
##     NG                       0                          0            0
##     PC                       0                          0            0
##     PCFX                     0                          0            0
##     PS                       1                          0            0
##     PS2                      0                          0            0
##     PS3                      0                          1            0
##     PS4                      0                          0            0
##     PSP                      0                          0            0
##     PSV                      0                          0            0
##     SAT                      0                          0            0
##     SCD                      0                          0            0
##     SNES                     0                          0            0
##     TG16                     0                          0            0
##     Wii                      0                          0            0
##     WiiU                     0                          0            0
##     WS                       0                          0            0
##     X360                     0                          0            0
##     XB                       0                          0            0
##     XOne                     0                          0            0
##     Sum                      1                          1            1
##         Publisher
## Platform Introversion Software inXile Entertainment
##     2600                     0                    0
##     3DO                      0                    0
##     3DS                      0                    0
##     DC                       0                    0
##     DS                       0                    0
##     GB                       0                    0
##     GBA                      0                    0
##     GC                       0                    0
##     GEN                      0                    0
##     GG                       0                    0
##     N64                      0                    0
##     NES                      0                    0
##     NG                       0                    0
##     PC                       0                    1
##     PCFX                     0                    0
##     PS                       0                    0
##     PS2                      0                    0
##     PS3                      0                    0
##     PS4                      1                    0
##     PSP                      0                    0
##     PSV                      0                    0
##     SAT                      0                    0
##     SCD                      0                    0
##     SNES                     0                    0
##     TG16                     0                    0
##     Wii                      0                    0
##     WiiU                     0                    0
##     WS                       0                    0
##     X360                     0                    0
##     XB                       0                    0
##     XOne                     0                    0
##     Sum                      1                    1
##         Publisher
## Platform Irem Software Engineering ITT Family Games Ivolgamus  iWin
##     2600                         0                1         0     0
##     3DO                          0                0         0     0
##     3DS                          2                0         0     0
##     DC                           0                0         0     0
##     DS                           0                0         0     1
##     GB                           0                0         0     0
##     GBA                          0                0         0     0
##     GC                           0                0         0     0
##     GEN                          0                0         0     0
##     GG                           0                0         0     0
##     N64                          0                0         0     0
##     NES                          0                0         0     0
##     NG                           0                0         0     0
##     PC                           0                0         0     0
##     PCFX                         0                0         0     0
##     PS                           1                0         0     0
##     PS2                          2                0         0     0
##     PS3                          1                0         0     0
##     PS4                          0                0         0     0
##     PSP                          6                0         1     0
##     PSV                          0                0         0     0
##     SAT                          0                0         0     0
##     SCD                          0                0         0     0
##     SNES                         0                0         0     0
##     TG16                         0                0         0     0
##     Wii                          0                0         0     0
##     WiiU                         0                0         0     0
##     WS                           0                0         0     0
##     X360                         0                0         0     0
##     XB                           0                0         0     0
##     XOne                         0                0         0     0
##     Sum                         12                1         1     1
##         Publisher
## Platform Jack of All Games Jaleco Jester Interactive Jorudan
##     2600                 0      0                  0       0
##     3DO                  0      0                  0       0
##     3DS                  0      0                  0       0
##     DC                   0      0                  0       0
##     DS                   2      3                  0       0
##     GB                   0      0                  0       1
##     GBA                  1      1                  0       2
##     GC                   0      2                  0       0
##     GEN                  0      0                  0       0
##     GG                   0      0                  0       0
##     N64                  0      0                  0       0
##     NES                  0      0                  0       0
##     NG                   0      0                  0       0
##     PC                   0      0                  0       0
##     PCFX                 0      0                  0       0
##     PS                   0      6                  0       0
##     PS2                  0      3                  3       0
##     PS3                  0      0                  0       0
##     PS4                  0      0                  0       0
##     PSP                  0      0                  0       0
##     PSV                  0      0                  0       0
##     SAT                  0      1                  0       0
##     SCD                  0      0                  0       0
##     SNES                 0      0                  0       0
##     TG16                 0      0                  0       0
##     Wii                  0      1                  0       0
##     WiiU                 0      0                  0       0
##     WS                   0      0                  0       0
##     X360                 0      0                  0       0
##     XB                   0      6                  0       0
##     XOne                 0      0                  0       0
##     Sum                  3     23                  3       3
##         Publisher
## Platform JoWood Productions Just Flight   JVC Kadokawa Games
##     2600                  0           0     0              0
##     3DO                   0           0     0              0
##     3DS                   0           0     0              1
##     DC                    0           0     0              0
##     DS                    6           0     0              0
##     GB                    0           0     0              0
##     GBA                   0           0     0              0
##     GC                    2           0     0              0
##     GEN                   0           0     0              0
##     GG                    0           0     0              0
##     N64                   0           0     0              0
##     NES                   0           0     0              0
##     NG                    0           0     0              0
##     PC                    7           1     0              0
##     PCFX                  0           0     0              0
##     PS                    0           0     7              0
##     PS2                   2           0     0              0
##     PS3                   0           0     0              1
##     PS4                   0           0     0              0
##     PSP                   0           0     0              3
##     PSV                   0           0     0             10
##     SAT                   0           0     1              0
##     SCD                   0           0     0              0
##     SNES                  0           0     0              0
##     TG16                  0           0     0              0
##     Wii                   3           0     0              0
##     WiiU                  0           0     0              0
##     WS                    0           0     0              0
##     X360                  1           0     0              0
##     XB                    1           0     0              0
##     XOne                  0           0     0              0
##     Sum                  22           1     8             15
##         Publisher
## Platform Kadokawa Shoten Kaga Create Kalypso Media Kamui Kando Games
##     2600               0           0             0     0           0
##     3DO                0           0             0     0           0
##     3DS                2           0             0     0           0
##     DC                 0           0             0     0           0
##     DS                 5           0             0     1           0
##     GB                 0           0             0     0           0
##     GBA                0           0             0     0           0
##     GC                 0           0             0     0           0
##     GEN                0           0             0     0           0
##     GG                 0           0             0     0           0
##     N64                0           0             0     0           0
##     NES                0           0             0     0           0
##     NG                 0           0             0     0           0
##     PC                 0           0            20     0           0
##     PCFX               0           0             0     0           0
##     PS                 3           0             0     0           0
##     PS2               12           0             0     0           1
##     PS3                0           1             1     0           0
##     PS4                0           0             2     0           0
##     PSP               19           1             0     0           0
##     PSV                3           4             0     0           0
##     SAT                4           0             0     0           0
##     SCD                0           0             0     0           0
##     SNES               0           0             0     0           0
##     TG16               0           0             0     0           0
##     Wii                2           0             0     0           0
##     WiiU               0           0             0     0           0
##     WS                 0           0             0     0           0
##     X360               0           0             6     0           0
##     XB                 0           0             0     0           0
##     XOne               0           0             0     0           0
##     Sum               50           6            29     1           1
##         Publisher
## Platform Karin Entertainment Kemco   KID Kids Station King Records
##     2600                   0     0     0            0            0
##     3DO                    0     0     0            0            0
##     3DS                    0     0     0            0            0
##     DC                     0     0     0            0            0
##     DS                     0     0     0            1            0
##     GB                     0     0     0            0            0
##     GBA                    0     2     0            0            1
##     GC                     0     4     0            0            0
##     GEN                    0     0     0            0            0
##     GG                     0     0     0            0            0
##     N64                    0     7     0            0            0
##     NES                    0     0     0            0            0
##     NG                     0     0     0            0            0
##     PC                     0     0     0            0            0
##     PCFX                   0     0     0            0            0
##     PS                     0     1     0            0            0
##     PS2                    0     2     3            0            0
##     PS3                    0     0     0            0            0
##     PS4                    0     0     0            0            0
##     PSP                    1     0     0            0            0
##     PSV                    0     0     0            0            0
##     SAT                    0     0     1            0            0
##     SCD                    0     0     0            0            0
##     SNES                   0     1     0            0            0
##     TG16                   0     0     0            0            0
##     Wii                    0     0     0            0            0
##     WiiU                   0     0     0            0            0
##     WS                     0     0     0            0            0
##     X360                   0     0     0            0            0
##     XB                     0     4     0            0            0
##     XOne                   0     0     0            0            0
##     Sum                    1    21     4            1            1
##         Publisher
## Platform Knowledge Adventure Koch Media Kokopeli Digital Studios
##     2600                   0          0                        0
##     3DO                    0          0                        0
##     3DS                    0          1                        0
##     DC                     0          0                        0
##     DS                     0          1                        0
##     GB                     0          0                        0
##     GBA                    2          0                        0
##     GC                     0          0                        0
##     GEN                    0          0                        0
##     GG                     0          0                        0
##     N64                    0          0                        0
##     NES                    0          0                        0
##     NG                     0          0                        0
##     PC                     0          4                        0
##     PCFX                   0          0                        0
##     PS                     0          0                        1
##     PS2                    0          1                        0
##     PS3                    0          2                        0
##     PS4                    0          1                        0
##     PSP                    0          1                        0
##     PSV                    0          0                        0
##     SAT                    0          0                        0
##     SCD                    0          0                        0
##     SNES                   0          0                        0
##     TG16                   0          0                        0
##     Wii                    2          2                        0
##     WiiU                   0          0                        0
##     WS                     0          0                        0
##     X360                   0          2                        0
##     XB                     0          0                        0
##     XOne                   0          2                        0
##     Sum                    4         17                        1
##         Publisher
## Platform Konami Digital Entertainment Kool Kizz   KSS Laguna
##     2600                            0         0     0      0
##     3DO                             1         0     0      0
##     3DS                            12         0     0      0
##     DC                              1         0     0      0
##     DS                            112         0     0      0
##     GB                             10         0     0      0
##     GBA                            60         0     0      0
##     GC                             24         0     0      0
##     GEN                             1         0     0      0
##     GG                              0         0     0      0
##     N64                            25         0     0      0
##     NES                             9         0     0      0
##     NG                              0         0     0      0
##     PC                             12         0     0      0
##     PCFX                            0         0     0      0
##     PS                             80         0     0      0
##     PS2                           163         0     0      0
##     PS3                            61         0     0      0
##     PS4                             7         0     0      0
##     PSP                            79         0     0      0
##     PSV                            12         0     0      0
##     SAT                             4         0     0      0
##     SCD                             0         0     0      0
##     SNES                           19         0     1      4
##     TG16                            0         0     0      0
##     Wii                            55         0     0      0
##     WiiU                            0         0     0      0
##     WS                              0         0     0      0
##     X360                           49         0     0      0
##     XB                             31         1     0      0
##     XOne                            5         0     0      0
##     Sum                           832         1     1      4
##         Publisher
## Platform Legacy Interactive LEGO Media Level 5 Lexicon Entertainment
##     2600                  0          0       0                     0
##     3DO                   0          0       0                     0
##     3DS                   0          0      11                     0
##     DC                    0          0       0                     0
##     DS                    1          0       7                     2
##     GB                    0          0       0                     0
##     GBA                   0          2       0                     0
##     GC                    0          0       0                     0
##     GEN                   0          0       0                     0
##     GG                    0          0       0                     0
##     N64                   0          1       0                     0
##     NES                   0          0       0                     0
##     NG                    0          0       0                     0
##     PC                    0          1       0                     0
##     PCFX                  0          0       0                     0
##     PS                    0          3       0                     0
##     PS2                   0          0       0                     0
##     PS3                   0          0       0                     0
##     PS4                   0          0       0                     0
##     PSP                   0          0       4                     0
##     PSV                   0          0       2                     0
##     SAT                   0          0       0                     0
##     SCD                   0          0       0                     0
##     SNES                  0          0       0                     0
##     TG16                  0          0       0                     0
##     Wii                   0          0       2                     0
##     WiiU                  0          0       1                     0
##     WS                    0          0       0                     0
##     X360                  0          0       0                     0
##     XB                    0          0       0                     0
##     XOne                  0          0       0                     0
##     Sum                   1          7      27                     2
##         Publisher
## Platform Licensed 4U Lighthouse Interactive Liquid Games Little Orbit
##     2600           0                      0            0            0
##     3DO            0                      0            0            0
##     3DS            1                      0            0            7
##     DC             0                      0            0            0
##     DS             2                      0            0            1
##     GB             0                      0            0            0
##     GBA            0                      0            2            0
##     GC             0                      0            0            0
##     GEN            0                      0            0            0
##     GG             0                      0            0            0
##     N64            0                      0            0            0
##     NES            0                      0            0            0
##     NG             0                      0            0            0
##     PC             0                      1            0            0
##     PCFX           0                      0            0            0
##     PS             0                      0            0            0
##     PS2            0                      0            0            0
##     PS3            0                      0            0            4
##     PS4            0                      0            0            1
##     PSP            0                      0            0            0
##     PSV            0                      0            0            0
##     SAT            0                      0            0            0
##     SCD            0                      0            0            0
##     SNES           0                      0            0            0
##     TG16           0                      0            0            0
##     Wii            0                      0            0            3
##     WiiU           0                      0            0            3
##     WS             0                      0            0            0
##     X360           0                      0            0            6
##     XB             0                      0            0            0
##     XOne           0                      0            0            1
##     Sum            3                      1            2           26
##         Publisher
## Platform Locus LSP Games LucasArts Mad Catz Magical Company Magix
##     2600     0         0         0        0               0     0
##     3DO      0         0         0        0               0     0
##     3DS      0         0         1        0               0     0
##     DC       0         0         0        0               0     0
##     DS       0         0         9        0               0     0
##     GB       0         0         0        0               0     0
##     GBA      0         3         1        0               0     0
##     GC       0         0         4        1               0     0
##     GEN      0         0         0        0               0     0
##     GG       0         0         0        0               0     0
##     N64      0         0         1        0               0     0
##     NES      0         0         0        0               0     0
##     NG       0         0         0        0               0     0
##     PC       0         0        14        0               0     0
##     PCFX     0         0         0        0               0     0
##     PS       1         0         4        0               1     0
##     PS2      0         1        17        0               0     2
##     PS3      0         0         6        0               0     0
##     PS4      0         0         0        0               0     0
##     PSP      0         0         9        0               0     0
##     PSV      0         0         0        0               0     0
##     SAT      0         0         0        0               0     0
##     SCD      0         0         0        0               0     0
##     SNES     0         0         0        0               0     0
##     TG16     0         0         0        0               0     0
##     Wii      0         0         8        0               0     0
##     WiiU     0         0         0        0               0     0
##     WS       0         0         0        0               0     0
##     X360     0         0         8        1               0     0
##     XB       0         0         8        1               0     0
##     XOne     0         0         0        0               0     0
##     Sum      1         4        90        3               1     2
##         Publisher
## Platform Majesco Entertainment Mamba Games Marvel Entertainment
##     2600                     0           0                    0
##     3DO                      0           0                    0
##     3DS                      4           0                    0
##     DC                       0           0                    0
##     DS                      39           0                    0
##     GB                       0           0                    0
##     GBA                     15           0                    0
##     GC                       0           0                    0
##     GEN                      0           0                    0
##     GG                       0           0                    0
##     N64                      0           0                    0
##     NES                      0           0                    0
##     NG                       0           0                    0
##     PC                       0           2                    0
##     PCFX                     0           0                    0
##     PS                       0           0                    0
##     PS2                      1           0                    0
##     PS3                      1           0                    0
##     PS4                      0           0                    0
##     PSP                      2           0                    0
##     PSV                      0           0                    1
##     SAT                      0           0                    0
##     SCD                      0           0                    0
##     SNES                     0           0                    0
##     TG16                     0           0                    0
##     Wii                     24           0                    0
##     WiiU                     0           0                    0
##     WS                       0           0                    0
##     X360                     4           0                    0
##     XB                       1           0                    0
##     XOne                     1           0                    0
##     Sum                     92           2                    1
##         Publisher
## Platform Marvelous Entertainment Marvelous Games Marvelous Interactive
##     2600                       0               0                     0
##     3DO                        0               0                     0
##     3DS                        5               0                     3
##     DC                         0               0                     0
##     DS                         0               0                    13
##     GB                         0               0                     0
##     GBA                        0               0                     3
##     GC                         0               0                     1
##     GEN                        0               0                     0
##     GG                         0               0                     0
##     N64                        0               0                     0
##     NES                        0               0                     0
##     NG                         0               0                     0
##     PC                         0               0                     0
##     PCFX                       0               0                     0
##     PS                         0               0                     0
##     PS2                        0               0                    12
##     PS3                        0               0                     2
##     PS4                        0               0                     2
##     PSP                        2               0                    11
##     PSV                        5               1                     3
##     SAT                        0               0                     0
##     SCD                        0               0                     0
##     SNES                       0               0                     0
##     TG16                       0               0                     0
##     Wii                        0               0                     5
##     WiiU                       0               0                     0
##     WS                         0               0                     0
##     X360                       0               0                     1
##     XB                         0               0                     0
##     XOne                       0               0                     0
##     Sum                       12               1                    56
##         Publisher
## Platform Masque Publishing Mastertronic Mastiff Mattel Interactive
##     2600                 0            0       0                  8
##     3DO                  0            0       0                  0
##     3DS                  0            0       3                  0
##     DC                   0            0       0                  0
##     DS                   0            4       2                  0
##     GB                   0            0       0                  0
##     GBA                  0            0       1                  0
##     GC                   0            0       0                  0
##     GEN                  0            0       0                  0
##     GG                   0            0       0                  0
##     N64                  0            0       0                  0
##     NES                  0            0       0                  0
##     NG                   0            0       0                  0
##     PC                   1            4       1                  0
##     PCFX                 0            0       0                  0
##     PS                   0            0       0                  4
##     PS2                  0            1       1                  0
##     PS3                  0            0       0                  0
##     PS4                  0            0       0                  0
##     PSP                  0            0       0                  0
##     PSV                  0            0       0                  0
##     SAT                  0            0       0                  0
##     SCD                  0            0       0                  0
##     SNES                 0            0       0                  0
##     TG16                 0            0       0                  0
##     Wii                  0            1       7                  0
##     WiiU                 0            0       0                  0
##     WS                   0            0       0                  0
##     X360                 0            3       0                  0
##     XB                   0            0       1                  0
##     XOne                 0            0       0                  0
##     Sum                  1           13      16                 12
##         Publisher
## Platform Max Five Maximum Family Games Maxis MC2 Entertainment
##     2600        0                    0     0                 0
##     3DO         0                    0     0                 0
##     3DS         0                    1     0                 0
##     DC          0                    0     0                 0
##     DS          0                    0     0                 0
##     GB          0                    0     0                 0
##     GBA         0                    0     0                 0
##     GC          0                    0     0                 0
##     GEN         0                    0     0                 0
##     GG          0                    0     0                 0
##     N64         0                    0     0                 0
##     NES         0                    0     0                 0
##     NG          0                    0     0                 0
##     PC          0                    0     2                 2
##     PCFX        0                    0     0                 0
##     PS          1                    0     1                 0
##     PS2         0                    0     0                 0
##     PS3         0                    0     0                 0
##     PS4         0                    0     0                 0
##     PSP         0                    0     0                 0
##     PSV         0                    0     0                 0
##     SAT         0                    0     0                 0
##     SCD         0                    0     0                 0
##     SNES        0                    0     0                 0
##     TG16        0                    0     0                 0
##     Wii         0                    0     0                 0
##     WiiU        0                    0     0                 0
##     WS          0                    0     0                 0
##     X360        0                    0     0                 0
##     XB          0                    0     0                 1
##     XOne        0                    0     0                 0
##     Sum         1                    1     3                 3
##         Publisher
## Platform Media Entertainment Media Factory Media Rings Media Works
##     2600                   0             0           0           0
##     3DO                    0             0           0           0
##     3DS                    0             0           0           0
##     DC                     0             0           0           0
##     DS                     0             0           0           0
##     GB                     0             1           0           0
##     GBA                    0             0           1           0
##     GC                     0             0           0           0
##     GEN                    0             0           0           0
##     GG                     0             0           0           0
##     N64                    0             1           0           0
##     NES                    0             0           0           0
##     NG                     0             0           0           0
##     PC                     0             0           0           0
##     PCFX                   0             0           0           0
##     PS                     0             0           0           2
##     PS2                    1             0           0           2
##     PS3                    0             0           0           0
##     PS4                    0             0           0           0
##     PSP                    0             0           0           0
##     PSV                    0             0           0           0
##     SAT                    0             0           0           1
##     SCD                    0             0           0           0
##     SNES                   0             0           2           0
##     TG16                   0             0           0           0
##     Wii                    0             0           0           0
##     WiiU                   0             0           0           0
##     WS                     0             0           0           0
##     X360                   0             0           0           0
##     XB                     0             0           0           0
##     XOne                   0             0           0           0
##     Sum                    1             2           3           5
##         Publisher
## Platform MediaQuest Men-A-Vision Mentor Interactive Mercury Games
##     2600          0            1                  0             0
##     3DO           0            0                  0             0
##     3DS           0            0                  0             0
##     DC            0            0                  0             0
##     DS            0            0                  5             2
##     GB            0            0                  0             0
##     GBA           0            0                  0             0
##     GC            0            0                  0             0
##     GEN           0            0                  0             0
##     GG            0            0                  0             0
##     N64           0            0                  0             0
##     NES           0            0                  0             0
##     NG            0            0                  0             0
##     PC            0            0                  0             0
##     PCFX          0            0                  0             0
##     PS            1            0                  0             0
##     PS2           0            0                  0             0
##     PS3           0            0                  0             0
##     PS4           0            0                  0             0
##     PSP           0            0                  0             2
##     PSV           0            0                  0             0
##     SAT           0            0                  0             0
##     SCD           0            0                  0             0
##     SNES          0            0                  0             0
##     TG16          0            0                  0             0
##     Wii           0            0                  0             0
##     WiiU          0            0                  0             0
##     WS            0            0                  0             0
##     X360          0            0                  0             0
##     XB            0            0                  0             0
##     XOne          0            0                  0             0
##     Sum           1            1                  5             4
##         Publisher
## Platform Merscom LLC Metro 3D Michaelsoft Micro Cabin Microids Microprose
##     2600           0        0           0           0        0          0
##     3DO            0        0           0           1        0          0
##     3DS            0        0           0           0        0          0
##     DC             0        0           0           0        0          0
##     DS             0        0           0           0        0          0
##     GB             0        0           0           0        0          0
##     GBA            0        0           0           0        1          0
##     GC             0        0           0           0        0          0
##     GEN            0        0           0           0        0          0
##     GG             0        0           0           0        0          0
##     N64            0        0           0           0        0          0
##     NES            0        0           0           0        0          0
##     NG             0        0           0           0        0          0
##     PC             1        0           0           0        3          2
##     PCFX           0        0           0           0        0          0
##     PS             0        0           0           0        0          4
##     PS2            0        7           1           0        1          0
##     PS3            0        0           0           0        0          0
##     PS4            0        0           0           0        1          0
##     PSP            0        0           0           0        0          0
##     PSV            0        0           0           0        0          0
##     SAT            0        0           0           2        0          0
##     SCD            0        0           0           0        0          0
##     SNES           0        0           0           0        0          0
##     TG16           0        0           0           0        0          0
##     Wii            0        4           0           0        0          0
##     WiiU           0        0           0           0        0          0
##     WS             0        0           0           0        0          0
##     X360           0        0           0           0        0          0
##     XB             0        1           0           0        4          0
##     XOne           0        0           0           0        0          0
##     Sum            1       12           1           3       10          6
##         Publisher
## Platform Microsoft Game Studios Midas Interactive Entertainment
##     2600                      0                               0
##     3DO                       0                               0
##     3DS                       0                               0
##     DC                        0                               0
##     DS                        0                               5
##     GB                        0                               0
##     GBA                       0                               0
##     GC                        0                               0
##     GEN                       0                               0
##     GG                        0                               0
##     N64                       0                               0
##     NES                       0                               0
##     NG                        0                               0
##     PC                       29                               0
##     PCFX                      0                               0
##     PS                        0                               6
##     PS2                       0                              10
##     PS3                       0                               0
##     PS4                       0                               0
##     PSP                       0                               1
##     PSV                       0                               0
##     SAT                       0                               0
##     SCD                       0                               0
##     SNES                      0                               0
##     TG16                      0                               0
##     Wii                       0                               2
##     WiiU                      1                               0
##     WS                        0                               0
##     X360                     71                               0
##     XB                       68                               0
##     XOne                     20                               0
##     Sum                     189                              24
##         Publisher
## Platform Midway Games Milestone Milestone S.r.l Milestone S.r.l.
##     2600            0         0               0                0
##     3DO             0         0               0                0
##     3DS             0         0               0                0
##     DC              0         0               0                0
##     DS              8         0               0                0
##     GB              0         0               0                0
##     GBA             7         0               0                0
##     GC             25         0               0                0
##     GEN             0         0               0                0
##     GG              0         0               0                0
##     N64            20         0               0                0
##     NES             0         0               0                0
##     NG              0         0               0                0
##     PC              2         0               0                2
##     PCFX            0         0               0                0
##     PS             14         0               0                0
##     PS2            50         0               0                0
##     PS3             7         0               0                3
##     PS4             0         0               1                4
##     PSP             7         0               0                0
##     PSV             0         0               0                1
##     SAT             0         0               0                0
##     SCD             0         0               0                0
##     SNES            0         0               0                0
##     TG16            0         0               0                0
##     Wii            10         1               0                0
##     WiiU            0         0               0                0
##     WS              0         0               0                0
##     X360            9         0               0                3
##     XB             39         0               0                0
##     XOne            0         0               1                3
##     Sum           198         1               2               16
##         Publisher
## Platform Minato Station Mindscape Mirai Shounen Misawa Mitsui mixi, Inc
##     2600              0         0             0      0      0         0
##     3DO               0         0             0      0      0         0
##     3DS               0         0             0      0      0         1
##     DC                0         0             0      0      0         0
##     DS                0        11             1      0      0         0
##     GB                0         0             0      0      0         0
##     GBA               0         0             0      0      0         0
##     GC                0         0             0      0      0         0
##     GEN               0         0             0      0      0         0
##     GG                0         0             0      0      0         0
##     N64               0         1             0      0      1         0
##     NES               0         0             0      0      0         0
##     NG                0         0             0      0      0         0
##     PC                0         0             0      0      0         0
##     PCFX              0         0             0      0      0         0
##     PS                0         7             0      0      0         0
##     PS2               1         1             0      0      0         0
##     PS3               1         0             0      0      0         0
##     PS4               0         0             0      0      0         0
##     PSP               0         0             0      0      0         0
##     PSV               1         0             0      0      0         0
##     SAT               0         0             0      0      0         0
##     SCD               0         0             0      0      0         0
##     SNES              0         0             0      2      0         0
##     TG16              0         0             0      0      0         0
##     Wii               0        10             0      0      0         0
##     WiiU              0         0             0      0      0         0
##     WS                0         0             0      0      0         0
##     X360              0         1             0      0      0         0
##     XB                0         1             0      0      0         0
##     XOne              0         0             0      0      0         0
##     Sum               3        32             1      2      1         1
##         Publisher
## Platform MLB.com Mojang Monte Christo Multimedia  Moss   MTO MTV Games
##     2600       0      0                        0     0     0         0
##     3DO        0      0                        0     0     0         0
##     3DS        0      0                        0     0     0         0
##     DC         0      0                        0     0     0         0
##     DS         0      0                        0     0     7         1
##     GB         0      0                        0     0     0         0
##     GBA        0      0                        0     0     0         0
##     GC         0      0                        0     0     0         0
##     GEN        0      0                        0     0     0         0
##     GG         0      0                        0     0     0         0
##     N64        0      0                        0     0     0         0
##     NES        0      0                        0     0     0         0
##     NG         0      0                        0     0     0         0
##     PC         0      1                        1     0     0         0
##     PCFX       0      0                        0     0     0         0
##     PS         0      0                        0     0     1         0
##     PS2        0      0                        0     0     0         7
##     PS3        0      1                        0     0     0        10
##     PS4        0      1                        0     0     0         0
##     PSP        0      0                        0     0     0         1
##     PSV        0      0                        0     0     0         0
##     SAT        0      0                        0     0     0         0
##     SCD        0      0                        0     0     0         0
##     SNES       0      0                        0     0     0         0
##     TG16       0      0                        0     0     0         0
##     Wii        0      0                        0     0     0        12
##     WiiU       0      0                        0     0     0         0
##     WS         0      0                        0     0     0         0
##     X360       0      1                        0     2     0        10
##     XB         0      0                        0     0     0         0
##     XOne       1      1                        0     0     0         0
##     Sum        1      5                        1     2     8        41
##         Publisher
## Platform Mud Duck Productions Mumbo Jumbo Mycom Myelin Media Mystique
##     2600                    0           0     0            0        1
##     3DO                     0           0     0            0        0
##     3DS                     0           0     0            0        0
##     DC                      0           0     0            0        0
##     DS                      0           2     1            0        0
##     GB                      0           0     0            0        0
##     GBA                     0           0     0            0        0
##     GC                      0           0     0            0        0
##     GEN                     0           0     0            0        0
##     GG                      0           0     0            0        0
##     N64                     0           0     0            0        0
##     NES                     0           0     0            0        0
##     NG                      0           0     0            0        0
##     PC                      0           1     0            0        0
##     PCFX                    0           0     0            0        0
##     PS                      0           0     0            0        0
##     PS2                     1           0     0            1        0
##     PS3                     0           0     0            0        0
##     PS4                     0           0     0            0        0
##     PSP                     0           2     0            1        0
##     PSV                     0           0     0            0        0
##     SAT                     0           0     0            0        0
##     SCD                     0           0     0            0        0
##     SNES                    0           0     0            0        0
##     TG16                    0           0     0            0        0
##     Wii                     0           1     0            0        0
##     WiiU                    0           0     0            0        0
##     WS                      0           0     0            0        0
##     X360                    0           0     0            0        0
##     XB                      2           0     0            1        0
##     XOne                    0           0     0            0        0
##     Sum                     3           6     1            3        1
##         Publisher
## Platform   N/A Namco Bandai Games Natsume Navarre Corp Naxat Soft   NCS
##     2600     0                  0       0            0          0     0
##     3DO      0                  0       0            0          0     0
##     3DS      2                 87       1            0          0     0
##     DC       0                  2       0            0          0     0
##     DS       7                135       5            0          0     0
##     GB       0                  3       0            0          0     0
##     GBA     26                 16       2            0          0     0
##     GC       0                 22       0            0          0     0
##     GEN      0                  0       0            0          0     0
##     GG       0                  0       0            0          0     0
##     N64      0                  6       1            0          0     0
##     NES      0                 14       0            0          0     0
##     NG       0                  0       0            0          0     0
##     PC       6                 12       0            0          0     0
##     PCFX     0                  0       0            0          0     0
##     PS       3                 48       2            0          0     0
##     PS2      2                107       4            0          1     0
##     PS3      3                116       0            0          0     0
##     PS4      0                 30       0            0          0     0
##     PSP      2                121       1            0          0     0
##     PSV      2                 45       0            0          0     0
##     SAT      0                  8       0            0          0     3
##     SCD      0                  0       0            0          0     0
##     SNES     0                 26       0            0          0     0
##     TG16     0                  0       0            0          0     0
##     Wii      1                 56       1            0          0     0
##     WiiU     0                 13       0            0          0     0
##     WS       0                  4       0            0          0     0
##     X360     4                 44       0            1          0     0
##     XB       0                 10       0            0          0     0
##     XOne     0                  7       0            0          0     0
##     Sum     58                932      17            1          1     3
##         Publisher
## Platform NCSoft NDA Productions   NEC NEC Interchannel Neko Entertainment
##     2600      0               0     0                0                  0
##     3DO       0               0     0                0                  0
##     3DS       0               0     0                0                  0
##     DC        0               0     0                3                  0
##     DS        0               0     0                0                  3
##     GB        0               0     0                0                  0
##     GBA       0               0     0                0                  0
##     GC        0               1     0                0                  0
##     GEN       0               0     0                0                  0
##     GG        0               0     0                0                  0
##     N64       0               0     0                0                  0
##     NES       0               0     0                0                  0
##     NG        0               0     0                0                  0
##     PC        6               0     0                0                  0
##     PCFX      0               0     1                0                  0
##     PS        0               0     0                0                  0
##     PS2       0               0     0                0                  0
##     PS3       0               0     0                0                  0
##     PS4       0               0     0                0                  0
##     PSP       0               0     0                0                  0
##     PSV       0               0     0                0                  0
##     SAT       0               0     1                5                  0
##     SCD       0               0     0                0                  0
##     SNES      0               0     0                0                  0
##     TG16      0               0     1                0                  0
##     Wii       0               0     0                0                  4
##     WiiU      0               0     0                0                  0
##     WS        0               0     0                0                  0
##     X360      0               0     0                0                  0
##     XB        0               0     0                0                  0
##     XOne      0               0     0                0                  0
##     Sum       6               1     3                8                  7
##         Publisher
## Platform NetRevo   New New World Computing NewKidCo Nexon Nichibutsu
##     2600       0     0                   0        0     0          0
##     3DO        0     0                   0        0     0          0
##     3DS        0     0                   0        0     0          0
##     DC         0     0                   0        0     0          0
##     DS         0     0                   0        0     1          0
##     GB         0     0                   0        0     0          0
##     GBA        0     0                   0        4     0          0
##     GC         0     0                   0        1     0          0
##     GEN        0     0                   0        0     0          0
##     GG         0     0                   0        0     0          0
##     N64        0     0                   0        2     0          0
##     NES        0     0                   0        0     0          0
##     NG         0     0                   0        0     0          0
##     PC         0     0                   1        0     0          0
##     PCFX       0     0                   0        0     0          0
##     PS         0     1                   0        2     0          0
##     PS2        0     0                   0        0     0          0
##     PS3        0     0                   0        0     0          0
##     PS4        0     0                   0        0     0          0
##     PSP        2     0                   0        0     0          0
##     PSV        0     0                   0        0     0          0
##     SAT        0     0                   0        0     0          0
##     SCD        0     0                   0        0     0          0
##     SNES       0     0                   0        0     0          1
##     TG16       0     0                   0        0     0          0
##     Wii        0     0                   0        0     0          0
##     WiiU       0     0                   0        0     0          0
##     WS         0     0                   0        0     0          0
##     X360       0     0                   0        0     0          0
##     XB         0     0                   0        0     0          0
##     XOne       0     0                   0        0     0          0
##     Sum        2     1                   1        9     1          1
##         Publisher
## Platform Nihon Falcom Corporation Nintendo Nippon Amuse Nippon Columbia
##     2600                        0        0            0               0
##     3DO                         0        0            0               0
##     3DS                         0       82            0               7
##     DC                          0        0            0               0
##     DS                          0      151            0               0
##     GB                          0       61            0               0
##     GBA                         0       91            0               0
##     GC                          0       53            0               0
##     GEN                         0        0            0               0
##     GG                          0        0            0               0
##     N64                         0       60            0               0
##     NES                         0       45            0               0
##     NG                          0        0            0               0
##     PC                          0        0            0               0
##     PCFX                        0        0            0               0
##     PS                          0        0            0               0
##     PS2                         0        0            1               0
##     PS3                         0        0            0               0
##     PS4                         1        0            0               0
##     PSP                         1        0            0               0
##     PSV                         5        0            0               0
##     SAT                         0        0            0               0
##     SCD                         0        0            0               0
##     SNES                        0       36            0               0
##     TG16                        0        0            0               0
##     Wii                         0       84            0               0
##     WiiU                        0       40            0               0
##     WS                          0        0            0               0
##     X360                        0        0            0               0
##     XB                          0        0            0               0
##     XOne                        0        0            0               0
##     Sum                         7      703            1               7
##         Publisher
## Platform Nippon Ichi Software Nippon Telenet Nitroplus Nobilis Nordcurrent
##     2600                    0              0         0       0           0
##     3DO                     0              0         0       0           0
##     3DS                     5              0         0       0           0
##     DC                      0              0         0       0           0
##     DS                      2              0         0      10           2
##     GB                      0              0         0       0           0
##     GBA                     0              0         0       0           0
##     GC                      0              0         0       0           0
##     GEN                     0              0         0       0           0
##     GG                      0              0         0       0           0
##     N64                     0              0         0       0           0
##     NES                     0              0         0       0           0
##     NG                      0              0         0       0           0
##     PC                      0              0         0       1           0
##     PCFX                    0              0         0       0           0
##     PS                      1              0         0       0           0
##     PS2                     5              0         0       0           0
##     PS3                    33              0         1       0           0
##     PS4                     9              0         0       0           0
##     PSP                    17              0         0       0           0
##     PSV                    31              0         1       0           0
##     SAT                     0              0         0       0           0
##     SCD                     0              0         0       0           0
##     SNES                    0              2         0       0           0
##     TG16                    0              0         0       0           0
##     Wii                     1              0         0       2           3
##     WiiU                    1              0         0       0           0
##     WS                      0              0         0       0           0
##     X360                    0              0         0       0           0
##     XB                      0              0         0       0           0
##     XOne                    0              0         0       0           0
##     Sum                   105              2         2      13           5
##         Publisher
## Platform Nordic Games NovaLogic Number None O-Games O3 Entertainment Ocean
##     2600            0         0           0       0                0     0
##     3DO             0         0           0       0                0     0
##     3DS             0         0           0       0                0     0
##     DC              0         0           0       0                0     0
##     DS              1         0           0       6                2     0
##     GB              0         0           0       0                0     0
##     GBA             0         0           0       0                0     0
##     GC              0         0           0       0                1     0
##     GEN             0         0           0       0                0     0
##     GG              0         0           0       0                0     0
##     N64             0         0           0       0                0     5
##     NES             0         0           0       0                0     1
##     NG              0         0           0       0                0     0
##     PC              4         1           1       0                0     0
##     PCFX            0         0           0       0                0     0
##     PS              0         0           0       0                0     7
##     PS2             0         1           0       0                0     0
##     PS3             2         0           0       3                0     0
##     PS4             6         0           0       0                0     0
##     PSP             0         0           0       0                0     0
##     PSV             0         0           0       0                0     0
##     SAT             0         0           0       0                0     0
##     SCD             0         0           0       0                0     0
##     SNES            0         0           0       0                0     1
##     TG16            0         0           0       0                0     0
##     Wii            15         0           0       6                0     0
##     WiiU            3         0           0       0                0     0
##     WS              0         0           0       0                0     0
##     X360            2         0           0       2                0     0
##     XB              0         1           0       0                0     0
##     XOne            2         0           0       0                0     0
##     Sum            35         3           1      17                3    14
##         Publisher
## Platform Office Create On Demand Ongakukan Origin Systems Otomate
##     2600             0         0         0              0       0
##     3DO              0         0         0              0       0
##     3DS              2         0         0              0       0
##     DC               0         0         0              0       0
##     DS               0         0         0              0       0
##     GB               0         0         0              0       0
##     GBA              0         0         0              0       0
##     GC               0         0         0              0       0
##     GEN              0         0         0              0       0
##     GG               0         0         0              0       0
##     N64              0         0         0              0       0
##     NES              0         0         0              0       0
##     NG               0         0         0              0       0
##     PC               0         0         0              0       0
##     PCFX             0         0         0              0       0
##     PS               0         1         0              1       0
##     PS2              0         0         0              0       0
##     PS3              0         0         1              0       0
##     PS4              0         0         0              0       0
##     PSP              0         0         0              0       1
##     PSV              0         0         0              0       0
##     SAT              0         0         0              0       0
##     SCD              0         0         0              0       0
##     SNES             0         0         0              0       0
##     TG16             0         0         0              0       0
##     Wii              0         0         0              0       0
##     WiiU             0         0         0              0       0
##     WS               0         0         0              0       0
##     X360             0         0         0              0       0
##     XB               0         0         0              0       0
##     XOne             0         0         0              0       0
##     Sum              2         1         1              1       1
##         Publisher
## Platform Oxygen Interactive P2 Games Pacific Century Cyber Works
##     2600                  0        0                           0
##     3DO                   0        0                           0
##     3DS                   0        0                           0
##     DC                    0        0                           0
##     DS                    9        2                           0
##     GB                    0        0                           0
##     GBA                   0        0                           0
##     GC                    0        0                           0
##     GEN                   0        0                           0
##     GG                    0        0                           0
##     N64                   0        0                           0
##     NES                   0        0                           0
##     NG                    0        0                           0
##     PC                    0        0                           0
##     PCFX                  0        0                           0
##     PS                    0        0                           0
##     PS2                   2        0                           1
##     PS3                   0        0                           0
##     PS4                   0        0                           0
##     PSP                   4        0                           0
##     PSV                   0        0                           0
##     SAT                   0        0                           0
##     SCD                   0        0                           0
##     SNES                  0        0                           0
##     TG16                  0        0                           0
##     Wii                   6        1                           0
##     WiiU                  0        0                           0
##     WS                    0        0                           0
##     X360                  1        0                           0
##     XB                    0        0                           0
##     XOne                  0        0                           0
##     Sum                  22        3                           1
##         Publisher
## Platform Pack-In-Video Pack In Soft Palcom Panther Software  Paon
##     2600             0            0      0                0     0
##     3DO              0            0      0                0     0
##     3DS              0            0      0                0     0
##     DC               0            0      0                0     0
##     DS               0            0      0                0     1
##     GB               0            0      0                0     0
##     GBA              0            0      0                0     0
##     GC               0            0      0                0     0
##     GEN              0            0      0                0     0
##     GG               0            0      0                0     0
##     N64              0            1      0                0     0
##     NES              0            0      1                0     0
##     NG               0            0      0                0     0
##     PC               0            0      0                0     0
##     PCFX             0            0      0                0     0
##     PS               0            0      0                1     0
##     PS2              0            0      0                0     3
##     PS3              0            0      0                0     0
##     PS4              0            0      0                0     0
##     PSP              0            0      0                0     2
##     PSV              0            0      0                0     0
##     SAT              0            0      0                0     0
##     SCD              0            0      0                0     0
##     SNES             2            0      0                0     0
##     TG16             0            0      0                0     0
##     Wii              0            0      0                0     0
##     WiiU             0            0      0                0     0
##     WS               0            0      0                0     0
##     X360             0            0      0                0     0
##     XB               0            0      0                0     0
##     XOne             0            0      0                0     0
##     Sum              2            1      1                1     6
##         Publisher
## Platform Paon Corporation Paradox Development Paradox Interactive
##     2600                0                   0                   0
##     3DO                 0                   0                   0
##     3DS                 0                   0                   0
##     DC                  0                   0                   0
##     DS                  0                   0                   0
##     GB                  0                   0                   0
##     GBA                 0                   0                   0
##     GC                  0                   0                   0
##     GEN                 0                   0                   0
##     GG                  0                   0                   0
##     N64                 0                   0                   0
##     NES                 0                   0                   0
##     NG                  0                   0                   0
##     PC                  0                   1                  23
##     PCFX                0                   0                   0
##     PS                  0                   0                   0
##     PS2                 0                   0                   0
##     PS3                 1                   0                   0
##     PS4                 0                   0                   0
##     PSP                 0                   0                   0
##     PSV                 0                   0                   0
##     SAT                 0                   0                   0
##     SCD                 0                   0                   0
##     SNES                0                   0                   0
##     TG16                0                   0                   0
##     Wii                 0                   0                   0
##     WiiU                0                   0                   0
##     WS                  0                   0                   0
##     X360                0                   0                   0
##     XB                  0                   0                   0
##     XOne                0                   0                   0
##     Sum                 1                   1                  23
##         Publisher
## Platform Parker Bros. Performance Designed Products Phantagram Phantom EFX
##     2600            7                             0          0           0
##     3DO             0                             0          0           0
##     3DS             0                             0          0           0
##     DC              0                             0          0           0
##     DS              0                             1          0           0
##     GB              0                             0          0           0
##     GBA             0                             0          0           0
##     GC              0                             0          0           0
##     GEN             0                             0          0           0
##     GG              0                             0          0           0
##     N64             0                             0          0           0
##     NES             0                             0          0           0
##     NG              0                             0          0           0
##     PC              0                             0          0           0
##     PCFX            0                             0          0           0
##     PS              0                             0          0           0
##     PS2             0                             0          0           0
##     PS3             0                             0          0           0
##     PS4             0                             0          0           0
##     PSP             0                             0          0           0
##     PSV             0                             0          0           0
##     SAT             0                             0          0           0
##     SCD             0                             0          0           0
##     SNES            0                             0          0           0
##     TG16            0                             0          0           0
##     Wii             0                             1          0           0
##     WiiU            0                             0          0           0
##     WS              0                             0          0           0
##     X360            0                             0          0           1
##     XB              0                             0          1           0
##     XOne            0                             0          0           0
##     Sum             7                             2          1           1
##         Publisher
## Platform Phenomedia Phoenix Games Piacci Pinnacle Pioneer LDC Play It
##     2600          0             0      0        0           0       0
##     3DO           0             0      0        0           0       0
##     3DS           0             0      0        0           0       0
##     DC            0             0      0        0           0       0
##     DS            4             1      0        3           0       0
##     GB            0             0      0        0           0       0
##     GBA           0             0      0        0           0       1
##     GC            0             0      0        0           0       0
##     GEN           0             0      0        0           0       0
##     GG            0             0      0        0           0       0
##     N64           0             0      0        0           0       0
##     NES           0             0      0        0           0       0
##     NG            0             0      0        0           0       0
##     PC            0             0      0        1           0       0
##     PCFX          0             0      0        0           0       0
##     PS            0             0      0        0           4       0
##     PS2           0             0      0        0           0      12
##     PS3           0             0      0        0           0       0
##     PS4           0             0      0        0           0       0
##     PSP           0             0      1        0           0       1
##     PSV           0             0      0        0           0       0
##     SAT           0             0      0        0           0       0
##     SCD           0             0      0        0           0       0
##     SNES          0             0      0        0           0       0
##     TG16          0             0      0        0           0       0
##     Wii           0             0      0        1           0       0
##     WiiU          0             0      0        0           0       0
##     WS            0             0      0        0           0       0
##     X360          0             0      0        0           0       0
##     XB            0             0      0        0           0       0
##     XOne          0             0      0        0           0       0
##     Sum           4             1      1        5           4      14
##         Publisher
## Platform Playlogic Game Factory Playmates Playmore PlayV Plenty PM Studios
##     2600                      0         0        0     0      0          0
##     3DO                       0         0        0     0      0          0
##     3DS                       0         0        0     0      0          0
##     DC                        0         0        0     0      0          0
##     DS                        3         0        0     4      1          0
##     GB                        0         0        0     0      0          0
##     GBA                       0         0        0     0      0          0
##     GC                        0         0        0     0      0          0
##     GEN                       0         0        0     0      0          0
##     GG                        0         0        0     0      0          0
##     N64                       0         0        0     0      0          0
##     NES                       0         0        0     0      0          0
##     NG                        0         0        0     0      0          0
##     PC                        1         0        0     0      0          0
##     PCFX                      0         0        0     0      0          0
##     PS                        0         1        0     0      0          0
##     PS2                       1         0        1     0      0          0
##     PS3                       1         0        0     0      0          0
##     PS4                       0         0        0     0      0          0
##     PSP                       1         0        0     0      0          1
##     PSV                       0         0        0     0      0          0
##     SAT                       0         0        0     0      0          0
##     SCD                       0         0        0     0      0          0
##     SNES                      0         0        0     0      0          0
##     TG16                      0         0        0     0      0          0
##     Wii                       5         0        0     0      0          0
##     WiiU                      0         0        0     0      0          0
##     WS                        0         0        0     0      0          0
##     X360                      2         0        0     0      0          0
##     XB                        0         0        0     0      0          0
##     XOne                      0         0        0     0      0          0
##     Sum                      14         1        1     4      1          1
##         Publisher
## Platform Pony Canyon PopCap Games Popcorn Arcade PopTop Software   Pow
##     2600           0            0              0               0     0
##     3DO            0            0              0               0     0
##     3DS            0            0              0               0     0
##     DC             0            0              0               0     0
##     DS             0            4              0               0     0
##     GB             0            0              0               0     0
##     GBA            0            0              0               0     0
##     GC             0            0              0               0     0
##     GEN            0            0              0               0     0
##     GG             0            0              0               0     0
##     N64            0            0              0               0     0
##     NES            0            0              0               0     0
##     NG             0            0              0               0     0
##     PC             0            6              0               0     0
##     PCFX           0            0              0               0     0
##     PS             1            0              0               1     0
##     PS2            0            0              0               0     0
##     PS3            0            1              0               0     0
##     PS4            0            0              0               0     0
##     PSP            0            0              0               0     0
##     PSV            0            0              0               0     0
##     SAT            0            0              0               0     0
##     SCD            0            0              0               0     0
##     SNES           0            0              0               0     1
##     TG16           0            0              0               0     0
##     Wii            0            0             10               0     0
##     WiiU           0            0              0               0     0
##     WS             0            0              0               0     0
##     X360           0            4              0               0     0
##     XB             0            0              0               0     0
##     XOne           0            0              0               0     0
##     Sum            1           15             10               1     1
##         Publisher
## Platform PQube Princess Soft Prototype Psygnosis Quelle Quest Quinrose
##     2600     0             0         0         0      1     0        0
##     3DO      0             0         0         0      0     0        0
##     3DS      1             0         0         0      0     0        0
##     DC       0             0         0         0      0     0        0
##     DS       3             0         0         0      0     0        0
##     GB       0             0         0         0      0     0        0
##     GBA      0             0         0         0      0     0        0
##     GC       0             0         0         0      0     0        0
##     GEN      0             0         0         0      0     0        0
##     GG       0             0         0         0      0     0        0
##     N64      0             0         0         0      0     0        0
##     NES      0             0         0         0      0     0        0
##     NG       0             0         0         0      0     0        0
##     PC       1             0         0         0      0     0        0
##     PCFX     0             0         0         0      0     0        0
##     PS       0             0         0        32      0     0        0
##     PS2      1             3         7         0      0     0        0
##     PS3     10             0         1         0      0     0        0
##     PS4      4             0         0         0      0     0        0
##     PSP      4             0        11         0      0     0       14
##     PSV      7             0         6         0      0     0        0
##     SAT      0             0         0         0      0     0        0
##     SCD      0             0         0         0      0     0        0
##     SNES     0             0         0         0      0     1        0
##     TG16     0             0         0         0      0     0        0
##     Wii      4             0         0         0      0     0        0
##     WiiU     0             0         0         0      0     0        0
##     WS       0             0         0         0      0     0        0
##     X360     3             0         2         0      0     0        0
##     XB       0             0         0         0      0     0        0
##     XOne     1             0         0         0      0     0        0
##     Sum     39             3        27        32      1     1       14
##         Publisher
## Platform Quintet Rage Software Rain Games Rebellion Rebellion Developments
##     2600       0             0          0         0                      0
##     3DO        0             0          0         0                      0
##     3DS        0             0          0         0                      0
##     DC         0             0          0         0                      0
##     DS         0             0          0         0                      0
##     GB         0             0          0         0                      0
##     GBA        0             1          0         2                      0
##     GC         0             1          0         0                      0
##     GEN        0             0          0         0                      0
##     GG         0             0          0         0                      0
##     N64        0             0          0         0                      0
##     NES        0             0          0         0                      0
##     NG         0             0          0         0                      0
##     PC         0             0          0         0                      0
##     PCFX       0             0          0         0                      0
##     PS         0             0          0         0                      0
##     PS2        0             2          0         0                      0
##     PS3        0             0          0         0                      0
##     PS4        0             0          0         0                      1
##     PSP        0             0          0         0                      0
##     PSV        0             0          1         0                      0
##     SAT        1             0          0         0                      0
##     SCD        0             0          0         0                      0
##     SNES       0             0          0         0                      0
##     TG16       0             0          0         0                      0
##     Wii        0             0          0         0                      0
##     WiiU       0             0          0         0                      0
##     WS         0             0          0         0                      0
##     X360       0             0          0         0                      0
##     XB         0             3          0         0                      0
##     XOne       0             0          0         0                      1
##     Sum        1             7          1         2                      2
##         Publisher
## Platform RED Entertainment Red Orb Red Storm Entertainment RedOctane
##     2600                 0       0                       0         0
##     3DO                  0       0                       0         0
##     3DS                  0       0                       0         0
##     DC                   0       0                       0         0
##     DS                   0       0                       0         0
##     GB                   0       0                       0         0
##     GBA                  0       0                       0         0
##     GC                   0       0                       0         0
##     GEN                  0       0                       0         0
##     GG                   0       0                       0         0
##     N64                  0       0                       1         0
##     NES                  0       0                       0         0
##     NG                   0       0                       0         0
##     PC                   0       2                       0         0
##     PCFX                 0       0                       0         0
##     PS                   0       0                       2         0
##     PS2                  1       0                       0         4
##     PS3                  0       0                       0         0
##     PS4                  0       0                       0         0
##     PSP                  0       0                       0         0
##     PSV                  0       0                       0         0
##     SAT                  0       0                       0         0
##     SCD                  0       0                       0         0
##     SNES                 0       0                       0         0
##     TG16                 0       0                       0         0
##     Wii                  0       0                       0         0
##     WiiU                 0       0                       0         0
##     WS                   0       0                       0         0
##     X360                 0       0                       0         0
##     XB                   0       0                       0         0
##     XOne                 0       0                       0         0
##     Sum                  1       2                       3         4
##         Publisher
## Platform Reef Entertainment responDESIGN Revolution (Japan)
##     2600                  0            0                  0
##     3DO                   0            0                  0
##     3DS                   0            0                  0
##     DC                    0            0                  0
##     DS                    1            0                  0
##     GB                    0            0                  0
##     GBA                   0            0                  0
##     GC                    0            0                  0
##     GEN                   0            0                  0
##     GG                    0            0                  0
##     N64                   0            0                  0
##     NES                   0            0                  0
##     NG                    0            0                  0
##     PC                    1            0                  0
##     PCFX                  0            0                  0
##     PS                    0            0                  0
##     PS2                   0            1                  1
##     PS3                   1            0                  0
##     PS4                   0            0                  0
##     PSP                   0            0                  0
##     PSV                   0            0                  0
##     SAT                   0            0                  0
##     SCD                   0            0                  0
##     SNES                  0            0                  0
##     TG16                  0            0                  0
##     Wii                   4            0                  0
##     WiiU                  0            0                  0
##     WS                    0            0                  0
##     X360                  0            0                  0
##     XB                    0            1                  0
##     XOne                  0            0                  0
##     Sum                   7            2                  1
##         Publisher
## Platform Revolution Software Rising Star Games Riverhillsoft
##     2600                   0                 0             0
##     3DO                    0                 0             0
##     3DS                    0                 4             0
##     DC                     0                 0             0
##     DS                     0                40             0
##     GB                     0                 0             0
##     GBA                    0                 0             0
##     GC                     0                 0             0
##     GEN                    0                 0             0
##     GG                     0                 0             0
##     N64                    0                 0             0
##     NES                    0                 0             0
##     NG                     0                 0             0
##     PC                     0                 1             0
##     PCFX                   0                 0             0
##     PS                     0                 0             1
##     PS2                    0                 3             0
##     PS3                    0                 2             0
##     PS4                    1                 1             0
##     PSP                    0                12             0
##     PSV                    0                 1             0
##     SAT                    0                 0             0
##     SCD                    0                 0             0
##     SNES                   0                 0             0
##     TG16                   0                 0             0
##     Wii                    0                17             0
##     WiiU                   0                 0             0
##     WS                     0                 0             0
##     X360                   0                 5             0
##     XB                     0                 0             0
##     XOne                   1                 0             0
##     Sum                    2                86             1
##         Publisher
## Platform Rocket Company Rondomedia   RTL Russel Sammy Corporation Saurus
##     2600              0          0     0      0                 0      0
##     3DO               0          0     0      0                 0      0
##     3DS               7          0     0      0                 0      0
##     DC                0          0     0      0                 0      0
##     DS                9          5     3      1                 0      0
##     GB                0          0     0      0                 0      0
##     GBA               0          0     0      0                 1      0
##     GC                0          0     0      0                 0      0
##     GEN               0          0     0      0                 0      0
##     GG                0          0     0      0                 0      0
##     N64               0          0     0      0                 0      0
##     NES               0          0     0      0                 0      0
##     NG                0          0     0      0                 0      0
##     PC                0          7     0      1                 0      0
##     PCFX              0          0     0      0                 0      0
##     PS                0          0     0      0                 0      1
##     PS2               0          0     0      2                 9      0
##     PS3               0          0     0      0                 0      0
##     PS4               0          0     0      0                 0      0
##     PSP               0          0     0      2                 0      0
##     PSV               0          0     0      0                 0      0
##     SAT               0          0     0      0                 0      0
##     SCD               0          0     0      0                 0      0
##     SNES              0          0     0      0                 1      0
##     TG16              0          0     0      0                 0      0
##     Wii               1          2     3      0                 0      0
##     WiiU              0          0     0      0                 0      0
##     WS                0          0     0      0                 0      0
##     X360              0          0     2      0                 0      0
##     XB                0          0     0      0                 0      0
##     XOne              0          0     0      0                 0      0
##     Sum              17         14     8      6                11      1
##         Publisher
## Platform Scholastic Inc.   SCi Screenlife SCS Software Sears  Sega
##     2600               0     0          0            0     1     1
##     3DO                0     0          0            0     0     0
##     3DS                0     0          3            0     0    21
##     DC                 0     0          0            0     0    30
##     DS                 7     0          0            0     0    64
##     GB                 0     0          0            0     0     0
##     GBA                0     0          0            0     0    10
##     GC                 0     3          0            0     0    25
##     GEN                0     0          0            0     0    18
##     GG                 0     0          0            0     0     1
##     N64                0     0          0            0     0     0
##     NES                0     0          0            0     0     0
##     NG                 0     0          0            0     0     0
##     PC                 0     1          0            1     0    33
##     PCFX               0     0          0            0     0     0
##     PS                 0     0          0            0     0     0
##     PS2                1     5          0            0     0    83
##     PS3                0     0          0            0     0    61
##     PS4                0     0          0            0     0     8
##     PSP                0     0          0            0     0    51
##     PSV                0     0          3            0     0    16
##     SAT                0     0          0            0     0    77
##     SCD                0     0          0            0     0     6
##     SNES               0     0          0            0     0     0
##     TG16               0     0          0            0     0     0
##     Wii                2     0          0            0     0    44
##     WiiU               0     0          0            0     0     4
##     WS                 0     0          0            0     0     0
##     X360               0     0          0            0     0    47
##     XB                 0     8          0            0     0    38
##     XOne               0     0          0            0     0     1
##     Sum               10    17          6            1     1   639
##         Publisher
## Platform Seta Corporation Seventh Chord Shogakukan
##     2600                0             0          0
##     3DO                 0             0          0
##     3DS                 0             1          1
##     DC                  0             0          0
##     DS                  0             0          2
##     GB                  0             0          0
##     GBA                 0             0          0
##     GC                  0             0          0
##     GEN                 0             0          0
##     GG                  0             0          0
##     N64                 1             0          0
##     NES                 0             0          0
##     NG                  0             0          0
##     PC                  0             0          0
##     PCFX                0             0          0
##     PS                  3             0          0
##     PS2                 0             0          0
##     PS3                 0             0          0
##     PS4                 0             0          0
##     PSP                 0             0          0
##     PSV                 0             0          0
##     SAT                 2             0          2
##     SCD                 0             0          0
##     SNES                0             0          0
##     TG16                0             0          0
##     Wii                 0             0          0
##     WiiU                0             0          0
##     WS                  0             0          0
##     X360                0             0          0
##     XB                  0             0          0
##     XOne                0             0          0
##     Sum                 6             1          5
##         Publisher
## Platform Simon & Schuster Interactive Slightly Mad Studios
##     2600                            0                    0
##     3DO                             0                    0
##     3DS                             0                    0
##     DC                              0                    0
##     DS                              0                    0
##     GB                              0                    0
##     GBA                             0                    0
##     GC                              0                    0
##     GEN                             0                    0
##     GG                              0                    0
##     N64                             0                    0
##     NES                             0                    0
##     NG                              0                    0
##     PC                              0                    1
##     PCFX                            0                    0
##     PS                              0                    0
##     PS2                             0                    0
##     PS3                             0                    0
##     PS4                             0                    1
##     PSP                             0                    0
##     PSV                             0                    0
##     SAT                             0                    0
##     SCD                             0                    0
##     SNES                            0                    0
##     TG16                            0                    0
##     Wii                             0                    0
##     WiiU                            0                    0
##     WS                              0                    0
##     X360                            0                    0
##     XB                              1                    0
##     XOne                            0                    1
##     Sum                             1                    3
##         Publisher
## Platform Slitherine Software   SNK SNK Playmore Societa Sold Out Sonnet
##     2600                   0     0            0       0        0      0
##     3DO                    0     0            0       0        0      0
##     3DS                    0     0            0       0        0      0
##     DC                     0     2            0       0        0      0
##     DS                     1     0            4       0        0      0
##     GB                     0     0            0       0        0      0
##     GBA                    0     0            0       0        0      0
##     GC                     0     0            0       0        0      0
##     GEN                    0     0            0       0        0      0
##     GG                     0     0            0       0        0      0
##     N64                    0     0            0       0        0      0
##     NES                    0     0            0       0        0      0
##     NG                     0    10            0       0        0      0
##     PC                     0     0            0       0        0      0
##     PCFX                   0     0            0       0        0      0
##     PS                     0     5            3       0        0      0
##     PS2                    0     1            6       0        0      0
##     PS3                    1     0            0       0        0      0
##     PS4                    0     0            0       0        1      0
##     PSP                    1     0            1       0        0      0
##     PSV                    0     0            0       0        0      0
##     SAT                    0     4            1       1        0      2
##     SCD                    0     0            0       0        0      0
##     SNES                   0     0            0       0        0      0
##     TG16                   0     0            0       0        0      0
##     Wii                    0     0            0       0        0      0
##     WiiU                   0     0            0       0        0      0
##     WS                     0     0            0       0        0      0
##     X360                   1     0            0       0        0      0
##     XB                     0     0            3       0        0      0
##     XOne                   0     0            0       0        0      0
##     Sum                    4    22           18       1        1      2
##         Publisher
## Platform Sony Computer Entertainment Sony Computer Entertainment America
##     2600                           0                                   0
##     3DO                            0                                   0
##     3DS                            0                                   0
##     DC                             0                                   0
##     DS                             0                                   0
##     GB                             0                                   0
##     GBA                            0                                   0
##     GC                             0                                   0
##     GEN                            0                                   0
##     GG                             0                                   0
##     N64                            0                                   0
##     NES                            0                                   0
##     NG                             0                                   0
##     PC                             0                                   0
##     PCFX                           0                                   0
##     PS                           188                                   0
##     PS2                          204                                   0
##     PS3                          129                                   1
##     PS4                           17                                   1
##     PSP                          117                                   0
##     PSV                           28                                   1
##     SAT                            0                                   0
##     SCD                            0                                   0
##     SNES                           0                                   0
##     TG16                           0                                   0
##     Wii                            0                                   0
##     WiiU                           0                                   0
##     WS                             0                                   0
##     X360                           0                                   0
##     XB                             0                                   0
##     XOne                           0                                   0
##     Sum                          683                                   3
##         Publisher
## Platform Sony Computer Entertainment Europe Sony Music Entertainment
##     2600                                  0                        0
##     3DO                                   0                        0
##     3DS                                   0                        0
##     DC                                    0                        0
##     DS                                    0                        0
##     GB                                    0                        0
##     GBA                                   0                        0
##     GC                                    0                        0
##     GEN                                   0                        0
##     GG                                    0                        0
##     N64                                   0                        0
##     NES                                   0                        0
##     NG                                    0                        0
##     PC                                    0                        0
##     PCFX                                  0                        0
##     PS                                    0                        0
##     PS2                                   2                        1
##     PS3                                   5                        0
##     PS4                                   4                        0
##     PSP                                   0                        0
##     PSV                                   4                        0
##     SAT                                   0                        0
##     SCD                                   0                        0
##     SNES                                  0                        0
##     TG16                                  0                        0
##     Wii                                   0                        0
##     WiiU                                  0                        0
##     WS                                    0                        0
##     X360                                  0                        0
##     XB                                    0                        0
##     XOne                                  0                        0
##     Sum                                  15                        1
##         Publisher
## Platform Sony Online Entertainment SouthPeak Games Spike   SPS Square
##     2600                         0               0     0     0      0
##     3DO                          0               0     0     0      0
##     3DS                          0               0     0     0      0
##     DC                           0               0     0     0      0
##     DS                           0              13     8     0      0
##     GB                           0               0     0     0      0
##     GBA                          0               0     1     0      0
##     GC                           0               0     0     0      0
##     GEN                          0               0     0     0      0
##     GG                           0               0     0     0      0
##     N64                          0               0     0     0      0
##     NES                          0               0     0     0      1
##     NG                           0               0     0     0      0
##     PC                           2               1     0     0      0
##     PCFX                         0               0     0     0      0
##     PS                           0               1     0     1      4
##     PS2                          4               3     7     0      0
##     PS3                          1               3     4     0      0
##     PS4                          0               0     0     0      0
##     PSP                          1               2    14     0      0
##     PSV                          0               0     0     0      0
##     SAT                          0               0     0     0      0
##     SCD                          0               0     0     0      0
##     SNES                         0               0     0     0      1
##     TG16                         0               0     0     0      0
##     Wii                          0               9     0     0      0
##     WiiU                         0               0     0     0      0
##     WS                           0               0     0     0      0
##     X360                         0               5     3     0      0
##     XB                           0               0     0     0      0
##     XOne                         0               0     0     0      0
##     Sum                          8              37    37     1      6
##         Publisher
## Platform Square EA Square Enix SquareSoft   SSI Stainless Games Starfish
##     2600         0           0          0     0               0        0
##     3DO          0           0          0     0               0        0
##     3DS          0          14          0     0               0        0
##     DC           0           0          0     0               0        0
##     DS           0          45          0     0               0        2
##     GB           0           0          3     0               0        0
##     GBA          0           2          1     0               0        1
##     GC           0           0          0     0               0        0
##     GEN          0           0          0     0               0        0
##     GG           0           0          0     0               0        0
##     N64          0           0          0     0               0        0
##     NES          0           0          3     0               0        0
##     NG           0           0          0     0               0        0
##     PC           0          21          0     0               0        0
##     PCFX         0           0          0     0               0        0
##     PS           1           0         25     1               0        2
##     PS2          0          26          4     0               0        0
##     PS3          0          29          0     0               0        0
##     PS4          0          19          0     0               0        0
##     PSP          0          20          0     0               0        4
##     PSV          0           8          0     0               0        0
##     SAT          0           0          0     0               0        0
##     SCD          0           0          0     0               0        0
##     SNES         0           0         14     0               0        0
##     TG16         0           0          0     0               0        0
##     Wii          0           9          0     0               0        1
##     WiiU         0           3          0     0               0        0
##     WS           0           0          2     0               0        0
##     X360         0          26          0     0               0        0
##     XB           0           0          0     0               0        0
##     XOne         0          11          0     0               1        0
##     Sum          1         233         52     1               1       10
##         Publisher
## Platform Starpath Corp. Sting Storm City Games Strategy First Success
##     2600              1     0                0              0       0
##     3DO               0     0                0              0       0
##     3DS               0     0                0              0       2
##     DC                0     0                0              0       0
##     DS                0     3               13              0       8
##     GB                0     0                0              0       0
##     GBA               0     2                0              0       0
##     GC                0     0                0              0       0
##     GEN               0     0                0              0       0
##     GG                0     0                0              0       0
##     N64               0     0                0              0       0
##     NES               0     0                0              0       0
##     NG                0     0                0              0       0
##     PC                0     0                0              1       0
##     PCFX              0     0                0              0       0
##     PS                0     0                0              0       4
##     PS2               0     1                0              0       3
##     PS3               0     0                0              0       0
##     PS4               0     0                0              0       0
##     PSP               0     2                0              0       1
##     PSV               0     0                0              0       0
##     SAT               0     0                0              0       0
##     SCD               0     0                0              0       0
##     SNES              0     0                0              0       0
##     TG16              0     0                0              0       0
##     Wii               0     1                6              0       0
##     WiiU              0     0                0              0       0
##     WS                0     0                0              0       0
##     X360              0     0                0              0       1
##     XB                0     0                0              0       0
##     XOne              0     0                0              0       0
##     Sum               1     9               19              1      19
##         Publisher
## Platform Summitsoft Sunflowers Sunrise Interactive Sunsoft Sweets
##     2600          0          0                   0       0      0
##     3DO           0          0                   0       0      0
##     3DS           0          0                   0       1      0
##     DC            0          0                   0       0      0
##     DS            0          0                   0       0      0
##     GB            0          0                   0       0      0
##     GBA           1          0                   0       0      0
##     GC            0          0                   0       0      0
##     GEN           0          0                   0       0      0
##     GG            0          0                   0       0      0
##     N64           0          0                   0       1      0
##     NES           0          0                   0       0      0
##     NG            0          0                   0       0      0
##     PC            0          1                   0       0      0
##     PCFX          0          0                   0       0      0
##     PS            0          0                   0       4      0
##     PS2           0          0                   4       0      2
##     PS3           0          0                   0       0      0
##     PS4           0          0                   0       0      0
##     PSP           0          0                   0       0      0
##     PSV           0          0                   0       0      0
##     SAT           0          0                   0       2      0
##     SCD           0          0                   0       0      0
##     SNES          0          0                   0       2      0
##     TG16          0          0                   0       0      0
##     Wii           0          0                   0       0      0
##     WiiU          0          0                   0       0      0
##     WS            0          0                   0       0      0
##     X360          0          0                   0       0      0
##     XB            0          0                   0       0      0
##     XOne          0          0                   0       0      0
##     Sum           1          1                   4      10      2
##         Publisher
## Platform Swing! Entertainment Syscom System 3 System 3 Arcade Software
##     2600                    0      0        0                        0
##     3DO                     0      0        0                        0
##     3DS                     0      0        0                        0
##     DC                      0      0        0                        0
##     DS                      0      0        0                        3
##     GB                      0      0        0                        0
##     GBA                     1      0        0                        0
##     GC                      0      0        0                        0
##     GEN                     0      0        0                        0
##     GG                      0      0        0                        0
##     N64                     0      0        0                        0
##     NES                     0      0        0                        0
##     NG                      0      0        0                        0
##     PC                      0      0        0                        0
##     PCFX                    0      0        0                        0
##     PS                      1      2        0                        0
##     PS2                     3      0        0                        1
##     PS3                     0      0        1                        2
##     PS4                     0      0        1                        0
##     PSP                     0      0        0                        2
##     PSV                     0      0        1                        0
##     SAT                     0      0        0                        0
##     SCD                     0      0        0                        0
##     SNES                    0      0        0                        0
##     TG16                    0      0        0                        0
##     Wii                     0      0        0                        6
##     WiiU                    0      0        0                        0
##     WS                      0      0        0                        0
##     X360                    0      0        0                        0
##     XB                      1      0        0                        0
##     XOne                    0      0        0                        0
##     Sum                     6      2        3                       14
##         Publisher
## Platform System Soft T&E Soft Taito Takara Takara Tomy
##     2600           0        0     1      0           0
##     3DO            0        0     0      0           0
##     3DS            0        0     0      0           3
##     DC             0        0     0      0           0
##     DS             0        0     3      0          22
##     GB             0        0     0      0           0
##     GBA            0        0     1      1           0
##     GC             0        0     1      0           0
##     GEN            0        0     0      0           0
##     GG             0        0     0      0           0
##     N64            0        0     1      1           0
##     NES            0        0     0      0           0
##     NG             0        0     0      0           0
##     PC             0        0     0      0           0
##     PCFX           0        0     0      0           0
##     PS             0        0     2      6           0
##     PS2            0        0     5      3           0
##     PS3            0        0     0      0           0
##     PS4            0        0     0      0           0
##     PSP            4        0     0      0           3
##     PSV            0        0     0      0           0
##     SAT            0        0     1      0           0
##     SCD            0        0     0      0           0
##     SNES           0        1     2      5           0
##     TG16           0        0     0      0           0
##     Wii            0        0     2      0           8
##     WiiU           0        0     0      0           0
##     WS             0        0     0      0           0
##     X360           0        0     0      0           1
##     XB             0        0     0      0           0
##     XOne           0        0     0      0           0
##     Sum            4        1    19     16          37
##         Publisher
## Platform Take-Two Interactive Takuyo TalonSoft TDK Core TDK Mediactive
##     2600                    0      0         0        0              0
##     3DO                     0      0         0        0              0
##     3DS                     2      0         0        0              0
##     DC                      0      0         0        0              0
##     DS                     29      0         0        3              0
##     GB                      0      0         0        0              0
##     GBA                     4      0         0        1             11
##     GC                      4      0         0        0              9
##     GEN                     0      0         0        0              0
##     GG                      0      0         0        0              0
##     N64                     4      0         0        0              0
##     NES                     0      0         0        0              0
##     NG                      0      0         0        0              0
##     PC                     45      0         0        0              0
##     PCFX                    0      0         0        0              0
##     PS                     18      0         1        1              2
##     PS2                    60      0         0        0              6
##     PS3                    53      0         0        0              0
##     PS4                    12      0         0        0              0
##     PSP                    23      1         0        0              0
##     PSV                     2      0         0        0              0
##     SAT                     0      0         0        0              0
##     SCD                     0      0         0        0              0
##     SNES                    0      0         0        0              0
##     TG16                    0      0         0        0              0
##     Wii                    38      0         0        0              0
##     WiiU                    1      0         0        0              0
##     WS                      0      0         0        0              0
##     X360                   70      0         0        0              0
##     XB                     36      0         0        0              8
##     XOne                   12      0         0        0              0
##     Sum                   413      1         1        5             36
##         Publisher
## Platform Team17 Software Technos Japan Corporation TechnoSoft Tecmo Koei
##     2600               0                         0          0          0
##     3DO                0                         0          0          0
##     3DS                0                         0          0          9
##     DC                 0                         0          0          0
##     DS                 0                         0          0         26
##     GB                 0                         0          0          0
##     GBA                0                         0          0          1
##     GC                 0                         0          0          1
##     GEN                0                         0          0          0
##     GG                 0                         0          0          0
##     N64                0                         0          0          0
##     NES                0                         0          0          0
##     NG                 0                         1          0          0
##     PC                 1                         0          0          0
##     PCFX               0                         0          0          0
##     PS                 0                         0          1         18
##     PS2                0                         0          0         85
##     PS3                0                         0          0         56
##     PS4                0                         0          0         22
##     PSP                0                         0          0         33
##     PSV                0                         0          0         32
##     SAT                0                         0          0          3
##     SCD                0                         0          0          0
##     SNES               0                         0          0          8
##     TG16               0                         0          0          0
##     Wii                0                         0          0          6
##     WiiU               0                         0          0          3
##     WS                 0                         0          0          0
##     X360               0                         0          0         23
##     XB                 0                         0          0          6
##     XOne               0                         0          0          6
##     Sum                1                         1          1        338
##         Publisher
## Platform Telegames Telltale Games Telstar Tetris Online   TGL
##     2600         0              0       0             0     0
##     3DO          0              0       0             0     0
##     3DS          0              0       0             1     0
##     DC           0              0       0             0     0
##     DS           4              0       0             0     0
##     GB           0              0       0             0     0
##     GBA          3              0       0             0     0
##     GC           0              0       0             0     0
##     GEN          0              0       0             0     0
##     GG           0              0       0             0     0
##     N64          0              0       0             0     0
##     NES          0              0       0             0     0
##     NG           0              0       0             0     0
##     PC           0              0       0             0     0
##     PCFX         0              0       0             0     0
##     PS           1              0       3             0     0
##     PS2          0              0       0             0     0
##     PS3          0              5       0             0     0
##     PS4          0              7       0             0     0
##     PSP          0              0       0             0     1
##     PSV          0              2       0             0     3
##     SAT          0              0       0             0     0
##     SCD          0              0       0             0     0
##     SNES         0              0       0             0     0
##     TG16         0              0       0             0     0
##     Wii          0              1       0             0     0
##     WiiU         0              0       0             0     0
##     WS           0              0       0             0     0
##     X360         0              4       0             0     0
##     XB           0              0       0             0     0
##     XOne         0              6       0             0     0
##     Sum          8             25       3             1     4
##         Publisher
## Platform The Adventure Company The Learning Company   THQ Tigervision
##     2600                     0                    0     0           3
##     3DO                      0                    0     0           0
##     3DS                      0                    0     3           0
##     DC                       0                    0     0           0
##     DS                       1                    0   115           0
##     GB                       0                    0     0           0
##     GBA                      0                    0   110           0
##     GC                       0                    0    47           0
##     GEN                      0                    0     0           0
##     GG                       0                    0     0           0
##     N64                      0                    0    18           0
##     NES                      0                    0     0           0
##     NG                       0                    0     0           0
##     PC                       0                    0    29           0
##     PCFX                     0                    0     0           0
##     PS                       0                    1    27           0
##     PS2                      0                    0   100           0
##     PS3                      0                    0    46           0
##     PS4                      0                    0     0           0
##     PSP                      0                    0    30           0
##     PSV                      0                    0     0           0
##     SAT                      0                    0     0           0
##     SCD                      0                    0     0           0
##     SNES                     0                    0     1           0
##     TG16                     0                    0     0           0
##     Wii                      4                    0    76           0
##     WiiU                     0                    0     1           0
##     WS                       0                    0     0           0
##     X360                     0                    0    64           0
##     XB                       0                    0    48           0
##     XOne                     0                    0     0           0
##     Sum                      5                    1   715           3
##         Publisher
## Platform Time Warner Interactive Titus Tivola  TOHO Tommo Tomy Corporation
##     2600                       0     0      0     0     0                0
##     3DO                        0     0      0     0     0                0
##     3DS                        0     0      0     0     0                0
##     DC                         0     0      0     0     0                0
##     DS                         0     0      3     0     3                5
##     GB                         0     0      0     0     0                0
##     GBA                        0     4      0     0     0                2
##     GC                         0     1      0     0     0                5
##     GEN                        0     0      0     0     0                0
##     GG                         0     0      0     0     0                0
##     N64                        0     6      0     0     0                0
##     NES                        0     0      0     0     0                0
##     NG                         0     0      0     0     0                0
##     PC                         0     0      0     0     0                0
##     PCFX                       0     0      0     0     0                0
##     PS                         5     3      0     0     0                4
##     PS2                        0     3      0     0     0                0
##     PS3                        0     0      0     0     0                0
##     PS4                        0     0      0     0     0                0
##     PSP                        0     0      0     0     0                0
##     PSV                        0     0      0     0     0                0
##     SAT                        0     0      0     0     0                0
##     SCD                        0     0      0     0     0                0
##     SNES                       0     1      0     1     0                0
##     TG16                       0     0      0     0     0                0
##     Wii                        0     0      0     0     2                2
##     WiiU                       0     0      0     0     0                0
##     WS                         0     0      0     0     0                0
##     X360                       0     0      0     0     0                0
##     XB                         0     1      0     0     0                0
##     XOne                       0     0      0     0     0                0
##     Sum                        5    19      3     1     5               18
##         Publisher
## Platform TopWare Interactive Touchstone Tradewest Trion Worlds
##     2600                   0          0         0            0
##     3DO                    0          0         0            0
##     3DS                    0          0         0            0
##     DC                     0          0         0            0
##     DS                     0          1         0            0
##     GB                     0          0         0            0
##     GBA                    0          0         0            0
##     GC                     0          0         0            0
##     GEN                    0          0         0            0
##     GG                     0          0         0            0
##     N64                    0          0         0            0
##     NES                    0          0         0            0
##     NG                     0          0         0            0
##     PC                     1          1         0            2
##     PCFX                   0          0         0            0
##     PS                     0          0         0            0
##     PS2                    0          0         0            0
##     PS3                    1          1         1            1
##     PS4                    1          0         0            0
##     PSP                    0          0         0            0
##     PSV                    0          0         0            0
##     SAT                    0          0         0            0
##     SCD                    0          0         0            0
##     SNES                   0          0         0            0
##     TG16                   0          0         0            0
##     Wii                    0          0         1            0
##     WiiU                   0          0         0            0
##     WS                     0          0         0            0
##     X360                   1          1         1            1
##     XB                     0          0         0            0
##     XOne                   0          0         0            0
##     Sum                    4          4         3            4
##         Publisher
## Platform Tripwire Interactive Tru Blu Entertainment Tryfirst   TYO
##     2600                    0                     0        0     0
##     3DO                     0                     0        0     0
##     3DS                     0                     0        0     0
##     DC                      0                     0        0     0
##     DS                      0                     0        0     0
##     GB                      0                     0        0     0
##     GBA                     0                     0        0     0
##     GC                      0                     0        0     0
##     GEN                     0                     0        0     0
##     GG                      0                     0        0     0
##     N64                     0                     0        0     0
##     NES                     0                     0        0     0
##     NG                      0                     0        0     0
##     PC                      1                     0        0     0
##     PCFX                    0                     0        0     0
##     PS                      0                     0        0     1
##     PS2                     0                     0        1     0
##     PS3                     0                     2        0     0
##     PS4                     0                     2        0     0
##     PSP                     0                     0        0     0
##     PSV                     0                     0        0     0
##     SAT                     0                     0        0     0
##     SCD                     0                     0        0     0
##     SNES                    0                     0        0     0
##     TG16                    0                     0        0     0
##     Wii                     0                     0        0     0
##     WiiU                    0                     0        0     0
##     WS                      0                     0        0     0
##     X360                    0                     2        0     0
##     XB                      0                     0        0     0
##     XOne                    0                     2        0     0
##     Sum                     1                     8        1     1
##         Publisher
## Platform Type-Moon U.S. Gold Ubisoft Ubisoft Annecy UEP Systems
##     2600         0         0       0              0           0
##     3DO          0         0       0              0           0
##     3DS          0         0      21              2           0
##     DC           0         0       1              0           0
##     DS           0         0     181              0           0
##     GB           0         0       1              0           0
##     GBA          0         0      53              0           0
##     GC           0         0      36              0           0
##     GEN          0         0       0              0           0
##     GG           0         0       0              0           0
##     N64          0         0      12              0           0
##     NES          0         0       0              0           0
##     NG           0         0       0              0           0
##     PC           0         0      76              0           0
##     PCFX         0         0       0              0           0
##     PS           0         4      24              0           1
##     PS2          0         0      70              0           0
##     PS3          0         0      73              5           0
##     PS4          0         0      24              0           0
##     PSP          0         0      38              4           0
##     PSV          1         0      11              0           0
##     SAT          0         0       0              0           0
##     SCD          0         0       0              0           0
##     SNES         0         0       0              0           0
##     TG16         0         0       0              0           0
##     Wii          0         0     115              0           0
##     WiiU         0         0      16              0           0
##     WS           0         0       0              0           0
##     X360         0         0      99              3           0
##     XB           0         0      45              0           0
##     XOne         0         0      25              0           0
##     Sum          1         4     921             14           1
##         Publisher
## Platform UFO Interactive UIG Entertainment Ultravision Universal Gamex
##     2600               0                 0           1               1
##     3DO                0                 0           0               0
##     3DS                1                 0           0               0
##     DC                 0                 0           0               0
##     DS                10                 0           0               0
##     GB                 0                 0           0               0
##     GBA                0                 0           0               0
##     GC                 0                 0           0               0
##     GEN                0                 0           0               0
##     GG                 0                 0           0               0
##     N64                0                 0           0               0
##     NES                0                 0           0               0
##     NG                 0                 0           0               0
##     PC                 0                 0           0               0
##     PCFX               0                 0           0               0
##     PS                 0                 0           0               0
##     PS2                0                 0           0               0
##     PS3                0                 0           0               0
##     PS4                0                 1           0               0
##     PSP                0                 0           0               0
##     PSV                0                 0           0               0
##     SAT                0                 0           0               0
##     SCD                0                 0           0               0
##     SNES               0                 0           0               0
##     TG16               0                 0           0               0
##     Wii                5                 0           0               0
##     WiiU               0                 0           0               0
##     WS                 0                 0           0               0
##     X360               0                 0           0               0
##     XB                 0                 0           0               0
##     XOne               0                 0           0               0
##     Sum               16                 1           1               1
##         Publisher
## Platform Universal Interactive Unknown Valcon Games ValuSoft Valve
##     2600                     0       1            0        0     0
##     3DO                      0       0            0        0     0
##     3DS                      0       9            0        0     0
##     DC                       0       0            0        0     0
##     DS                       0      33            1        2     0
##     GB                       0       0            0        0     0
##     GBA                      5      11            0        0     0
##     GC                       5      12            0        0     0
##     GEN                      0       0            0        0     0
##     GG                       0       0            0        0     0
##     N64                      0       1            0        0     0
##     NES                      0       0            0        0     0
##     NG                       0       0            0        0     0
##     PC                       0      22            0        1     0
##     PCFX                     0       0            0        0     0
##     PS                       0       4            0        0     0
##     PS2                      8      24            2        1     0
##     PS3                      0      15            0        0     1
##     PS4                      0       1            0        0     0
##     PSP                      0      13            0        0     0
##     PSV                      0       6            0        0     0
##     SAT                      0       0            0        0     0
##     SCD                      0       0            0        0     0
##     SNES                     0       0            0        0     0
##     TG16                     0       0            0        0     0
##     Wii                      0      26            3        0     0
##     WiiU                     0       0            0        0     0
##     WS                       0       0            0        0     0
##     X360                     0      12            2        0     0
##     XB                       5      12            0        0     0
##     XOne                     0       1            0        0     0
##     Sum                     23     203            8        4     1
##         Publisher
## Platform Valve Software   Vap Vatical Entertainment Vic Tokai
##     2600              0     0                     0         0
##     3DO               0     0                     0         0
##     3DS               0     0                     0         0
##     DC                0     0                     0         0
##     DS                0     0                     0         0
##     GB                0     0                     0         0
##     GBA               0     0                     0         0
##     GC                0     0                     0         0
##     GEN               0     0                     0         0
##     GG                0     0                     0         0
##     N64               0     0                     1         1
##     NES               0     0                     0         0
##     NG                0     0                     0         0
##     PC                2     0                     0         0
##     PCFX              0     0                     0         0
##     PS                0     0                     1         1
##     PS2               0     0                     0         0
##     PS3               0     0                     0         0
##     PS4               0     0                     0         0
##     PSP               0     0                     0         0
##     PSV               0     0                     0         0
##     SAT               0     0                     0         0
##     SCD               0     0                     0         0
##     SNES              0     1                     0         0
##     TG16              0     0                     0         0
##     Wii               0     0                     0         0
##     WiiU              0     0                     0         0
##     WS                0     0                     0         0
##     X360              1     0                     0         0
##     XB                0     0                     0         0
##     XOne              0     0                     0         0
##     Sum               3     1                     2         2
##         Publisher
## Platform Victor Interactive Video System Views Vir2L Studios
##     2600                  0            0     0             0
##     3DO                   0            0     0             0
##     3DS                   0            0     0             0
##     DC                    0            0     0             0
##     DS                    0            0     0             2
##     GB                    1            0     0             0
##     GBA                   1            0     0             0
##     GC                    0            0     0             0
##     GEN                   0            0     0             0
##     GG                    0            0     0             0
##     N64                   0            2     0             0
##     NES                   0            0     0             0
##     NG                    0            0     0             0
##     PC                    0            0     0             0
##     PCFX                  0            0     0             0
##     PS                    3            1     0             0
##     PS2                   2            0     0             0
##     PS3                   0            0     1             0
##     PS4                   0            0     0             0
##     PSP                   0            0     1             0
##     PSV                   0            0     0             0
##     SAT                   1            0     0             0
##     SCD                   0            0     0             0
##     SNES                  1            1     0             0
##     TG16                  0            0     0             0
##     Wii                   0            0     0             1
##     WiiU                  0            0     0             0
##     WS                    0            0     0             0
##     X360                  0            0     0             0
##     XB                    0            0     0             0
##     XOne                  0            0     0             0
##     Sum                   9            4     2             3
##         Publisher
## Platform Virgin Interactive Virtual Play Games Visco Vivendi Games Wanadoo
##     2600                  0                  0     0             0       0
##     3DO                   0                  0     0             0       0
##     3DS                   0                  0     0             0       0
##     DC                    2                  0     0             0       0
##     DS                    0                  0     0            13       0
##     GB                    0                  0     0             0       0
##     GBA                   0                  0     0            23       1
##     GC                    2                  0     0            15       1
##     GEN                   1                  0     0             0       0
##     GG                    0                  0     0             0       0
##     N64                   4                  0     0             0       0
##     NES                   0                  0     0             0       0
##     NG                    0                  0     0             0       0
##     PC                    4                  0     1            23       0
##     PCFX                  0                  0     0             0       0
##     PS                   39                  0     0             2       0
##     PS2                   6                  0     0            31       2
##     PS3                   0                  0     0             5       0
##     PS4                   0                  0     0             0       0
##     PSP                   0                  0     0             8       0
##     PSV                   0                  0     0             0       0
##     SAT                   2                  0     0             0       0
##     SCD                   0                  0     0             0       0
##     SNES                  1                  0     0             0       0
##     TG16                  0                  0     0             0       0
##     Wii                   0                  2     0             9       0
##     WiiU                  0                  0     0             0       0
##     WS                    0                  0     0             0       0
##     X360                  0                  0     0             9       0
##     XB                    1                  0     0            26       1
##     XOne                  0                  0     0             0       0
##     Sum                  62                  2     1           164       5
##         Publisher
## Platform Warashi Wargaming.net Warner Bros. Interactive Entertainment
##     2600       0             0                                      0
##     3DO        0             0                                      0
##     3DS        0             0                                     18
##     DC         1             0                                      0
##     DS         0             0                                     32
##     GB         0             0                                      0
##     GBA        0             0                                      0
##     GC         0             0                                      1
##     GEN        0             0                                      0
##     GG         0             0                                      0
##     N64        0             0                                      0
##     NES        0             0                                      0
##     NG         0             0                                      0
##     PC         0             1                                     20
##     PCFX       0             0                                      0
##     PS         0             0                                      0
##     PS2        0             0                                      8
##     PS3        0             0                                     32
##     PS4        0             0                                     14
##     PSP        0             0                                      5
##     PSV        0             0                                     16
##     SAT        0             0                                      0
##     SCD        0             0                                      0
##     SNES       0             0                                      0
##     TG16       0             0                                      0
##     Wii        0             0                                     24
##     WiiU       0             0                                     15
##     WS         0             0                                      0
##     X360       0             0                                     34
##     XB         0             0                                      0
##     XOne       0             0                                     13
##     Sum        1             1                                    232
##         Publisher
## Platform  Warp WayForward Technologies Westwood Studios
##     2600     0                       0                0
##     3DO      0                       0                0
##     3DS      0                       1                0
##     DC       0                       0                0
##     DS       0                       0                0
##     GB       0                       0                0
##     GBA      0                       0                0
##     GC       0                       0                0
##     GEN      0                       0                0
##     GG       0                       0                0
##     N64      0                       0                0
##     NES      0                       0                0
##     NG       0                       0                0
##     PC       0                       0                1
##     PCFX     0                       0                0
##     PS       0                       0                0
##     PS2      0                       0                0
##     PS3      0                       0                0
##     PS4      0                       0                0
##     PSP      0                       0                0
##     PSV      0                       0                0
##     SAT      1                       0                0
##     SCD      0                       0                0
##     SNES     0                       0                0
##     TG16     0                       0                0
##     Wii      0                       0                0
##     WiiU     0                       0                0
##     WS       0                       0                0
##     X360     0                       0                0
##     XB       0                       0                0
##     XOne     0                       0                0
##     Sum      1                       1                1
##         Publisher
## Platform White Park Bay Software Wizard Video Games Xicat Interactive
##     2600                       0                  1                 0
##     3DO                        0                  0                 0
##     3DS                        0                  0                 0
##     DC                         0                  0                 0
##     DS                         1                  0                 0
##     GB                         0                  0                 0
##     GBA                        0                  0                 0
##     GC                         0                  0                 0
##     GEN                        0                  0                 0
##     GG                         0                  0                 0
##     N64                        0                  0                 0
##     NES                        0                  0                 0
##     NG                         0                  0                 0
##     PC                         0                  0                 0
##     PCFX                       0                  0                 0
##     PS                         0                  0                 0
##     PS2                        0                  0                 1
##     PS3                        0                  0                 0
##     PS4                        0                  0                 0
##     PSP                        0                  0                 0
##     PSV                        0                  0                 0
##     SAT                        0                  0                 0
##     SCD                        0                  0                 0
##     SNES                       0                  0                 0
##     TG16                       0                  0                 0
##     Wii                        0                  0                 0
##     WiiU                       0                  0                 0
##     WS                         0                  0                 0
##     X360                       0                  0                 0
##     XB                         0                  0                 2
##     XOne                       0                  0                 0
##     Sum                        1                  1                 3
##         Publisher
## Platform Xing Entertainment Xplosiv XS Games Xseed Games Yacht Club Games
##     2600                  0       0        0           0                0
##     3DO                   0       0        0           0                0
##     3DS                   0       0        0           1                1
##     DC                    0       0        0           0                0
##     DS                    0       0        0           0                0
##     GB                    0       0        0           0                0
##     GBA                   0       0        2           0                0
##     GC                    0       0        0           0                0
##     GEN                   0       0        0           0                0
##     GG                    0       0        0           0                0
##     N64                   0       0        0           0                0
##     NES                   0       0        0           0                0
##     NG                    0       0        0           0                0
##     PC                    0       0        0           0                0
##     PCFX                  0       0        0           0                0
##     PS                    1       0        1           0                0
##     PS2                   0       4        3           0                0
##     PS3                   0       0        0           0                0
##     PS4                   0       0        0           1                1
##     PSP                   0       4        0           0                0
##     PSV                   0       0        0           2                0
##     SAT                   0       0        0           0                0
##     SCD                   0       0        0           0                0
##     SNES                  0       0        0           0                0
##     TG16                  0       0        0           0                0
##     Wii                   0       2        4           0                0
##     WiiU                  0       0        0           0                1
##     WS                    0       0        0           0                0
##     X360                  0       0        1           0                0
##     XB                    0       0        1           0                0
##     XOne                  0       0        0           0                0
##     Sum                   1      10       12           4                3
##         Publisher
## Platform Yamasa Entertainment  Yeti Yuke's Yumedia Zenrin
##     2600                    0     0      0       0      0
##     3DO                     0     0      0       0      0
##     3DS                     0     0      0       0      0
##     DC                      0     0      0       0      0
##     DS                      0     0      0       0      0
##     GB                      0     0      0       0      0
##     GBA                     0     0      0       0      0
##     GC                      0     0      0       0      0
##     GEN                     0     0      0       0      0
##     GG                      0     0      0       0      0
##     N64                     0     0      0       0      0
##     NES                     0     0      0       0      0
##     NG                      0     0      0       0      0
##     PC                      0     0      0       0      0
##     PCFX                    0     0      0       0      0
##     PS                      0     0      0       0      0
##     PS2                     1     4      3       0      0
##     PS3                     0     0      0       0      0
##     PS4                     0     1      0       0      0
##     PSP                     1     5      0       0      2
##     PSV                     0     0      0       0      0
##     SAT                     0     0      0       1      0
##     SCD                     0     0      0       0      0
##     SNES                    0     0      0       0      0
##     TG16                    0     0      0       0      0
##     Wii                     0     0      0       0      0
##     WiiU                    0     0      0       0      0
##     WS                      0     0      0       0      0
##     X360                    0     1      0       0      0
##     XB                      0     0      0       0      0
##     XOne                    0     0      0       0      0
##     Sum                     2    11      3       1      2
##         Publisher
## Platform Zoo Digital Publishing Zoo Games Zushi Games   Sum
##     2600                      0         0           0   133
##     3DO                       0         0           0     3
##     3DS                       0         0           0   509
##     DC                        0         0           0    52
##     DS                       26        10           7  2163
##     GB                        0         0           0    98
##     GBA                      38         0           0   822
##     GC                        1         0           0   556
##     GEN                       0         0           0    27
##     GG                        0         0           0     1
##     N64                       0         0           0   319
##     NES                       0         0           0    98
##     NG                        0         0           0    12
##     PC                        0         0           0   960
##     PCFX                      0         0           0     1
##     PS                        0         0           0  1196
##     PS2                      11         0           0  2161
##     PS3                       0         0           0  1329
##     PS4                       0         0           0   336
##     PSP                       0         0           1  1213
##     PSV                       0         0           0   413
##     SAT                       0         0           0   173
##     SCD                       0         0           0     6
##     SNES                      0         0           0   239
##     TG16                      0         0           0     2
##     Wii                      18        22           8  1325
##     WiiU                      0         0           0   143
##     WS                        0         0           0     6
##     X360                      0         1           2  1265
##     XB                       10         0           0   824
##     XOne                      0         0           0   213
##     Sum                     104        33          18 16598
myTable
##         Publisher
## Platform 10TACLE Studios 1C Company 20th Century Fox Video Games 2D Boy
##     2600               0          0                            5      0
##     3DO                0          0                            0      0
##     3DS                0          0                            0      0
##     DC                 0          0                            0      0
##     DS                 2          0                            0      0
##     GB                 0          0                            0      0
##     GBA                0          0                            0      0
##     GC                 0          0                            0      0
##     GEN                0          0                            0      0
##     GG                 0          0                            0      0
##     N64                0          0                            0      0
##     NES                0          0                            0      0
##     NG                 0          0                            0      0
##     PC                 0          3                            0      1
##     PCFX               0          0                            0      0
##     PS                 0          0                            0      0
##     PS2                1          0                            0      0
##     PS3                0          0                            0      0
##     PS4                0          0                            0      0
##     PSP                0          0                            0      0
##     PSV                0          0                            0      0
##     SAT                0          0                            0      0
##     SCD                0          0                            0      0
##     SNES               0          0                            0      0
##     TG16               0          0                            0      0
##     Wii                0          0                            0      0
##     WiiU               0          0                            0      0
##     WS                 0          0                            0      0
##     X360               0          0                            0      0
##     XB                 0          0                            0      0
##     XOne               0          0                            0      0
##         Publisher
## Platform 3DO 49Games 505 Games 5pb 7G//AMES 989 Sports 989 Studios
##     2600   0       0         0   0        0          0           0
##     3DO    0       0         0   0        0          0           0
##     3DS    0       0         3   1        0          0           0
##     DC     0       0         0   0        0          0           0
##     DS     0       0        65   0        2          0           0
##     GB     0       0         0   0        0          0           0
##     GBA    0       0         0   0        0          0           0
##     GC     1       0         0   0        0          0           0
##     GEN    0       0         0   0        0          0           0
##     GG     0       0         0   0        0          0           0
##     N64    5       0         0   0        0          0           0
##     NES    0       0         0   0        0          0           0
##     NG     0       0         0   0        0          0           0
##     PC     0       0         4   0        0          0           0
##     PCFX   0       0         0   0        0          0           0
##     PS    16       0         0   0        0          1          14
##     PS2   13       0        22   7        0          0           0
##     PS3    0       0        15  10        0          0           0
##     PS4    0       0         6   1        0          0           0
##     PSP    0       0        10  12        0          0           0
##     PSV    0       0         1  14        0          0           0
##     SAT    0       0         0   0        0          0           0
##     SCD    0       0         0   0        0          0           0
##     SNES   0       0         0   0        0          0           0
##     TG16   0       0         0   0        0          0           0
##     Wii    0       0        30   0        2          0           0
##     WiiU   0       0         2   0        0          0           0
##     WS     0       0         0   0        0          0           0
##     X360   0       1        27  15        0          0           0
##     XB     1       0         1   0        0          0           0
##     XOne   0       0         6   1        0          0           0
##         Publisher
## Platform Abylight Acclaim Entertainment Accolade Ackkstudios Acquire
##     2600        0                     0        0           0       0
##     3DO         0                     0        0           0       0
##     3DS         0                     0        0           1       1
##     DC          0                     1        0           0       0
##     DS          0                     0        0           1       0
##     GB          0                     0        0           0       0
##     GBA         0                    10        0           0       0
##     GC          0                    24        0           0       0
##     GEN         0                     2        0           0       0
##     GG          0                     0        0           0       0
##     N64         0                    31        0           0       0
##     NES         0                     0        0           0       0
##     NG          0                     0        0           0       0
##     PC          0                     1        0           0       0
##     PCFX        0                     0        0           0       0
##     PS          0                    54        3           0       0
##     PS2         0                    33        0           0       1
##     PS3         1                     0        0           3       3
##     PS4         0                     0        0           0       1
##     PSP         0                     0        0           3       7
##     PSV         0                     0        0           0       0
##     SAT         0                     3        0           0       0
##     SCD         0                     0        0           0       0
##     SNES        0                     4        0           0       0
##     TG16        0                     0        0           0       0
##     Wii         0                     0        0           2       0
##     WiiU        0                     0        0           0       0
##     WS          0                     0        0           0       0
##     X360        0                     0        0           0       0
##     XB          0                    21        0           0       0
##     XOne        0                     0        0           0       0
##         Publisher
## Platform Activision Activision Blizzard Activision Value Adeline Software
##     2600         28                   0                0                0
##     3DO           0                   0                0                0
##     3DS          27                   0                0                0
##     DC            1                   0                0                0
##     DS          111                   0                0                0
##     GB            1                   0                0                0
##     GBA          49                   0                1                0
##     GC           44                   0                1                0
##     GEN           0                   0                0                0
##     GG            0                   0                0                0
##     N64          13                   0                0                0
##     NES           0                   0                0                0
##     NG            0                   0                0                0
##     PC           56                   1                0                0
##     PCFX          0                   0                0                0
##     PS           32                   0                1                1
##     PS2         103                   0                6                0
##     PS3         108                   0                4                0
##     PS4          21                   0                0                0
##     PSP          34                   0                2                0
##     PSV           3                   0                0                0
##     SAT           0                   0                0                0
##     SCD           0                   0                0                0
##     SNES          0                   0                0                0
##     TG16          0                   0                0                0
##     Wii         111                   0                5                0
##     WiiU         18                   0                0                0
##     WS            0                   0                0                0
##     X360        134                   0                7                0
##     XB           61                   0                2                0
##     XOne         20                   0                0                0
##         Publisher
## Platform Aerosoft Agatsuma Entertainment Agetec Aksys Games
##     2600        0                      0      0           0
##     3DO         0                      0      0           0
##     3DS         0                      2      0           1
##     DC          0                      0      0           0
##     DS          0                      0      0           1
##     GB          0                      0      0           0
##     GBA         0                      1      0           0
##     GC          0                      0      0           0
##     GEN         0                      0      0           0
##     GG          0                      0      0           0
##     N64         0                      0      0           0
##     NES         0                      0      0           0
##     NG          0                      0      0           0
##     PC          2                      0      0           0
##     PCFX        0                      0      0           0
##     PS          0                      0      3           0
##     PS2         0                      0      4           0
##     PS3         0                      0      0           1
##     PS4         0                      0      0           1
##     PSP         0                      0      1           0
##     PSV         0                      0      0           4
##     SAT         0                      0      0           0
##     SCD         0                      0      0           0
##     SNES        0                      0      0           0
##     TG16        0                      0      0           0
##     Wii         0                      0      0           0
##     WiiU        0                      0      0           0
##     WS          0                      0      0           0
##     X360        0                      0      0           0
##     XB          0                      0      0           0
##     XOne        0                      0      0           0
##         Publisher
## Platform Alawar Entertainment Alchemist Alternative Software Altron Alvion
##     2600                    0         0                    0      0      0
##     3DO                     0         0                    0      0      0
##     3DS                     0         5                    0      0      0
##     DC                      0         0                    0      0      0
##     DS                      0         6                    0      0      2
##     GB                      0         0                    0      0      0
##     GBA                     0         0                    0      1      0
##     GC                      0         0                    0      0      0
##     GEN                     0         0                    0      0      0
##     GG                      0         0                    0      0      0
##     N64                     0         0                    0      0      0
##     NES                     0         0                    0      0      0
##     NG                      0         0                    0      0      0
##     PC                      2         0                    1      0      0
##     PCFX                    0         0                    0      0      0
##     PS                      0         0                    0      0      0
##     PS2                     0        13                    0      0      0
##     PS3                     0         2                    1      0      0
##     PS4                     0         0                    1      0      0
##     PSP                     0        15                    0      0      0
##     PSV                     0         0                    0      0      0
##     SAT                     0         0                    0      0      0
##     SCD                     0         0                    0      0      0
##     SNES                    0         0                    0      0      0
##     TG16                    0         0                    0      0      0
##     Wii                     0         0                    1      0      0
##     WiiU                    0         0                    0      0      0
##     WS                      0         0                    0      0      0
##     X360                    0         2                    1      0      0
##     XB                      0         0                    0      0      0
##     XOne                    0         0                    1      0      0
##         Publisher
## Platform American Softworks Angel Studios Answer Software AQ Interactive
##     2600                  0             0               1              0
##     3DO                   0             0               0              0
##     3DS                   0             0               0              0
##     DC                    0             0               0              0
##     DS                    0             0               0              2
##     GB                    0             0               0              0
##     GBA                   0             0               0              0
##     GC                    0             0               0              0
##     GEN                   0             0               0              0
##     GG                    0             0               0              0
##     N64                   0             0               0              0
##     NES                   0             0               0              0
##     NG                    0             0               0              0
##     PC                    0             0               0              0
##     PCFX                  0             0               0              0
##     PS                    1             0               0              0
##     PS2                   0             0               0              2
##     PS3                   0             0               0              0
##     PS4                   0             0               0              0
##     PSP                   0             0               0              1
##     PSV                   0             0               0              0
##     SAT                   0             0               0              0
##     SCD                   0             0               0              0
##     SNES                  0             3               0              0
##     TG16                  0             0               0              0
##     Wii                   0             0               0              0
##     WiiU                  0             0               0              0
##     WS                    0             0               0              0
##     X360                  0             0               0              0
##     XB                    0             0               0              0
##     XOne                  0             0               0              0
##         Publisher
## Platform Aqua Plus Aques Arc System Works Arena Entertainment Aria Arika
##     2600         0     0                0                   0    0     0
##     3DO          0     0                0                   0    0     0
##     3DS          0     0                4                   0    0     0
##     DC           0     0                0                   0    0     0
##     DS           0     0                9                   0    0     1
##     GB           0     0                0                   0    0     0
##     GBA          0     0                0                   0    0     0
##     GC           0     0                0                   0    0     0
##     GEN          0     0                0                   2    0     0
##     GG           0     0                0                   0    0     0
##     N64          0     0                0                   0    0     0
##     NES          0     0                0                   0    0     0
##     NG           0     0                0                   0    0     0
##     PC           0     0                0                   0    0     0
##     PCFX         0     0                0                   0    0     0
##     PS           1     1                0                   0    0     0
##     PS2          2     0                0                   0    1     2
##     PS3          8     0                5                   0    0     0
##     PS4          2     0                1                   0    0     0
##     PSP          6     0                2                   0    0     0
##     PSV          4     0                5                   0    0     0
##     SAT          0     0                0                   0    0     0
##     SCD          0     0                0                   0    0     0
##     SNES         0     0                0                   0    0     0
##     TG16         0     0                0                   0    0     0
##     Wii          0     0                0                   0    0     0
##     WiiU         0     0                0                   0    0     0
##     WS           0     0                0                   0    0     0
##     X360         0     0                0                   0    0     0
##     XB           0     0                0                   0    0     0
##     XOne         0     0                0                   0    0     0
##         Publisher
## Platform ArtDink Aruze Corp ASC Games Ascaron Entertainment
##     2600       0          0         0                     0
##     3DO        0          0         0                     0
##     3DS        1          0         0                     0
##     DC         0          0         0                     0
##     DS         1          0         0                     0
##     GB         0          0         0                     0
##     GBA        0          0         0                     0
##     GC         0          0         0                     0
##     GEN        0          0         0                     0
##     GG         0          0         0                     0
##     N64        0          0         0                     0
##     NES        0          0         0                     0
##     NG         0          0         0                     0
##     PC         0          0         0                     1
##     PCFX       0          0         0                     0
##     PS         4          3         3                     0
##     PS2        2          0         0                     0
##     PS3        0          0         0                     0
##     PS4        0          0         0                     0
##     PSP        1          0         0                     0
##     PSV        0          0         0                     0
##     SAT        0          0         0                     0
##     SCD        0          0         0                     0
##     SNES       0          0         0                     0
##     TG16       0          0         0                     0
##     Wii        0          0         0                     0
##     WiiU       0          0         0                     0
##     WS         0          0         0                     0
##     X360       0          0         0                     0
##     XB         0          0         0                     0
##     XOne       0          0         0                     0
##         Publisher
## Platform Ascaron Entertainment GmbH ASCII Entertainment ASCII Media Works
##     2600                          0                   0                 0
##     3DO                           0                   0                 0
##     3DS                           0                   0                 0
##     DC                            0                   0                 0
##     DS                            0                   0                 4
##     GB                            0                   1                 0
##     GBA                           0                   0                 0
##     GC                            0                   0                 0
##     GEN                           0                   0                 0
##     GG                            0                   0                 0
##     N64                           0                   1                 0
##     NES                           0                   0                 0
##     NG                            0                   0                 0
##     PC                            3                   0                 0
##     PCFX                          0                   0                 0
##     PS                            0                   8                 0
##     PS2                           0                   1                 1
##     PS3                           0                   0                 0
##     PS4                           0                   0                 0
##     PSP                           0                   0                 3
##     PSV                           0                   0                 1
##     SAT                           0                   1                 0
##     SCD                           0                   0                 0
##     SNES                          0                   8                 0
##     TG16                          0                   0                 0
##     Wii                           0                   0                 0
##     WiiU                          0                   0                 0
##     WS                            0                   0                 0
##     X360                          0                   0                 0
##     XB                            0                   0                 0
##     XOne                          0                   0                 0
##         Publisher
## Platform Asgard ASK Asmik Ace Entertainment Asmik Corp Aspyr Astragon
##     2600      0   0                       0          0     0        0
##     3DO       0   0                       0          0     0        0
##     3DS       0   0                       0          0     0        0
##     DC        0   0                       0          0     0        0
##     DS        0   0                       0          0     4        4
##     GB        0   0                       0          0     0        0
##     GBA       0   0                       0          0     1        0
##     GC        0   0                       0          0     0        0
##     GEN       0   0                       0          0     0        0
##     GG        0   0                       0          0     0        0
##     N64       0   0                       0          0     0        0
##     NES       0   0                       0          0     0        0
##     NG        0   0                       0          0     0        0
##     PC        0   0                       0          0     2        2
##     PCFX      0   0                       0          0     0        0
##     PS        0   0                       1          0     0        0
##     PS2       0   0                       2          0     0        0
##     PS3       0   0                       0          0     0        0
##     PS4       0   0                       0          0     0        0
##     PSP       7   0                       0          0     0        0
##     PSV       1   0                       0          0     0        0
##     SAT       0   1                       0          0     0        0
##     SCD       0   0                       0          0     0        0
##     SNES      0   0                       0          2     0        0
##     TG16      0   0                       0          0     0        0
##     Wii       0   0                       0          0     0        0
##     WiiU      0   0                       0          0     0        0
##     WS        0   0                       0          0     0        0
##     X360      0   0                       0          0     1        0
##     XB        0   0                       0          0     0        0
##     XOne      0   0                       0          0     0        0
##         Publisher
## Platform Asylum Entertainment Atari Athena Atlus Avalon Interactive
##     2600                    0    54      0     0                  1
##     3DO                     0     0      0     0                  0
##     3DS                     1     1      0    10                  0
##     DC                      0     0      0     0                  0
##     DS                      3    36      0     9                  0
##     GB                      0     0      0     0                  0
##     GBA                     0    44      0     4                  0
##     GC                      0    18      0     1                  0
##     GEN                     0     0      0     0                  0
##     GG                      0     0      0     0                  0
##     N64                     0     0      1     2                  0
##     NES                     0     0      0     0                  0
##     NG                      0     0      0     0                  0
##     PC                      0    25      0     0                  0
##     PCFX                    0     0      0     0                  0
##     PS                      0    11      0     8                  1
##     PS2                     0    70      1     6                  2
##     PS3                     0     6      0     2                  0
##     PS4                     0     0      0     1                  0
##     PSP                     0    17      0    10                  0
##     PSV                     0     0      0     2                  0
##     SAT                     0     0      0     5                  0
##     SCD                     0     0      0     0                  0
##     SNES                    0     0      0     2                  0
##     TG16                    0     0      0     0                  0
##     Wii                     2    24      0     0                  0
##     WiiU                    0     0      0     1                  0
##     WS                      0     0      0     0                  0
##     X360                    0    20      0     2                  0
##     XB                      0    37      0     2                  2
##     XOne                    0     0      0     0                  0
##         Publisher
## Platform Avanquest Avanquest Software Axela BAM! Entertainment Banpresto
##     2600         0                  0     0                  0         0
##     3DO          0                  0     0                  0         0
##     3DS          0                  2     0                  0         0
##     DC           0                  0     0                  0         0
##     DS          16                  3     0                  0         6
##     GB           0                  0     0                  0         1
##     GBA          0                  0     0                 14        11
##     GC           0                  0     0                  6         0
##     GEN          0                  0     0                  0         0
##     GG           0                  0     0                  0         0
##     N64          0                  0     0                  1         2
##     NES          0                  0     0                  0         0
##     NG           0                  0     0                  0         0
##     PC           4                  2     0                  0         0
##     PCFX         0                  0     0                  0         0
##     PS           0                  0     1                  2        10
##     PS2          0                  0     0                  8        21
##     PS3          0                  1     0                  0         0
##     PS4          2                  0     0                  0         0
##     PSP          0                  0     0                  0         5
##     PSV          0                  0     0                  0         0
##     SAT          0                  0     0                  0         2
##     SCD          0                  0     0                  0         0
##     SNES         0                  0     0                  0        13
##     TG16         0                  0     0                  0         0
##     Wii          4                  0     0                  0         0
##     WiiU         0                  0     0                  0         0
##     WS           0                  0     0                  0         0
##     X360         0                  1     0                  0         2
##     XB           0                  0     0                  4         0
##     XOne         0                  0     0                  0         0
##         Publisher
## Platform Benesse Berkeley Bethesda Softworks Big Ben Interactive
##     2600       0        0                  0                   0
##     3DO        0        0                  0                   0
##     3DS        0        0                  0                   1
##     DC         0        0                  0                   0
##     DS         6        0                  0                   2
##     GB         0        0                  0                   0
##     GBA        0        0                  0                   0
##     GC         0        0                  0                   0
##     GEN        0        0                  0                   0
##     GG         0        0                  0                   0
##     N64        0        0                  0                   0
##     NES        0        0                  0                   0
##     NG         0        0                  0                   0
##     PC         0        0                 15                   0
##     PCFX       0        0                  0                   0
##     PS         0        1                  0                   0
##     PS2        0        0                  6                   1
##     PS3        0        0                 13                   0
##     PS4        0        0                  7                   0
##     PSP        0        0                  0                   0
##     PSV        0        0                  0                   0
##     SAT        0        0                  0                   0
##     SCD        0        0                  0                   0
##     SNES       0        0                  0                   0
##     TG16       0        0                  0                   0
##     Wii        0        0                  4                   3
##     WiiU       0        0                  0                   0
##     WS         0        0                  0                   0
##     X360       0        0                 15                   0
##     XB         0        0                  4                   0
##     XOne       0        0                  7                   0
##         Publisher
## Platform Big Fish Games Bigben Interactive bitComposer Games
##     2600              0                  0                 0
##     3DO               0                  0                 0
##     3DS               0                  0                 0
##     DC                0                  0                 0
##     DS                0                  0                 0
##     GB                0                  0                 0
##     GBA               0                  0                 0
##     GC                0                  0                 0
##     GEN               0                  0                 0
##     GG                0                  0                 0
##     N64               0                  0                 0
##     NES               0                  0                 0
##     NG                0                  0                 0
##     PC                2                  0                 3
##     PCFX              0                  0                 0
##     PS                0                  0                 0
##     PS2               0                  0                 0
##     PS3               0                  3                 1
##     PS4               0                  3                 0
##     PSP               0                  0                 0
##     PSV               0                  2                 0
##     SAT               0                  0                 0
##     SCD               0                  0                 0
##     SNES              0                  0                 0
##     TG16              0                  0                 0
##     Wii               0                  0                 0
##     WiiU              0                  0                 0
##     WS                0                  0                 0
##     X360              0                  3                 1
##     XB                0                  0                 0
##     XOne              0                  2                 0
##         Publisher
## Platform Black Bean Games Black Label Games Blast! Entertainment Ltd
##     2600                0                 0                        0
##     3DO                 0                 0                        0
##     3DS                 0                 0                        0
##     DC                  0                 0                        0
##     DS                  2                 0                        3
##     GB                  0                 0                        0
##     GBA                 0                 0                        0
##     GC                  0                 0                        0
##     GEN                 0                 0                        0
##     GG                  0                 0                        0
##     N64                 0                 0                        0
##     NES                 0                 0                        0
##     NG                  0                 0                        0
##     PC                  2                 0                        0
##     PCFX                0                 0                        0
##     PS                  0                 0                        0
##     PS2                 3                 1                        1
##     PS3                10                 0                        0
##     PS4                 0                 0                        0
##     PSP                 2                 0                        0
##     PSV                 0                 0                        0
##     SAT                 0                 0                        0
##     SCD                 0                 0                        0
##     SNES                0                 0                        0
##     TG16                0                 0                        0
##     Wii                 6                 0                        2
##     WiiU                0                 0                        0
##     WS                  0                 0                        0
##     X360                9                 0                        0
##     XB                  0                 0                        0
##     XOne                0                 0                        0
##         Publisher
## Platform Blue Byte BMG Interactive Entertainment Bohemia Interactive Bomb
##     2600         0                             0                   0    1
##     3DO          0                             0                   0    0
##     3DS          0                             0                   0    0
##     DC           0                             0                   0    0
##     DS           0                             0                   0    0
##     GB           0                             0                   0    0
##     GBA          0                             0                   0    0
##     GC           0                             0                   0    0
##     GEN          0                             0                   0    0
##     GG           0                             0                   0    0
##     N64          0                             0                   0    0
##     NES          0                             0                   0    0
##     NG           0                             0                   0    0
##     PC           2                             0                   1    0
##     PCFX         0                             0                   0    0
##     PS           0                             7                   0    0
##     PS2          0                             0                   0    0
##     PS3          0                             0                   0    0
##     PS4          0                             0                   0    0
##     PSP          0                             0                   0    0
##     PSV          0                             0                   0    0
##     SAT          0                             0                   0    0
##     SCD          0                             0                   0    0
##     SNES         0                             0                   0    0
##     TG16         0                             0                   0    0
##     Wii          0                             0                   0    0
##     WiiU         0                             0                   0    0
##     WS           0                             0                   0    0
##     X360         0                             0                   0    0
##     XB           0                             0                   0    0
##     XOne         0                             0                   0    0
##         Publisher
## Platform Boost On BPS Brash Entertainment Broccoli BushiRoad Capcom Cave
##     2600        0   0                   0        0         0      0    0
##     3DO         0   0                   0        0         0      0    0
##     3DS         0   0                   0        0         0     15    0
##     DC          0   0                   0        0         0      3    0
##     DS          0   0                   4        2         0     25    1
##     GB          0   0                   0        0         0      3    0
##     GBA         0   0                   0        0         0     22    0
##     GC          0   0                   0        0         0     19    0
##     GEN         0   0                   0        0         0      2    0
##     GG          0   0                   0        0         0      0    0
##     N64         0   0                   0        0         0      1    0
##     NES         0   1                   0        0         0     12    0
##     NG          0   0                   0        0         0      0    0
##     PC          0   0                   0        0         0     16    0
##     PCFX        0   0                   0        0         0      0    0
##     PS          0   0                   0        0         0     18    0
##     PS2         0   0                   3        5         0     61    0
##     PS3         0   0                   0        0         0     42    0
##     PS4         0   0                   0        0         0     16    0
##     PSP         1   0                   0       13         1     26    0
##     PSV         0   0                   0        2         0      3    0
##     SAT         0   0                   0        0         0      9    0
##     SCD         0   0                   0        0         0      0    0
##     SNES        0   1                   0        0         0     12    0
##     TG16        0   0                   0        0         0      0    0
##     Wii         0   0                   2        0         0     18    0
##     WiiU        0   0                   0        0         0      2    0
##     WS          0   0                   0        0         0      0    0
##     X360        0   0                   1        0         0     35    9
##     XB          0   0                   0        0         0     16    0
##     XOne        0   0                   0        0         0      5    0
##         Publisher
## Platform CBS Electronics CCP CDV Software Entertainment ChunSoft
##     2600               1   0                          0        0
##     3DO                0   0                          0        0
##     3DS                0   0                          0        1
##     DC                 0   0                          0        0
##     DS                 0   0                          3        3
##     GB                 0   0                          0        1
##     GBA                0   0                          0        0
##     GC                 0   0                          0        0
##     GEN                0   0                          0        0
##     GG                 0   0                          0        0
##     N64                0   0                          0        1
##     NES                0   0                          0        0
##     NG                 0   0                          0        0
##     PC                 0   1                          2        0
##     PCFX               0   0                          0        0
##     PS                 0   0                          0        1
##     PS2                0   0                          0        1
##     PS3                0   0                          0        0
##     PS4                0   0                          0        0
##     PSP                0   0                          0        2
##     PSV                0   0                          0        2
##     SAT                0   0                          0        1
##     SCD                0   0                          0        0
##     SNES               0   0                          0        4
##     TG16               0   0                          0        0
##     Wii                0   0                          1        0
##     WiiU               0   0                          0        0
##     WS                 0   0                          0        0
##     X360               0   0                          0        1
##     XB                 0   0                          0        0
##     XOne               0   0                          0        0
##         Publisher
## Platform City Interactive Cloud Imperium Games Corporation Coconuts Japan
##     2600                0                                0              0
##     3DO                 0                                0              0
##     3DS                 0                                0              0
##     DC                  0                                0              0
##     DS                  9                                0              0
##     GB                  0                                0              0
##     GBA                 0                                0              0
##     GC                  0                                0              0
##     GEN                 0                                0              0
##     GG                  0                                0              0
##     N64                 0                                0              0
##     NES                 0                                0              0
##     NG                  0                                0              0
##     PC                  3                                0              0
##     PCFX                0                                0              0
##     PS                  0                                0              1
##     PS2                 0                                0              0
##     PS3                 3                                1              0
##     PS4                 0                                0              0
##     PSP                 0                                0              0
##     PSV                 0                                0              0
##     SAT                 0                                0              0
##     SCD                 0                                0              0
##     SNES                0                                0              1
##     TG16                0                                0              0
##     Wii                 2                                0              0
##     WiiU                0                                0              0
##     WS                  0                                0              0
##     X360                2                                1              0
##     XB                  0                                0              0
##     XOne                0                                0              0
##         Publisher
## Platform Codemasters Codemasters Online CokeM Interactive Coleco Comfort
##     2600           0                  0                 0      5       0
##     3DO            0                  0                 0      0       0
##     3DS            1                  0                 0      0       0
##     DC             0                  0                 0      0       0
##     DS             7                  0                 1      0       0
##     GB             0                  0                 0      0       0
##     GBA            2                  0                 0      0       0
##     GC             1                  0                 0      0       0
##     GEN            0                  0                 0      0       0
##     GG             0                  0                 0      0       0
##     N64            1                  0                 0      0       0
##     NES            0                  0                 0      0       0
##     NG             0                  0                 0      0       0
##     PC            27                  1                 0      0       0
##     PCFX           0                  0                 0      0       0
##     PS             9                  0                 0      0       0
##     PS2           17                  0                 0      0       2
##     PS3           26                  0                 0      0       0
##     PS4            3                  0                 0      0       0
##     PSP            6                  0                 0      0       4
##     PSV            1                  0                 0      0       0
##     SAT            0                  0                 0      0       0
##     SCD            0                  0                 0      0       0
##     SNES           0                  0                 0      0       0
##     TG16           0                  0                 0      0       0
##     Wii            6                  0                 0      0       0
##     WiiU           0                  0                 0      0       0
##     WS             0                  0                 0      0       0
##     X360          27                  0                 0      0       0
##     XB            15                  0                 0      0       0
##     XOne           3                  0                 0      0       0
##         Publisher
## Platform Commseed Compile Compile Heart Conspiracy Entertainment
##     2600        0       0             0                        0
##     3DO         0       0             0                        0
##     3DS         0       0             0                        0
##     DC          0       0             0                        0
##     DS          1       0             0                        3
##     GB          0       0             0                        0
##     GBA         0       0             0                        2
##     GC          0       0             0                        0
##     GEN         0       0             0                        0
##     GG          0       0             0                        0
##     N64         0       1             0                        0
##     NES         0       0             0                        0
##     NG          0       0             0                        0
##     PC          0       0             0                        0
##     PCFX        0       0             0                        0
##     PS          0       1             0                        1
##     PS2         0       0             0                        1
##     PS3         0       0             6                        1
##     PS4         0       0             1                        0
##     PSP         0       0             2                        1
##     PSV         0       0             8                        0
##     SAT         0       2             0                        0
##     SCD         0       0             0                        0
##     SNES        0       2             0                        0
##     TG16        0       0             0                        0
##     Wii         0       0             0                        4
##     WiiU        0       0             0                        0
##     WS          0       0             0                        0
##     X360        0       0             3                        1
##     XB          0       0             0                        0
##     XOne        0       0             0                        0
##         Publisher
## Platform Core Design Ltd. CPG Products Crave Entertainment Creative Core
##     2600                0            1                   0             0
##     3DO                 0            0                   0             0
##     3DS                 0            0                   4             0
##     DC                  0            0                   0             0
##     DS                  0            0                   5             3
##     GB                  0            0                   0             0
##     GBA                 0            0                   7             0
##     GC                  0            0                   4             0
##     GEN                 0            0                   0             0
##     GG                  0            0                   0             0
##     N64                 0            0                   5             0
##     NES                 0            0                   0             0
##     NG                  0            0                   0             0
##     PC                  0            0                   0             0
##     PCFX                0            0                   0             0
##     PS                  2            0                   5             0
##     PS2                 0            0                   8             0
##     PS3                 0            0                   3             0
##     PS4                 0            0                   0             0
##     PSP                 0            0                   4             0
##     PSV                 0            0                   0             0
##     SAT                 0            0                   0             0
##     SCD                 0            0                   0             0
##     SNES                0            0                   0             0
##     TG16                0            0                   0             0
##     Wii                 0            0                  13             0
##     WiiU                0            0                   0             0
##     WS                  0            0                   0             0
##     X360                0            0                   4             0
##     XB                  0            0                   9             0
##     XOne                0            0                   0             0
##         Publisher
## Platform Crimson Cow Crystal Dynamics CTO SpA Culture Brain
##     2600           0                0       0             0
##     3DO            0                0       0             0
##     3DS            0                0       0             0
##     DC             0                0       0             0
##     DS             0                0       0             2
##     GB             0                0       0             0
##     GBA            0                0       0             0
##     GC             0                0       0             0
##     GEN            0                0       0             0
##     GG             0                0       0             0
##     N64            0                0       0             0
##     NES            0                0       0             0
##     NG             0                0       0             0
##     PC             2                0       0             0
##     PCFX           0                0       0             0
##     PS             0                5       2             0
##     PS2            0                0       0             0
##     PS3            0                0       0             0
##     PS4            0                0       0             0
##     PSP            0                0       0             0
##     PSV            0                0       0             0
##     SAT            0                0       0             0
##     SCD            0                0       0             0
##     SNES           0                0       0             2
##     TG16           0                0       0             0
##     Wii            0                0       0             0
##     WiiU           0                0       0             0
##     WS             0                0       0             0
##     X360           0                0       0             0
##     XB             0                0       0             0
##     XOne           0                0       0             0
##         Publisher
## Platform Culture Publishers CyberFront Cygames D3Publisher Daedalic
##     2600                  0          0       0           0        0
##     3DO                   0          0       0           0        0
##     3DS                   0          0       0           7        0
##     DC                    0          0       0           0        0
##     DS                    0          0       0          48        0
##     GB                    0          0       0           0        0
##     GBA                   0          0       0           2        0
##     GC                    0          0       0           1        0
##     GEN                   0          0       0           0        0
##     GG                    0          0       0           0        0
##     N64                   0          0       0           0        0
##     NES                   0          0       0           0        0
##     NG                    0          0       0           0        0
##     PC                    0          0       0           0        3
##     PCFX                  0          0       0           0        0
##     PS                    1          0       0           4        0
##     PS2                   0          2       0          24        0
##     PS3                   0          0       0          14        0
##     PS4                   0          0       0           2        0
##     PSP                   0          8       0          32        0
##     PSV                   0          2       1           9        0
##     SAT                   0          0       0           0        0
##     SCD                   0          0       0           0        0
##     SNES                  0          0       0           0        0
##     TG16                  0          0       0           0        0
##     Wii                   0          0       0          22        0
##     WiiU                  0          0       0           3        0
##     WS                    0          0       0           0        0
##     X360                  0          2       0          16        0
##     XB                    0          0       0           0        0
##     XOne                  0          0       0           0        0
##         Publisher
## Platform Daedalic Entertainment Daito Data Age Data Design Interactive
##     2600                      0     0        2                       0
##     3DO                       0     0        0                       0
##     3DS                       0     0        0                       0
##     DC                        0     0        0                       0
##     DS                        0     0        0                       0
##     GB                        0     0        0                       0
##     GBA                       0     0        0                       0
##     GC                        0     0        0                       0
##     GEN                       0     0        0                       0
##     GG                        0     0        0                       0
##     N64                       0     0        0                       0
##     NES                       0     0        0                       0
##     NG                        0     0        0                       0
##     PC                        3     0        0                       0
##     PCFX                      0     0        0                       0
##     PS                        0     0        0                       0
##     PS2                       0     2        0                       0
##     PS3                       0     0        0                       0
##     PS4                       0     0        0                       0
##     PSP                       0     2        0                       0
##     PSV                       0     0        0                       0
##     SAT                       0     0        0                       0
##     SCD                       0     0        0                       0
##     SNES                      0     0        0                       0
##     TG16                      0     0        0                       0
##     Wii                       0     0        0                       3
##     WiiU                      0     0        0                       0
##     WS                        0     0        0                       0
##     X360                      0     0        0                       0
##     XB                        0     0        0                       0
##     XOne                      0     0        0                       0
##         Publisher
## Platform Data East Datam Polystar Deep Silver Destination Software, Inc
##     2600         0              0           0                         0
##     3DO          0              0           0                         0
##     3DS          0              0           2                         0
##     DC           0              0           0                         0
##     DS           0              0          21                         5
##     GB           0              0           0                         0
##     GBA          0              0           0                         7
##     GC           0              0           0                         0
##     GEN          0              0           0                         0
##     GG           0              0           0                         0
##     N64          0              0           0                         0
##     NES          0              0           0                         0
##     NG           0              0           0                         0
##     PC           0              0          21                         0
##     PCFX         0              0           0                         0
##     PS           0              0           0                         0
##     PS2          0              2           0                         0
##     PS3          0              0          20                         0
##     PS4          0              0          10                         0
##     PSP          0              0           3                         0
##     PSV          0              0           0                         0
##     SAT          1              0           0                         0
##     SCD          0              0           0                         0
##     SNES         1              0           0                         0
##     TG16         0              0           0                         0
##     Wii          0              0          13                         0
##     WiiU         0              0           1                         0
##     WS           0              0           0                         0
##     X360         0              0          22                         0
##     XB           0              0           3                         0
##     XOne         0              0           6                         0
##         Publisher
## Platform Destineer Detn8 Games Devolver Digital DHM Interactive DigiCube
##     2600         0           0                0               0        0
##     3DO          0           0                0               0        0
##     3DS          0           0                0               0        0
##     DC           0           0                0               0        0
##     DS          22           0                0               1        0
##     GB           0           0                0               0        0
##     GBA          0           0                0               0        0
##     GC           0           0                0               0        0
##     GEN          0           0                0               0        0
##     GG           0           0                0               0        0
##     N64          0           0                0               0        0
##     NES          0           0                0               0        0
##     NG           0           0                0               0        0
##     PC           1           0                1               0        0
##     PCFX         0           0                0               0        0
##     PS           0           0                0               0        0
##     PS2          1           0                0               0        1
##     PS3          0           0                0               0        0
##     PS4          0           0                1               0        0
##     PSP          2           0                0               2        0
##     PSV          0           0                0               0        0
##     SAT          0           0                0               0        0
##     SCD          0           0                0               0        0
##     SNES         0           0                0               0        0
##     TG16         0           0                0               0        0
##     Wii         19           1                0               0        0
##     WiiU         0           0                0               0        0
##     WS           0           0                0               0        0
##     X360         0           0                0               0        0
##     XB           0           0                0               0        0
##     XOne         0           0                0               0        0
##         Publisher
## Platform Disney Interactive Studios Dorart dramatic create
##     2600                          0      0               0
##     3DO                           0      0               0
##     3DS                           7      0               0
##     DC                            0      0               0
##     DS                           59      0               0
##     GB                            0      0               0
##     GBA                          19      0               0
##     GC                            3      0               0
##     GEN                           0      0               0
##     GG                            0      0               0
##     N64                           0      0               0
##     NES                           0      0               0
##     NG                            0      0               0
##     PC                            4      0               0
##     PCFX                          0      0               0
##     PS                            0      0               0
##     PS2                          17      0               0
##     PS3                          22      0               0
##     PS4                           2      0               0
##     PSP                          10      2               0
##     PSV                           2      0               5
##     SAT                           0      0               0
##     SCD                           0      0               0
##     SNES                          0      0               0
##     TG16                          0      0               0
##     Wii                          39      0               0
##     WiiU                          6      0               0
##     WS                            0      0               0
##     X360                         21      0               0
##     XB                            4      0               0
##     XOne                          3      0               0
##         Publisher
## Platform DreamCatcher Interactive DreamWorks Interactive DSI Games
##     2600                        0                      0         0
##     3DO                         0                      0         0
##     3DS                         0                      0         0
##     DC                          0                      0         0
##     DS                         10                      0         5
##     GB                          0                      0         0
##     GBA                         0                      0         1
##     GC                          0                      0         0
##     GEN                         0                      0         0
##     GG                          0                      0         0
##     N64                         0                      0         0
##     NES                         0                      0         0
##     NG                          0                      0         0
##     PC                          2                      0         0
##     PCFX                        0                      0         0
##     PS                          0                      1         0
##     PS2                         2                      0         0
##     PS3                         0                      0         0
##     PS4                         0                      0         0
##     PSP                         0                      0         0
##     PSV                         0                      0         0
##     SAT                         0                      0         0
##     SCD                         0                      0         0
##     SNES                        0                      0         0
##     TG16                        0                      0         0
##     Wii                         0                      0         0
##     WiiU                        0                      0         0
##     WS                          0                      0         0
##     X360                        0                      0         0
##     XB                          3                      0         0
##     XOne                        0                      0         0
##         Publisher
## Platform DTP Entertainment Dusenberry Martin Racing EA Games
##     2600                 0                        0        0
##     3DO                  0                        0        0
##     3DS                  2                        0        0
##     DC                   0                        0        0
##     DS                   9                        0        0
##     GB                   0                        0        0
##     GBA                  2                        0        0
##     GC                   0                        0        0
##     GEN                  0                        0        0
##     GG                   0                        0        0
##     N64                  0                        0        0
##     NES                  0                        0        0
##     NG                   0                        0        0
##     PC                  13                        0        0
##     PCFX                 0                        0        0
##     PS                   0                        0        0
##     PS2                  1                        0        0
##     PS3                  4                        0        1
##     PS4                  0                        1        0
##     PSP                  0                        0        0
##     PSV                  0                        0        0
##     SAT                  0                        0        0
##     SCD                  0                        0        0
##     SNES                 0                        0        0
##     TG16                 0                        0        0
##     Wii                  7                        0        0
##     WiiU                 0                        0        0
##     WS                   0                        0        0
##     X360                 7                        0        0
##     XB                   0                        0        0
##     XOne                 0                        1        0
##         Publisher
## Platform Easy Interactive Ecole Edia Eidos Interactive Electronic Arts
##     2600                0     0    0                 0               0
##     3DO                 0     0    0                 0               0
##     3DS                 0     0    0                 0               7
##     DC                  0     0    0                 2               0
##     DS                  2     0    0                21              79
##     GB                  0     0    0                 1               1
##     GBA                 0     0    0                 2              40
##     GC                  0     0    0                 8              90
##     GEN                 0     0    0                 0               0
##     GG                  0     0    0                 0               0
##     N64                 0     0    0                 0              23
##     NES                 0     0    0                 0               0
##     NG                  0     0    0                 0               0
##     PC                  0     0    0                28             148
##     PCFX                0     0    0                 0               0
##     PS                  0     0    0                28             106
##     PS2                 0     1    0                44             199
##     PS3                 0     0    0                 7             142
##     PS4                 0     0    0                 0              26
##     PSP                 0     0    2                 7              72
##     PSV                 0     0    0                 0               6
##     SAT                 0     0    0                 0               1
##     SCD                 0     0    0                 0               0
##     SNES                0     0    0                 0               0
##     TG16                0     0    0                 0               0
##     Wii                 0     0    0                12              90
##     WiiU                0     0    0                 0               4
##     WS                  0     0    0                 0               0
##     X360                0     0    0                14             167
##     XB                  0     0    0                24             123
##     XOne                0     0    0                 0              27
##         Publisher
## Platform Electronic Arts Victor Elf Elite Empire Interactive Encore
##     2600                      0   0     0                  0      0
##     3DO                       0   0     0                  0      0
##     3DS                       0   0     0                  0      0
##     DC                        0   0     0                  0      0
##     DS                        0   0     0                  6      0
##     GB                        0   0     0                  0      0
##     GBA                       0   0     0                  2      0
##     GC                        0   0     0                  3      1
##     GEN                       0   0     0                  0      0
##     GG                        0   0     0                  0      0
##     N64                       0   0     0                  0      0
##     NES                       0   0     0                  0      0
##     NG                        0   0     0                  0      0
##     PC                        0   0     0                  4      1
##     PCFX                      0   0     0                  0      0
##     PS                        2   0     1                  6      1
##     PS2                       0   0     0                 16      0
##     PS3                       0   0     0                  0      0
##     PS4                       0   0     0                  0      0
##     PSP                       0   0     0                  3      0
##     PSV                       0   0     0                  0      0
##     SAT                       0   2     0                  0      0
##     SCD                       0   0     0                  0      0
##     SNES                      0   0     0                  0      0
##     TG16                      0   0     0                  0      0
##     Wii                       0   0     0                  0      0
##     WiiU                      0   0     0                  0      0
##     WS                        0   0     0                  0      0
##     X360                      0   0     0                  1      0
##     XB                        0   0     0                 11      1
##     XOne                      0   0     0                  0      0
##         Publisher
## Platform Enix Corporation Enjoy Gaming ltd. Enterbrain
##     2600                0                 0          0
##     3DO                 0                 0          0
##     3DS                 0                 0          0
##     DC                  0                 0          0
##     DS                  0                 1          3
##     GB                  4                 0          0
##     GBA                 1                 0          1
##     GC                  0                 0          0
##     GEN                 0                 0          0
##     GG                  0                 0          0
##     N64                 1                 0          0
##     NES                 3                 0          0
##     NG                  0                 0          0
##     PC                  0                 0          0
##     PCFX                0                 0          0
##     PS                  6                 0          1
##     PS2                 6                 0          9
##     PS3                 0                 0          0
##     PS4                 0                 0          0
##     PSP                 0                 0          1
##     PSV                 0                 0          0
##     SAT                 0                 0          0
##     SCD                 0                 0          0
##     SNES                9                 0          0
##     TG16                0                 0          0
##     Wii                 0                 0          0
##     WiiU                0                 0          0
##     WS                  0                 0          0
##     X360                0                 0          0
##     XB                  0                 0          0
##     XOne                0                 0          0
##         Publisher
## Platform EON Digital Entertainment Epic Games Epoch Ertain ESP
##     2600                         0          0     0      0   0
##     3DO                          0          0     0      0   0
##     3DS                          0          0     0      0   0
##     DC                           0          0     0      0   0
##     DS                           0          0     0      1   0
##     GB                           0          0     0      0   0
##     GBA                          0          0     0      0   1
##     GC                           0          0     0      0   0
##     GEN                          0          0     0      0   0
##     GG                           0          0     0      0   0
##     N64                          0          0     1      0   0
##     NES                          0          0     0      0   0
##     NG                           0          0     0      0   0
##     PC                           0          0     0      0   0
##     PCFX                         0          0     0      0   0
##     PS                           1          0     0      0   1
##     PS2                          0          0     0      0   0
##     PS3                          0          0     0      0   0
##     PS4                          0          1     0      0   0
##     PSP                          0          0     0      0   0
##     PSV                          0          0     0      0   0
##     SAT                          0          0     0      0   3
##     SCD                          0          0     0      0   0
##     SNES                         0          0     6      0   0
##     TG16                         0          0     0      0   0
##     Wii                          0          0     0      0   0
##     WiiU                         0          0     0      0   0
##     WS                           0          0     0      0   0
##     X360                         0          0     0      0   0
##     XB                           0          0     0      0   0
##     XOne                         0          0     0      0   0
##         Publisher
## Platform Essential Games Evolution Games Evolved Games
##     2600               0               0             0
##     3DO                0               0             0
##     3DS                0               0             0
##     DC                 0               0             0
##     DS                 0               0             0
##     GB                 0               0             0
##     GBA                0               0             0
##     GC                 0               0             0
##     GEN                0               0             0
##     GG                 0               0             0
##     N64                0               0             0
##     NES                0               0             0
##     NG                 0               0             0
##     PC                 0               0             1
##     PCFX               0               0             0
##     PS                 0               1             0
##     PS2                3               0             2
##     PS3                0               0             1
##     PS4                0               0             0
##     PSP                0               0             0
##     PSV                0               0             0
##     SAT                0               0             0
##     SCD                0               0             0
##     SNES               0               0             0
##     TG16               0               0             0
##     Wii                0               0             0
##     WiiU               0               0             0
##     WS                 0               0             0
##     X360               0               0             2
##     XB                 0               0             2
##     XOne               0               0             0
##         Publisher
## Platform Excalibur Publishing Experience Inc. Extreme Entertainment Group
##     2600                    0               0                           0
##     3DO                     0               0                           0
##     3DS                     1               0                           1
##     DC                      0               0                           0
##     DS                      0               0                           0
##     GB                      0               0                           0
##     GBA                     0               0                           0
##     GC                      0               0                           0
##     GEN                     0               0                           0
##     GG                      0               0                           0
##     N64                     0               0                           0
##     NES                     0               0                           0
##     NG                      0               0                           0
##     PC                      3               0                           0
##     PCFX                    0               0                           0
##     PS                      0               0                           0
##     PS2                     0               0                           0
##     PS3                     0               0                           0
##     PS4                     0               0                           0
##     PSP                     0               0                           0
##     PSV                     0               3                           0
##     SAT                     0               0                           0
##     SCD                     0               0                           0
##     SNES                    0               0                           0
##     TG16                    0               0                           0
##     Wii                     0               0                           0
##     WiiU                    0               0                           0
##     WS                      0               0                           0
##     X360                    0               0                           0
##     XB                      0               0                           0
##     XOne                    0               0                           0
##         Publisher
## Platform Falcom Corporation Fields Flashpoint Games Flight-Plan
##     2600                  0      0                0           0
##     3DO                   0      0                0           0
##     3DS                   0      0                0           0
##     DC                    0      0                0           0
##     DS                    0      0                0           0
##     GB                    0      0                0           0
##     GBA                   0      0                1           0
##     GC                    0      0                0           0
##     GEN                   0      0                0           0
##     GG                    0      0                0           0
##     N64                   0      0                0           0
##     NES                   0      0                0           0
##     NG                    0      0                0           0
##     PC                    0      0                0           0
##     PCFX                  0      0                0           0
##     PS                    0      0                0           0
##     PS2                   0      0                0           2
##     PS3                   3      1                0           0
##     PS4                   0      0                0           0
##     PSP                  12      0                0           0
##     PSV                   1      0                0           0
##     SAT                   0      0                0           0
##     SCD                   0      0                0           0
##     SNES                  0      0                0           0
##     TG16                  0      0                0           0
##     Wii                   0      0                1           0
##     WiiU                  0      0                0           0
##     WS                    0      0                0           0
##     X360                  0      0                0           0
##     XB                    0      0                0           0
##     XOne                  0      0                0           0
##         Publisher
## Platform Focus Home Interactive Focus Multimedia fonfun
##     2600                      0                0      0
##     3DO                       0                0      0
##     3DS                       0                0      0
##     DC                        0                0      0
##     DS                        5                0      0
##     GB                        0                0      0
##     GBA                       0                0      0
##     GC                        0                0      0
##     GEN                       0                0      0
##     GG                        0                0      0
##     N64                       0                0      0
##     NES                       0                0      0
##     NG                        0                0      0
##     PC                       28                3      0
##     PCFX                      0                0      0
##     PS                        0                0      0
##     PS2                       0                0      0
##     PS3                       5                0      0
##     PS4                       6                0      0
##     PSP                       0                0      1
##     PSV                       1                0      0
##     SAT                       0                0      0
##     SCD                       0                0      0
##     SNES                      0                0      0
##     TG16                      0                0      0
##     Wii                       2                0      0
##     WiiU                      0                0      0
##     WS                        0                0      0
##     X360                      8                0      0
##     XB                        0                0      0
##     XOne                      3                0      0
##         Publisher
## Platform Foreign Media Games Fortyfive Fox Interactive From Software Fuji
##     2600                   0         0               0             0    0
##     3DO                    0         0               0             0    0
##     3DS                    0         0               0             0    0
##     DC                     0         1               0             0    0
##     DS                     9         0               0             1    0
##     GB                     0         0               0             0    0
##     GBA                    0         0               0             0    0
##     GC                     0         0               0             0    0
##     GEN                    0         0               0             0    0
##     GG                     0         0               0             0    0
##     N64                    0         0               1             0    0
##     NES                    0         0               0             0    0
##     NG                     0         0               0             0    0
##     PC                     0         0               0             0    0
##     PCFX                   0         0               0             0    0
##     PS                     0         0               7             6    1
##     PS2                    0         0               0             1    0
##     PS3                    0         0               0             1    0
##     PS4                    0         0               0             0    0
##     PSP                    0         0               0             5    0
##     PSV                    0         0               0             0    0
##     SAT                    0         0               0             0    0
##     SCD                    0         0               0             0    0
##     SNES                   0         0               0             0    0
##     TG16                   0         0               0             0    0
##     Wii                    0         0               0             0    0
##     WiiU                   0         0               0             0    0
##     WS                     0         0               0             0    0
##     X360                   0         0               0             0    0
##     XB                     0         0               0             1    0
##     XOne                   0         0               0             0    0
##         Publisher
## Platform Funbox Media Funcom FunSoft Funsta FuRyu FuRyu Corporation G.Rev
##     2600            0      0       0      0     0                 0     0
##     3DO             0      0       0      0     0                 0     0
##     3DS             2      0       0      0    14                 0     0
##     DC              0      0       0      0     0                 0     0
##     DS              0      0       0      2     1                 0     0
##     GB              0      0       0      0     0                 0     0
##     GBA             0      0       0      0     0                 0     0
##     GC              0      0       0      0     0                 0     0
##     GEN             0      0       0      0     0                 0     0
##     GG              0      0       0      0     0                 0     0
##     N64             0      0       0      0     0                 0     0
##     NES             0      0       0      0     0                 0     0
##     NG              0      0       0      0     0                 0     0
##     PC              0      2       0      0     0                 0     0
##     PCFX            0      0       0      0     0                 0     0
##     PS              0      0       1      0     0                 0     0
##     PS2             0      0       0      0     0                 0     0
##     PS3             1      0       0      0     0                 0     0
##     PS4             0      0       0      0     0                 1     0
##     PSP             0      0       0      1     6                 0     0
##     PSV             1      0       0      0     6                 0     0
##     SAT             0      0       0      0     0                 0     0
##     SCD             0      0       0      0     0                 0     0
##     SNES            0      0       0      0     0                 0     0
##     TG16            0      0       0      0     0                 0     0
##     Wii             2      0       0      1     0                 0     0
##     WiiU            0      0       0      0     0                 0     0
##     WS              0      0       0      0     0                 0     0
##     X360            0      0       0      0     0                 0     2
##     XB              0      0       0      0     0                 0     0
##     XOne            0      0       0      0     0                 0     0
##         Publisher
## Platform Gaga Gainax Network Systems Gakken Game Arts Game Factory
##     2600    0                      0      0         0            0
##     3DO     0                      0      0         0            0
##     3DS     0                      0      0         0            0
##     DC      0                      0      0         0            0
##     DS      0                      0      2         0           18
##     GB      0                      0      0         0            0
##     GBA     0                      0      0         0            5
##     GC      0                      0      0         0            0
##     GEN     0                      0      0         1            0
##     GG      0                      0      0         0            0
##     N64     0                      0      0         0            0
##     NES     0                      0      0         0            0
##     NG      0                      0      0         0            0
##     PC      0                      0      0         0            0
##     PCFX    0                      0      0         0            0
##     PS      0                      2      0         0            0
##     PS2     0                      0      0         0            2
##     PS3     0                      0      0         0            0
##     PS4     0                      0      0         0            0
##     PSP     0                      0      0         0            2
##     PSV     0                      0      0         0            0
##     SAT     1                      0      0         0            0
##     SCD     0                      0      0         0            0
##     SNES    0                      0      0         0            0
##     TG16    0                      0      0         0            0
##     Wii     0                      0      0         0            5
##     WiiU    0                      0      0         0            0
##     WS      0                      0      0         0            0
##     X360    0                      0      0         0            0
##     XB      0                      0      0         0            0
##     XOne    0                      0      0         0            0
##         Publisher
## Platform Game Life Gamebridge Gamecock Gameloft GameMill Entertainment
##     2600         0          0        0        0                      0
##     3DO          0          0        0        0                      0
##     3DS          0          0        0        0                      0
##     DC           0          0        0        0                      0
##     DS           2          0        1        1                      5
##     GB           0          0        0        0                      0
##     GBA          0          0        0        0                      0
##     GC           0          0        0        0                      0
##     GEN          0          0        0        0                      0
##     GG           0          0        0        0                      0
##     N64          0          0        0        0                      0
##     NES          0          0        0        0                      0
##     NG           0          0        0        0                      0
##     PC           0          0        1        0                      0
##     PCFX         0          0        0        0                      0
##     PS           0          0        0        0                      0
##     PS2          0          0        0        0                      0
##     PS3          0          1        1        0                      0
##     PS4          0          0        0        0                      0
##     PSP          0          0        0        0                      0
##     PSV          0          0        0        0                      0
##     SAT          0          0        0        0                      0
##     SCD          0          0        0        0                      0
##     SNES         0          0        0        0                      0
##     TG16         0          0        0        0                      0
##     Wii          0          0        0        0                      2
##     WiiU         0          0        0        0                      0
##     WS           0          0        0        0                      0
##     X360         0          1        1        0                      1
##     XB           0          0        0        0                      0
##     XOne         0          0        0        0                      0
##         Publisher
## Platform GameTek Gathering of Developers General Entertainment Genki
##     2600       0                       0                     0     0
##     3DO        0                       0                     0     0
##     3DS        0                       0                     0     1
##     DC         0                       0                     0     1
##     DS         0                       0                     0     1
##     GB         0                       0                     0     0
##     GBA        0                       0                     0     0
##     GC         0                       0                     0     0
##     GEN        0                       0                     0     0
##     GG         0                       0                     0     0
##     N64        1                       0                     0     0
##     NES        0                       0                     0     0
##     NG         0                       0                     0     0
##     PC         0                       3                     0     0
##     PCFX       0                       0                     0     0
##     PS         0                       0                     1     0
##     PS2        0                       3                     0     2
##     PS3        0                       0                     0     1
##     PS4        0                       0                     0     0
##     PSP        0                       0                     0     1
##     PSV        0                       0                     0     0
##     SAT        0                       0                     0     0
##     SCD        0                       0                     0     0
##     SNES       0                       0                     0     0
##     TG16       0                       0                     0     0
##     Wii        0                       0                     0     0
##     WiiU       0                       0                     0     0
##     WS         0                       0                     0     0
##     X360       0                       0                     0     0
##     XB         0                       3                     0     1
##     XOne       0                       0                     0     0
##         Publisher
## Platform Genterprise Ghostlight Giga Giza10 Glams Global A Entertainment
##     2600           0          0    0      0     0                      0
##     3DO            0          0    0      0     0                      0
##     3DS            0          1    0      0     0                      0
##     DC             0          0    0      0     0                      0
##     DS             1          5    0      0     0                      2
##     GB             0          0    0      0     0                      0
##     GBA            0          0    0      0     0                      0
##     GC             0          0    0      0     0                      0
##     GEN            0          0    0      0     0                      0
##     GG             0          0    0      0     0                      0
##     N64            0          0    0      0     0                      0
##     NES            0          0    0      0     0                      0
##     NG             0          0    0      0     0                      0
##     PC             0          0    0      0     0                      0
##     PCFX           0          0    0      0     0                      0
##     PS             0          0    0      0     0                      0
##     PS2            0          4    0      0     0                      0
##     PS3            0          2    0      0     0                      0
##     PS4            0          0    0      0     0                      0
##     PSP            0          2    0      1     0                      2
##     PSV            0          0    1      0     0                      0
##     SAT            0          0    0      0     1                      0
##     SCD            0          0    0      0     0                      0
##     SNES           0          0    0      0     0                      0
##     TG16           0          0    0      0     0                      0
##     Wii            0          1    0      0     0                      0
##     WiiU           0          0    0      0     0                      0
##     WS             0          0    0      0     0                      0
##     X360           0          0    0      0     0                      0
##     XB             0          0    0      0     0                      0
##     XOne           0          0    0      0     0                      0
##         Publisher
## Platform Global Star GN Software GOA Gotham Games Graffiti
##     2600           0           0   0            0        0
##     3DO            0           0   0            0        0
##     3DS            0           0   0            0        0
##     DC             0           0   0            0        0
##     DS             0           0   0            0        3
##     GB             0           0   0            0        0
##     GBA            3           0   0            1        0
##     GC             6           0   0            1        0
##     GEN            0           0   0            0        0
##     GG             0           0   0            0        0
##     N64            0           0   0            0        0
##     NES            0           0   0            0        0
##     NG             0           0   0            0        0
##     PC             0           0   1            0        0
##     PCFX           0           0   0            0        0
##     PS             0           0   0            1        0
##     PS2           14           2   0            3        0
##     PS3            0           0   0            0        0
##     PS4            0           0   0            0        0
##     PSP            0           1   0            0        1
##     PSV            0           0   0            0        0
##     SAT            0           0   0            0        0
##     SCD            0           0   0            0        0
##     SNES           0           0   0            0        0
##     TG16           0           0   0            0        0
##     Wii            0           0   0            0        2
##     WiiU           0           0   0            0        0
##     WS             0           0   0            0        0
##     X360           0           0   0            0        0
##     XB            16           0   0            1        0
##     XOne           0           0   0            0        0
##         Publisher
## Platform Grand Prix Games Graphsim Entertainment Gremlin Interactive Ltd
##     2600                0                      0                       0
##     3DO                 0                      0                       0
##     3DS                 0                      0                       0
##     DC                  0                      0                       0
##     DS                  0                      0                       0
##     GB                  0                      0                       0
##     GBA                 0                      0                       0
##     GC                  0                      0                       0
##     GEN                 0                      0                       0
##     GG                  0                      0                       0
##     N64                 0                      0                       1
##     NES                 0                      0                       0
##     NG                  0                      0                       0
##     PC                  0                      1                       0
##     PCFX                0                      0                       0
##     PS                  0                      0                       8
##     PS2                 0                      0                       0
##     PS3                 0                      0                       0
##     PS4                 0                      0                       0
##     PSP                 1                      0                       0
##     PSV                 0                      0                       0
##     SAT                 0                      0                       0
##     SCD                 0                      0                       0
##     SNES                0                      0                       0
##     TG16                0                      0                       0
##     Wii                 0                      0                       0
##     WiiU                0                      0                       0
##     WS                  0                      0                       0
##     X360                0                      0                       0
##     XB                  0                      0                       0
##     XOne                0                      0                       0
##         Publisher
## Platform Griffin International Groove Games GSP GT Interactive GungHo Gust
##     2600                     0            0   0              0      0    0
##     3DO                      0            0   0              0      0    0
##     3DS                      0            0   0              0      2    0
##     DC                       0            0   0              0      0    0
##     DS                       0            0  14              0      4    2
##     GB                       0            0   0              0      0    0
##     GBA                      0            0   0              0      0    0
##     GC                       0            0   0              0      0    0
##     GEN                      0            0   0              0      0    0
##     GG                       0            0   0              0      0    0
##     N64                      0            0   0             18      0    0
##     NES                      0            0   0              0      0    0
##     NG                       0            0   0              0      0    0
##     PC                       0            0   1              0      0    0
##     PCFX                     0            0   0              0      0    0
##     PS                       0            0   0             27      0    2
##     PS2                      0            0   0              0      0    3
##     PS3                      0            0   0              0      1    0
##     PS4                      0            0   0              0      0    0
##     PSP                      0            0   0              0      3    3
##     PSV                      0            0   0              0      3    3
##     SAT                      0            0   0              0      0    0
##     SCD                      0            0   0              0      0    0
##     SNES                     0            0   0              0      0    0
##     TG16                     0            0   0              0      0    0
##     Wii                      0            0   1              0      0    0
##     WiiU                     0            0   0              0      0    0
##     WS                       0            0   0              0      0    0
##     X360                     1            0   0              0      0    0
##     XB                       0            2   0              0      0    0
##     XOne                     0            0   0              0      0    0
##         Publisher
## Platform Hackberry HAL Laboratory Hamster Corporation Happinet
##     2600         0              0                   0        0
##     3DO          0              0                   0        0
##     3DS          0              0                   0        5
##     DC           0              0                   0        0
##     DS           0              0                   0        0
##     GB           0              0                   0        0
##     GBA          0              0                   0        0
##     GC           0              0                   0        0
##     GEN          0              0                   0        0
##     GG           0              0                   0        0
##     N64          0              0                   0        0
##     NES          0              1                   0        0
##     NG           0              0                   0        0
##     PC           0              0                   0        0
##     PCFX         0              0                   0        0
##     PS           0              0                   1        0
##     PS2          7              0                   1        0
##     PS3          0              0                   0        0
##     PS4          0              0                   0        0
##     PSP          0              0                   0        0
##     PSV          0              0                   0        0
##     SAT          0              0                   0        0
##     SCD          0              0                   0        0
##     SNES         0              0                   0        0
##     TG16         0              0                   0        0
##     Wii          0              0                   0        0
##     WiiU         0              0                   0        0
##     WS           0              0                   0        0
##     X360         0              0                   0        0
##     XB           0              0                   0        0
##     XOne         0              0                   0        0
##         Publisher
## Platform Harmonix Music Systems Hasbro Interactive Havas Interactive
##     2600                      0                  0                 0
##     3DO                       0                  0                 0
##     3DS                       0                  0                 0
##     DC                        0                  0                 0
##     DS                        0                  0                 0
##     GB                        0                  0                 0
##     GBA                       0                  1                 0
##     GC                        0                  0                 0
##     GEN                       0                  0                 0
##     GG                        0                  0                 0
##     N64                       0                  2                 0
##     NES                       0                  0                 0
##     NG                        0                  0                 0
##     PC                        0                  1                 1
##     PCFX                      0                  0                 0
##     PS                        0                 12                 0
##     PS2                       0                  0                 0
##     PS3                       0                  0                 0
##     PS4                       1                  0                 0
##     PSP                       0                  0                 0
##     PSV                       0                  0                 0
##     SAT                       0                  0                 0
##     SCD                       0                  0                 0
##     SNES                      0                  0                 0
##     TG16                      0                  0                 0
##     Wii                       0                  0                 0
##     WiiU                      0                  0                 0
##     WS                        0                  0                 0
##     X360                      0                  0                 0
##     XB                        0                  0                 0
##     XOne                      1                  0                 0
##         Publisher
## Platform Headup Games Hearty Robin Hect Hello Games Her Interactive
##     2600            0            0    0           0               0
##     3DO             0            0    0           0               0
##     3DS             0            0    0           0               0
##     DC              0            0    0           0               0
##     DS              0            0    0           0               0
##     GB              0            0    0           0               0
##     GBA             0            0    0           0               0
##     GC              0            0    0           0               0
##     GEN             0            0    0           0               0
##     GG              0            0    0           0               0
##     N64             0            0    0           0               0
##     NES             0            0    0           0               0
##     NG              0            0    0           0               0
##     PC              1            0    0           0               1
##     PCFX            0            0    0           0               0
##     PS              0            1    1           0               0
##     PS2             0            0    0           0               0
##     PS3             0            0    0           0               0
##     PS4             0            0    0           1               0
##     PSP             0            0    0           0               0
##     PSV             0            0    0           0               0
##     SAT             0            0    0           0               0
##     SCD             0            0    0           0               0
##     SNES            0            0    2           0               0
##     TG16            0            0    0           0               0
##     Wii             0            0    0           0               0
##     WiiU            0            0    0           0               0
##     WS              0            0    0           0               0
##     X360            0            0    0           0               0
##     XB              0            0    0           0               0
##     XOne            0            0    0           0               0
##         Publisher
## Platform Hip Interactive HMH Interactive Home Entertainment Suppliers
##     2600               0               0                            0
##     3DO                0               0                            0
##     3DS                0               0                            0
##     DC                 0               0                            0
##     DS                 0               1                            0
##     GB                 0               0                            0
##     GBA                2               0                            0
##     GC                 0               0                            0
##     GEN                0               0                            0
##     GG                 0               0                            0
##     N64                0               0                            0
##     NES                0               0                            0
##     NG                 0               0                            0
##     PC                 0               1                            1
##     PCFX               0               0                            0
##     PS                 0               0                            0
##     PS2                1               0                            0
##     PS3                0               0                            2
##     PS4                0               0                            0
##     PSP                0               0                            0
##     PSV                0               0                            0
##     SAT                0               0                            0
##     SCD                0               0                            0
##     SNES               0               0                            0
##     TG16               0               0                            0
##     Wii                0               0                            0
##     WiiU               0               0                            0
##     WS                 0               0                            0
##     X360               0               0                            2
##     XB                 2               0                            0
##     XOne               0               0                            0
##         Publisher
## Platform Hudson Entertainment Hudson Soft Human Entertainment HuneX
##     2600                    0           0                   0     0
##     3DO                     0           0                   0     0
##     3DS                     0           2                   0     0
##     DC                      0           0                   0     0
##     DS                      1          15                   0     0
##     GB                      0           0                   0     0
##     GBA                     4           2                   0     0
##     GC                      0           2                   0     0
##     GEN                     0           0                   0     0
##     GG                      0           0                   0     0
##     N64                     1           3                   0     0
##     NES                     0           7                   0     0
##     NG                      0           1                   0     0
##     PC                      0           0                   0     0
##     PCFX                    0           0                   0     0
##     PS                      2           2                   8     0
##     PS2                     0           6                   0     0
##     PS3                     0           1                   0     0
##     PS4                     0           0                   0     0
##     PSP                     1           4                   0     0
##     PSV                     0           0                   0     2
##     SAT                     0           3                   1     0
##     SCD                     0           0                   0     0
##     SNES                    0          18                   4     0
##     TG16                    0           1                   0     0
##     Wii                     2          12                   0     0
##     WiiU                    0           0                   0     0
##     WS                      0           0                   0     0
##     X360                    0           1                   0     0
##     XB                      0           1                   0     0
##     XOne                    0           0                   0     0
##         Publisher
## Platform Iceberg Interactive id Software Idea Factory
##     2600                   0           0            0
##     3DO                    0           0            0
##     3DS                    0           0            0
##     DC                     0           0            0
##     DS                     0           0            6
##     GB                     0           0            0
##     GBA                    0           0            0
##     GC                     0           0            0
##     GEN                    0           0            0
##     GG                     0           0            0
##     N64                    0           0            0
##     NES                    0           0            0
##     NG                     0           0            0
##     PC                     3           1            0
##     PCFX                   0           0            0
##     PS                     0           0            0
##     PS2                    0           0           17
##     PS3                    0           0            2
##     PS4                    0           0            1
##     PSP                    0           0           69
##     PSV                    0           0           32
##     SAT                    0           0            0
##     SCD                    0           0            0
##     SNES                   0           0            0
##     TG16                   0           0            0
##     Wii                    0           0            0
##     WiiU                   0           0            0
##     WS                     0           0            0
##     X360                   0           0            2
##     XB                     0           0            0
##     XOne                   0           0            0
##         Publisher
## Platform Idea Factory International IE Institute Ignition Entertainment
##     2600                          0            0                      0
##     3DO                           0            0                      0
##     3DS                           0            1                      0
##     DC                            0            0                      0
##     DS                            0            4                     13
##     GB                            0            0                      0
##     GBA                           0            0                      6
##     GC                            0            0                      3
##     GEN                           0            0                      0
##     GG                            0            0                      0
##     N64                           0            0                      0
##     NES                           0            0                      0
##     NG                            0            0                      0
##     PC                            0            0                      0
##     PCFX                          0            0                      0
##     PS                            0            0                      0
##     PS2                           0            0                     17
##     PS3                           0            0                      3
##     PS4                           2            0                      0
##     PSP                           0            0                      8
##     PSV                           4            0                      0
##     SAT                           0            0                      0
##     SCD                           0            0                      0
##     SNES                          0            0                      0
##     TG16                          0            0                      0
##     Wii                           0            0                      6
##     WiiU                          0            0                      0
##     WS                            0            0                      0
##     X360                          0            0                      2
##     XB                            0            0                      3
##     XOne                          0            0                      0
##         Publisher
## Platform Illusion Softworks Imadio Image Epoch imageepoch Inc. Imageworks
##     2600                  0      0           0               0          0
##     3DO                   0      0           0               0          1
##     3DS                   0      0           0               2          0
##     DC                    0      0           0               0          0
##     DS                    0      0           0               0          0
##     GB                    0      0           0               0          0
##     GBA                   0      0           0               0          0
##     GC                    0      0           0               0          0
##     GEN                   0      0           0               0          0
##     GG                    0      0           0               0          0
##     N64                   0      0           0               0          0
##     NES                   0      0           0               0          0
##     NG                    0      0           0               0          0
##     PC                    0      0           0               0          0
##     PCFX                  0      0           0               0          0
##     PS                    0      0           0               0          0
##     PS2                   1      0           0               0          0
##     PS3                   0      0           0               0          0
##     PS4                   0      0           0               0          0
##     PSP                   0      0           1               0          0
##     PSV                   0      0           0               0          0
##     SAT                   0      1           0               0          0
##     SCD                   0      0           0               0          0
##     SNES                  0      0           0               0          0
##     TG16                  0      0           0               0          0
##     Wii                   0      0           0               0          0
##     WiiU                  0      0           0               0          0
##     WS                    0      0           0               0          0
##     X360                  0      0           0               0          0
##     XB                    0      0           0               0          0
##     XOne                  0      0           0               0          0
##         Publisher
## Platform Imagic Imagineer Imax Indie Games Infogrames Insomniac Games
##     2600      4         0    0           0          0               0
##     3DO       0         0    0           0          0               0
##     3DS       0         0    0           0          0               0
##     DC        0         0    0           0          1               0
##     DS        0         0    0           0          0               0
##     GB        0         4    0           0          0               0
##     GBA       0         0    0           0          8               0
##     GC        0         0    0           0          8               0
##     GEN       0         0    0           0          0               0
##     GG        0         0    0           0          0               0
##     N64       0         5    0           0          8               0
##     NES       0         0    0           0          0               0
##     NG        0         0    0           0          0               0
##     PC        0         0    0           0          1               1
##     PCFX      0         0    0           0          0               0
##     PS        0         1    0           0         23               0
##     PS2       0         0    0           3          7               0
##     PS3       0         0    0           0          0               0
##     PS4       0         0    0           0          0               1
##     PSP       0         0    0           0          0               0
##     PSV       0         0    0           0          0               0
##     SAT       0         3    0           0          0               0
##     SCD       0         0    0           0          0               0
##     SNES      0         3    1           0          0               0
##     TG16      0         0    0           0          0               0
##     Wii       0         0    0           0          0               0
##     WiiU      0         0    0           0          0               0
##     WS        0         0    0           0          0               0
##     X360      0         0    0           0          0               0
##     XB        0         0    0           0          6               0
##     XOne      0         0    0           0          0               1
##         Publisher
## Platform Interchannel Interchannel-Holon Intergrow Interplay
##     2600            0                  0         0         0
##     3DO             0                  0         0         0
##     3DS             0                  0         1         0
##     DC              0                  0         0         0
##     DS              0                  0         0         0
##     GB              0                  0         0         0
##     GBA             0                  0         0         2
##     GC              0                  0         0         0
##     GEN             0                  0         0         0
##     GG              0                  0         0         0
##     N64             0                  0         0         3
##     NES             0                  0         0         0
##     NG              0                  0         0         0
##     PC              0                  0         0         3
##     PCFX            0                  0         0         0
##     PS              0                  0         0        15
##     PS2             4                  1         0         4
##     PS3             0                  0         0         0
##     PS4             0                  0         0         0
##     PSP             0                  0         0         0
##     PSV             0                  0         0         0
##     SAT             0                  0         0         0
##     SCD             0                  0         0         0
##     SNES            0                  0         0         1
##     TG16            0                  0         0         0
##     Wii             0                  0         0         0
##     WiiU            0                  0         0         0
##     WS              0                  0         0         0
##     X360            0                  0         0         0
##     XB              0                  0         0         2
##     XOne            0                  0         0         0
##         Publisher
## Platform Interplay Productions Interworks Unlimited, Inc. Inti Creates
##     2600                     0                          0            0
##     3DO                      0                          0            0
##     3DS                      0                          0            1
##     DC                       0                          0            0
##     DS                       0                          0            0
##     GB                       0                          0            0
##     GBA                      0                          0            0
##     GC                       0                          0            0
##     GEN                      0                          0            0
##     GG                       0                          0            0
##     N64                      0                          0            0
##     NES                      0                          0            0
##     NG                       0                          0            0
##     PC                       0                          0            0
##     PCFX                     0                          0            0
##     PS                       1                          0            0
##     PS2                      0                          0            0
##     PS3                      0                          1            0
##     PS4                      0                          0            0
##     PSP                      0                          0            0
##     PSV                      0                          0            0
##     SAT                      0                          0            0
##     SCD                      0                          0            0
##     SNES                     0                          0            0
##     TG16                     0                          0            0
##     Wii                      0                          0            0
##     WiiU                     0                          0            0
##     WS                       0                          0            0
##     X360                     0                          0            0
##     XB                       0                          0            0
##     XOne                     0                          0            0
##         Publisher
## Platform Introversion Software inXile Entertainment
##     2600                     0                    0
##     3DO                      0                    0
##     3DS                      0                    0
##     DC                       0                    0
##     DS                       0                    0
##     GB                       0                    0
##     GBA                      0                    0
##     GC                       0                    0
##     GEN                      0                    0
##     GG                       0                    0
##     N64                      0                    0
##     NES                      0                    0
##     NG                       0                    0
##     PC                       0                    1
##     PCFX                     0                    0
##     PS                       0                    0
##     PS2                      0                    0
##     PS3                      0                    0
##     PS4                      1                    0
##     PSP                      0                    0
##     PSV                      0                    0
##     SAT                      0                    0
##     SCD                      0                    0
##     SNES                     0                    0
##     TG16                     0                    0
##     Wii                      0                    0
##     WiiU                     0                    0
##     WS                       0                    0
##     X360                     0                    0
##     XB                       0                    0
##     XOne                     0                    0
##         Publisher
## Platform Irem Software Engineering ITT Family Games Ivolgamus iWin
##     2600                         0                1         0    0
##     3DO                          0                0         0    0
##     3DS                          2                0         0    0
##     DC                           0                0         0    0
##     DS                           0                0         0    1
##     GB                           0                0         0    0
##     GBA                          0                0         0    0
##     GC                           0                0         0    0
##     GEN                          0                0         0    0
##     GG                           0                0         0    0
##     N64                          0                0         0    0
##     NES                          0                0         0    0
##     NG                           0                0         0    0
##     PC                           0                0         0    0
##     PCFX                         0                0         0    0
##     PS                           1                0         0    0
##     PS2                          2                0         0    0
##     PS3                          1                0         0    0
##     PS4                          0                0         0    0
##     PSP                          6                0         1    0
##     PSV                          0                0         0    0
##     SAT                          0                0         0    0
##     SCD                          0                0         0    0
##     SNES                         0                0         0    0
##     TG16                         0                0         0    0
##     Wii                          0                0         0    0
##     WiiU                         0                0         0    0
##     WS                           0                0         0    0
##     X360                         0                0         0    0
##     XB                           0                0         0    0
##     XOne                         0                0         0    0
##         Publisher
## Platform Jack of All Games Jaleco Jester Interactive Jorudan
##     2600                 0      0                  0       0
##     3DO                  0      0                  0       0
##     3DS                  0      0                  0       0
##     DC                   0      0                  0       0
##     DS                   2      3                  0       0
##     GB                   0      0                  0       1
##     GBA                  1      1                  0       2
##     GC                   0      2                  0       0
##     GEN                  0      0                  0       0
##     GG                   0      0                  0       0
##     N64                  0      0                  0       0
##     NES                  0      0                  0       0
##     NG                   0      0                  0       0
##     PC                   0      0                  0       0
##     PCFX                 0      0                  0       0
##     PS                   0      6                  0       0
##     PS2                  0      3                  3       0
##     PS3                  0      0                  0       0
##     PS4                  0      0                  0       0
##     PSP                  0      0                  0       0
##     PSV                  0      0                  0       0
##     SAT                  0      1                  0       0
##     SCD                  0      0                  0       0
##     SNES                 0      0                  0       0
##     TG16                 0      0                  0       0
##     Wii                  0      1                  0       0
##     WiiU                 0      0                  0       0
##     WS                   0      0                  0       0
##     X360                 0      0                  0       0
##     XB                   0      6                  0       0
##     XOne                 0      0                  0       0
##         Publisher
## Platform JoWood Productions Just Flight JVC Kadokawa Games Kadokawa Shoten
##     2600                  0           0   0              0               0
##     3DO                   0           0   0              0               0
##     3DS                   0           0   0              1               2
##     DC                    0           0   0              0               0
##     DS                    6           0   0              0               5
##     GB                    0           0   0              0               0
##     GBA                   0           0   0              0               0
##     GC                    2           0   0              0               0
##     GEN                   0           0   0              0               0
##     GG                    0           0   0              0               0
##     N64                   0           0   0              0               0
##     NES                   0           0   0              0               0
##     NG                    0           0   0              0               0
##     PC                    7           1   0              0               0
##     PCFX                  0           0   0              0               0
##     PS                    0           0   7              0               3
##     PS2                   2           0   0              0              12
##     PS3                   0           0   0              1               0
##     PS4                   0           0   0              0               0
##     PSP                   0           0   0              3              19
##     PSV                   0           0   0             10               3
##     SAT                   0           0   1              0               4
##     SCD                   0           0   0              0               0
##     SNES                  0           0   0              0               0
##     TG16                  0           0   0              0               0
##     Wii                   3           0   0              0               2
##     WiiU                  0           0   0              0               0
##     WS                    0           0   0              0               0
##     X360                  1           0   0              0               0
##     XB                    1           0   0              0               0
##     XOne                  0           0   0              0               0
##         Publisher
## Platform Kaga Create Kalypso Media Kamui Kando Games Karin Entertainment
##     2600           0             0     0           0                   0
##     3DO            0             0     0           0                   0
##     3DS            0             0     0           0                   0
##     DC             0             0     0           0                   0
##     DS             0             0     1           0                   0
##     GB             0             0     0           0                   0
##     GBA            0             0     0           0                   0
##     GC             0             0     0           0                   0
##     GEN            0             0     0           0                   0
##     GG             0             0     0           0                   0
##     N64            0             0     0           0                   0
##     NES            0             0     0           0                   0
##     NG             0             0     0           0                   0
##     PC             0            20     0           0                   0
##     PCFX           0             0     0           0                   0
##     PS             0             0     0           0                   0
##     PS2            0             0     0           1                   0
##     PS3            1             1     0           0                   0
##     PS4            0             2     0           0                   0
##     PSP            1             0     0           0                   1
##     PSV            4             0     0           0                   0
##     SAT            0             0     0           0                   0
##     SCD            0             0     0           0                   0
##     SNES           0             0     0           0                   0
##     TG16           0             0     0           0                   0
##     Wii            0             0     0           0                   0
##     WiiU           0             0     0           0                   0
##     WS             0             0     0           0                   0
##     X360           0             6     0           0                   0
##     XB             0             0     0           0                   0
##     XOne           0             0     0           0                   0
##         Publisher
## Platform Kemco KID Kids Station King Records Knowledge Adventure
##     2600     0   0            0            0                   0
##     3DO      0   0            0            0                   0
##     3DS      0   0            0            0                   0
##     DC       0   0            0            0                   0
##     DS       0   0            1            0                   0
##     GB       0   0            0            0                   0
##     GBA      2   0            0            1                   2
##     GC       4   0            0            0                   0
##     GEN      0   0            0            0                   0
##     GG       0   0            0            0                   0
##     N64      7   0            0            0                   0
##     NES      0   0            0            0                   0
##     NG       0   0            0            0                   0
##     PC       0   0            0            0                   0
##     PCFX     0   0            0            0                   0
##     PS       1   0            0            0                   0
##     PS2      2   3            0            0                   0
##     PS3      0   0            0            0                   0
##     PS4      0   0            0            0                   0
##     PSP      0   0            0            0                   0
##     PSV      0   0            0            0                   0
##     SAT      0   1            0            0                   0
##     SCD      0   0            0            0                   0
##     SNES     1   0            0            0                   0
##     TG16     0   0            0            0                   0
##     Wii      0   0            0            0                   2
##     WiiU     0   0            0            0                   0
##     WS       0   0            0            0                   0
##     X360     0   0            0            0                   0
##     XB       4   0            0            0                   0
##     XOne     0   0            0            0                   0
##         Publisher
## Platform Koch Media Kokopeli Digital Studios Konami Digital Entertainment
##     2600          0                        0                            0
##     3DO           0                        0                            1
##     3DS           1                        0                           12
##     DC            0                        0                            1
##     DS            1                        0                          112
##     GB            0                        0                           10
##     GBA           0                        0                           60
##     GC            0                        0                           24
##     GEN           0                        0                            1
##     GG            0                        0                            0
##     N64           0                        0                           25
##     NES           0                        0                            9
##     NG            0                        0                            0
##     PC            4                        0                           12
##     PCFX          0                        0                            0
##     PS            0                        1                           80
##     PS2           1                        0                          163
##     PS3           2                        0                           61
##     PS4           1                        0                            7
##     PSP           1                        0                           79
##     PSV           0                        0                           12
##     SAT           0                        0                            4
##     SCD           0                        0                            0
##     SNES          0                        0                           19
##     TG16          0                        0                            0
##     Wii           2                        0                           55
##     WiiU          0                        0                            0
##     WS            0                        0                            0
##     X360          2                        0                           49
##     XB            0                        0                           31
##     XOne          2                        0                            5
##         Publisher
## Platform Kool Kizz KSS Laguna Legacy Interactive LEGO Media Level 5
##     2600         0   0      0                  0          0       0
##     3DO          0   0      0                  0          0       0
##     3DS          0   0      0                  0          0      11
##     DC           0   0      0                  0          0       0
##     DS           0   0      0                  1          0       7
##     GB           0   0      0                  0          0       0
##     GBA          0   0      0                  0          2       0
##     GC           0   0      0                  0          0       0
##     GEN          0   0      0                  0          0       0
##     GG           0   0      0                  0          0       0
##     N64          0   0      0                  0          1       0
##     NES          0   0      0                  0          0       0
##     NG           0   0      0                  0          0       0
##     PC           0   0      0                  0          1       0
##     PCFX         0   0      0                  0          0       0
##     PS           0   0      0                  0          3       0
##     PS2          0   0      0                  0          0       0
##     PS3          0   0      0                  0          0       0
##     PS4          0   0      0                  0          0       0
##     PSP          0   0      0                  0          0       4
##     PSV          0   0      0                  0          0       2
##     SAT          0   0      0                  0          0       0
##     SCD          0   0      0                  0          0       0
##     SNES         0   1      4                  0          0       0
##     TG16         0   0      0                  0          0       0
##     Wii          0   0      0                  0          0       2
##     WiiU         0   0      0                  0          0       1
##     WS           0   0      0                  0          0       0
##     X360         0   0      0                  0          0       0
##     XB           1   0      0                  0          0       0
##     XOne         0   0      0                  0          0       0
##         Publisher
## Platform Lexicon Entertainment Licensed 4U Lighthouse Interactive
##     2600                     0           0                      0
##     3DO                      0           0                      0
##     3DS                      0           1                      0
##     DC                       0           0                      0
##     DS                       2           2                      0
##     GB                       0           0                      0
##     GBA                      0           0                      0
##     GC                       0           0                      0
##     GEN                      0           0                      0
##     GG                       0           0                      0
##     N64                      0           0                      0
##     NES                      0           0                      0
##     NG                       0           0                      0
##     PC                       0           0                      1
##     PCFX                     0           0                      0
##     PS                       0           0                      0
##     PS2                      0           0                      0
##     PS3                      0           0                      0
##     PS4                      0           0                      0
##     PSP                      0           0                      0
##     PSV                      0           0                      0
##     SAT                      0           0                      0
##     SCD                      0           0                      0
##     SNES                     0           0                      0
##     TG16                     0           0                      0
##     Wii                      0           0                      0
##     WiiU                     0           0                      0
##     WS                       0           0                      0
##     X360                     0           0                      0
##     XB                       0           0                      0
##     XOne                     0           0                      0
##         Publisher
## Platform Liquid Games Little Orbit Locus LSP Games LucasArts Mad Catz
##     2600            0            0     0         0         0        0
##     3DO             0            0     0         0         0        0
##     3DS             0            7     0         0         1        0
##     DC              0            0     0         0         0        0
##     DS              0            1     0         0         9        0
##     GB              0            0     0         0         0        0
##     GBA             2            0     0         3         1        0
##     GC              0            0     0         0         4        1
##     GEN             0            0     0         0         0        0
##     GG              0            0     0         0         0        0
##     N64             0            0     0         0         1        0
##     NES             0            0     0         0         0        0
##     NG              0            0     0         0         0        0
##     PC              0            0     0         0        14        0
##     PCFX            0            0     0         0         0        0
##     PS              0            0     1         0         4        0
##     PS2             0            0     0         1        17        0
##     PS3             0            4     0         0         6        0
##     PS4             0            1     0         0         0        0
##     PSP             0            0     0         0         9        0
##     PSV             0            0     0         0         0        0
##     SAT             0            0     0         0         0        0
##     SCD             0            0     0         0         0        0
##     SNES            0            0     0         0         0        0
##     TG16            0            0     0         0         0        0
##     Wii             0            3     0         0         8        0
##     WiiU            0            3     0         0         0        0
##     WS              0            0     0         0         0        0
##     X360            0            6     0         0         8        1
##     XB              0            0     0         0         8        1
##     XOne            0            1     0         0         0        0
##         Publisher
## Platform Magical Company Magix Majesco Entertainment Mamba Games
##     2600               0     0                     0           0
##     3DO                0     0                     0           0
##     3DS                0     0                     4           0
##     DC                 0     0                     0           0
##     DS                 0     0                    39           0
##     GB                 0     0                     0           0
##     GBA                0     0                    15           0
##     GC                 0     0                     0           0
##     GEN                0     0                     0           0
##     GG                 0     0                     0           0
##     N64                0     0                     0           0
##     NES                0     0                     0           0
##     NG                 0     0                     0           0
##     PC                 0     0                     0           2
##     PCFX               0     0                     0           0
##     PS                 1     0                     0           0
##     PS2                0     2                     1           0
##     PS3                0     0                     1           0
##     PS4                0     0                     0           0
##     PSP                0     0                     2           0
##     PSV                0     0                     0           0
##     SAT                0     0                     0           0
##     SCD                0     0                     0           0
##     SNES               0     0                     0           0
##     TG16               0     0                     0           0
##     Wii                0     0                    24           0
##     WiiU               0     0                     0           0
##     WS                 0     0                     0           0
##     X360               0     0                     4           0
##     XB                 0     0                     1           0
##     XOne               0     0                     1           0
##         Publisher
## Platform Marvel Entertainment Marvelous Entertainment Marvelous Games
##     2600                    0                       0               0
##     3DO                     0                       0               0
##     3DS                     0                       5               0
##     DC                      0                       0               0
##     DS                      0                       0               0
##     GB                      0                       0               0
##     GBA                     0                       0               0
##     GC                      0                       0               0
##     GEN                     0                       0               0
##     GG                      0                       0               0
##     N64                     0                       0               0
##     NES                     0                       0               0
##     NG                      0                       0               0
##     PC                      0                       0               0
##     PCFX                    0                       0               0
##     PS                      0                       0               0
##     PS2                     0                       0               0
##     PS3                     0                       0               0
##     PS4                     0                       0               0
##     PSP                     0                       2               0
##     PSV                     1                       5               1
##     SAT                     0                       0               0
##     SCD                     0                       0               0
##     SNES                    0                       0               0
##     TG16                    0                       0               0
##     Wii                     0                       0               0
##     WiiU                    0                       0               0
##     WS                      0                       0               0
##     X360                    0                       0               0
##     XB                      0                       0               0
##     XOne                    0                       0               0
##         Publisher
## Platform Marvelous Interactive Masque Publishing Mastertronic Mastiff
##     2600                     0                 0            0       0
##     3DO                      0                 0            0       0
##     3DS                      3                 0            0       3
##     DC                       0                 0            0       0
##     DS                      13                 0            4       2
##     GB                       0                 0            0       0
##     GBA                      3                 0            0       1
##     GC                       1                 0            0       0
##     GEN                      0                 0            0       0
##     GG                       0                 0            0       0
##     N64                      0                 0            0       0
##     NES                      0                 0            0       0
##     NG                       0                 0            0       0
##     PC                       0                 1            4       1
##     PCFX                     0                 0            0       0
##     PS                       0                 0            0       0
##     PS2                     12                 0            1       1
##     PS3                      2                 0            0       0
##     PS4                      2                 0            0       0
##     PSP                     11                 0            0       0
##     PSV                      3                 0            0       0
##     SAT                      0                 0            0       0
##     SCD                      0                 0            0       0
##     SNES                     0                 0            0       0
##     TG16                     0                 0            0       0
##     Wii                      5                 0            1       7
##     WiiU                     0                 0            0       0
##     WS                       0                 0            0       0
##     X360                     1                 0            3       0
##     XB                       0                 0            0       1
##     XOne                     0                 0            0       0
##         Publisher
## Platform Mattel Interactive Max Five Maximum Family Games Maxis
##     2600                  8        0                    0     0
##     3DO                   0        0                    0     0
##     3DS                   0        0                    1     0
##     DC                    0        0                    0     0
##     DS                    0        0                    0     0
##     GB                    0        0                    0     0
##     GBA                   0        0                    0     0
##     GC                    0        0                    0     0
##     GEN                   0        0                    0     0
##     GG                    0        0                    0     0
##     N64                   0        0                    0     0
##     NES                   0        0                    0     0
##     NG                    0        0                    0     0
##     PC                    0        0                    0     2
##     PCFX                  0        0                    0     0
##     PS                    4        1                    0     1
##     PS2                   0        0                    0     0
##     PS3                   0        0                    0     0
##     PS4                   0        0                    0     0
##     PSP                   0        0                    0     0
##     PSV                   0        0                    0     0
##     SAT                   0        0                    0     0
##     SCD                   0        0                    0     0
##     SNES                  0        0                    0     0
##     TG16                  0        0                    0     0
##     Wii                   0        0                    0     0
##     WiiU                  0        0                    0     0
##     WS                    0        0                    0     0
##     X360                  0        0                    0     0
##     XB                    0        0                    0     0
##     XOne                  0        0                    0     0
##         Publisher
## Platform MC2 Entertainment Media Entertainment Media Factory Media Rings
##     2600                 0                   0             0           0
##     3DO                  0                   0             0           0
##     3DS                  0                   0             0           0
##     DC                   0                   0             0           0
##     DS                   0                   0             0           0
##     GB                   0                   0             1           0
##     GBA                  0                   0             0           1
##     GC                   0                   0             0           0
##     GEN                  0                   0             0           0
##     GG                   0                   0             0           0
##     N64                  0                   0             1           0
##     NES                  0                   0             0           0
##     NG                   0                   0             0           0
##     PC                   2                   0             0           0
##     PCFX                 0                   0             0           0
##     PS                   0                   0             0           0
##     PS2                  0                   1             0           0
##     PS3                  0                   0             0           0
##     PS4                  0                   0             0           0
##     PSP                  0                   0             0           0
##     PSV                  0                   0             0           0
##     SAT                  0                   0             0           0
##     SCD                  0                   0             0           0
##     SNES                 0                   0             0           2
##     TG16                 0                   0             0           0
##     Wii                  0                   0             0           0
##     WiiU                 0                   0             0           0
##     WS                   0                   0             0           0
##     X360                 0                   0             0           0
##     XB                   1                   0             0           0
##     XOne                 0                   0             0           0
##         Publisher
## Platform Media Works MediaQuest Men-A-Vision Mentor Interactive
##     2600           0          0            1                  0
##     3DO            0          0            0                  0
##     3DS            0          0            0                  0
##     DC             0          0            0                  0
##     DS             0          0            0                  5
##     GB             0          0            0                  0
##     GBA            0          0            0                  0
##     GC             0          0            0                  0
##     GEN            0          0            0                  0
##     GG             0          0            0                  0
##     N64            0          0            0                  0
##     NES            0          0            0                  0
##     NG             0          0            0                  0
##     PC             0          0            0                  0
##     PCFX           0          0            0                  0
##     PS             2          1            0                  0
##     PS2            2          0            0                  0
##     PS3            0          0            0                  0
##     PS4            0          0            0                  0
##     PSP            0          0            0                  0
##     PSV            0          0            0                  0
##     SAT            1          0            0                  0
##     SCD            0          0            0                  0
##     SNES           0          0            0                  0
##     TG16           0          0            0                  0
##     Wii            0          0            0                  0
##     WiiU           0          0            0                  0
##     WS             0          0            0                  0
##     X360           0          0            0                  0
##     XB             0          0            0                  0
##     XOne           0          0            0                  0
##         Publisher
## Platform Mercury Games Merscom LLC Metro 3D Michaelsoft Micro Cabin
##     2600             0           0        0           0           0
##     3DO              0           0        0           0           1
##     3DS              0           0        0           0           0
##     DC               0           0        0           0           0
##     DS               2           0        0           0           0
##     GB               0           0        0           0           0
##     GBA              0           0        0           0           0
##     GC               0           0        0           0           0
##     GEN              0           0        0           0           0
##     GG               0           0        0           0           0
##     N64              0           0        0           0           0
##     NES              0           0        0           0           0
##     NG               0           0        0           0           0
##     PC               0           1        0           0           0
##     PCFX             0           0        0           0           0
##     PS               0           0        0           0           0
##     PS2              0           0        7           1           0
##     PS3              0           0        0           0           0
##     PS4              0           0        0           0           0
##     PSP              2           0        0           0           0
##     PSV              0           0        0           0           0
##     SAT              0           0        0           0           2
##     SCD              0           0        0           0           0
##     SNES             0           0        0           0           0
##     TG16             0           0        0           0           0
##     Wii              0           0        4           0           0
##     WiiU             0           0        0           0           0
##     WS               0           0        0           0           0
##     X360             0           0        0           0           0
##     XB               0           0        1           0           0
##     XOne             0           0        0           0           0
##         Publisher
## Platform Microids Microprose Microsoft Game Studios
##     2600        0          0                      0
##     3DO         0          0                      0
##     3DS         0          0                      0
##     DC          0          0                      0
##     DS          0          0                      0
##     GB          0          0                      0
##     GBA         1          0                      0
##     GC          0          0                      0
##     GEN         0          0                      0
##     GG          0          0                      0
##     N64         0          0                      0
##     NES         0          0                      0
##     NG          0          0                      0
##     PC          3          2                     29
##     PCFX        0          0                      0
##     PS          0          4                      0
##     PS2         1          0                      0
##     PS3         0          0                      0
##     PS4         1          0                      0
##     PSP         0          0                      0
##     PSV         0          0                      0
##     SAT         0          0                      0
##     SCD         0          0                      0
##     SNES        0          0                      0
##     TG16        0          0                      0
##     Wii         0          0                      0
##     WiiU        0          0                      1
##     WS          0          0                      0
##     X360        0          0                     71
##     XB          4          0                     68
##     XOne        0          0                     20
##         Publisher
## Platform Midas Interactive Entertainment Midway Games Milestone
##     2600                               0            0         0
##     3DO                                0            0         0
##     3DS                                0            0         0
##     DC                                 0            0         0
##     DS                                 5            8         0
##     GB                                 0            0         0
##     GBA                                0            7         0
##     GC                                 0           25         0
##     GEN                                0            0         0
##     GG                                 0            0         0
##     N64                                0           20         0
##     NES                                0            0         0
##     NG                                 0            0         0
##     PC                                 0            2         0
##     PCFX                               0            0         0
##     PS                                 6           14         0
##     PS2                               10           50         0
##     PS3                                0            7         0
##     PS4                                0            0         0
##     PSP                                1            7         0
##     PSV                                0            0         0
##     SAT                                0            0         0
##     SCD                                0            0         0
##     SNES                               0            0         0
##     TG16                               0            0         0
##     Wii                                2           10         1
##     WiiU                               0            0         0
##     WS                                 0            0         0
##     X360                               0            9         0
##     XB                                 0           39         0
##     XOne                               0            0         0
##         Publisher
## Platform Milestone S.r.l Milestone S.r.l. Minato Station Mindscape
##     2600               0                0              0         0
##     3DO                0                0              0         0
##     3DS                0                0              0         0
##     DC                 0                0              0         0
##     DS                 0                0              0        11
##     GB                 0                0              0         0
##     GBA                0                0              0         0
##     GC                 0                0              0         0
##     GEN                0                0              0         0
##     GG                 0                0              0         0
##     N64                0                0              0         1
##     NES                0                0              0         0
##     NG                 0                0              0         0
##     PC                 0                2              0         0
##     PCFX               0                0              0         0
##     PS                 0                0              0         7
##     PS2                0                0              1         1
##     PS3                0                3              1         0
##     PS4                1                4              0         0
##     PSP                0                0              0         0
##     PSV                0                1              1         0
##     SAT                0                0              0         0
##     SCD                0                0              0         0
##     SNES               0                0              0         0
##     TG16               0                0              0         0
##     Wii                0                0              0        10
##     WiiU               0                0              0         0
##     WS                 0                0              0         0
##     X360               0                3              0         1
##     XB                 0                0              0         1
##     XOne               1                3              0         0
##         Publisher
## Platform Mirai Shounen Misawa Mitsui mixi, Inc MLB.com Mojang
##     2600             0      0      0         0       0      0
##     3DO              0      0      0         0       0      0
##     3DS              0      0      0         1       0      0
##     DC               0      0      0         0       0      0
##     DS               1      0      0         0       0      0
##     GB               0      0      0         0       0      0
##     GBA              0      0      0         0       0      0
##     GC               0      0      0         0       0      0
##     GEN              0      0      0         0       0      0
##     GG               0      0      0         0       0      0
##     N64              0      0      1         0       0      0
##     NES              0      0      0         0       0      0
##     NG               0      0      0         0       0      0
##     PC               0      0      0         0       0      1
##     PCFX             0      0      0         0       0      0
##     PS               0      0      0         0       0      0
##     PS2              0      0      0         0       0      0
##     PS3              0      0      0         0       0      1
##     PS4              0      0      0         0       0      1
##     PSP              0      0      0         0       0      0
##     PSV              0      0      0         0       0      0
##     SAT              0      0      0         0       0      0
##     SCD              0      0      0         0       0      0
##     SNES             0      2      0         0       0      0
##     TG16             0      0      0         0       0      0
##     Wii              0      0      0         0       0      0
##     WiiU             0      0      0         0       0      0
##     WS               0      0      0         0       0      0
##     X360             0      0      0         0       0      1
##     XB               0      0      0         0       0      0
##     XOne             0      0      0         0       1      1
##         Publisher
## Platform Monte Christo Multimedia Moss MTO MTV Games Mud Duck Productions
##     2600                        0    0   0         0                    0
##     3DO                         0    0   0         0                    0
##     3DS                         0    0   0         0                    0
##     DC                          0    0   0         0                    0
##     DS                          0    0   7         1                    0
##     GB                          0    0   0         0                    0
##     GBA                         0    0   0         0                    0
##     GC                          0    0   0         0                    0
##     GEN                         0    0   0         0                    0
##     GG                          0    0   0         0                    0
##     N64                         0    0   0         0                    0
##     NES                         0    0   0         0                    0
##     NG                          0    0   0         0                    0
##     PC                          1    0   0         0                    0
##     PCFX                        0    0   0         0                    0
##     PS                          0    0   1         0                    0
##     PS2                         0    0   0         7                    1
##     PS3                         0    0   0        10                    0
##     PS4                         0    0   0         0                    0
##     PSP                         0    0   0         1                    0
##     PSV                         0    0   0         0                    0
##     SAT                         0    0   0         0                    0
##     SCD                         0    0   0         0                    0
##     SNES                        0    0   0         0                    0
##     TG16                        0    0   0         0                    0
##     Wii                         0    0   0        12                    0
##     WiiU                        0    0   0         0                    0
##     WS                          0    0   0         0                    0
##     X360                        0    2   0        10                    0
##     XB                          0    0   0         0                    2
##     XOne                        0    0   0         0                    0
##         Publisher
## Platform Mumbo Jumbo Mycom Myelin Media Mystique N/A Namco Bandai Games
##     2600           0     0            0        1   0                  0
##     3DO            0     0            0        0   0                  0
##     3DS            0     0            0        0   2                 87
##     DC             0     0            0        0   0                  2
##     DS             2     1            0        0   7                135
##     GB             0     0            0        0   0                  3
##     GBA            0     0            0        0  26                 16
##     GC             0     0            0        0   0                 22
##     GEN            0     0            0        0   0                  0
##     GG             0     0            0        0   0                  0
##     N64            0     0            0        0   0                  6
##     NES            0     0            0        0   0                 14
##     NG             0     0            0        0   0                  0
##     PC             1     0            0        0   6                 12
##     PCFX           0     0            0        0   0                  0
##     PS             0     0            0        0   3                 48
##     PS2            0     0            1        0   2                107
##     PS3            0     0            0        0   3                116
##     PS4            0     0            0        0   0                 30
##     PSP            2     0            1        0   2                121
##     PSV            0     0            0        0   2                 45
##     SAT            0     0            0        0   0                  8
##     SCD            0     0            0        0   0                  0
##     SNES           0     0            0        0   0                 26
##     TG16           0     0            0        0   0                  0
##     Wii            1     0            0        0   1                 56
##     WiiU           0     0            0        0   0                 13
##     WS             0     0            0        0   0                  4
##     X360           0     0            0        0   4                 44
##     XB             0     0            1        0   0                 10
##     XOne           0     0            0        0   0                  7
##         Publisher
## Platform Natsume Navarre Corp Naxat Soft NCS NCSoft NDA Productions NEC
##     2600       0            0          0   0      0               0   0
##     3DO        0            0          0   0      0               0   0
##     3DS        1            0          0   0      0               0   0
##     DC         0            0          0   0      0               0   0
##     DS         5            0          0   0      0               0   0
##     GB         0            0          0   0      0               0   0
##     GBA        2            0          0   0      0               0   0
##     GC         0            0          0   0      0               1   0
##     GEN        0            0          0   0      0               0   0
##     GG         0            0          0   0      0               0   0
##     N64        1            0          0   0      0               0   0
##     NES        0            0          0   0      0               0   0
##     NG         0            0          0   0      0               0   0
##     PC         0            0          0   0      6               0   0
##     PCFX       0            0          0   0      0               0   1
##     PS         2            0          0   0      0               0   0
##     PS2        4            0          1   0      0               0   0
##     PS3        0            0          0   0      0               0   0
##     PS4        0            0          0   0      0               0   0
##     PSP        1            0          0   0      0               0   0
##     PSV        0            0          0   0      0               0   0
##     SAT        0            0          0   3      0               0   1
##     SCD        0            0          0   0      0               0   0
##     SNES       0            0          0   0      0               0   0
##     TG16       0            0          0   0      0               0   1
##     Wii        1            0          0   0      0               0   0
##     WiiU       0            0          0   0      0               0   0
##     WS         0            0          0   0      0               0   0
##     X360       0            1          0   0      0               0   0
##     XB         0            0          0   0      0               0   0
##     XOne       0            0          0   0      0               0   0
##         Publisher
## Platform NEC Interchannel Neko Entertainment NetRevo New
##     2600                0                  0       0   0
##     3DO                 0                  0       0   0
##     3DS                 0                  0       0   0
##     DC                  3                  0       0   0
##     DS                  0                  3       0   0
##     GB                  0                  0       0   0
##     GBA                 0                  0       0   0
##     GC                  0                  0       0   0
##     GEN                 0                  0       0   0
##     GG                  0                  0       0   0
##     N64                 0                  0       0   0
##     NES                 0                  0       0   0
##     NG                  0                  0       0   0
##     PC                  0                  0       0   0
##     PCFX                0                  0       0   0
##     PS                  0                  0       0   1
##     PS2                 0                  0       0   0
##     PS3                 0                  0       0   0
##     PS4                 0                  0       0   0
##     PSP                 0                  0       2   0
##     PSV                 0                  0       0   0
##     SAT                 5                  0       0   0
##     SCD                 0                  0       0   0
##     SNES                0                  0       0   0
##     TG16                0                  0       0   0
##     Wii                 0                  4       0   0
##     WiiU                0                  0       0   0
##     WS                  0                  0       0   0
##     X360                0                  0       0   0
##     XB                  0                  0       0   0
##     XOne                0                  0       0   0
##         Publisher
## Platform New World Computing NewKidCo Nexon Nichibutsu
##     2600                   0        0     0          0
##     3DO                    0        0     0          0
##     3DS                    0        0     0          0
##     DC                     0        0     0          0
##     DS                     0        0     1          0
##     GB                     0        0     0          0
##     GBA                    0        4     0          0
##     GC                     0        1     0          0
##     GEN                    0        0     0          0
##     GG                     0        0     0          0
##     N64                    0        2     0          0
##     NES                    0        0     0          0
##     NG                     0        0     0          0
##     PC                     1        0     0          0
##     PCFX                   0        0     0          0
##     PS                     0        2     0          0
##     PS2                    0        0     0          0
##     PS3                    0        0     0          0
##     PS4                    0        0     0          0
##     PSP                    0        0     0          0
##     PSV                    0        0     0          0
##     SAT                    0        0     0          0
##     SCD                    0        0     0          0
##     SNES                   0        0     0          1
##     TG16                   0        0     0          0
##     Wii                    0        0     0          0
##     WiiU                   0        0     0          0
##     WS                     0        0     0          0
##     X360                   0        0     0          0
##     XB                     0        0     0          0
##     XOne                   0        0     0          0
##         Publisher
## Platform Nihon Falcom Corporation Nintendo Nippon Amuse Nippon Columbia
##     2600                        0        0            0               0
##     3DO                         0        0            0               0
##     3DS                         0       82            0               7
##     DC                          0        0            0               0
##     DS                          0      151            0               0
##     GB                          0       61            0               0
##     GBA                         0       91            0               0
##     GC                          0       53            0               0
##     GEN                         0        0            0               0
##     GG                          0        0            0               0
##     N64                         0       60            0               0
##     NES                         0       45            0               0
##     NG                          0        0            0               0
##     PC                          0        0            0               0
##     PCFX                        0        0            0               0
##     PS                          0        0            0               0
##     PS2                         0        0            1               0
##     PS3                         0        0            0               0
##     PS4                         1        0            0               0
##     PSP                         1        0            0               0
##     PSV                         5        0            0               0
##     SAT                         0        0            0               0
##     SCD                         0        0            0               0
##     SNES                        0       36            0               0
##     TG16                        0        0            0               0
##     Wii                         0       84            0               0
##     WiiU                        0       40            0               0
##     WS                          0        0            0               0
##     X360                        0        0            0               0
##     XB                          0        0            0               0
##     XOne                        0        0            0               0
##         Publisher
## Platform Nippon Ichi Software Nippon Telenet Nitroplus Nobilis Nordcurrent
##     2600                    0              0         0       0           0
##     3DO                     0              0         0       0           0
##     3DS                     5              0         0       0           0
##     DC                      0              0         0       0           0
##     DS                      2              0         0      10           2
##     GB                      0              0         0       0           0
##     GBA                     0              0         0       0           0
##     GC                      0              0         0       0           0
##     GEN                     0              0         0       0           0
##     GG                      0              0         0       0           0
##     N64                     0              0         0       0           0
##     NES                     0              0         0       0           0
##     NG                      0              0         0       0           0
##     PC                      0              0         0       1           0
##     PCFX                    0              0         0       0           0
##     PS                      1              0         0       0           0
##     PS2                     5              0         0       0           0
##     PS3                    33              0         1       0           0
##     PS4                     9              0         0       0           0
##     PSP                    17              0         0       0           0
##     PSV                    31              0         1       0           0
##     SAT                     0              0         0       0           0
##     SCD                     0              0         0       0           0
##     SNES                    0              2         0       0           0
##     TG16                    0              0         0       0           0
##     Wii                     1              0         0       2           3
##     WiiU                    1              0         0       0           0
##     WS                      0              0         0       0           0
##     X360                    0              0         0       0           0
##     XB                      0              0         0       0           0
##     XOne                    0              0         0       0           0
##         Publisher
## Platform Nordic Games NovaLogic Number None O-Games O3 Entertainment Ocean
##     2600            0         0           0       0                0     0
##     3DO             0         0           0       0                0     0
##     3DS             0         0           0       0                0     0
##     DC              0         0           0       0                0     0
##     DS              1         0           0       6                2     0
##     GB              0         0           0       0                0     0
##     GBA             0         0           0       0                0     0
##     GC              0         0           0       0                1     0
##     GEN             0         0           0       0                0     0
##     GG              0         0           0       0                0     0
##     N64             0         0           0       0                0     5
##     NES             0         0           0       0                0     1
##     NG              0         0           0       0                0     0
##     PC              4         1           1       0                0     0
##     PCFX            0         0           0       0                0     0
##     PS              0         0           0       0                0     7
##     PS2             0         1           0       0                0     0
##     PS3             2         0           0       3                0     0
##     PS4             6         0           0       0                0     0
##     PSP             0         0           0       0                0     0
##     PSV             0         0           0       0                0     0
##     SAT             0         0           0       0                0     0
##     SCD             0         0           0       0                0     0
##     SNES            0         0           0       0                0     1
##     TG16            0         0           0       0                0     0
##     Wii            15         0           0       6                0     0
##     WiiU            3         0           0       0                0     0
##     WS              0         0           0       0                0     0
##     X360            2         0           0       2                0     0
##     XB              0         1           0       0                0     0
##     XOne            2         0           0       0                0     0
##         Publisher
## Platform Office Create On Demand Ongakukan Origin Systems Otomate
##     2600             0         0         0              0       0
##     3DO              0         0         0              0       0
##     3DS              2         0         0              0       0
##     DC               0         0         0              0       0
##     DS               0         0         0              0       0
##     GB               0         0         0              0       0
##     GBA              0         0         0              0       0
##     GC               0         0         0              0       0
##     GEN              0         0         0              0       0
##     GG               0         0         0              0       0
##     N64              0         0         0              0       0
##     NES              0         0         0              0       0
##     NG               0         0         0              0       0
##     PC               0         0         0              0       0
##     PCFX             0         0         0              0       0
##     PS               0         1         0              1       0
##     PS2              0         0         0              0       0
##     PS3              0         0         1              0       0
##     PS4              0         0         0              0       0
##     PSP              0         0         0              0       1
##     PSV              0         0         0              0       0
##     SAT              0         0         0              0       0
##     SCD              0         0         0              0       0
##     SNES             0         0         0              0       0
##     TG16             0         0         0              0       0
##     Wii              0         0         0              0       0
##     WiiU             0         0         0              0       0
##     WS               0         0         0              0       0
##     X360             0         0         0              0       0
##     XB               0         0         0              0       0
##     XOne             0         0         0              0       0
##         Publisher
## Platform Oxygen Interactive P2 Games Pacific Century Cyber Works
##     2600                  0        0                           0
##     3DO                   0        0                           0
##     3DS                   0        0                           0
##     DC                    0        0                           0
##     DS                    9        2                           0
##     GB                    0        0                           0
##     GBA                   0        0                           0
##     GC                    0        0                           0
##     GEN                   0        0                           0
##     GG                    0        0                           0
##     N64                   0        0                           0
##     NES                   0        0                           0
##     NG                    0        0                           0
##     PC                    0        0                           0
##     PCFX                  0        0                           0
##     PS                    0        0                           0
##     PS2                   2        0                           1
##     PS3                   0        0                           0
##     PS4                   0        0                           0
##     PSP                   4        0                           0
##     PSV                   0        0                           0
##     SAT                   0        0                           0
##     SCD                   0        0                           0
##     SNES                  0        0                           0
##     TG16                  0        0                           0
##     Wii                   6        1                           0
##     WiiU                  0        0                           0
##     WS                    0        0                           0
##     X360                  1        0                           0
##     XB                    0        0                           0
##     XOne                  0        0                           0
##         Publisher
## Platform Pack-In-Video Pack In Soft Palcom Panther Software Paon
##     2600             0            0      0                0    0
##     3DO              0            0      0                0    0
##     3DS              0            0      0                0    0
##     DC               0            0      0                0    0
##     DS               0            0      0                0    1
##     GB               0            0      0                0    0
##     GBA              0            0      0                0    0
##     GC               0            0      0                0    0
##     GEN              0            0      0                0    0
##     GG               0            0      0                0    0
##     N64              0            1      0                0    0
##     NES              0            0      1                0    0
##     NG               0            0      0                0    0
##     PC               0            0      0                0    0
##     PCFX             0            0      0                0    0
##     PS               0            0      0                1    0
##     PS2              0            0      0                0    3
##     PS3              0            0      0                0    0
##     PS4              0            0      0                0    0
##     PSP              0            0      0                0    2
##     PSV              0            0      0                0    0
##     SAT              0            0      0                0    0
##     SCD              0            0      0                0    0
##     SNES             2            0      0                0    0
##     TG16             0            0      0                0    0
##     Wii              0            0      0                0    0
##     WiiU             0            0      0                0    0
##     WS               0            0      0                0    0
##     X360             0            0      0                0    0
##     XB               0            0      0                0    0
##     XOne             0            0      0                0    0
##         Publisher
## Platform Paon Corporation Paradox Development Paradox Interactive
##     2600                0                   0                   0
##     3DO                 0                   0                   0
##     3DS                 0                   0                   0
##     DC                  0                   0                   0
##     DS                  0                   0                   0
##     GB                  0                   0                   0
##     GBA                 0                   0                   0
##     GC                  0                   0                   0
##     GEN                 0                   0                   0
##     GG                  0                   0                   0
##     N64                 0                   0                   0
##     NES                 0                   0                   0
##     NG                  0                   0                   0
##     PC                  0                   1                  23
##     PCFX                0                   0                   0
##     PS                  0                   0                   0
##     PS2                 0                   0                   0
##     PS3                 1                   0                   0
##     PS4                 0                   0                   0
##     PSP                 0                   0                   0
##     PSV                 0                   0                   0
##     SAT                 0                   0                   0
##     SCD                 0                   0                   0
##     SNES                0                   0                   0
##     TG16                0                   0                   0
##     Wii                 0                   0                   0
##     WiiU                0                   0                   0
##     WS                  0                   0                   0
##     X360                0                   0                   0
##     XB                  0                   0                   0
##     XOne                0                   0                   0
##         Publisher
## Platform Parker Bros. Performance Designed Products Phantagram Phantom EFX
##     2600            7                             0          0           0
##     3DO             0                             0          0           0
##     3DS             0                             0          0           0
##     DC              0                             0          0           0
##     DS              0                             1          0           0
##     GB              0                             0          0           0
##     GBA             0                             0          0           0
##     GC              0                             0          0           0
##     GEN             0                             0          0           0
##     GG              0                             0          0           0
##     N64             0                             0          0           0
##     NES             0                             0          0           0
##     NG              0                             0          0           0
##     PC              0                             0          0           0
##     PCFX            0                             0          0           0
##     PS              0                             0          0           0
##     PS2             0                             0          0           0
##     PS3             0                             0          0           0
##     PS4             0                             0          0           0
##     PSP             0                             0          0           0
##     PSV             0                             0          0           0
##     SAT             0                             0          0           0
##     SCD             0                             0          0           0
##     SNES            0                             0          0           0
##     TG16            0                             0          0           0
##     Wii             0                             1          0           0
##     WiiU            0                             0          0           0
##     WS              0                             0          0           0
##     X360            0                             0          0           1
##     XB              0                             0          1           0
##     XOne            0                             0          0           0
##         Publisher
## Platform Phenomedia Phoenix Games Piacci Pinnacle Pioneer LDC Play It
##     2600          0             0      0        0           0       0
##     3DO           0             0      0        0           0       0
##     3DS           0             0      0        0           0       0
##     DC            0             0      0        0           0       0
##     DS            4             1      0        3           0       0
##     GB            0             0      0        0           0       0
##     GBA           0             0      0        0           0       1
##     GC            0             0      0        0           0       0
##     GEN           0             0      0        0           0       0
##     GG            0             0      0        0           0       0
##     N64           0             0      0        0           0       0
##     NES           0             0      0        0           0       0
##     NG            0             0      0        0           0       0
##     PC            0             0      0        1           0       0
##     PCFX          0             0      0        0           0       0
##     PS            0             0      0        0           4       0
##     PS2           0             0      0        0           0      12
##     PS3           0             0      0        0           0       0
##     PS4           0             0      0        0           0       0
##     PSP           0             0      1        0           0       1
##     PSV           0             0      0        0           0       0
##     SAT           0             0      0        0           0       0
##     SCD           0             0      0        0           0       0
##     SNES          0             0      0        0           0       0
##     TG16          0             0      0        0           0       0
##     Wii           0             0      0        1           0       0
##     WiiU          0             0      0        0           0       0
##     WS            0             0      0        0           0       0
##     X360          0             0      0        0           0       0
##     XB            0             0      0        0           0       0
##     XOne          0             0      0        0           0       0
##         Publisher
## Platform Playlogic Game Factory Playmates Playmore PlayV Plenty PM Studios
##     2600                      0         0        0     0      0          0
##     3DO                       0         0        0     0      0          0
##     3DS                       0         0        0     0      0          0
##     DC                        0         0        0     0      0          0
##     DS                        3         0        0     4      1          0
##     GB                        0         0        0     0      0          0
##     GBA                       0         0        0     0      0          0
##     GC                        0         0        0     0      0          0
##     GEN                       0         0        0     0      0          0
##     GG                        0         0        0     0      0          0
##     N64                       0         0        0     0      0          0
##     NES                       0         0        0     0      0          0
##     NG                        0         0        0     0      0          0
##     PC                        1         0        0     0      0          0
##     PCFX                      0         0        0     0      0          0
##     PS                        0         1        0     0      0          0
##     PS2                       1         0        1     0      0          0
##     PS3                       1         0        0     0      0          0
##     PS4                       0         0        0     0      0          0
##     PSP                       1         0        0     0      0          1
##     PSV                       0         0        0     0      0          0
##     SAT                       0         0        0     0      0          0
##     SCD                       0         0        0     0      0          0
##     SNES                      0         0        0     0      0          0
##     TG16                      0         0        0     0      0          0
##     Wii                       5         0        0     0      0          0
##     WiiU                      0         0        0     0      0          0
##     WS                        0         0        0     0      0          0
##     X360                      2         0        0     0      0          0
##     XB                        0         0        0     0      0          0
##     XOne                      0         0        0     0      0          0
##         Publisher
## Platform Pony Canyon PopCap Games Popcorn Arcade PopTop Software Pow PQube
##     2600           0            0              0               0   0     0
##     3DO            0            0              0               0   0     0
##     3DS            0            0              0               0   0     1
##     DC             0            0              0               0   0     0
##     DS             0            4              0               0   0     3
##     GB             0            0              0               0   0     0
##     GBA            0            0              0               0   0     0
##     GC             0            0              0               0   0     0
##     GEN            0            0              0               0   0     0
##     GG             0            0              0               0   0     0
##     N64            0            0              0               0   0     0
##     NES            0            0              0               0   0     0
##     NG             0            0              0               0   0     0
##     PC             0            6              0               0   0     1
##     PCFX           0            0              0               0   0     0
##     PS             1            0              0               1   0     0
##     PS2            0            0              0               0   0     1
##     PS3            0            1              0               0   0    10
##     PS4            0            0              0               0   0     4
##     PSP            0            0              0               0   0     4
##     PSV            0            0              0               0   0     7
##     SAT            0            0              0               0   0     0
##     SCD            0            0              0               0   0     0
##     SNES           0            0              0               0   1     0
##     TG16           0            0              0               0   0     0
##     Wii            0            0             10               0   0     4
##     WiiU           0            0              0               0   0     0
##     WS             0            0              0               0   0     0
##     X360           0            4              0               0   0     3
##     XB             0            0              0               0   0     0
##     XOne           0            0              0               0   0     1
##         Publisher
## Platform Princess Soft Prototype Psygnosis Quelle Quest Quinrose Quintet
##     2600             0         0         0      1     0        0       0
##     3DO              0         0         0      0     0        0       0
##     3DS              0         0         0      0     0        0       0
##     DC               0         0         0      0     0        0       0
##     DS               0         0         0      0     0        0       0
##     GB               0         0         0      0     0        0       0
##     GBA              0         0         0      0     0        0       0
##     GC               0         0         0      0     0        0       0
##     GEN              0         0         0      0     0        0       0
##     GG               0         0         0      0     0        0       0
##     N64              0         0         0      0     0        0       0
##     NES              0         0         0      0     0        0       0
##     NG               0         0         0      0     0        0       0
##     PC               0         0         0      0     0        0       0
##     PCFX             0         0         0      0     0        0       0
##     PS               0         0        32      0     0        0       0
##     PS2              3         7         0      0     0        0       0
##     PS3              0         1         0      0     0        0       0
##     PS4              0         0         0      0     0        0       0
##     PSP              0        11         0      0     0       14       0
##     PSV              0         6         0      0     0        0       0
##     SAT              0         0         0      0     0        0       1
##     SCD              0         0         0      0     0        0       0
##     SNES             0         0         0      0     1        0       0
##     TG16             0         0         0      0     0        0       0
##     Wii              0         0         0      0     0        0       0
##     WiiU             0         0         0      0     0        0       0
##     WS               0         0         0      0     0        0       0
##     X360             0         2         0      0     0        0       0
##     XB               0         0         0      0     0        0       0
##     XOne             0         0         0      0     0        0       0
##         Publisher
## Platform Rage Software Rain Games Rebellion Rebellion Developments
##     2600             0          0         0                      0
##     3DO              0          0         0                      0
##     3DS              0          0         0                      0
##     DC               0          0         0                      0
##     DS               0          0         0                      0
##     GB               0          0         0                      0
##     GBA              1          0         2                      0
##     GC               1          0         0                      0
##     GEN              0          0         0                      0
##     GG               0          0         0                      0
##     N64              0          0         0                      0
##     NES              0          0         0                      0
##     NG               0          0         0                      0
##     PC               0          0         0                      0
##     PCFX             0          0         0                      0
##     PS               0          0         0                      0
##     PS2              2          0         0                      0
##     PS3              0          0         0                      0
##     PS4              0          0         0                      1
##     PSP              0          0         0                      0
##     PSV              0          1         0                      0
##     SAT              0          0         0                      0
##     SCD              0          0         0                      0
##     SNES             0          0         0                      0
##     TG16             0          0         0                      0
##     Wii              0          0         0                      0
##     WiiU             0          0         0                      0
##     WS               0          0         0                      0
##     X360             0          0         0                      0
##     XB               3          0         0                      0
##     XOne             0          0         0                      1
##         Publisher
## Platform RED Entertainment Red Orb Red Storm Entertainment RedOctane
##     2600                 0       0                       0         0
##     3DO                  0       0                       0         0
##     3DS                  0       0                       0         0
##     DC                   0       0                       0         0
##     DS                   0       0                       0         0
##     GB                   0       0                       0         0
##     GBA                  0       0                       0         0
##     GC                   0       0                       0         0
##     GEN                  0       0                       0         0
##     GG                   0       0                       0         0
##     N64                  0       0                       1         0
##     NES                  0       0                       0         0
##     NG                   0       0                       0         0
##     PC                   0       2                       0         0
##     PCFX                 0       0                       0         0
##     PS                   0       0                       2         0
##     PS2                  1       0                       0         4
##     PS3                  0       0                       0         0
##     PS4                  0       0                       0         0
##     PSP                  0       0                       0         0
##     PSV                  0       0                       0         0
##     SAT                  0       0                       0         0
##     SCD                  0       0                       0         0
##     SNES                 0       0                       0         0
##     TG16                 0       0                       0         0
##     Wii                  0       0                       0         0
##     WiiU                 0       0                       0         0
##     WS                   0       0                       0         0
##     X360                 0       0                       0         0
##     XB                   0       0                       0         0
##     XOne                 0       0                       0         0
##         Publisher
## Platform Reef Entertainment responDESIGN Revolution (Japan)
##     2600                  0            0                  0
##     3DO                   0            0                  0
##     3DS                   0            0                  0
##     DC                    0            0                  0
##     DS                    1            0                  0
##     GB                    0            0                  0
##     GBA                   0            0                  0
##     GC                    0            0                  0
##     GEN                   0            0                  0
##     GG                    0            0                  0
##     N64                   0            0                  0
##     NES                   0            0                  0
##     NG                    0            0                  0
##     PC                    1            0                  0
##     PCFX                  0            0                  0
##     PS                    0            0                  0
##     PS2                   0            1                  1
##     PS3                   1            0                  0
##     PS4                   0            0                  0
##     PSP                   0            0                  0
##     PSV                   0            0                  0
##     SAT                   0            0                  0
##     SCD                   0            0                  0
##     SNES                  0            0                  0
##     TG16                  0            0                  0
##     Wii                   4            0                  0
##     WiiU                  0            0                  0
##     WS                    0            0                  0
##     X360                  0            0                  0
##     XB                    0            1                  0
##     XOne                  0            0                  0
##         Publisher
## Platform Revolution Software Rising Star Games Riverhillsoft
##     2600                   0                 0             0
##     3DO                    0                 0             0
##     3DS                    0                 4             0
##     DC                     0                 0             0
##     DS                     0                40             0
##     GB                     0                 0             0
##     GBA                    0                 0             0
##     GC                     0                 0             0
##     GEN                    0                 0             0
##     GG                     0                 0             0
##     N64                    0                 0             0
##     NES                    0                 0             0
##     NG                     0                 0             0
##     PC                     0                 1             0
##     PCFX                   0                 0             0
##     PS                     0                 0             1
##     PS2                    0                 3             0
##     PS3                    0                 2             0
##     PS4                    1                 1             0
##     PSP                    0                12             0
##     PSV                    0                 1             0
##     SAT                    0                 0             0
##     SCD                    0                 0             0
##     SNES                   0                 0             0
##     TG16                   0                 0             0
##     Wii                    0                17             0
##     WiiU                   0                 0             0
##     WS                     0                 0             0
##     X360                   0                 5             0
##     XB                     0                 0             0
##     XOne                   1                 0             0
##         Publisher
## Platform Rocket Company Rondomedia RTL Russel Sammy Corporation Saurus
##     2600              0          0   0      0                 0      0
##     3DO               0          0   0      0                 0      0
##     3DS               7          0   0      0                 0      0
##     DC                0          0   0      0                 0      0
##     DS                9          5   3      1                 0      0
##     GB                0          0   0      0                 0      0
##     GBA               0          0   0      0                 1      0
##     GC                0          0   0      0                 0      0
##     GEN               0          0   0      0                 0      0
##     GG                0          0   0      0                 0      0
##     N64               0          0   0      0                 0      0
##     NES               0          0   0      0                 0      0
##     NG                0          0   0      0                 0      0
##     PC                0          7   0      1                 0      0
##     PCFX              0          0   0      0                 0      0
##     PS                0          0   0      0                 0      1
##     PS2               0          0   0      2                 9      0
##     PS3               0          0   0      0                 0      0
##     PS4               0          0   0      0                 0      0
##     PSP               0          0   0      2                 0      0
##     PSV               0          0   0      0                 0      0
##     SAT               0          0   0      0                 0      0
##     SCD               0          0   0      0                 0      0
##     SNES              0          0   0      0                 1      0
##     TG16              0          0   0      0                 0      0
##     Wii               1          2   3      0                 0      0
##     WiiU              0          0   0      0                 0      0
##     WS                0          0   0      0                 0      0
##     X360              0          0   2      0                 0      0
##     XB                0          0   0      0                 0      0
##     XOne              0          0   0      0                 0      0
##         Publisher
## Platform Scholastic Inc. SCi Screenlife SCS Software Sears Sega
##     2600               0   0          0            0     1    1
##     3DO                0   0          0            0     0    0
##     3DS                0   0          3            0     0   21
##     DC                 0   0          0            0     0   30
##     DS                 7   0          0            0     0   64
##     GB                 0   0          0            0     0    0
##     GBA                0   0          0            0     0   10
##     GC                 0   3          0            0     0   25
##     GEN                0   0          0            0     0   18
##     GG                 0   0          0            0     0    1
##     N64                0   0          0            0     0    0
##     NES                0   0          0            0     0    0
##     NG                 0   0          0            0     0    0
##     PC                 0   1          0            1     0   33
##     PCFX               0   0          0            0     0    0
##     PS                 0   0          0            0     0    0
##     PS2                1   5          0            0     0   83
##     PS3                0   0          0            0     0   61
##     PS4                0   0          0            0     0    8
##     PSP                0   0          0            0     0   51
##     PSV                0   0          3            0     0   16
##     SAT                0   0          0            0     0   77
##     SCD                0   0          0            0     0    6
##     SNES               0   0          0            0     0    0
##     TG16               0   0          0            0     0    0
##     Wii                2   0          0            0     0   44
##     WiiU               0   0          0            0     0    4
##     WS                 0   0          0            0     0    0
##     X360               0   0          0            0     0   47
##     XB                 0   8          0            0     0   38
##     XOne               0   0          0            0     0    1
##         Publisher
## Platform Seta Corporation Seventh Chord Shogakukan
##     2600                0             0          0
##     3DO                 0             0          0
##     3DS                 0             1          1
##     DC                  0             0          0
##     DS                  0             0          2
##     GB                  0             0          0
##     GBA                 0             0          0
##     GC                  0             0          0
##     GEN                 0             0          0
##     GG                  0             0          0
##     N64                 1             0          0
##     NES                 0             0          0
##     NG                  0             0          0
##     PC                  0             0          0
##     PCFX                0             0          0
##     PS                  3             0          0
##     PS2                 0             0          0
##     PS3                 0             0          0
##     PS4                 0             0          0
##     PSP                 0             0          0
##     PSV                 0             0          0
##     SAT                 2             0          2
##     SCD                 0             0          0
##     SNES                0             0          0
##     TG16                0             0          0
##     Wii                 0             0          0
##     WiiU                0             0          0
##     WS                  0             0          0
##     X360                0             0          0
##     XB                  0             0          0
##     XOne                0             0          0
##         Publisher
## Platform Simon & Schuster Interactive Slightly Mad Studios
##     2600                            0                    0
##     3DO                             0                    0
##     3DS                             0                    0
##     DC                              0                    0
##     DS                              0                    0
##     GB                              0                    0
##     GBA                             0                    0
##     GC                              0                    0
##     GEN                             0                    0
##     GG                              0                    0
##     N64                             0                    0
##     NES                             0                    0
##     NG                              0                    0
##     PC                              0                    1
##     PCFX                            0                    0
##     PS                              0                    0
##     PS2                             0                    0
##     PS3                             0                    0
##     PS4                             0                    1
##     PSP                             0                    0
##     PSV                             0                    0
##     SAT                             0                    0
##     SCD                             0                    0
##     SNES                            0                    0
##     TG16                            0                    0
##     Wii                             0                    0
##     WiiU                            0                    0
##     WS                              0                    0
##     X360                            0                    0
##     XB                              1                    0
##     XOne                            0                    1
##         Publisher
## Platform Slitherine Software SNK SNK Playmore Societa Sold Out Sonnet
##     2600                   0   0            0       0        0      0
##     3DO                    0   0            0       0        0      0
##     3DS                    0   0            0       0        0      0
##     DC                     0   2            0       0        0      0
##     DS                     1   0            4       0        0      0
##     GB                     0   0            0       0        0      0
##     GBA                    0   0            0       0        0      0
##     GC                     0   0            0       0        0      0
##     GEN                    0   0            0       0        0      0
##     GG                     0   0            0       0        0      0
##     N64                    0   0            0       0        0      0
##     NES                    0   0            0       0        0      0
##     NG                     0  10            0       0        0      0
##     PC                     0   0            0       0        0      0
##     PCFX                   0   0            0       0        0      0
##     PS                     0   5            3       0        0      0
##     PS2                    0   1            6       0        0      0
##     PS3                    1   0            0       0        0      0
##     PS4                    0   0            0       0        1      0
##     PSP                    1   0            1       0        0      0
##     PSV                    0   0            0       0        0      0
##     SAT                    0   4            1       1        0      2
##     SCD                    0   0            0       0        0      0
##     SNES                   0   0            0       0        0      0
##     TG16                   0   0            0       0        0      0
##     Wii                    0   0            0       0        0      0
##     WiiU                   0   0            0       0        0      0
##     WS                     0   0            0       0        0      0
##     X360                   1   0            0       0        0      0
##     XB                     0   0            3       0        0      0
##     XOne                   0   0            0       0        0      0
##         Publisher
## Platform Sony Computer Entertainment Sony Computer Entertainment America
##     2600                           0                                   0
##     3DO                            0                                   0
##     3DS                            0                                   0
##     DC                             0                                   0
##     DS                             0                                   0
##     GB                             0                                   0
##     GBA                            0                                   0
##     GC                             0                                   0
##     GEN                            0                                   0
##     GG                             0                                   0
##     N64                            0                                   0
##     NES                            0                                   0
##     NG                             0                                   0
##     PC                             0                                   0
##     PCFX                           0                                   0
##     PS                           188                                   0
##     PS2                          204                                   0
##     PS3                          129                                   1
##     PS4                           17                                   1
##     PSP                          117                                   0
##     PSV                           28                                   1
##     SAT                            0                                   0
##     SCD                            0                                   0
##     SNES                           0                                   0
##     TG16                           0                                   0
##     Wii                            0                                   0
##     WiiU                           0                                   0
##     WS                             0                                   0
##     X360                           0                                   0
##     XB                             0                                   0
##     XOne                           0                                   0
##         Publisher
## Platform Sony Computer Entertainment Europe Sony Music Entertainment
##     2600                                  0                        0
##     3DO                                   0                        0
##     3DS                                   0                        0
##     DC                                    0                        0
##     DS                                    0                        0
##     GB                                    0                        0
##     GBA                                   0                        0
##     GC                                    0                        0
##     GEN                                   0                        0
##     GG                                    0                        0
##     N64                                   0                        0
##     NES                                   0                        0
##     NG                                    0                        0
##     PC                                    0                        0
##     PCFX                                  0                        0
##     PS                                    0                        0
##     PS2                                   2                        1
##     PS3                                   5                        0
##     PS4                                   4                        0
##     PSP                                   0                        0
##     PSV                                   4                        0
##     SAT                                   0                        0
##     SCD                                   0                        0
##     SNES                                  0                        0
##     TG16                                  0                        0
##     Wii                                   0                        0
##     WiiU                                  0                        0
##     WS                                    0                        0
##     X360                                  0                        0
##     XB                                    0                        0
##     XOne                                  0                        0
##         Publisher
## Platform Sony Online Entertainment SouthPeak Games Spike SPS Square
##     2600                         0               0     0   0      0
##     3DO                          0               0     0   0      0
##     3DS                          0               0     0   0      0
##     DC                           0               0     0   0      0
##     DS                           0              13     8   0      0
##     GB                           0               0     0   0      0
##     GBA                          0               0     1   0      0
##     GC                           0               0     0   0      0
##     GEN                          0               0     0   0      0
##     GG                           0               0     0   0      0
##     N64                          0               0     0   0      0
##     NES                          0               0     0   0      1
##     NG                           0               0     0   0      0
##     PC                           2               1     0   0      0
##     PCFX                         0               0     0   0      0
##     PS                           0               1     0   1      4
##     PS2                          4               3     7   0      0
##     PS3                          1               3     4   0      0
##     PS4                          0               0     0   0      0
##     PSP                          1               2    14   0      0
##     PSV                          0               0     0   0      0
##     SAT                          0               0     0   0      0
##     SCD                          0               0     0   0      0
##     SNES                         0               0     0   0      1
##     TG16                         0               0     0   0      0
##     Wii                          0               9     0   0      0
##     WiiU                         0               0     0   0      0
##     WS                           0               0     0   0      0
##     X360                         0               5     3   0      0
##     XB                           0               0     0   0      0
##     XOne                         0               0     0   0      0
##         Publisher
## Platform Square EA Square Enix SquareSoft SSI Stainless Games Starfish
##     2600         0           0          0   0               0        0
##     3DO          0           0          0   0               0        0
##     3DS          0          14          0   0               0        0
##     DC           0           0          0   0               0        0
##     DS           0          45          0   0               0        2
##     GB           0           0          3   0               0        0
##     GBA          0           2          1   0               0        1
##     GC           0           0          0   0               0        0
##     GEN          0           0          0   0               0        0
##     GG           0           0          0   0               0        0
##     N64          0           0          0   0               0        0
##     NES          0           0          3   0               0        0
##     NG           0           0          0   0               0        0
##     PC           0          21          0   0               0        0
##     PCFX         0           0          0   0               0        0
##     PS           1           0         25   1               0        2
##     PS2          0          26          4   0               0        0
##     PS3          0          29          0   0               0        0
##     PS4          0          19          0   0               0        0
##     PSP          0          20          0   0               0        4
##     PSV          0           8          0   0               0        0
##     SAT          0           0          0   0               0        0
##     SCD          0           0          0   0               0        0
##     SNES         0           0         14   0               0        0
##     TG16         0           0          0   0               0        0
##     Wii          0           9          0   0               0        1
##     WiiU         0           3          0   0               0        0
##     WS           0           0          2   0               0        0
##     X360         0          26          0   0               0        0
##     XB           0           0          0   0               0        0
##     XOne         0          11          0   0               1        0
##         Publisher
## Platform Starpath Corp. Sting Storm City Games Strategy First Success
##     2600              1     0                0              0       0
##     3DO               0     0                0              0       0
##     3DS               0     0                0              0       2
##     DC                0     0                0              0       0
##     DS                0     3               13              0       8
##     GB                0     0                0              0       0
##     GBA               0     2                0              0       0
##     GC                0     0                0              0       0
##     GEN               0     0                0              0       0
##     GG                0     0                0              0       0
##     N64               0     0                0              0       0
##     NES               0     0                0              0       0
##     NG                0     0                0              0       0
##     PC                0     0                0              1       0
##     PCFX              0     0                0              0       0
##     PS                0     0                0              0       4
##     PS2               0     1                0              0       3
##     PS3               0     0                0              0       0
##     PS4               0     0                0              0       0
##     PSP               0     2                0              0       1
##     PSV               0     0                0              0       0
##     SAT               0     0                0              0       0
##     SCD               0     0                0              0       0
##     SNES              0     0                0              0       0
##     TG16              0     0                0              0       0
##     Wii               0     1                6              0       0
##     WiiU              0     0                0              0       0
##     WS                0     0                0              0       0
##     X360              0     0                0              0       1
##     XB                0     0                0              0       0
##     XOne              0     0                0              0       0
##         Publisher
## Platform Summitsoft Sunflowers Sunrise Interactive Sunsoft Sweets
##     2600          0          0                   0       0      0
##     3DO           0          0                   0       0      0
##     3DS           0          0                   0       1      0
##     DC            0          0                   0       0      0
##     DS            0          0                   0       0      0
##     GB            0          0                   0       0      0
##     GBA           1          0                   0       0      0
##     GC            0          0                   0       0      0
##     GEN           0          0                   0       0      0
##     GG            0          0                   0       0      0
##     N64           0          0                   0       1      0
##     NES           0          0                   0       0      0
##     NG            0          0                   0       0      0
##     PC            0          1                   0       0      0
##     PCFX          0          0                   0       0      0
##     PS            0          0                   0       4      0
##     PS2           0          0                   4       0      2
##     PS3           0          0                   0       0      0
##     PS4           0          0                   0       0      0
##     PSP           0          0                   0       0      0
##     PSV           0          0                   0       0      0
##     SAT           0          0                   0       2      0
##     SCD           0          0                   0       0      0
##     SNES          0          0                   0       2      0
##     TG16          0          0                   0       0      0
##     Wii           0          0                   0       0      0
##     WiiU          0          0                   0       0      0
##     WS            0          0                   0       0      0
##     X360          0          0                   0       0      0
##     XB            0          0                   0       0      0
##     XOne          0          0                   0       0      0
##         Publisher
## Platform Swing! Entertainment Syscom System 3 System 3 Arcade Software
##     2600                    0      0        0                        0
##     3DO                     0      0        0                        0
##     3DS                     0      0        0                        0
##     DC                      0      0        0                        0
##     DS                      0      0        0                        3
##     GB                      0      0        0                        0
##     GBA                     1      0        0                        0
##     GC                      0      0        0                        0
##     GEN                     0      0        0                        0
##     GG                      0      0        0                        0
##     N64                     0      0        0                        0
##     NES                     0      0        0                        0
##     NG                      0      0        0                        0
##     PC                      0      0        0                        0
##     PCFX                    0      0        0                        0
##     PS                      1      2        0                        0
##     PS2                     3      0        0                        1
##     PS3                     0      0        1                        2
##     PS4                     0      0        1                        0
##     PSP                     0      0        0                        2
##     PSV                     0      0        1                        0
##     SAT                     0      0        0                        0
##     SCD                     0      0        0                        0
##     SNES                    0      0        0                        0
##     TG16                    0      0        0                        0
##     Wii                     0      0        0                        6
##     WiiU                    0      0        0                        0
##     WS                      0      0        0                        0
##     X360                    0      0        0                        0
##     XB                      1      0        0                        0
##     XOne                    0      0        0                        0
##         Publisher
## Platform System Soft T&E Soft Taito Takara Takara Tomy
##     2600           0        0     1      0           0
##     3DO            0        0     0      0           0
##     3DS            0        0     0      0           3
##     DC             0        0     0      0           0
##     DS             0        0     3      0          22
##     GB             0        0     0      0           0
##     GBA            0        0     1      1           0
##     GC             0        0     1      0           0
##     GEN            0        0     0      0           0
##     GG             0        0     0      0           0
##     N64            0        0     1      1           0
##     NES            0        0     0      0           0
##     NG             0        0     0      0           0
##     PC             0        0     0      0           0
##     PCFX           0        0     0      0           0
##     PS             0        0     2      6           0
##     PS2            0        0     5      3           0
##     PS3            0        0     0      0           0
##     PS4            0        0     0      0           0
##     PSP            4        0     0      0           3
##     PSV            0        0     0      0           0
##     SAT            0        0     1      0           0
##     SCD            0        0     0      0           0
##     SNES           0        1     2      5           0
##     TG16           0        0     0      0           0
##     Wii            0        0     2      0           8
##     WiiU           0        0     0      0           0
##     WS             0        0     0      0           0
##     X360           0        0     0      0           1
##     XB             0        0     0      0           0
##     XOne           0        0     0      0           0
##         Publisher
## Platform Take-Two Interactive Takuyo TalonSoft TDK Core TDK Mediactive
##     2600                    0      0         0        0              0
##     3DO                     0      0         0        0              0
##     3DS                     2      0         0        0              0
##     DC                      0      0         0        0              0
##     DS                     29      0         0        3              0
##     GB                      0      0         0        0              0
##     GBA                     4      0         0        1             11
##     GC                      4      0         0        0              9
##     GEN                     0      0         0        0              0
##     GG                      0      0         0        0              0
##     N64                     4      0         0        0              0
##     NES                     0      0         0        0              0
##     NG                      0      0         0        0              0
##     PC                     45      0         0        0              0
##     PCFX                    0      0         0        0              0
##     PS                     18      0         1        1              2
##     PS2                    60      0         0        0              6
##     PS3                    53      0         0        0              0
##     PS4                    12      0         0        0              0
##     PSP                    23      1         0        0              0
##     PSV                     2      0         0        0              0
##     SAT                     0      0         0        0              0
##     SCD                     0      0         0        0              0
##     SNES                    0      0         0        0              0
##     TG16                    0      0         0        0              0
##     Wii                    38      0         0        0              0
##     WiiU                    1      0         0        0              0
##     WS                      0      0         0        0              0
##     X360                   70      0         0        0              0
##     XB                     36      0         0        0              8
##     XOne                   12      0         0        0              0
##         Publisher
## Platform Team17 Software Technos Japan Corporation TechnoSoft Tecmo Koei
##     2600               0                         0          0          0
##     3DO                0                         0          0          0
##     3DS                0                         0          0          9
##     DC                 0                         0          0          0
##     DS                 0                         0          0         26
##     GB                 0                         0          0          0
##     GBA                0                         0          0          1
##     GC                 0                         0          0          1
##     GEN                0                         0          0          0
##     GG                 0                         0          0          0
##     N64                0                         0          0          0
##     NES                0                         0          0          0
##     NG                 0                         1          0          0
##     PC                 1                         0          0          0
##     PCFX               0                         0          0          0
##     PS                 0                         0          1         18
##     PS2                0                         0          0         85
##     PS3                0                         0          0         56
##     PS4                0                         0          0         22
##     PSP                0                         0          0         33
##     PSV                0                         0          0         32
##     SAT                0                         0          0          3
##     SCD                0                         0          0          0
##     SNES               0                         0          0          8
##     TG16               0                         0          0          0
##     Wii                0                         0          0          6
##     WiiU               0                         0          0          3
##     WS                 0                         0          0          0
##     X360               0                         0          0         23
##     XB                 0                         0          0          6
##     XOne               0                         0          0          6
##         Publisher
## Platform Telegames Telltale Games Telstar Tetris Online TGL
##     2600         0              0       0             0   0
##     3DO          0              0       0             0   0
##     3DS          0              0       0             1   0
##     DC           0              0       0             0   0
##     DS           4              0       0             0   0
##     GB           0              0       0             0   0
##     GBA          3              0       0             0   0
##     GC           0              0       0             0   0
##     GEN          0              0       0             0   0
##     GG           0              0       0             0   0
##     N64          0              0       0             0   0
##     NES          0              0       0             0   0
##     NG           0              0       0             0   0
##     PC           0              0       0             0   0
##     PCFX         0              0       0             0   0
##     PS           1              0       3             0   0
##     PS2          0              0       0             0   0
##     PS3          0              5       0             0   0
##     PS4          0              7       0             0   0
##     PSP          0              0       0             0   1
##     PSV          0              2       0             0   3
##     SAT          0              0       0             0   0
##     SCD          0              0       0             0   0
##     SNES         0              0       0             0   0
##     TG16         0              0       0             0   0
##     Wii          0              1       0             0   0
##     WiiU         0              0       0             0   0
##     WS           0              0       0             0   0
##     X360         0              4       0             0   0
##     XB           0              0       0             0   0
##     XOne         0              6       0             0   0
##         Publisher
## Platform The Adventure Company The Learning Company THQ Tigervision
##     2600                     0                    0   0           3
##     3DO                      0                    0   0           0
##     3DS                      0                    0   3           0
##     DC                       0                    0   0           0
##     DS                       1                    0 115           0
##     GB                       0                    0   0           0
##     GBA                      0                    0 110           0
##     GC                       0                    0  47           0
##     GEN                      0                    0   0           0
##     GG                       0                    0   0           0
##     N64                      0                    0  18           0
##     NES                      0                    0   0           0
##     NG                       0                    0   0           0
##     PC                       0                    0  29           0
##     PCFX                     0                    0   0           0
##     PS                       0                    1  27           0
##     PS2                      0                    0 100           0
##     PS3                      0                    0  46           0
##     PS4                      0                    0   0           0
##     PSP                      0                    0  30           0
##     PSV                      0                    0   0           0
##     SAT                      0                    0   0           0
##     SCD                      0                    0   0           0
##     SNES                     0                    0   1           0
##     TG16                     0                    0   0           0
##     Wii                      4                    0  76           0
##     WiiU                     0                    0   1           0
##     WS                       0                    0   0           0
##     X360                     0                    0  64           0
##     XB                       0                    0  48           0
##     XOne                     0                    0   0           0
##         Publisher
## Platform Time Warner Interactive Titus Tivola TOHO Tommo Tomy Corporation
##     2600                       0     0      0    0     0                0
##     3DO                        0     0      0    0     0                0
##     3DS                        0     0      0    0     0                0
##     DC                         0     0      0    0     0                0
##     DS                         0     0      3    0     3                5
##     GB                         0     0      0    0     0                0
##     GBA                        0     4      0    0     0                2
##     GC                         0     1      0    0     0                5
##     GEN                        0     0      0    0     0                0
##     GG                         0     0      0    0     0                0
##     N64                        0     6      0    0     0                0
##     NES                        0     0      0    0     0                0
##     NG                         0     0      0    0     0                0
##     PC                         0     0      0    0     0                0
##     PCFX                       0     0      0    0     0                0
##     PS                         5     3      0    0     0                4
##     PS2                        0     3      0    0     0                0
##     PS3                        0     0      0    0     0                0
##     PS4                        0     0      0    0     0                0
##     PSP                        0     0      0    0     0                0
##     PSV                        0     0      0    0     0                0
##     SAT                        0     0      0    0     0                0
##     SCD                        0     0      0    0     0                0
##     SNES                       0     1      0    1     0                0
##     TG16                       0     0      0    0     0                0
##     Wii                        0     0      0    0     2                2
##     WiiU                       0     0      0    0     0                0
##     WS                         0     0      0    0     0                0
##     X360                       0     0      0    0     0                0
##     XB                         0     1      0    0     0                0
##     XOne                       0     0      0    0     0                0
##         Publisher
## Platform TopWare Interactive Touchstone Tradewest Trion Worlds
##     2600                   0          0         0            0
##     3DO                    0          0         0            0
##     3DS                    0          0         0            0
##     DC                     0          0         0            0
##     DS                     0          1         0            0
##     GB                     0          0         0            0
##     GBA                    0          0         0            0
##     GC                     0          0         0            0
##     GEN                    0          0         0            0
##     GG                     0          0         0            0
##     N64                    0          0         0            0
##     NES                    0          0         0            0
##     NG                     0          0         0            0
##     PC                     1          1         0            2
##     PCFX                   0          0         0            0
##     PS                     0          0         0            0
##     PS2                    0          0         0            0
##     PS3                    1          1         1            1
##     PS4                    1          0         0            0
##     PSP                    0          0         0            0
##     PSV                    0          0         0            0
##     SAT                    0          0         0            0
##     SCD                    0          0         0            0
##     SNES                   0          0         0            0
##     TG16                   0          0         0            0
##     Wii                    0          0         1            0
##     WiiU                   0          0         0            0
##     WS                     0          0         0            0
##     X360                   1          1         1            1
##     XB                     0          0         0            0
##     XOne                   0          0         0            0
##         Publisher
## Platform Tripwire Interactive Tru Blu Entertainment Tryfirst TYO Type-Moon
##     2600                    0                     0        0   0         0
##     3DO                     0                     0        0   0         0
##     3DS                     0                     0        0   0         0
##     DC                      0                     0        0   0         0
##     DS                      0                     0        0   0         0
##     GB                      0                     0        0   0         0
##     GBA                     0                     0        0   0         0
##     GC                      0                     0        0   0         0
##     GEN                     0                     0        0   0         0
##     GG                      0                     0        0   0         0
##     N64                     0                     0        0   0         0
##     NES                     0                     0        0   0         0
##     NG                      0                     0        0   0         0
##     PC                      1                     0        0   0         0
##     PCFX                    0                     0        0   0         0
##     PS                      0                     0        0   1         0
##     PS2                     0                     0        1   0         0
##     PS3                     0                     2        0   0         0
##     PS4                     0                     2        0   0         0
##     PSP                     0                     0        0   0         0
##     PSV                     0                     0        0   0         1
##     SAT                     0                     0        0   0         0
##     SCD                     0                     0        0   0         0
##     SNES                    0                     0        0   0         0
##     TG16                    0                     0        0   0         0
##     Wii                     0                     0        0   0         0
##     WiiU                    0                     0        0   0         0
##     WS                      0                     0        0   0         0
##     X360                    0                     2        0   0         0
##     XB                      0                     0        0   0         0
##     XOne                    0                     2        0   0         0
##         Publisher
## Platform U.S. Gold Ubisoft Ubisoft Annecy UEP Systems UFO Interactive
##     2600         0       0              0           0               0
##     3DO          0       0              0           0               0
##     3DS          0      21              2           0               1
##     DC           0       1              0           0               0
##     DS           0     181              0           0              10
##     GB           0       1              0           0               0
##     GBA          0      53              0           0               0
##     GC           0      36              0           0               0
##     GEN          0       0              0           0               0
##     GG           0       0              0           0               0
##     N64          0      12              0           0               0
##     NES          0       0              0           0               0
##     NG           0       0              0           0               0
##     PC           0      76              0           0               0
##     PCFX         0       0              0           0               0
##     PS           4      24              0           1               0
##     PS2          0      70              0           0               0
##     PS3          0      73              5           0               0
##     PS4          0      24              0           0               0
##     PSP          0      38              4           0               0
##     PSV          0      11              0           0               0
##     SAT          0       0              0           0               0
##     SCD          0       0              0           0               0
##     SNES         0       0              0           0               0
##     TG16         0       0              0           0               0
##     Wii          0     115              0           0               5
##     WiiU         0      16              0           0               0
##     WS           0       0              0           0               0
##     X360         0      99              3           0               0
##     XB           0      45              0           0               0
##     XOne         0      25              0           0               0
##         Publisher
## Platform UIG Entertainment Ultravision Universal Gamex
##     2600                 0           1               1
##     3DO                  0           0               0
##     3DS                  0           0               0
##     DC                   0           0               0
##     DS                   0           0               0
##     GB                   0           0               0
##     GBA                  0           0               0
##     GC                   0           0               0
##     GEN                  0           0               0
##     GG                   0           0               0
##     N64                  0           0               0
##     NES                  0           0               0
##     NG                   0           0               0
##     PC                   0           0               0
##     PCFX                 0           0               0
##     PS                   0           0               0
##     PS2                  0           0               0
##     PS3                  0           0               0
##     PS4                  1           0               0
##     PSP                  0           0               0
##     PSV                  0           0               0
##     SAT                  0           0               0
##     SCD                  0           0               0
##     SNES                 0           0               0
##     TG16                 0           0               0
##     Wii                  0           0               0
##     WiiU                 0           0               0
##     WS                   0           0               0
##     X360                 0           0               0
##     XB                   0           0               0
##     XOne                 0           0               0
##         Publisher
## Platform Universal Interactive Unknown Valcon Games ValuSoft Valve
##     2600                     0       1            0        0     0
##     3DO                      0       0            0        0     0
##     3DS                      0       9            0        0     0
##     DC                       0       0            0        0     0
##     DS                       0      33            1        2     0
##     GB                       0       0            0        0     0
##     GBA                      5      11            0        0     0
##     GC                       5      12            0        0     0
##     GEN                      0       0            0        0     0
##     GG                       0       0            0        0     0
##     N64                      0       1            0        0     0
##     NES                      0       0            0        0     0
##     NG                       0       0            0        0     0
##     PC                       0      22            0        1     0
##     PCFX                     0       0            0        0     0
##     PS                       0       4            0        0     0
##     PS2                      8      24            2        1     0
##     PS3                      0      15            0        0     1
##     PS4                      0       1            0        0     0
##     PSP                      0      13            0        0     0
##     PSV                      0       6            0        0     0
##     SAT                      0       0            0        0     0
##     SCD                      0       0            0        0     0
##     SNES                     0       0            0        0     0
##     TG16                     0       0            0        0     0
##     Wii                      0      26            3        0     0
##     WiiU                     0       0            0        0     0
##     WS                       0       0            0        0     0
##     X360                     0      12            2        0     0
##     XB                       5      12            0        0     0
##     XOne                     0       1            0        0     0
##         Publisher
## Platform Valve Software Vap Vatical Entertainment Vic Tokai
##     2600              0   0                     0         0
##     3DO               0   0                     0         0
##     3DS               0   0                     0         0
##     DC                0   0                     0         0
##     DS                0   0                     0         0
##     GB                0   0                     0         0
##     GBA               0   0                     0         0
##     GC                0   0                     0         0
##     GEN               0   0                     0         0
##     GG                0   0                     0         0
##     N64               0   0                     1         1
##     NES               0   0                     0         0
##     NG                0   0                     0         0
##     PC                2   0                     0         0
##     PCFX              0   0                     0         0
##     PS                0   0                     1         1
##     PS2               0   0                     0         0
##     PS3               0   0                     0         0
##     PS4               0   0                     0         0
##     PSP               0   0                     0         0
##     PSV               0   0                     0         0
##     SAT               0   0                     0         0
##     SCD               0   0                     0         0
##     SNES              0   1                     0         0
##     TG16              0   0                     0         0
##     Wii               0   0                     0         0
##     WiiU              0   0                     0         0
##     WS                0   0                     0         0
##     X360              1   0                     0         0
##     XB                0   0                     0         0
##     XOne              0   0                     0         0
##         Publisher
## Platform Victor Interactive Video System Views Vir2L Studios
##     2600                  0            0     0             0
##     3DO                   0            0     0             0
##     3DS                   0            0     0             0
##     DC                    0            0     0             0
##     DS                    0            0     0             2
##     GB                    1            0     0             0
##     GBA                   1            0     0             0
##     GC                    0            0     0             0
##     GEN                   0            0     0             0
##     GG                    0            0     0             0
##     N64                   0            2     0             0
##     NES                   0            0     0             0
##     NG                    0            0     0             0
##     PC                    0            0     0             0
##     PCFX                  0            0     0             0
##     PS                    3            1     0             0
##     PS2                   2            0     0             0
##     PS3                   0            0     1             0
##     PS4                   0            0     0             0
##     PSP                   0            0     1             0
##     PSV                   0            0     0             0
##     SAT                   1            0     0             0
##     SCD                   0            0     0             0
##     SNES                  1            1     0             0
##     TG16                  0            0     0             0
##     Wii                   0            0     0             1
##     WiiU                  0            0     0             0
##     WS                    0            0     0             0
##     X360                  0            0     0             0
##     XB                    0            0     0             0
##     XOne                  0            0     0             0
##         Publisher
## Platform Virgin Interactive Virtual Play Games Visco Vivendi Games Wanadoo
##     2600                  0                  0     0             0       0
##     3DO                   0                  0     0             0       0
##     3DS                   0                  0     0             0       0
##     DC                    2                  0     0             0       0
##     DS                    0                  0     0            13       0
##     GB                    0                  0     0             0       0
##     GBA                   0                  0     0            23       1
##     GC                    2                  0     0            15       1
##     GEN                   1                  0     0             0       0
##     GG                    0                  0     0             0       0
##     N64                   4                  0     0             0       0
##     NES                   0                  0     0             0       0
##     NG                    0                  0     0             0       0
##     PC                    4                  0     1            23       0
##     PCFX                  0                  0     0             0       0
##     PS                   39                  0     0             2       0
##     PS2                   6                  0     0            31       2
##     PS3                   0                  0     0             5       0
##     PS4                   0                  0     0             0       0
##     PSP                   0                  0     0             8       0
##     PSV                   0                  0     0             0       0
##     SAT                   2                  0     0             0       0
##     SCD                   0                  0     0             0       0
##     SNES                  1                  0     0             0       0
##     TG16                  0                  0     0             0       0
##     Wii                   0                  2     0             9       0
##     WiiU                  0                  0     0             0       0
##     WS                    0                  0     0             0       0
##     X360                  0                  0     0             9       0
##     XB                    1                  0     0            26       1
##     XOne                  0                  0     0             0       0
##         Publisher
## Platform Warashi Wargaming.net Warner Bros. Interactive Entertainment Warp
##     2600       0             0                                      0    0
##     3DO        0             0                                      0    0
##     3DS        0             0                                     18    0
##     DC         1             0                                      0    0
##     DS         0             0                                     32    0
##     GB         0             0                                      0    0
##     GBA        0             0                                      0    0
##     GC         0             0                                      1    0
##     GEN        0             0                                      0    0
##     GG         0             0                                      0    0
##     N64        0             0                                      0    0
##     NES        0             0                                      0    0
##     NG         0             0                                      0    0
##     PC         0             1                                     20    0
##     PCFX       0             0                                      0    0
##     PS         0             0                                      0    0
##     PS2        0             0                                      8    0
##     PS3        0             0                                     32    0
##     PS4        0             0                                     14    0
##     PSP        0             0                                      5    0
##     PSV        0             0                                     16    0
##     SAT        0             0                                      0    1
##     SCD        0             0                                      0    0
##     SNES       0             0                                      0    0
##     TG16       0             0                                      0    0
##     Wii        0             0                                     24    0
##     WiiU       0             0                                     15    0
##     WS         0             0                                      0    0
##     X360       0             0                                     34    0
##     XB         0             0                                      0    0
##     XOne       0             0                                     13    0
##         Publisher
## Platform WayForward Technologies Westwood Studios White Park Bay Software
##     2600                       0                0                       0
##     3DO                        0                0                       0
##     3DS                        1                0                       0
##     DC                         0                0                       0
##     DS                         0                0                       1
##     GB                         0                0                       0
##     GBA                        0                0                       0
##     GC                         0                0                       0
##     GEN                        0                0                       0
##     GG                         0                0                       0
##     N64                        0                0                       0
##     NES                        0                0                       0
##     NG                         0                0                       0
##     PC                         0                1                       0
##     PCFX                       0                0                       0
##     PS                         0                0                       0
##     PS2                        0                0                       0
##     PS3                        0                0                       0
##     PS4                        0                0                       0
##     PSP                        0                0                       0
##     PSV                        0                0                       0
##     SAT                        0                0                       0
##     SCD                        0                0                       0
##     SNES                       0                0                       0
##     TG16                       0                0                       0
##     Wii                        0                0                       0
##     WiiU                       0                0                       0
##     WS                         0                0                       0
##     X360                       0                0                       0
##     XB                         0                0                       0
##     XOne                       0                0                       0
##         Publisher
## Platform Wizard Video Games Xicat Interactive Xing Entertainment Xplosiv
##     2600                  1                 0                  0       0
##     3DO                   0                 0                  0       0
##     3DS                   0                 0                  0       0
##     DC                    0                 0                  0       0
##     DS                    0                 0                  0       0
##     GB                    0                 0                  0       0
##     GBA                   0                 0                  0       0
##     GC                    0                 0                  0       0
##     GEN                   0                 0                  0       0
##     GG                    0                 0                  0       0
##     N64                   0                 0                  0       0
##     NES                   0                 0                  0       0
##     NG                    0                 0                  0       0
##     PC                    0                 0                  0       0
##     PCFX                  0                 0                  0       0
##     PS                    0                 0                  1       0
##     PS2                   0                 1                  0       4
##     PS3                   0                 0                  0       0
##     PS4                   0                 0                  0       0
##     PSP                   0                 0                  0       4
##     PSV                   0                 0                  0       0
##     SAT                   0                 0                  0       0
##     SCD                   0                 0                  0       0
##     SNES                  0                 0                  0       0
##     TG16                  0                 0                  0       0
##     Wii                   0                 0                  0       2
##     WiiU                  0                 0                  0       0
##     WS                    0                 0                  0       0
##     X360                  0                 0                  0       0
##     XB                    0                 2                  0       0
##     XOne                  0                 0                  0       0
##         Publisher
## Platform XS Games Xseed Games Yacht Club Games Yamasa Entertainment Yeti
##     2600        0           0                0                    0    0
##     3DO         0           0                0                    0    0
##     3DS         0           1                1                    0    0
##     DC          0           0                0                    0    0
##     DS          0           0                0                    0    0
##     GB          0           0                0                    0    0
##     GBA         2           0                0                    0    0
##     GC          0           0                0                    0    0
##     GEN         0           0                0                    0    0
##     GG          0           0                0                    0    0
##     N64         0           0                0                    0    0
##     NES         0           0                0                    0    0
##     NG          0           0                0                    0    0
##     PC          0           0                0                    0    0
##     PCFX        0           0                0                    0    0
##     PS          1           0                0                    0    0
##     PS2         3           0                0                    1    4
##     PS3         0           0                0                    0    0
##     PS4         0           1                1                    0    1
##     PSP         0           0                0                    1    5
##     PSV         0           2                0                    0    0
##     SAT         0           0                0                    0    0
##     SCD         0           0                0                    0    0
##     SNES        0           0                0                    0    0
##     TG16        0           0                0                    0    0
##     Wii         4           0                0                    0    0
##     WiiU        0           0                1                    0    0
##     WS          0           0                0                    0    0
##     X360        1           0                0                    0    1
##     XB          1           0                0                    0    0
##     XOne        0           0                0                    0    0
##         Publisher
## Platform Yuke's Yumedia Zenrin Zoo Digital Publishing Zoo Games
##     2600      0       0      0                      0         0
##     3DO       0       0      0                      0         0
##     3DS       0       0      0                      0         0
##     DC        0       0      0                      0         0
##     DS        0       0      0                     26        10
##     GB        0       0      0                      0         0
##     GBA       0       0      0                     38         0
##     GC        0       0      0                      1         0
##     GEN       0       0      0                      0         0
##     GG        0       0      0                      0         0
##     N64       0       0      0                      0         0
##     NES       0       0      0                      0         0
##     NG        0       0      0                      0         0
##     PC        0       0      0                      0         0
##     PCFX      0       0      0                      0         0
##     PS        0       0      0                      0         0
##     PS2       3       0      0                     11         0
##     PS3       0       0      0                      0         0
##     PS4       0       0      0                      0         0
##     PSP       0       0      2                      0         0
##     PSV       0       0      0                      0         0
##     SAT       0       1      0                      0         0
##     SCD       0       0      0                      0         0
##     SNES      0       0      0                      0         0
##     TG16      0       0      0                      0         0
##     Wii       0       0      0                     18        22
##     WiiU      0       0      0                      0         0
##     WS        0       0      0                      0         0
##     X360      0       0      0                      0         1
##     XB        0       0      0                     10         0
##     XOne      0       0      0                      0         0
##         Publisher
## Platform Zushi Games
##     2600           0
##     3DO            0
##     3DS            0
##     DC             0
##     DS             7
##     GB             0
##     GBA            0
##     GC             0
##     GEN            0
##     GG             0
##     N64            0
##     NES            0
##     NG             0
##     PC             0
##     PCFX           0
##     PS             0
##     PS2            0
##     PS3            0
##     PS4            0
##     PSP            1
##     PSV            0
##     SAT            0
##     SCD            0
##     SNES           0
##     TG16           0
##     Wii            8
##     WiiU           0
##     WS             0
##     X360           2
##     XB             0
##     XOne           0
prop.table(myTable,1)
##         Publisher
## Platform 10TACLE Studios   1C Company 20th Century Fox Video Games
##     2600    0.0000000000 0.0000000000                 0.0375939850
##     3DO     0.0000000000 0.0000000000                 0.0000000000
##     3DS     0.0000000000 0.0000000000                 0.0000000000
##     DC      0.0000000000 0.0000000000                 0.0000000000
##     DS      0.0009246417 0.0000000000                 0.0000000000
##     GB      0.0000000000 0.0000000000                 0.0000000000
##     GBA     0.0000000000 0.0000000000                 0.0000000000
##     GC      0.0000000000 0.0000000000                 0.0000000000
##     GEN     0.0000000000 0.0000000000                 0.0000000000
##     GG      0.0000000000 0.0000000000                 0.0000000000
##     N64     0.0000000000 0.0000000000                 0.0000000000
##     NES     0.0000000000 0.0000000000                 0.0000000000
##     NG      0.0000000000 0.0000000000                 0.0000000000
##     PC      0.0000000000 0.0031250000                 0.0000000000
##     PCFX    0.0000000000 0.0000000000                 0.0000000000
##     PS      0.0000000000 0.0000000000                 0.0000000000
##     PS2     0.0004627487 0.0000000000                 0.0000000000
##     PS3     0.0000000000 0.0000000000                 0.0000000000
##     PS4     0.0000000000 0.0000000000                 0.0000000000
##     PSP     0.0000000000 0.0000000000                 0.0000000000
##     PSV     0.0000000000 0.0000000000                 0.0000000000
##     SAT     0.0000000000 0.0000000000                 0.0000000000
##     SCD     0.0000000000 0.0000000000                 0.0000000000
##     SNES    0.0000000000 0.0000000000                 0.0000000000
##     TG16    0.0000000000 0.0000000000                 0.0000000000
##     Wii     0.0000000000 0.0000000000                 0.0000000000
##     WiiU    0.0000000000 0.0000000000                 0.0000000000
##     WS      0.0000000000 0.0000000000                 0.0000000000
##     X360    0.0000000000 0.0000000000                 0.0000000000
##     XB      0.0000000000 0.0000000000                 0.0000000000
##     XOne    0.0000000000 0.0000000000                 0.0000000000
##         Publisher
## Platform       2D Boy          3DO      49Games    505 Games          5pb
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0058939096 0.0019646365
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0300508553 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0017985612 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0156739812 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0010416667 0.0000000000 0.0000000000 0.0041666667 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0133779264 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0060157335 0.0000000000 0.0101804720 0.0032392411
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0112866817 0.0075244545
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0178571429 0.0029761905
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0082440231 0.0098928277
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0024213075 0.0338983051
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0226415094 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0139860140 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0007905138 0.0213438735 0.0118577075
##     XB   0.0000000000 0.0012135922 0.0000000000 0.0012135922 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0281690141 0.0046948357
##         Publisher
## Platform     7G//AMES   989 Sports  989 Studios     Abylight
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0009246417 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0008361204 0.0117056856 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0007524454
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0015094340 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Acclaim Entertainment     Accolade  Ackkstudios      Acquire
##     2600          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.0000000000 0.0019646365 0.0019646365
##     DC            0.0192307692 0.0000000000 0.0000000000 0.0000000000
##     DS            0.0000000000 0.0000000000 0.0004623209 0.0000000000
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.0121654501 0.0000000000 0.0000000000 0.0000000000
##     GC            0.0431654676 0.0000000000 0.0000000000 0.0000000000
##     GEN           0.0740740741 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.0971786834 0.0000000000 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0010416667 0.0000000000 0.0000000000 0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            0.0451505017 0.0025083612 0.0000000000 0.0000000000
##     PS2           0.0152707080 0.0000000000 0.0000000000 0.0004627487
##     PS3           0.0000000000 0.0000000000 0.0022573363 0.0022573363
##     PS4           0.0000000000 0.0000000000 0.0000000000 0.0029761905
##     PSP           0.0000000000 0.0000000000 0.0024732069 0.0057708162
##     PSV           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT           0.0173410405 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0167364017 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.0000000000 0.0015094340 0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB            0.0254854369 0.0000000000 0.0000000000 0.0000000000
##     XOne          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   Activision Activision Blizzard Activision Value
##     2600 0.2105263158        0.0000000000     0.0000000000
##     3DO  0.0000000000        0.0000000000     0.0000000000
##     3DS  0.0530451866        0.0000000000     0.0000000000
##     DC   0.0192307692        0.0000000000     0.0000000000
##     DS   0.0513176144        0.0000000000     0.0000000000
##     GB   0.0102040816        0.0000000000     0.0000000000
##     GBA  0.0596107056        0.0000000000     0.0012165450
##     GC   0.0791366906        0.0000000000     0.0017985612
##     GEN  0.0000000000        0.0000000000     0.0000000000
##     GG   0.0000000000        0.0000000000     0.0000000000
##     N64  0.0407523511        0.0000000000     0.0000000000
##     NES  0.0000000000        0.0000000000     0.0000000000
##     NG   0.0000000000        0.0000000000     0.0000000000
##     PC   0.0583333333        0.0010416667     0.0000000000
##     PCFX 0.0000000000        0.0000000000     0.0000000000
##     PS   0.0267558528        0.0000000000     0.0008361204
##     PS2  0.0476631189        0.0000000000     0.0027764924
##     PS3  0.0812641084        0.0000000000     0.0030097818
##     PS4  0.0625000000        0.0000000000     0.0000000000
##     PSP  0.0280296785        0.0000000000     0.0016488046
##     PSV  0.0072639225        0.0000000000     0.0000000000
##     SAT  0.0000000000        0.0000000000     0.0000000000
##     SCD  0.0000000000        0.0000000000     0.0000000000
##     SNES 0.0000000000        0.0000000000     0.0000000000
##     TG16 0.0000000000        0.0000000000     0.0000000000
##     Wii  0.0837735849        0.0000000000     0.0037735849
##     WiiU 0.1258741259        0.0000000000     0.0000000000
##     WS   0.0000000000        0.0000000000     0.0000000000
##     X360 0.1059288538        0.0000000000     0.0055335968
##     XB   0.0740291262        0.0000000000     0.0024271845
##     XOne 0.0938967136        0.0000000000     0.0000000000
##         Publisher
## Platform Adeline Software     Aerosoft Agatsuma Entertainment       Agetec
##     2600     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     3DO      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     3DS      0.0000000000 0.0000000000           0.0039292731 0.0000000000
##     DC       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     DS       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GB       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GBA      0.0000000000 0.0000000000           0.0012165450 0.0000000000
##     GC       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GEN      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GG       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     N64      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     NES      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     NG       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PC       0.0000000000 0.0020833333           0.0000000000 0.0000000000
##     PCFX     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PS       0.0008361204 0.0000000000           0.0000000000 0.0025083612
##     PS2      0.0000000000 0.0000000000           0.0000000000 0.0018509949
##     PS3      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PS4      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PSP      0.0000000000 0.0000000000           0.0000000000 0.0008244023
##     PSV      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     SAT      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     SCD      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     SNES     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     TG16     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     Wii      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     WiiU     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     WS       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     X360     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     XB       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     XOne     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##         Publisher
## Platform  Aksys Games Alawar Entertainment    Alchemist
##     2600 0.0000000000         0.0000000000 0.0000000000
##     3DO  0.0000000000         0.0000000000 0.0000000000
##     3DS  0.0019646365         0.0000000000 0.0098231827
##     DC   0.0000000000         0.0000000000 0.0000000000
##     DS   0.0004623209         0.0000000000 0.0027739251
##     GB   0.0000000000         0.0000000000 0.0000000000
##     GBA  0.0000000000         0.0000000000 0.0000000000
##     GC   0.0000000000         0.0000000000 0.0000000000
##     GEN  0.0000000000         0.0000000000 0.0000000000
##     GG   0.0000000000         0.0000000000 0.0000000000
##     N64  0.0000000000         0.0000000000 0.0000000000
##     NES  0.0000000000         0.0000000000 0.0000000000
##     NG   0.0000000000         0.0000000000 0.0000000000
##     PC   0.0000000000         0.0020833333 0.0000000000
##     PCFX 0.0000000000         0.0000000000 0.0000000000
##     PS   0.0000000000         0.0000000000 0.0000000000
##     PS2  0.0000000000         0.0000000000 0.0060157335
##     PS3  0.0007524454         0.0000000000 0.0015048909
##     PS4  0.0029761905         0.0000000000 0.0000000000
##     PSP  0.0000000000         0.0000000000 0.0123660346
##     PSV  0.0096852300         0.0000000000 0.0000000000
##     SAT  0.0000000000         0.0000000000 0.0000000000
##     SCD  0.0000000000         0.0000000000 0.0000000000
##     SNES 0.0000000000         0.0000000000 0.0000000000
##     TG16 0.0000000000         0.0000000000 0.0000000000
##     Wii  0.0000000000         0.0000000000 0.0000000000
##     WiiU 0.0000000000         0.0000000000 0.0000000000
##     WS   0.0000000000         0.0000000000 0.0000000000
##     X360 0.0000000000         0.0000000000 0.0015810277
##     XB   0.0000000000         0.0000000000 0.0000000000
##     XOne 0.0000000000         0.0000000000 0.0000000000
##         Publisher
## Platform Alternative Software       Altron       Alvion American Softworks
##     2600         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     3DO          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     3DS          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     DC           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     DS           0.0000000000 0.0000000000 0.0009246417       0.0000000000
##     GB           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GBA          0.0000000000 0.0012165450 0.0000000000       0.0000000000
##     GC           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GEN          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GG           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     N64          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     NES          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     NG           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PC           0.0010416667 0.0000000000 0.0000000000       0.0000000000
##     PCFX         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PS           0.0000000000 0.0000000000 0.0000000000       0.0008361204
##     PS2          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PS3          0.0007524454 0.0000000000 0.0000000000       0.0000000000
##     PS4          0.0029761905 0.0000000000 0.0000000000       0.0000000000
##     PSP          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PSV          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SAT          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SCD          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SNES         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     TG16         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     Wii          0.0007547170 0.0000000000 0.0000000000       0.0000000000
##     WiiU         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     WS           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     X360         0.0007905138 0.0000000000 0.0000000000       0.0000000000
##     XB           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     XOne         0.0046948357 0.0000000000 0.0000000000       0.0000000000
##         Publisher
## Platform Angel Studios Answer Software AQ Interactive    Aqua Plus
##     2600  0.0000000000    0.0075187970   0.0000000000 0.0000000000
##     3DO   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     3DS   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     DC    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     DS    0.0000000000    0.0000000000   0.0009246417 0.0000000000
##     GB    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GBA   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GC    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GEN   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GG    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     N64   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     NES   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     NG    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     PC    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     PCFX  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     PS    0.0000000000    0.0000000000   0.0000000000 0.0008361204
##     PS2   0.0000000000    0.0000000000   0.0009254975 0.0009254975
##     PS3   0.0000000000    0.0000000000   0.0000000000 0.0060195636
##     PS4   0.0000000000    0.0000000000   0.0000000000 0.0059523810
##     PSP   0.0000000000    0.0000000000   0.0008244023 0.0049464138
##     PSV   0.0000000000    0.0000000000   0.0000000000 0.0096852300
##     SAT   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     SCD   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     SNES  0.0125523013    0.0000000000   0.0000000000 0.0000000000
##     TG16  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     Wii   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     WiiU  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     WS    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     X360  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     XB    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     XOne  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##         Publisher
## Platform        Aques Arc System Works Arena Entertainment         Aria
##     2600 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000     0.0078585462        0.0000000000 0.0000000000
##     DC   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000     0.0041608877        0.0000000000 0.0000000000
##     GB   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     GC   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     GEN  0.0000000000     0.0000000000        0.0740740741 0.0000000000
##     GG   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     NES  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     PCFX 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     PS   0.0008361204     0.0000000000        0.0000000000 0.0000000000
##     PS2  0.0000000000     0.0000000000        0.0000000000 0.0004627487
##     PS3  0.0000000000     0.0037622272        0.0000000000 0.0000000000
##     PS4  0.0000000000     0.0029761905        0.0000000000 0.0000000000
##     PSP  0.0000000000     0.0016488046        0.0000000000 0.0000000000
##     PSV  0.0000000000     0.0121065375        0.0000000000 0.0000000000
##     SAT  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     TG16 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform        Arika      ArtDink   Aruze Corp    ASC Games
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0019646365 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0004623209 0.0004623209 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0033444816 0.0025083612 0.0025083612
##     PS2  0.0009254975 0.0009254975 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0008244023 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Ascaron Entertainment Ascaron Entertainment GmbH
##     2600          0.0000000000               0.0000000000
##     3DO           0.0000000000               0.0000000000
##     3DS           0.0000000000               0.0000000000
##     DC            0.0000000000               0.0000000000
##     DS            0.0000000000               0.0000000000
##     GB            0.0000000000               0.0000000000
##     GBA           0.0000000000               0.0000000000
##     GC            0.0000000000               0.0000000000
##     GEN           0.0000000000               0.0000000000
##     GG            0.0000000000               0.0000000000
##     N64           0.0000000000               0.0000000000
##     NES           0.0000000000               0.0000000000
##     NG            0.0000000000               0.0000000000
##     PC            0.0010416667               0.0031250000
##     PCFX          0.0000000000               0.0000000000
##     PS            0.0000000000               0.0000000000
##     PS2           0.0000000000               0.0000000000
##     PS3           0.0000000000               0.0000000000
##     PS4           0.0000000000               0.0000000000
##     PSP           0.0000000000               0.0000000000
##     PSV           0.0000000000               0.0000000000
##     SAT           0.0000000000               0.0000000000
##     SCD           0.0000000000               0.0000000000
##     SNES          0.0000000000               0.0000000000
##     TG16          0.0000000000               0.0000000000
##     Wii           0.0000000000               0.0000000000
##     WiiU          0.0000000000               0.0000000000
##     WS            0.0000000000               0.0000000000
##     X360          0.0000000000               0.0000000000
##     XB            0.0000000000               0.0000000000
##     XOne          0.0000000000               0.0000000000
##         Publisher
## Platform ASCII Entertainment ASCII Media Works       Asgard          ASK
##     2600        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DO         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DS         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DC          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DS          0.0000000000      0.0018492834 0.0000000000 0.0000000000
##     GB          0.0102040816      0.0000000000 0.0000000000 0.0000000000
##     GBA         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GC          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GEN         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GG          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     N64         0.0031347962      0.0000000000 0.0000000000 0.0000000000
##     NES         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NG          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PC          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PCFX        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS          0.0066889632      0.0000000000 0.0000000000 0.0000000000
##     PS2         0.0004627487      0.0004627487 0.0000000000 0.0000000000
##     PS3         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS4         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PSP         0.0000000000      0.0024732069 0.0057708162 0.0000000000
##     PSV         0.0000000000      0.0024213075 0.0024213075 0.0000000000
##     SAT         0.0057803468      0.0000000000 0.0000000000 0.0057803468
##     SCD         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SNES        0.0334728033      0.0000000000 0.0000000000 0.0000000000
##     TG16        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     Wii         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WiiU        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WS          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     X360        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XB          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XOne        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Asmik Ace Entertainment   Asmik Corp        Aspyr     Astragon
##     2600            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS              0.0000000000 0.0000000000 0.0018492834 0.0018492834
##     GB              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA             0.0000000000 0.0000000000 0.0012165450 0.0000000000
##     GC              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC              0.0000000000 0.0000000000 0.0020833333 0.0020833333
##     PCFX            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS              0.0008361204 0.0000000000 0.0000000000 0.0000000000
##     PS2             0.0009254975 0.0000000000 0.0000000000 0.0000000000
##     PS3             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES            0.0000000000 0.0083682008 0.0000000000 0.0000000000
##     TG16            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360            0.0000000000 0.0000000000 0.0007905138 0.0000000000
##     XB              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Asylum Entertainment        Atari       Athena        Atlus
##     2600         0.0000000000 0.4060150376 0.0000000000 0.0000000000
##     3DO          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS          0.0019646365 0.0019646365 0.0000000000 0.0196463654
##     DC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS           0.0013869626 0.0166435506 0.0000000000 0.0041608877
##     GB           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA          0.0000000000 0.0535279805 0.0000000000 0.0048661800
##     GC           0.0000000000 0.0323741007 0.0000000000 0.0017985612
##     GEN          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64          0.0000000000 0.0000000000 0.0031347962 0.0062695925
##     NES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC           0.0000000000 0.0260416667 0.0000000000 0.0000000000
##     PCFX         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS           0.0000000000 0.0091973244 0.0000000000 0.0066889632
##     PS2          0.0000000000 0.0323924109 0.0004627487 0.0027764924
##     PS3          0.0000000000 0.0045146727 0.0000000000 0.0015048909
##     PS4          0.0000000000 0.0000000000 0.0000000000 0.0029761905
##     PSP          0.0000000000 0.0140148392 0.0000000000 0.0082440231
##     PSV          0.0000000000 0.0000000000 0.0000000000 0.0048426150
##     SAT          0.0000000000 0.0000000000 0.0000000000 0.0289017341
##     SCD          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES         0.0000000000 0.0000000000 0.0000000000 0.0083682008
##     TG16         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii          0.0015094340 0.0181132075 0.0000000000 0.0000000000
##     WiiU         0.0000000000 0.0000000000 0.0000000000 0.0069930070
##     WS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360         0.0000000000 0.0158102767 0.0000000000 0.0015810277
##     XB           0.0000000000 0.0449029126 0.0000000000 0.0024271845
##     XOne         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Avalon Interactive    Avanquest Avanquest Software        Axela
##     2600       0.0075187970 0.0000000000       0.0000000000 0.0000000000
##     3DO        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS        0.0000000000 0.0000000000       0.0039292731 0.0000000000
##     DC         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS         0.0000000000 0.0073971336       0.0013869626 0.0000000000
##     GB         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GC         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GEN        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC         0.0000000000 0.0041666667       0.0020833333 0.0000000000
##     PCFX       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS         0.0008361204 0.0000000000       0.0000000000 0.0008361204
##     PS2        0.0009254975 0.0000000000       0.0000000000 0.0000000000
##     PS3        0.0000000000 0.0000000000       0.0007524454 0.0000000000
##     PS4        0.0000000000 0.0059523810       0.0000000000 0.0000000000
##     PSP        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSV        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SCD        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii        0.0000000000 0.0030188679       0.0000000000 0.0000000000
##     WiiU       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360       0.0000000000 0.0000000000       0.0007905138 0.0000000000
##     XB         0.0024271845 0.0000000000       0.0000000000 0.0000000000
##     XOne       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform BAM! Entertainment    Banpresto      Benesse     Berkeley
##     2600       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS         0.0000000000 0.0027739251 0.0027739251 0.0000000000
##     GB         0.0000000000 0.0102040816 0.0000000000 0.0000000000
##     GBA        0.0170316302 0.0133819951 0.0000000000 0.0000000000
##     GC         0.0107913669 0.0000000000 0.0000000000 0.0000000000
##     GEN        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64        0.0031347962 0.0062695925 0.0000000000 0.0000000000
##     NES        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS         0.0016722408 0.0083612040 0.0000000000 0.0008361204
##     PS2        0.0037019898 0.0097177233 0.0000000000 0.0000000000
##     PS3        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP        0.0000000000 0.0041220115 0.0000000000 0.0000000000
##     PSV        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT        0.0000000000 0.0115606936 0.0000000000 0.0000000000
##     SCD        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES       0.0000000000 0.0543933054 0.0000000000 0.0000000000
##     TG16       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360       0.0000000000 0.0015810277 0.0000000000 0.0000000000
##     XB         0.0048543689 0.0000000000 0.0000000000 0.0000000000
##     XOne       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Bethesda Softworks Big Ben Interactive Big Fish Games
##     2600       0.0000000000        0.0000000000   0.0000000000
##     3DO        0.0000000000        0.0000000000   0.0000000000
##     3DS        0.0000000000        0.0019646365   0.0000000000
##     DC         0.0000000000        0.0000000000   0.0000000000
##     DS         0.0000000000        0.0009246417   0.0000000000
##     GB         0.0000000000        0.0000000000   0.0000000000
##     GBA        0.0000000000        0.0000000000   0.0000000000
##     GC         0.0000000000        0.0000000000   0.0000000000
##     GEN        0.0000000000        0.0000000000   0.0000000000
##     GG         0.0000000000        0.0000000000   0.0000000000
##     N64        0.0000000000        0.0000000000   0.0000000000
##     NES        0.0000000000        0.0000000000   0.0000000000
##     NG         0.0000000000        0.0000000000   0.0000000000
##     PC         0.0156250000        0.0000000000   0.0020833333
##     PCFX       0.0000000000        0.0000000000   0.0000000000
##     PS         0.0000000000        0.0000000000   0.0000000000
##     PS2        0.0027764924        0.0004627487   0.0000000000
##     PS3        0.0097817908        0.0000000000   0.0000000000
##     PS4        0.0208333333        0.0000000000   0.0000000000
##     PSP        0.0000000000        0.0000000000   0.0000000000
##     PSV        0.0000000000        0.0000000000   0.0000000000
##     SAT        0.0000000000        0.0000000000   0.0000000000
##     SCD        0.0000000000        0.0000000000   0.0000000000
##     SNES       0.0000000000        0.0000000000   0.0000000000
##     TG16       0.0000000000        0.0000000000   0.0000000000
##     Wii        0.0030188679        0.0022641509   0.0000000000
##     WiiU       0.0000000000        0.0000000000   0.0000000000
##     WS         0.0000000000        0.0000000000   0.0000000000
##     X360       0.0118577075        0.0000000000   0.0000000000
##     XB         0.0048543689        0.0000000000   0.0000000000
##     XOne       0.0328638498        0.0000000000   0.0000000000
##         Publisher
## Platform Bigben Interactive bitComposer Games Black Bean Games
##     2600       0.0000000000      0.0000000000     0.0000000000
##     3DO        0.0000000000      0.0000000000     0.0000000000
##     3DS        0.0000000000      0.0000000000     0.0000000000
##     DC         0.0000000000      0.0000000000     0.0000000000
##     DS         0.0000000000      0.0000000000     0.0009246417
##     GB         0.0000000000      0.0000000000     0.0000000000
##     GBA        0.0000000000      0.0000000000     0.0000000000
##     GC         0.0000000000      0.0000000000     0.0000000000
##     GEN        0.0000000000      0.0000000000     0.0000000000
##     GG         0.0000000000      0.0000000000     0.0000000000
##     N64        0.0000000000      0.0000000000     0.0000000000
##     NES        0.0000000000      0.0000000000     0.0000000000
##     NG         0.0000000000      0.0000000000     0.0000000000
##     PC         0.0000000000      0.0031250000     0.0020833333
##     PCFX       0.0000000000      0.0000000000     0.0000000000
##     PS         0.0000000000      0.0000000000     0.0000000000
##     PS2        0.0000000000      0.0000000000     0.0013882462
##     PS3        0.0022573363      0.0007524454     0.0075244545
##     PS4        0.0089285714      0.0000000000     0.0000000000
##     PSP        0.0000000000      0.0000000000     0.0016488046
##     PSV        0.0048426150      0.0000000000     0.0000000000
##     SAT        0.0000000000      0.0000000000     0.0000000000
##     SCD        0.0000000000      0.0000000000     0.0000000000
##     SNES       0.0000000000      0.0000000000     0.0000000000
##     TG16       0.0000000000      0.0000000000     0.0000000000
##     Wii        0.0000000000      0.0000000000     0.0045283019
##     WiiU       0.0000000000      0.0000000000     0.0000000000
##     WS         0.0000000000      0.0000000000     0.0000000000
##     X360       0.0023715415      0.0007905138     0.0071146245
##     XB         0.0000000000      0.0000000000     0.0000000000
##     XOne       0.0093896714      0.0000000000     0.0000000000
##         Publisher
## Platform Black Label Games Blast! Entertainment Ltd    Blue Byte
##     2600      0.0000000000             0.0000000000 0.0000000000
##     3DO       0.0000000000             0.0000000000 0.0000000000
##     3DS       0.0000000000             0.0000000000 0.0000000000
##     DC        0.0000000000             0.0000000000 0.0000000000
##     DS        0.0000000000             0.0013869626 0.0000000000
##     GB        0.0000000000             0.0000000000 0.0000000000
##     GBA       0.0000000000             0.0000000000 0.0000000000
##     GC        0.0000000000             0.0000000000 0.0000000000
##     GEN       0.0000000000             0.0000000000 0.0000000000
##     GG        0.0000000000             0.0000000000 0.0000000000
##     N64       0.0000000000             0.0000000000 0.0000000000
##     NES       0.0000000000             0.0000000000 0.0000000000
##     NG        0.0000000000             0.0000000000 0.0000000000
##     PC        0.0000000000             0.0000000000 0.0020833333
##     PCFX      0.0000000000             0.0000000000 0.0000000000
##     PS        0.0000000000             0.0000000000 0.0000000000
##     PS2       0.0004627487             0.0004627487 0.0000000000
##     PS3       0.0000000000             0.0000000000 0.0000000000
##     PS4       0.0000000000             0.0000000000 0.0000000000
##     PSP       0.0000000000             0.0000000000 0.0000000000
##     PSV       0.0000000000             0.0000000000 0.0000000000
##     SAT       0.0000000000             0.0000000000 0.0000000000
##     SCD       0.0000000000             0.0000000000 0.0000000000
##     SNES      0.0000000000             0.0000000000 0.0000000000
##     TG16      0.0000000000             0.0000000000 0.0000000000
##     Wii       0.0000000000             0.0015094340 0.0000000000
##     WiiU      0.0000000000             0.0000000000 0.0000000000
##     WS        0.0000000000             0.0000000000 0.0000000000
##     X360      0.0000000000             0.0000000000 0.0000000000
##     XB        0.0000000000             0.0000000000 0.0000000000
##     XOne      0.0000000000             0.0000000000 0.0000000000
##         Publisher
## Platform BMG Interactive Entertainment Bohemia Interactive         Bomb
##     2600                  0.0000000000        0.0000000000 0.0075187970
##     3DO                   0.0000000000        0.0000000000 0.0000000000
##     3DS                   0.0000000000        0.0000000000 0.0000000000
##     DC                    0.0000000000        0.0000000000 0.0000000000
##     DS                    0.0000000000        0.0000000000 0.0000000000
##     GB                    0.0000000000        0.0000000000 0.0000000000
##     GBA                   0.0000000000        0.0000000000 0.0000000000
##     GC                    0.0000000000        0.0000000000 0.0000000000
##     GEN                   0.0000000000        0.0000000000 0.0000000000
##     GG                    0.0000000000        0.0000000000 0.0000000000
##     N64                   0.0000000000        0.0000000000 0.0000000000
##     NES                   0.0000000000        0.0000000000 0.0000000000
##     NG                    0.0000000000        0.0000000000 0.0000000000
##     PC                    0.0000000000        0.0010416667 0.0000000000
##     PCFX                  0.0000000000        0.0000000000 0.0000000000
##     PS                    0.0058528428        0.0000000000 0.0000000000
##     PS2                   0.0000000000        0.0000000000 0.0000000000
##     PS3                   0.0000000000        0.0000000000 0.0000000000
##     PS4                   0.0000000000        0.0000000000 0.0000000000
##     PSP                   0.0000000000        0.0000000000 0.0000000000
##     PSV                   0.0000000000        0.0000000000 0.0000000000
##     SAT                   0.0000000000        0.0000000000 0.0000000000
##     SCD                   0.0000000000        0.0000000000 0.0000000000
##     SNES                  0.0000000000        0.0000000000 0.0000000000
##     TG16                  0.0000000000        0.0000000000 0.0000000000
##     Wii                   0.0000000000        0.0000000000 0.0000000000
##     WiiU                  0.0000000000        0.0000000000 0.0000000000
##     WS                    0.0000000000        0.0000000000 0.0000000000
##     X360                  0.0000000000        0.0000000000 0.0000000000
##     XB                    0.0000000000        0.0000000000 0.0000000000
##     XOne                  0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform     Boost On          BPS Brash Entertainment     Broccoli
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000        0.0018492834 0.0009246417
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NES  0.0000000000 0.0102040816        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000        0.0013882462 0.0023137436
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  0.0008244023 0.0000000000        0.0000000000 0.0107172300
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0048426150
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0041841004        0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.0015094340 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.0007905138 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform    BushiRoad       Capcom         Cave CBS Electronics
##     2600 0.0000000000 0.0000000000 0.0000000000    0.0075187970
##     3DO  0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0294695481 0.0000000000    0.0000000000
##     DC   0.0000000000 0.0576923077 0.0000000000    0.0000000000
##     DS   0.0000000000 0.0115580213 0.0004623209    0.0000000000
##     GB   0.0000000000 0.0306122449 0.0000000000    0.0000000000
##     GBA  0.0000000000 0.0267639903 0.0000000000    0.0000000000
##     GC   0.0000000000 0.0341726619 0.0000000000    0.0000000000
##     GEN  0.0000000000 0.0740740741 0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     N64  0.0000000000 0.0031347962 0.0000000000    0.0000000000
##     NES  0.0000000000 0.1224489796 0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     PC   0.0000000000 0.0166666667 0.0000000000    0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     PS   0.0000000000 0.0150501672 0.0000000000    0.0000000000
##     PS2  0.0000000000 0.0282276724 0.0000000000    0.0000000000
##     PS3  0.0000000000 0.0316027088 0.0000000000    0.0000000000
##     PS4  0.0000000000 0.0476190476 0.0000000000    0.0000000000
##     PSP  0.0008244023 0.0214344600 0.0000000000    0.0000000000
##     PSV  0.0000000000 0.0072639225 0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0520231214 0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     SNES 0.0000000000 0.0502092050 0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     Wii  0.0000000000 0.0135849057 0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0139860140 0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     X360 0.0000000000 0.0276679842 0.0071146245    0.0000000000
##     XB   0.0000000000 0.0194174757 0.0000000000    0.0000000000
##     XOne 0.0000000000 0.0234741784 0.0000000000    0.0000000000
##         Publisher
## Platform          CCP CDV Software Entertainment     ChunSoft
##     2600 0.0000000000               0.0000000000 0.0000000000
##     3DO  0.0000000000               0.0000000000 0.0000000000
##     3DS  0.0000000000               0.0000000000 0.0019646365
##     DC   0.0000000000               0.0000000000 0.0000000000
##     DS   0.0000000000               0.0013869626 0.0013869626
##     GB   0.0000000000               0.0000000000 0.0102040816
##     GBA  0.0000000000               0.0000000000 0.0000000000
##     GC   0.0000000000               0.0000000000 0.0000000000
##     GEN  0.0000000000               0.0000000000 0.0000000000
##     GG   0.0000000000               0.0000000000 0.0000000000
##     N64  0.0000000000               0.0000000000 0.0031347962
##     NES  0.0000000000               0.0000000000 0.0000000000
##     NG   0.0000000000               0.0000000000 0.0000000000
##     PC   0.0010416667               0.0020833333 0.0000000000
##     PCFX 0.0000000000               0.0000000000 0.0000000000
##     PS   0.0000000000               0.0000000000 0.0008361204
##     PS2  0.0000000000               0.0000000000 0.0004627487
##     PS3  0.0000000000               0.0000000000 0.0000000000
##     PS4  0.0000000000               0.0000000000 0.0000000000
##     PSP  0.0000000000               0.0000000000 0.0016488046
##     PSV  0.0000000000               0.0000000000 0.0048426150
##     SAT  0.0000000000               0.0000000000 0.0057803468
##     SCD  0.0000000000               0.0000000000 0.0000000000
##     SNES 0.0000000000               0.0000000000 0.0167364017
##     TG16 0.0000000000               0.0000000000 0.0000000000
##     Wii  0.0000000000               0.0007547170 0.0000000000
##     WiiU 0.0000000000               0.0000000000 0.0000000000
##     WS   0.0000000000               0.0000000000 0.0000000000
##     X360 0.0000000000               0.0000000000 0.0007905138
##     XB   0.0000000000               0.0000000000 0.0000000000
##     XOne 0.0000000000               0.0000000000 0.0000000000
##         Publisher
## Platform City Interactive Cloud Imperium Games Corporation Coconuts Japan
##     2600     0.0000000000                     0.0000000000   0.0000000000
##     3DO      0.0000000000                     0.0000000000   0.0000000000
##     3DS      0.0000000000                     0.0000000000   0.0000000000
##     DC       0.0000000000                     0.0000000000   0.0000000000
##     DS       0.0041608877                     0.0000000000   0.0000000000
##     GB       0.0000000000                     0.0000000000   0.0000000000
##     GBA      0.0000000000                     0.0000000000   0.0000000000
##     GC       0.0000000000                     0.0000000000   0.0000000000
##     GEN      0.0000000000                     0.0000000000   0.0000000000
##     GG       0.0000000000                     0.0000000000   0.0000000000
##     N64      0.0000000000                     0.0000000000   0.0000000000
##     NES      0.0000000000                     0.0000000000   0.0000000000
##     NG       0.0000000000                     0.0000000000   0.0000000000
##     PC       0.0031250000                     0.0000000000   0.0000000000
##     PCFX     0.0000000000                     0.0000000000   0.0000000000
##     PS       0.0000000000                     0.0000000000   0.0008361204
##     PS2      0.0000000000                     0.0000000000   0.0000000000
##     PS3      0.0022573363                     0.0007524454   0.0000000000
##     PS4      0.0000000000                     0.0000000000   0.0000000000
##     PSP      0.0000000000                     0.0000000000   0.0000000000
##     PSV      0.0000000000                     0.0000000000   0.0000000000
##     SAT      0.0000000000                     0.0000000000   0.0000000000
##     SCD      0.0000000000                     0.0000000000   0.0000000000
##     SNES     0.0000000000                     0.0000000000   0.0041841004
##     TG16     0.0000000000                     0.0000000000   0.0000000000
##     Wii      0.0015094340                     0.0000000000   0.0000000000
##     WiiU     0.0000000000                     0.0000000000   0.0000000000
##     WS       0.0000000000                     0.0000000000   0.0000000000
##     X360     0.0015810277                     0.0007905138   0.0000000000
##     XB       0.0000000000                     0.0000000000   0.0000000000
##     XOne     0.0000000000                     0.0000000000   0.0000000000
##         Publisher
## Platform  Codemasters Codemasters Online CokeM Interactive       Coleco
##     2600 0.0000000000       0.0000000000      0.0000000000 0.0375939850
##     3DO  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     3DS  0.0019646365       0.0000000000      0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     DS   0.0032362460       0.0000000000      0.0004623209 0.0000000000
##     GB   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     GBA  0.0024330900       0.0000000000      0.0000000000 0.0000000000
##     GC   0.0017985612       0.0000000000      0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     N64  0.0031347962       0.0000000000      0.0000000000 0.0000000000
##     NES  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     PC   0.0281250000       0.0010416667      0.0000000000 0.0000000000
##     PCFX 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     PS   0.0075250836       0.0000000000      0.0000000000 0.0000000000
##     PS2  0.0078667284       0.0000000000      0.0000000000 0.0000000000
##     PS3  0.0195635816       0.0000000000      0.0000000000 0.0000000000
##     PS4  0.0089285714       0.0000000000      0.0000000000 0.0000000000
##     PSP  0.0049464138       0.0000000000      0.0000000000 0.0000000000
##     PSV  0.0024213075       0.0000000000      0.0000000000 0.0000000000
##     SAT  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     SNES 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     Wii  0.0045283019       0.0000000000      0.0000000000 0.0000000000
##     WiiU 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     X360 0.0213438735       0.0000000000      0.0000000000 0.0000000000
##     XB   0.0182038835       0.0000000000      0.0000000000 0.0000000000
##     XOne 0.0140845070       0.0000000000      0.0000000000 0.0000000000
##         Publisher
## Platform      Comfort     Commseed      Compile Compile Heart
##     2600 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     DS   0.0000000000 0.0004623209 0.0000000000  0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     N64  0.0000000000 0.0000000000 0.0031347962  0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PS   0.0000000000 0.0000000000 0.0008361204  0.0000000000
##     PS2  0.0009254975 0.0000000000 0.0000000000  0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000  0.0045146727
##     PS4  0.0000000000 0.0000000000 0.0000000000  0.0029761905
##     PSP  0.0032976092 0.0000000000 0.0000000000  0.0016488046
##     PSV  0.0000000000 0.0000000000 0.0000000000  0.0193704600
##     SAT  0.0000000000 0.0000000000 0.0115606936  0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0083682008  0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000  0.0023715415
##     XB   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##         Publisher
## Platform Conspiracy Entertainment Core Design Ltd. CPG Products
##     2600             0.0000000000     0.0000000000 0.0075187970
##     3DO              0.0000000000     0.0000000000 0.0000000000
##     3DS              0.0000000000     0.0000000000 0.0000000000
##     DC               0.0000000000     0.0000000000 0.0000000000
##     DS               0.0013869626     0.0000000000 0.0000000000
##     GB               0.0000000000     0.0000000000 0.0000000000
##     GBA              0.0024330900     0.0000000000 0.0000000000
##     GC               0.0000000000     0.0000000000 0.0000000000
##     GEN              0.0000000000     0.0000000000 0.0000000000
##     GG               0.0000000000     0.0000000000 0.0000000000
##     N64              0.0000000000     0.0000000000 0.0000000000
##     NES              0.0000000000     0.0000000000 0.0000000000
##     NG               0.0000000000     0.0000000000 0.0000000000
##     PC               0.0000000000     0.0000000000 0.0000000000
##     PCFX             0.0000000000     0.0000000000 0.0000000000
##     PS               0.0008361204     0.0016722408 0.0000000000
##     PS2              0.0004627487     0.0000000000 0.0000000000
##     PS3              0.0007524454     0.0000000000 0.0000000000
##     PS4              0.0000000000     0.0000000000 0.0000000000
##     PSP              0.0008244023     0.0000000000 0.0000000000
##     PSV              0.0000000000     0.0000000000 0.0000000000
##     SAT              0.0000000000     0.0000000000 0.0000000000
##     SCD              0.0000000000     0.0000000000 0.0000000000
##     SNES             0.0000000000     0.0000000000 0.0000000000
##     TG16             0.0000000000     0.0000000000 0.0000000000
##     Wii              0.0030188679     0.0000000000 0.0000000000
##     WiiU             0.0000000000     0.0000000000 0.0000000000
##     WS               0.0000000000     0.0000000000 0.0000000000
##     X360             0.0007905138     0.0000000000 0.0000000000
##     XB               0.0000000000     0.0000000000 0.0000000000
##     XOne             0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform Crave Entertainment Creative Core  Crimson Cow Crystal Dynamics
##     2600        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     3DO         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     3DS         0.0078585462  0.0000000000 0.0000000000     0.0000000000
##     DC          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     DS          0.0023116043  0.0013869626 0.0000000000     0.0000000000
##     GB          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     GBA         0.0085158151  0.0000000000 0.0000000000     0.0000000000
##     GC          0.0071942446  0.0000000000 0.0000000000     0.0000000000
##     GEN         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     GG          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     N64         0.0156739812  0.0000000000 0.0000000000     0.0000000000
##     NES         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     NG          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     PC          0.0000000000  0.0000000000 0.0020833333     0.0000000000
##     PCFX        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     PS          0.0041806020  0.0000000000 0.0000000000     0.0041806020
##     PS2         0.0037019898  0.0000000000 0.0000000000     0.0000000000
##     PS3         0.0022573363  0.0000000000 0.0000000000     0.0000000000
##     PS4         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     PSP         0.0032976092  0.0000000000 0.0000000000     0.0000000000
##     PSV         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     SAT         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     SCD         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     SNES        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     TG16        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     Wii         0.0098113208  0.0000000000 0.0000000000     0.0000000000
##     WiiU        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     WS          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     X360        0.0031620553  0.0000000000 0.0000000000     0.0000000000
##     XB          0.0109223301  0.0000000000 0.0000000000     0.0000000000
##     XOne        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##         Publisher
## Platform      CTO SpA Culture Brain Culture Publishers   CyberFront
##     2600 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     3DO  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     DC   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     DS   0.0000000000  0.0009246417       0.0000000000 0.0000000000
##     GB   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GC   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GEN  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PC   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PCFX 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PS   0.0016722408  0.0000000000       0.0008361204 0.0000000000
##     PS2  0.0000000000  0.0000000000       0.0000000000 0.0009254975
##     PS3  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PSP  0.0000000000  0.0000000000       0.0000000000 0.0065952185
##     PSV  0.0000000000  0.0000000000       0.0000000000 0.0048426150
##     SAT  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000  0.0083682008       0.0000000000 0.0000000000
##     TG16 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     WiiU 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     X360 0.0000000000  0.0000000000       0.0000000000 0.0015810277
##     XB   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     XOne 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform      Cygames  D3Publisher     Daedalic Daedalic Entertainment
##     2600 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DS  0.0000000000 0.0137524558 0.0000000000           0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     DS   0.0000000000 0.0221914008 0.0000000000           0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GBA  0.0000000000 0.0024330900 0.0000000000           0.0000000000
##     GC   0.0000000000 0.0017985612 0.0000000000           0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PC   0.0000000000 0.0000000000 0.0031250000           0.0031250000
##     PCFX 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS   0.0000000000 0.0033444816 0.0000000000           0.0000000000
##     PS2  0.0000000000 0.0111059695 0.0000000000           0.0000000000
##     PS3  0.0000000000 0.0105342363 0.0000000000           0.0000000000
##     PS4  0.0000000000 0.0059523810 0.0000000000           0.0000000000
##     PSP  0.0000000000 0.0263808739 0.0000000000           0.0000000000
##     PSV  0.0024213075 0.0217917676 0.0000000000           0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     Wii  0.0000000000 0.0166037736 0.0000000000           0.0000000000
##     WiiU 0.0000000000 0.0209790210 0.0000000000           0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     X360 0.0000000000 0.0126482213 0.0000000000           0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##         Publisher
## Platform        Daito     Data Age Data Design Interactive    Data East
##     2600 0.0000000000 0.0150375940            0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PS2  0.0009254975 0.0000000000            0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PSP  0.0016488046 0.0000000000            0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000            0.0000000000 0.0057803468
##     SCD  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000            0.0000000000 0.0041841004
##     TG16 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000            0.0022641509 0.0000000000
##     WiiU 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##         Publisher
## Platform Datam Polystar  Deep Silver Destination Software, Inc
##     2600   0.0000000000 0.0000000000              0.0000000000
##     3DO    0.0000000000 0.0000000000              0.0000000000
##     3DS    0.0000000000 0.0039292731              0.0000000000
##     DC     0.0000000000 0.0000000000              0.0000000000
##     DS     0.0000000000 0.0097087379              0.0023116043
##     GB     0.0000000000 0.0000000000              0.0000000000
##     GBA    0.0000000000 0.0000000000              0.0085158151
##     GC     0.0000000000 0.0000000000              0.0000000000
##     GEN    0.0000000000 0.0000000000              0.0000000000
##     GG     0.0000000000 0.0000000000              0.0000000000
##     N64    0.0000000000 0.0000000000              0.0000000000
##     NES    0.0000000000 0.0000000000              0.0000000000
##     NG     0.0000000000 0.0000000000              0.0000000000
##     PC     0.0000000000 0.0218750000              0.0000000000
##     PCFX   0.0000000000 0.0000000000              0.0000000000
##     PS     0.0000000000 0.0000000000              0.0000000000
##     PS2    0.0009254975 0.0000000000              0.0000000000
##     PS3    0.0000000000 0.0150489090              0.0000000000
##     PS4    0.0000000000 0.0297619048              0.0000000000
##     PSP    0.0000000000 0.0024732069              0.0000000000
##     PSV    0.0000000000 0.0000000000              0.0000000000
##     SAT    0.0000000000 0.0000000000              0.0000000000
##     SCD    0.0000000000 0.0000000000              0.0000000000
##     SNES   0.0000000000 0.0000000000              0.0000000000
##     TG16   0.0000000000 0.0000000000              0.0000000000
##     Wii    0.0000000000 0.0098113208              0.0000000000
##     WiiU   0.0000000000 0.0069930070              0.0000000000
##     WS     0.0000000000 0.0000000000              0.0000000000
##     X360   0.0000000000 0.0173913043              0.0000000000
##     XB     0.0000000000 0.0036407767              0.0000000000
##     XOne   0.0000000000 0.0281690141              0.0000000000
##         Publisher
## Platform    Destineer  Detn8 Games Devolver Digital DHM Interactive
##     2600 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     DC   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     DS   0.0101710587 0.0000000000     0.0000000000    0.0004623209
##     GB   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GBA  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GC   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GEN  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     N64  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     NES  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PC   0.0010416667 0.0000000000     0.0010416667    0.0000000000
##     PCFX 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PS   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PS2  0.0004627487 0.0000000000     0.0000000000    0.0000000000
##     PS3  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PS4  0.0000000000 0.0000000000     0.0029761905    0.0000000000
##     PSP  0.0016488046 0.0000000000     0.0000000000    0.0016488046
##     PSV  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     SNES 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     Wii  0.0143396226 0.0007547170     0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     X360 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     XB   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     XOne 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##         Publisher
## Platform     DigiCube Disney Interactive Studios       Dorart
##     2600 0.0000000000               0.0000000000 0.0000000000
##     3DO  0.0000000000               0.0000000000 0.0000000000
##     3DS  0.0000000000               0.0137524558 0.0000000000
##     DC   0.0000000000               0.0000000000 0.0000000000
##     DS   0.0000000000               0.0272769302 0.0000000000
##     GB   0.0000000000               0.0000000000 0.0000000000
##     GBA  0.0000000000               0.0231143552 0.0000000000
##     GC   0.0000000000               0.0053956835 0.0000000000
##     GEN  0.0000000000               0.0000000000 0.0000000000
##     GG   0.0000000000               0.0000000000 0.0000000000
##     N64  0.0000000000               0.0000000000 0.0000000000
##     NES  0.0000000000               0.0000000000 0.0000000000
##     NG   0.0000000000               0.0000000000 0.0000000000
##     PC   0.0000000000               0.0041666667 0.0000000000
##     PCFX 0.0000000000               0.0000000000 0.0000000000
##     PS   0.0000000000               0.0000000000 0.0000000000
##     PS2  0.0004627487               0.0078667284 0.0000000000
##     PS3  0.0000000000               0.0165537998 0.0000000000
##     PS4  0.0000000000               0.0059523810 0.0000000000
##     PSP  0.0000000000               0.0082440231 0.0016488046
##     PSV  0.0000000000               0.0048426150 0.0000000000
##     SAT  0.0000000000               0.0000000000 0.0000000000
##     SCD  0.0000000000               0.0000000000 0.0000000000
##     SNES 0.0000000000               0.0000000000 0.0000000000
##     TG16 0.0000000000               0.0000000000 0.0000000000
##     Wii  0.0000000000               0.0294339623 0.0000000000
##     WiiU 0.0000000000               0.0419580420 0.0000000000
##     WS   0.0000000000               0.0000000000 0.0000000000
##     X360 0.0000000000               0.0166007905 0.0000000000
##     XB   0.0000000000               0.0048543689 0.0000000000
##     XOne 0.0000000000               0.0140845070 0.0000000000
##         Publisher
## Platform dramatic create DreamCatcher Interactive DreamWorks Interactive
##     2600    0.0000000000             0.0000000000           0.0000000000
##     3DO     0.0000000000             0.0000000000           0.0000000000
##     3DS     0.0000000000             0.0000000000           0.0000000000
##     DC      0.0000000000             0.0000000000           0.0000000000
##     DS      0.0000000000             0.0046232085           0.0000000000
##     GB      0.0000000000             0.0000000000           0.0000000000
##     GBA     0.0000000000             0.0000000000           0.0000000000
##     GC      0.0000000000             0.0000000000           0.0000000000
##     GEN     0.0000000000             0.0000000000           0.0000000000
##     GG      0.0000000000             0.0000000000           0.0000000000
##     N64     0.0000000000             0.0000000000           0.0000000000
##     NES     0.0000000000             0.0000000000           0.0000000000
##     NG      0.0000000000             0.0000000000           0.0000000000
##     PC      0.0000000000             0.0020833333           0.0000000000
##     PCFX    0.0000000000             0.0000000000           0.0000000000
##     PS      0.0000000000             0.0000000000           0.0008361204
##     PS2     0.0000000000             0.0009254975           0.0000000000
##     PS3     0.0000000000             0.0000000000           0.0000000000
##     PS4     0.0000000000             0.0000000000           0.0000000000
##     PSP     0.0000000000             0.0000000000           0.0000000000
##     PSV     0.0121065375             0.0000000000           0.0000000000
##     SAT     0.0000000000             0.0000000000           0.0000000000
##     SCD     0.0000000000             0.0000000000           0.0000000000
##     SNES    0.0000000000             0.0000000000           0.0000000000
##     TG16    0.0000000000             0.0000000000           0.0000000000
##     Wii     0.0000000000             0.0000000000           0.0000000000
##     WiiU    0.0000000000             0.0000000000           0.0000000000
##     WS      0.0000000000             0.0000000000           0.0000000000
##     X360    0.0000000000             0.0000000000           0.0000000000
##     XB      0.0000000000             0.0036407767           0.0000000000
##     XOne    0.0000000000             0.0000000000           0.0000000000
##         Publisher
## Platform    DSI Games DTP Entertainment Dusenberry Martin Racing
##     2600 0.0000000000      0.0000000000             0.0000000000
##     3DO  0.0000000000      0.0000000000             0.0000000000
##     3DS  0.0000000000      0.0039292731             0.0000000000
##     DC   0.0000000000      0.0000000000             0.0000000000
##     DS   0.0023116043      0.0041608877             0.0000000000
##     GB   0.0000000000      0.0000000000             0.0000000000
##     GBA  0.0012165450      0.0024330900             0.0000000000
##     GC   0.0000000000      0.0000000000             0.0000000000
##     GEN  0.0000000000      0.0000000000             0.0000000000
##     GG   0.0000000000      0.0000000000             0.0000000000
##     N64  0.0000000000      0.0000000000             0.0000000000
##     NES  0.0000000000      0.0000000000             0.0000000000
##     NG   0.0000000000      0.0000000000             0.0000000000
##     PC   0.0000000000      0.0135416667             0.0000000000
##     PCFX 0.0000000000      0.0000000000             0.0000000000
##     PS   0.0000000000      0.0000000000             0.0000000000
##     PS2  0.0000000000      0.0004627487             0.0000000000
##     PS3  0.0000000000      0.0030097818             0.0000000000
##     PS4  0.0000000000      0.0000000000             0.0029761905
##     PSP  0.0000000000      0.0000000000             0.0000000000
##     PSV  0.0000000000      0.0000000000             0.0000000000
##     SAT  0.0000000000      0.0000000000             0.0000000000
##     SCD  0.0000000000      0.0000000000             0.0000000000
##     SNES 0.0000000000      0.0000000000             0.0000000000
##     TG16 0.0000000000      0.0000000000             0.0000000000
##     Wii  0.0000000000      0.0052830189             0.0000000000
##     WiiU 0.0000000000      0.0000000000             0.0000000000
##     WS   0.0000000000      0.0000000000             0.0000000000
##     X360 0.0000000000      0.0055335968             0.0000000000
##     XB   0.0000000000      0.0000000000             0.0000000000
##     XOne 0.0000000000      0.0000000000             0.0046948357
##         Publisher
## Platform     EA Games Easy Interactive        Ecole         Edia
##     2600 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000     0.0009246417 0.0000000000 0.0000000000
##     GB   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000     0.0000000000 0.0004627487 0.0000000000
##     PS3  0.0007524454     0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000     0.0000000000 0.0000000000 0.0016488046
##     PSV  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Eidos Interactive Electronic Arts Electronic Arts Victor
##     2600      0.0000000000    0.0000000000           0.0000000000
##     3DO       0.0000000000    0.0000000000           0.0000000000
##     3DS       0.0000000000    0.0137524558           0.0000000000
##     DC        0.0384615385    0.0000000000           0.0000000000
##     DS        0.0097087379    0.0365233472           0.0000000000
##     GB        0.0102040816    0.0102040816           0.0000000000
##     GBA       0.0024330900    0.0486618005           0.0000000000
##     GC        0.0143884892    0.1618705036           0.0000000000
##     GEN       0.0000000000    0.0000000000           0.0000000000
##     GG        0.0000000000    0.0000000000           0.0000000000
##     N64       0.0000000000    0.0721003135           0.0000000000
##     NES       0.0000000000    0.0000000000           0.0000000000
##     NG        0.0000000000    0.0000000000           0.0000000000
##     PC        0.0291666667    0.1541666667           0.0000000000
##     PCFX      0.0000000000    0.0000000000           0.0000000000
##     PS        0.0234113712    0.0886287625           0.0016722408
##     PS2       0.0203609440    0.0920869968           0.0000000000
##     PS3       0.0052671181    0.1068472536           0.0000000000
##     PS4       0.0000000000    0.0773809524           0.0000000000
##     PSP       0.0057708162    0.0593569662           0.0000000000
##     PSV       0.0000000000    0.0145278450           0.0000000000
##     SAT       0.0000000000    0.0057803468           0.0000000000
##     SCD       0.0000000000    0.0000000000           0.0000000000
##     SNES      0.0000000000    0.0000000000           0.0000000000
##     TG16      0.0000000000    0.0000000000           0.0000000000
##     Wii       0.0090566038    0.0679245283           0.0000000000
##     WiiU      0.0000000000    0.0279720280           0.0000000000
##     WS        0.0000000000    0.0000000000           0.0000000000
##     X360      0.0110671937    0.1320158103           0.0000000000
##     XB        0.0291262136    0.1492718447           0.0000000000
##     XOne      0.0000000000    0.1267605634           0.0000000000
##         Publisher
## Platform          Elf        Elite Empire Interactive       Encore
##     2600 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000       0.0027739251 0.0000000000
##     GB   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000       0.0024330900 0.0000000000
##     GC   0.0000000000 0.0000000000       0.0053956835 0.0017985612
##     GEN  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000       0.0041666667 0.0010416667
##     PCFX 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS   0.0000000000 0.0008361204       0.0050167224 0.0008361204
##     PS2  0.0000000000 0.0000000000       0.0074039796 0.0000000000
##     PS3  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000       0.0024732069 0.0000000000
##     PSV  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT  0.0115606936 0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000       0.0007905138 0.0000000000
##     XB   0.0000000000 0.0000000000       0.0133495146 0.0012135922
##     XOne 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Enix Corporation Enjoy Gaming ltd.   Enterbrain
##     2600     0.0000000000      0.0000000000 0.0000000000
##     3DO      0.0000000000      0.0000000000 0.0000000000
##     3DS      0.0000000000      0.0000000000 0.0000000000
##     DC       0.0000000000      0.0000000000 0.0000000000
##     DS       0.0000000000      0.0004623209 0.0013869626
##     GB       0.0408163265      0.0000000000 0.0000000000
##     GBA      0.0012165450      0.0000000000 0.0012165450
##     GC       0.0000000000      0.0000000000 0.0000000000
##     GEN      0.0000000000      0.0000000000 0.0000000000
##     GG       0.0000000000      0.0000000000 0.0000000000
##     N64      0.0031347962      0.0000000000 0.0000000000
##     NES      0.0306122449      0.0000000000 0.0000000000
##     NG       0.0000000000      0.0000000000 0.0000000000
##     PC       0.0000000000      0.0000000000 0.0000000000
##     PCFX     0.0000000000      0.0000000000 0.0000000000
##     PS       0.0050167224      0.0000000000 0.0008361204
##     PS2      0.0027764924      0.0000000000 0.0041647385
##     PS3      0.0000000000      0.0000000000 0.0000000000
##     PS4      0.0000000000      0.0000000000 0.0000000000
##     PSP      0.0000000000      0.0000000000 0.0008244023
##     PSV      0.0000000000      0.0000000000 0.0000000000
##     SAT      0.0000000000      0.0000000000 0.0000000000
##     SCD      0.0000000000      0.0000000000 0.0000000000
##     SNES     0.0376569038      0.0000000000 0.0000000000
##     TG16     0.0000000000      0.0000000000 0.0000000000
##     Wii      0.0000000000      0.0000000000 0.0000000000
##     WiiU     0.0000000000      0.0000000000 0.0000000000
##     WS       0.0000000000      0.0000000000 0.0000000000
##     X360     0.0000000000      0.0000000000 0.0000000000
##     XB       0.0000000000      0.0000000000 0.0000000000
##     XOne     0.0000000000      0.0000000000 0.0000000000
##         Publisher
## Platform EON Digital Entertainment   Epic Games        Epoch       Ertain
##     2600              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS                0.0000000000 0.0000000000 0.0000000000 0.0004623209
##     GB                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64               0.0000000000 0.0000000000 0.0031347962 0.0000000000
##     NES               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS                0.0008361204 0.0000000000 0.0000000000 0.0000000000
##     PS2               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4               0.0000000000 0.0029761905 0.0000000000 0.0000000000
##     PSP               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES              0.0000000000 0.0000000000 0.0251046025 0.0000000000
##     TG16              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform          ESP Essential Games Evolution Games Evolved Games
##     2600 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     3DO  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     3DS  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     DC   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     DS   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GB   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GBA  0.0012165450    0.0000000000    0.0000000000  0.0000000000
##     GC   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GEN  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GG   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     N64  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     NES  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     NG   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PC   0.0000000000    0.0000000000    0.0000000000  0.0010416667
##     PCFX 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PS   0.0008361204    0.0000000000    0.0008361204  0.0000000000
##     PS2  0.0000000000    0.0013882462    0.0000000000  0.0009254975
##     PS3  0.0000000000    0.0000000000    0.0000000000  0.0007524454
##     PS4  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PSP  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PSV  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     SAT  0.0173410405    0.0000000000    0.0000000000  0.0000000000
##     SCD  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     SNES 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     TG16 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     Wii  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     WiiU 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     WS   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     X360 0.0000000000    0.0000000000    0.0000000000  0.0015810277
##     XB   0.0000000000    0.0000000000    0.0000000000  0.0024271845
##     XOne 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##         Publisher
## Platform Excalibur Publishing Experience Inc. Extreme Entertainment Group
##     2600         0.0000000000    0.0000000000                0.0000000000
##     3DO          0.0000000000    0.0000000000                0.0000000000
##     3DS          0.0019646365    0.0000000000                0.0019646365
##     DC           0.0000000000    0.0000000000                0.0000000000
##     DS           0.0000000000    0.0000000000                0.0000000000
##     GB           0.0000000000    0.0000000000                0.0000000000
##     GBA          0.0000000000    0.0000000000                0.0000000000
##     GC           0.0000000000    0.0000000000                0.0000000000
##     GEN          0.0000000000    0.0000000000                0.0000000000
##     GG           0.0000000000    0.0000000000                0.0000000000
##     N64          0.0000000000    0.0000000000                0.0000000000
##     NES          0.0000000000    0.0000000000                0.0000000000
##     NG           0.0000000000    0.0000000000                0.0000000000
##     PC           0.0031250000    0.0000000000                0.0000000000
##     PCFX         0.0000000000    0.0000000000                0.0000000000
##     PS           0.0000000000    0.0000000000                0.0000000000
##     PS2          0.0000000000    0.0000000000                0.0000000000
##     PS3          0.0000000000    0.0000000000                0.0000000000
##     PS4          0.0000000000    0.0000000000                0.0000000000
##     PSP          0.0000000000    0.0000000000                0.0000000000
##     PSV          0.0000000000    0.0072639225                0.0000000000
##     SAT          0.0000000000    0.0000000000                0.0000000000
##     SCD          0.0000000000    0.0000000000                0.0000000000
##     SNES         0.0000000000    0.0000000000                0.0000000000
##     TG16         0.0000000000    0.0000000000                0.0000000000
##     Wii          0.0000000000    0.0000000000                0.0000000000
##     WiiU         0.0000000000    0.0000000000                0.0000000000
##     WS           0.0000000000    0.0000000000                0.0000000000
##     X360         0.0000000000    0.0000000000                0.0000000000
##     XB           0.0000000000    0.0000000000                0.0000000000
##     XOne         0.0000000000    0.0000000000                0.0000000000
##         Publisher
## Platform Falcom Corporation       Fields Flashpoint Games  Flight-Plan
##     2600       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DO        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DS        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DC         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DS         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GB         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GBA        0.0000000000 0.0000000000     0.0012165450 0.0000000000
##     GC         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GEN        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GG         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     N64        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     NES        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     NG         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PC         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PCFX       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS2        0.0000000000 0.0000000000     0.0000000000 0.0009254975
##     PS3        0.0022573363 0.0007524454     0.0000000000 0.0000000000
##     PS4        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PSP        0.0098928277 0.0000000000     0.0000000000 0.0000000000
##     PSV        0.0024213075 0.0000000000     0.0000000000 0.0000000000
##     SAT        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SCD        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SNES       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     TG16       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     Wii        0.0000000000 0.0000000000     0.0007547170 0.0000000000
##     WiiU       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     WS         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     X360       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     XB         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     XOne       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform Focus Home Interactive Focus Multimedia       fonfun
##     2600           0.0000000000     0.0000000000 0.0000000000
##     3DO            0.0000000000     0.0000000000 0.0000000000
##     3DS            0.0000000000     0.0000000000 0.0000000000
##     DC             0.0000000000     0.0000000000 0.0000000000
##     DS             0.0023116043     0.0000000000 0.0000000000
##     GB             0.0000000000     0.0000000000 0.0000000000
##     GBA            0.0000000000     0.0000000000 0.0000000000
##     GC             0.0000000000     0.0000000000 0.0000000000
##     GEN            0.0000000000     0.0000000000 0.0000000000
##     GG             0.0000000000     0.0000000000 0.0000000000
##     N64            0.0000000000     0.0000000000 0.0000000000
##     NES            0.0000000000     0.0000000000 0.0000000000
##     NG             0.0000000000     0.0000000000 0.0000000000
##     PC             0.0291666667     0.0031250000 0.0000000000
##     PCFX           0.0000000000     0.0000000000 0.0000000000
##     PS             0.0000000000     0.0000000000 0.0000000000
##     PS2            0.0000000000     0.0000000000 0.0000000000
##     PS3            0.0037622272     0.0000000000 0.0000000000
##     PS4            0.0178571429     0.0000000000 0.0000000000
##     PSP            0.0000000000     0.0000000000 0.0008244023
##     PSV            0.0024213075     0.0000000000 0.0000000000
##     SAT            0.0000000000     0.0000000000 0.0000000000
##     SCD            0.0000000000     0.0000000000 0.0000000000
##     SNES           0.0000000000     0.0000000000 0.0000000000
##     TG16           0.0000000000     0.0000000000 0.0000000000
##     Wii            0.0015094340     0.0000000000 0.0000000000
##     WiiU           0.0000000000     0.0000000000 0.0000000000
##     WS             0.0000000000     0.0000000000 0.0000000000
##     X360           0.0063241107     0.0000000000 0.0000000000
##     XB             0.0000000000     0.0000000000 0.0000000000
##     XOne           0.0140845070     0.0000000000 0.0000000000
##         Publisher
## Platform Foreign Media Games    Fortyfive Fox Interactive From Software
##     2600        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     3DO         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     3DS         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     DC          0.0000000000 0.0192307692    0.0000000000  0.0000000000
##     DS          0.0041608877 0.0000000000    0.0000000000  0.0004623209
##     GB          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GBA         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GC          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GEN         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GG          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     N64         0.0000000000 0.0000000000    0.0031347962  0.0000000000
##     NES         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     NG          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PC          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PCFX        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PS          0.0000000000 0.0000000000    0.0058528428  0.0050167224
##     PS2         0.0000000000 0.0000000000    0.0000000000  0.0004627487
##     PS3         0.0000000000 0.0000000000    0.0000000000  0.0007524454
##     PS4         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PSP         0.0000000000 0.0000000000    0.0000000000  0.0041220115
##     PSV         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     SAT         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     SCD         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     SNES        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     TG16        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     Wii         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     WiiU        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     WS          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     X360        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     XB          0.0000000000 0.0000000000    0.0000000000  0.0012135922
##     XOne        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##         Publisher
## Platform         Fuji Funbox Media       Funcom      FunSoft       Funsta
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0039292731 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0009246417
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0020833333 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0008361204 0.0000000000 0.0000000000 0.0008361204 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0007524454 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0008244023
##     PSV  0.0000000000 0.0024213075 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0015094340 0.0000000000 0.0000000000 0.0007547170
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform        FuRyu FuRyu Corporation        G.Rev         Gaga
##     2600 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0275049116      0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DS   0.0004623209      0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000      0.0029761905 0.0000000000 0.0000000000
##     PSP  0.0049464138      0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0145278450      0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000      0.0000000000 0.0000000000 0.0057803468
##     SCD  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000      0.0000000000 0.0015810277 0.0000000000
##     XB   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Gainax Network Systems       Gakken    Game Arts Game Factory
##     2600           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS             0.0000000000 0.0009246417 0.0000000000 0.0083217753
##     GB             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA            0.0000000000 0.0000000000 0.0000000000 0.0060827251
##     GC             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN            0.0000000000 0.0000000000 0.0370370370 0.0000000000
##     GG             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS             0.0016722408 0.0000000000 0.0000000000 0.0000000000
##     PS2            0.0000000000 0.0000000000 0.0000000000 0.0009254975
##     PS3            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP            0.0000000000 0.0000000000 0.0000000000 0.0016488046
##     PSV            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii            0.0000000000 0.0000000000 0.0000000000 0.0037735849
##     WiiU           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    Game Life   Gamebridge     Gamecock     Gameloft
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0009246417 0.0000000000 0.0004623209 0.0004623209
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0010416667 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0007524454 0.0007524454 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0007905138 0.0007905138 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform GameMill Entertainment      GameTek Gathering of Developers
##     2600           0.0000000000 0.0000000000            0.0000000000
##     3DO            0.0000000000 0.0000000000            0.0000000000
##     3DS            0.0000000000 0.0000000000            0.0000000000
##     DC             0.0000000000 0.0000000000            0.0000000000
##     DS             0.0023116043 0.0000000000            0.0000000000
##     GB             0.0000000000 0.0000000000            0.0000000000
##     GBA            0.0000000000 0.0000000000            0.0000000000
##     GC             0.0000000000 0.0000000000            0.0000000000
##     GEN            0.0000000000 0.0000000000            0.0000000000
##     GG             0.0000000000 0.0000000000            0.0000000000
##     N64            0.0000000000 0.0031347962            0.0000000000
##     NES            0.0000000000 0.0000000000            0.0000000000
##     NG             0.0000000000 0.0000000000            0.0000000000
##     PC             0.0000000000 0.0000000000            0.0031250000
##     PCFX           0.0000000000 0.0000000000            0.0000000000
##     PS             0.0000000000 0.0000000000            0.0000000000
##     PS2            0.0000000000 0.0000000000            0.0013882462
##     PS3            0.0000000000 0.0000000000            0.0000000000
##     PS4            0.0000000000 0.0000000000            0.0000000000
##     PSP            0.0000000000 0.0000000000            0.0000000000
##     PSV            0.0000000000 0.0000000000            0.0000000000
##     SAT            0.0000000000 0.0000000000            0.0000000000
##     SCD            0.0000000000 0.0000000000            0.0000000000
##     SNES           0.0000000000 0.0000000000            0.0000000000
##     TG16           0.0000000000 0.0000000000            0.0000000000
##     Wii            0.0015094340 0.0000000000            0.0000000000
##     WiiU           0.0000000000 0.0000000000            0.0000000000
##     WS             0.0000000000 0.0000000000            0.0000000000
##     X360           0.0007905138 0.0000000000            0.0000000000
##     XB             0.0000000000 0.0000000000            0.0036407767
##     XOne           0.0000000000 0.0000000000            0.0000000000
##         Publisher
## Platform General Entertainment        Genki  Genterprise   Ghostlight
##     2600          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.0019646365 0.0000000000 0.0019646365
##     DC            0.0000000000 0.0192307692 0.0000000000 0.0000000000
##     DS            0.0000000000 0.0004623209 0.0004623209 0.0023116043
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            0.0008361204 0.0000000000 0.0000000000 0.0000000000
##     PS2           0.0000000000 0.0009254975 0.0000000000 0.0018509949
##     PS3           0.0000000000 0.0007524454 0.0000000000 0.0015048909
##     PS4           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP           0.0000000000 0.0008244023 0.0000000000 0.0016488046
##     PSV           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.0000000000 0.0000000000 0.0007547170
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB            0.0000000000 0.0012135922 0.0000000000 0.0000000000
##     XOne          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform         Giga       Giza10        Glams Global A Entertainment
##     2600 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000           0.0009246417
##     GB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PSP  0.0000000000 0.0008244023 0.0000000000           0.0016488046
##     PSV  0.0024213075 0.0000000000 0.0000000000           0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0057803468           0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##         Publisher
## Platform  Global Star  GN Software          GOA Gotham Games     Graffiti
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0013869626
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0036496350 0.0000000000 0.0000000000 0.0012165450 0.0000000000
##     GC   0.0107913669 0.0000000000 0.0000000000 0.0017985612 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0010416667 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0008361204 0.0000000000
##     PS2  0.0064784822 0.0009254975 0.0000000000 0.0013882462 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0008244023 0.0000000000 0.0000000000 0.0008244023
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0015094340
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0194174757 0.0000000000 0.0000000000 0.0012135922 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Grand Prix Games Graphsim Entertainment Gremlin Interactive Ltd
##     2600     0.0000000000           0.0000000000            0.0000000000
##     3DO      0.0000000000           0.0000000000            0.0000000000
##     3DS      0.0000000000           0.0000000000            0.0000000000
##     DC       0.0000000000           0.0000000000            0.0000000000
##     DS       0.0000000000           0.0000000000            0.0000000000
##     GB       0.0000000000           0.0000000000            0.0000000000
##     GBA      0.0000000000           0.0000000000            0.0000000000
##     GC       0.0000000000           0.0000000000            0.0000000000
##     GEN      0.0000000000           0.0000000000            0.0000000000
##     GG       0.0000000000           0.0000000000            0.0000000000
##     N64      0.0000000000           0.0000000000            0.0031347962
##     NES      0.0000000000           0.0000000000            0.0000000000
##     NG       0.0000000000           0.0000000000            0.0000000000
##     PC       0.0000000000           0.0010416667            0.0000000000
##     PCFX     0.0000000000           0.0000000000            0.0000000000
##     PS       0.0000000000           0.0000000000            0.0066889632
##     PS2      0.0000000000           0.0000000000            0.0000000000
##     PS3      0.0000000000           0.0000000000            0.0000000000
##     PS4      0.0000000000           0.0000000000            0.0000000000
##     PSP      0.0008244023           0.0000000000            0.0000000000
##     PSV      0.0000000000           0.0000000000            0.0000000000
##     SAT      0.0000000000           0.0000000000            0.0000000000
##     SCD      0.0000000000           0.0000000000            0.0000000000
##     SNES     0.0000000000           0.0000000000            0.0000000000
##     TG16     0.0000000000           0.0000000000            0.0000000000
##     Wii      0.0000000000           0.0000000000            0.0000000000
##     WiiU     0.0000000000           0.0000000000            0.0000000000
##     WS       0.0000000000           0.0000000000            0.0000000000
##     X360     0.0000000000           0.0000000000            0.0000000000
##     XB       0.0000000000           0.0000000000            0.0000000000
##     XOne     0.0000000000           0.0000000000            0.0000000000
##         Publisher
## Platform Griffin International Groove Games          GSP GT Interactive
##     2600          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DS           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DC            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DS            0.0000000000 0.0000000000 0.0064724919   0.0000000000
##     GB            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GBA           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GC            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     N64           0.0000000000 0.0000000000 0.0000000000   0.0564263323
##     NES           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PC            0.0000000000 0.0000000000 0.0010416667   0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS            0.0000000000 0.0000000000 0.0000000000   0.0225752508
##     PS2           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS3           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS4           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSP           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSV           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SAT           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     Wii           0.0000000000 0.0000000000 0.0007547170   0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     X360          0.0007905138 0.0000000000 0.0000000000   0.0000000000
##     XB            0.0000000000 0.0024271845 0.0000000000   0.0000000000
##     XOne          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##         Publisher
## Platform       GungHo         Gust    Hackberry HAL Laboratory
##     2600 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DS  0.0039292731 0.0000000000 0.0000000000   0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DS   0.0018492834 0.0009246417 0.0000000000   0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000   0.0102040816
##     NG   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS   0.0000000000 0.0016722408 0.0000000000   0.0000000000
##     PS2  0.0000000000 0.0013882462 0.0032392411   0.0000000000
##     PS3  0.0007524454 0.0000000000 0.0000000000   0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSP  0.0024732069 0.0024732069 0.0000000000   0.0000000000
##     PSV  0.0072639225 0.0072639225 0.0000000000   0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##         Publisher
## Platform Hamster Corporation     Happinet Harmonix Music Systems
##     2600        0.0000000000 0.0000000000           0.0000000000
##     3DO         0.0000000000 0.0000000000           0.0000000000
##     3DS         0.0000000000 0.0098231827           0.0000000000
##     DC          0.0000000000 0.0000000000           0.0000000000
##     DS          0.0000000000 0.0000000000           0.0000000000
##     GB          0.0000000000 0.0000000000           0.0000000000
##     GBA         0.0000000000 0.0000000000           0.0000000000
##     GC          0.0000000000 0.0000000000           0.0000000000
##     GEN         0.0000000000 0.0000000000           0.0000000000
##     GG          0.0000000000 0.0000000000           0.0000000000
##     N64         0.0000000000 0.0000000000           0.0000000000
##     NES         0.0000000000 0.0000000000           0.0000000000
##     NG          0.0000000000 0.0000000000           0.0000000000
##     PC          0.0000000000 0.0000000000           0.0000000000
##     PCFX        0.0000000000 0.0000000000           0.0000000000
##     PS          0.0008361204 0.0000000000           0.0000000000
##     PS2         0.0004627487 0.0000000000           0.0000000000
##     PS3         0.0000000000 0.0000000000           0.0000000000
##     PS4         0.0000000000 0.0000000000           0.0029761905
##     PSP         0.0000000000 0.0000000000           0.0000000000
##     PSV         0.0000000000 0.0000000000           0.0000000000
##     SAT         0.0000000000 0.0000000000           0.0000000000
##     SCD         0.0000000000 0.0000000000           0.0000000000
##     SNES        0.0000000000 0.0000000000           0.0000000000
##     TG16        0.0000000000 0.0000000000           0.0000000000
##     Wii         0.0000000000 0.0000000000           0.0000000000
##     WiiU        0.0000000000 0.0000000000           0.0000000000
##     WS          0.0000000000 0.0000000000           0.0000000000
##     X360        0.0000000000 0.0000000000           0.0000000000
##     XB          0.0000000000 0.0000000000           0.0000000000
##     XOne        0.0000000000 0.0000000000           0.0046948357
##         Publisher
## Platform Hasbro Interactive Havas Interactive Headup Games Hearty Robin
##     2600       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DO        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DS        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DC         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DS         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GB         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GBA        0.0012165450      0.0000000000 0.0000000000 0.0000000000
##     GC         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GEN        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GG         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     N64        0.0062695925      0.0000000000 0.0000000000 0.0000000000
##     NES        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NG         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PC         0.0010416667      0.0010416667 0.0010416667 0.0000000000
##     PCFX       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS         0.0100334448      0.0000000000 0.0000000000 0.0008361204
##     PS2        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS3        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS4        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PSP        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PSV        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SAT        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SCD        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SNES       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     TG16       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     Wii        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WiiU       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WS         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     X360       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XB         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XOne       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform         Hect  Hello Games Her Interactive Hip Interactive
##     2600 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     3DO  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     DC   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     DS   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GB   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GBA  0.0000000000 0.0000000000    0.0000000000    0.0024330900
##     GC   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GEN  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     N64  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     NES  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PC   0.0000000000 0.0000000000    0.0010416667    0.0000000000
##     PCFX 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PS   0.0008361204 0.0000000000    0.0000000000    0.0000000000
##     PS2  0.0000000000 0.0000000000    0.0000000000    0.0004627487
##     PS3  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PS4  0.0000000000 0.0029761905    0.0000000000    0.0000000000
##     PSP  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PSV  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     SNES 0.0083682008 0.0000000000    0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     Wii  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     X360 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     XB   0.0000000000 0.0000000000    0.0000000000    0.0024271845
##     XOne 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##         Publisher
## Platform HMH Interactive Home Entertainment Suppliers Hudson Entertainment
##     2600    0.0000000000                 0.0000000000         0.0000000000
##     3DO     0.0000000000                 0.0000000000         0.0000000000
##     3DS     0.0000000000                 0.0000000000         0.0000000000
##     DC      0.0000000000                 0.0000000000         0.0000000000
##     DS      0.0004623209                 0.0000000000         0.0004623209
##     GB      0.0000000000                 0.0000000000         0.0000000000
##     GBA     0.0000000000                 0.0000000000         0.0048661800
##     GC      0.0000000000                 0.0000000000         0.0000000000
##     GEN     0.0000000000                 0.0000000000         0.0000000000
##     GG      0.0000000000                 0.0000000000         0.0000000000
##     N64     0.0000000000                 0.0000000000         0.0031347962
##     NES     0.0000000000                 0.0000000000         0.0000000000
##     NG      0.0000000000                 0.0000000000         0.0000000000
##     PC      0.0010416667                 0.0010416667         0.0000000000
##     PCFX    0.0000000000                 0.0000000000         0.0000000000
##     PS      0.0000000000                 0.0000000000         0.0016722408
##     PS2     0.0000000000                 0.0000000000         0.0000000000
##     PS3     0.0000000000                 0.0015048909         0.0000000000
##     PS4     0.0000000000                 0.0000000000         0.0000000000
##     PSP     0.0000000000                 0.0000000000         0.0008244023
##     PSV     0.0000000000                 0.0000000000         0.0000000000
##     SAT     0.0000000000                 0.0000000000         0.0000000000
##     SCD     0.0000000000                 0.0000000000         0.0000000000
##     SNES    0.0000000000                 0.0000000000         0.0000000000
##     TG16    0.0000000000                 0.0000000000         0.0000000000
##     Wii     0.0000000000                 0.0000000000         0.0015094340
##     WiiU    0.0000000000                 0.0000000000         0.0000000000
##     WS      0.0000000000                 0.0000000000         0.0000000000
##     X360    0.0000000000                 0.0015810277         0.0000000000
##     XB      0.0000000000                 0.0000000000         0.0000000000
##     XOne    0.0000000000                 0.0000000000         0.0000000000
##         Publisher
## Platform  Hudson Soft Human Entertainment        HuneX Iceberg Interactive
##     2600 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     3DO  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     3DS  0.0039292731        0.0000000000 0.0000000000        0.0000000000
##     DC   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     DS   0.0069348128        0.0000000000 0.0000000000        0.0000000000
##     GB   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     GBA  0.0024330900        0.0000000000 0.0000000000        0.0000000000
##     GC   0.0035971223        0.0000000000 0.0000000000        0.0000000000
##     GEN  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     GG   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     N64  0.0094043887        0.0000000000 0.0000000000        0.0000000000
##     NES  0.0714285714        0.0000000000 0.0000000000        0.0000000000
##     NG   0.0833333333        0.0000000000 0.0000000000        0.0000000000
##     PC   0.0000000000        0.0000000000 0.0000000000        0.0031250000
##     PCFX 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     PS   0.0016722408        0.0066889632 0.0000000000        0.0000000000
##     PS2  0.0027764924        0.0000000000 0.0000000000        0.0000000000
##     PS3  0.0007524454        0.0000000000 0.0000000000        0.0000000000
##     PS4  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     PSP  0.0032976092        0.0000000000 0.0000000000        0.0000000000
##     PSV  0.0000000000        0.0000000000 0.0048426150        0.0000000000
##     SAT  0.0173410405        0.0057803468 0.0000000000        0.0000000000
##     SCD  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     SNES 0.0753138075        0.0167364017 0.0000000000        0.0000000000
##     TG16 0.5000000000        0.0000000000 0.0000000000        0.0000000000
##     Wii  0.0090566038        0.0000000000 0.0000000000        0.0000000000
##     WiiU 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     WS   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     X360 0.0007905138        0.0000000000 0.0000000000        0.0000000000
##     XB   0.0012135922        0.0000000000 0.0000000000        0.0000000000
##     XOne 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##         Publisher
## Platform  id Software Idea Factory Idea Factory International IE Institute
##     2600 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000               0.0000000000 0.0019646365
##     DC   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     DS   0.0000000000 0.0027739251               0.0000000000 0.0018492834
##     GB   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     PC   0.0010416667 0.0000000000               0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0078667284               0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0015048909               0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0029761905               0.0059523810 0.0000000000
##     PSP  0.0000000000 0.0568837593               0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0774818402               0.0096852300 0.0000000000
##     SAT  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     X360 0.0000000000 0.0015810277               0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##         Publisher
## Platform Ignition Entertainment Illusion Softworks       Imadio
##     2600           0.0000000000       0.0000000000 0.0000000000
##     3DO            0.0000000000       0.0000000000 0.0000000000
##     3DS            0.0000000000       0.0000000000 0.0000000000
##     DC             0.0000000000       0.0000000000 0.0000000000
##     DS             0.0060101711       0.0000000000 0.0000000000
##     GB             0.0000000000       0.0000000000 0.0000000000
##     GBA            0.0072992701       0.0000000000 0.0000000000
##     GC             0.0053956835       0.0000000000 0.0000000000
##     GEN            0.0000000000       0.0000000000 0.0000000000
##     GG             0.0000000000       0.0000000000 0.0000000000
##     N64            0.0000000000       0.0000000000 0.0000000000
##     NES            0.0000000000       0.0000000000 0.0000000000
##     NG             0.0000000000       0.0000000000 0.0000000000
##     PC             0.0000000000       0.0000000000 0.0000000000
##     PCFX           0.0000000000       0.0000000000 0.0000000000
##     PS             0.0000000000       0.0000000000 0.0000000000
##     PS2            0.0078667284       0.0004627487 0.0000000000
##     PS3            0.0022573363       0.0000000000 0.0000000000
##     PS4            0.0000000000       0.0000000000 0.0000000000
##     PSP            0.0065952185       0.0000000000 0.0000000000
##     PSV            0.0000000000       0.0000000000 0.0000000000
##     SAT            0.0000000000       0.0000000000 0.0057803468
##     SCD            0.0000000000       0.0000000000 0.0000000000
##     SNES           0.0000000000       0.0000000000 0.0000000000
##     TG16           0.0000000000       0.0000000000 0.0000000000
##     Wii            0.0045283019       0.0000000000 0.0000000000
##     WiiU           0.0000000000       0.0000000000 0.0000000000
##     WS             0.0000000000       0.0000000000 0.0000000000
##     X360           0.0015810277       0.0000000000 0.0000000000
##     XB             0.0036407767       0.0000000000 0.0000000000
##     XOne           0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform  Image Epoch imageepoch Inc.   Imageworks       Imagic
##     2600 0.0000000000    0.0000000000 0.0000000000 0.0300751880
##     3DO  0.0000000000    0.0000000000 0.3333333333 0.0000000000
##     3DS  0.0000000000    0.0039292731 0.0000000000 0.0000000000
##     DC   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0008244023    0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    Imagineer         Imax  Indie Games   Infogrames
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0192307692
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0408163265 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0097323601
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0143884892
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0156739812 0.0000000000 0.0000000000 0.0250783699
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0010416667
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0008361204 0.0000000000 0.0000000000 0.0192307692
##     PS2  0.0000000000 0.0000000000 0.0013882462 0.0032392411
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0173410405 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0125523013 0.0041841004 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0072815534
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Insomniac Games Interchannel Interchannel-Holon    Intergrow
##     2600    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DO     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS     0.0000000000 0.0000000000       0.0000000000 0.0019646365
##     DC      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GB      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GC      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GEN     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC      0.0010416667 0.0000000000       0.0000000000 0.0000000000
##     PCFX    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS2     0.0000000000 0.0018509949       0.0004627487 0.0000000000
##     PS3     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS4     0.0029761905 0.0000000000       0.0000000000 0.0000000000
##     PSP     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSV     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SCD     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WiiU    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     XB      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     XOne    0.0046948357 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform    Interplay Interplay Productions Interworks Unlimited, Inc.
##     2600 0.0000000000          0.0000000000               0.0000000000
##     3DO  0.0000000000          0.0000000000               0.0000000000
##     3DS  0.0000000000          0.0000000000               0.0000000000
##     DC   0.0000000000          0.0000000000               0.0000000000
##     DS   0.0000000000          0.0000000000               0.0000000000
##     GB   0.0000000000          0.0000000000               0.0000000000
##     GBA  0.0024330900          0.0000000000               0.0000000000
##     GC   0.0000000000          0.0000000000               0.0000000000
##     GEN  0.0000000000          0.0000000000               0.0000000000
##     GG   0.0000000000          0.0000000000               0.0000000000
##     N64  0.0094043887          0.0000000000               0.0000000000
##     NES  0.0000000000          0.0000000000               0.0000000000
##     NG   0.0000000000          0.0000000000               0.0000000000
##     PC   0.0031250000          0.0000000000               0.0000000000
##     PCFX 0.0000000000          0.0000000000               0.0000000000
##     PS   0.0125418060          0.0008361204               0.0000000000
##     PS2  0.0018509949          0.0000000000               0.0000000000
##     PS3  0.0000000000          0.0000000000               0.0007524454
##     PS4  0.0000000000          0.0000000000               0.0000000000
##     PSP  0.0000000000          0.0000000000               0.0000000000
##     PSV  0.0000000000          0.0000000000               0.0000000000
##     SAT  0.0000000000          0.0000000000               0.0000000000
##     SCD  0.0000000000          0.0000000000               0.0000000000
##     SNES 0.0041841004          0.0000000000               0.0000000000
##     TG16 0.0000000000          0.0000000000               0.0000000000
##     Wii  0.0000000000          0.0000000000               0.0000000000
##     WiiU 0.0000000000          0.0000000000               0.0000000000
##     WS   0.0000000000          0.0000000000               0.0000000000
##     X360 0.0000000000          0.0000000000               0.0000000000
##     XB   0.0024271845          0.0000000000               0.0000000000
##     XOne 0.0000000000          0.0000000000               0.0000000000
##         Publisher
## Platform Inti Creates Introversion Software inXile Entertainment
##     2600 0.0000000000          0.0000000000         0.0000000000
##     3DO  0.0000000000          0.0000000000         0.0000000000
##     3DS  0.0019646365          0.0000000000         0.0000000000
##     DC   0.0000000000          0.0000000000         0.0000000000
##     DS   0.0000000000          0.0000000000         0.0000000000
##     GB   0.0000000000          0.0000000000         0.0000000000
##     GBA  0.0000000000          0.0000000000         0.0000000000
##     GC   0.0000000000          0.0000000000         0.0000000000
##     GEN  0.0000000000          0.0000000000         0.0000000000
##     GG   0.0000000000          0.0000000000         0.0000000000
##     N64  0.0000000000          0.0000000000         0.0000000000
##     NES  0.0000000000          0.0000000000         0.0000000000
##     NG   0.0000000000          0.0000000000         0.0000000000
##     PC   0.0000000000          0.0000000000         0.0010416667
##     PCFX 0.0000000000          0.0000000000         0.0000000000
##     PS   0.0000000000          0.0000000000         0.0000000000
##     PS2  0.0000000000          0.0000000000         0.0000000000
##     PS3  0.0000000000          0.0000000000         0.0000000000
##     PS4  0.0000000000          0.0029761905         0.0000000000
##     PSP  0.0000000000          0.0000000000         0.0000000000
##     PSV  0.0000000000          0.0000000000         0.0000000000
##     SAT  0.0000000000          0.0000000000         0.0000000000
##     SCD  0.0000000000          0.0000000000         0.0000000000
##     SNES 0.0000000000          0.0000000000         0.0000000000
##     TG16 0.0000000000          0.0000000000         0.0000000000
##     Wii  0.0000000000          0.0000000000         0.0000000000
##     WiiU 0.0000000000          0.0000000000         0.0000000000
##     WS   0.0000000000          0.0000000000         0.0000000000
##     X360 0.0000000000          0.0000000000         0.0000000000
##     XB   0.0000000000          0.0000000000         0.0000000000
##     XOne 0.0000000000          0.0000000000         0.0000000000
##         Publisher
## Platform Irem Software Engineering ITT Family Games    Ivolgamus
##     2600              0.0000000000     0.0075187970 0.0000000000
##     3DO               0.0000000000     0.0000000000 0.0000000000
##     3DS               0.0039292731     0.0000000000 0.0000000000
##     DC                0.0000000000     0.0000000000 0.0000000000
##     DS                0.0000000000     0.0000000000 0.0000000000
##     GB                0.0000000000     0.0000000000 0.0000000000
##     GBA               0.0000000000     0.0000000000 0.0000000000
##     GC                0.0000000000     0.0000000000 0.0000000000
##     GEN               0.0000000000     0.0000000000 0.0000000000
##     GG                0.0000000000     0.0000000000 0.0000000000
##     N64               0.0000000000     0.0000000000 0.0000000000
##     NES               0.0000000000     0.0000000000 0.0000000000
##     NG                0.0000000000     0.0000000000 0.0000000000
##     PC                0.0000000000     0.0000000000 0.0000000000
##     PCFX              0.0000000000     0.0000000000 0.0000000000
##     PS                0.0008361204     0.0000000000 0.0000000000
##     PS2               0.0009254975     0.0000000000 0.0000000000
##     PS3               0.0007524454     0.0000000000 0.0000000000
##     PS4               0.0000000000     0.0000000000 0.0000000000
##     PSP               0.0049464138     0.0000000000 0.0008244023
##     PSV               0.0000000000     0.0000000000 0.0000000000
##     SAT               0.0000000000     0.0000000000 0.0000000000
##     SCD               0.0000000000     0.0000000000 0.0000000000
##     SNES              0.0000000000     0.0000000000 0.0000000000
##     TG16              0.0000000000     0.0000000000 0.0000000000
##     Wii               0.0000000000     0.0000000000 0.0000000000
##     WiiU              0.0000000000     0.0000000000 0.0000000000
##     WS                0.0000000000     0.0000000000 0.0000000000
##     X360              0.0000000000     0.0000000000 0.0000000000
##     XB                0.0000000000     0.0000000000 0.0000000000
##     XOne              0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform         iWin Jack of All Games       Jaleco Jester Interactive
##     2600 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     3DO  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     3DS  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     DC   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     DS   0.0004623209      0.0009246417 0.0013869626       0.0000000000
##     GB   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     GBA  0.0000000000      0.0012165450 0.0012165450       0.0000000000
##     GC   0.0000000000      0.0000000000 0.0035971223       0.0000000000
##     GEN  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     GG   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     N64  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     NES  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     NG   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PC   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PCFX 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PS   0.0000000000      0.0000000000 0.0050167224       0.0000000000
##     PS2  0.0000000000      0.0000000000 0.0013882462       0.0013882462
##     PS3  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PS4  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PSP  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PSV  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     SAT  0.0000000000      0.0000000000 0.0057803468       0.0000000000
##     SCD  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     SNES 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     TG16 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     Wii  0.0000000000      0.0000000000 0.0007547170       0.0000000000
##     WiiU 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     WS   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     X360 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     XB   0.0000000000      0.0000000000 0.0072815534       0.0000000000
##     XOne 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##         Publisher
## Platform      Jorudan JoWood Productions  Just Flight          JVC
##     2600 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000       0.0027739251 0.0000000000 0.0000000000
##     GB   0.0102040816       0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0024330900       0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000       0.0035971223 0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000       0.0072916667 0.0010416667 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000       0.0000000000 0.0000000000 0.0058528428
##     PS2  0.0000000000       0.0009254975 0.0000000000 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000       0.0000000000 0.0000000000 0.0057803468
##     SCD  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000       0.0022641509 0.0000000000 0.0000000000
##     WiiU 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000       0.0007905138 0.0000000000 0.0000000000
##     XB   0.0000000000       0.0012135922 0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Kadokawa Games Kadokawa Shoten  Kaga Create Kalypso Media
##     2600   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     3DO    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     3DS    0.0019646365    0.0039292731 0.0000000000  0.0000000000
##     DC     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     DS     0.0000000000    0.0023116043 0.0000000000  0.0000000000
##     GB     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GBA    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GC     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GEN    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GG     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     N64    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     NES    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     NG     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     PC     0.0000000000    0.0000000000 0.0000000000  0.0208333333
##     PCFX   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     PS     0.0000000000    0.0025083612 0.0000000000  0.0000000000
##     PS2    0.0000000000    0.0055529847 0.0000000000  0.0000000000
##     PS3    0.0007524454    0.0000000000 0.0007524454  0.0007524454
##     PS4    0.0000000000    0.0000000000 0.0000000000  0.0059523810
##     PSP    0.0024732069    0.0156636439 0.0008244023  0.0000000000
##     PSV    0.0242130751    0.0072639225 0.0096852300  0.0000000000
##     SAT    0.0000000000    0.0231213873 0.0000000000  0.0000000000
##     SCD    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     SNES   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     TG16   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     Wii    0.0000000000    0.0015094340 0.0000000000  0.0000000000
##     WiiU   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     WS     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     X360   0.0000000000    0.0000000000 0.0000000000  0.0047430830
##     XB     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     XOne   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##         Publisher
## Platform        Kamui  Kando Games Karin Entertainment        Kemco
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   0.0004623209 0.0000000000        0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000        0.0000000000 0.0024330900
##     GC   0.0000000000 0.0000000000        0.0000000000 0.0071942446
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.0219435737
##     NES  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000        0.0000000000 0.0008361204
##     PS2  0.0000000000 0.0004627487        0.0000000000 0.0009254975
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000        0.0008244023 0.0000000000
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000        0.0000000000 0.0041841004
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.0048543689
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform          KID Kids Station King Records Knowledge Adventure
##     2600 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     DS   0.0000000000 0.0004623209 0.0000000000        0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0012165450        0.0024330900
##     GC   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PS2  0.0013882462 0.0000000000 0.0000000000        0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     SAT  0.0057803468 0.0000000000 0.0000000000        0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000        0.0015094340
##     WiiU 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##         Publisher
## Platform   Koch Media Kokopeli Digital Studios
##     2600 0.0000000000             0.0000000000
##     3DO  0.0000000000             0.0000000000
##     3DS  0.0019646365             0.0000000000
##     DC   0.0000000000             0.0000000000
##     DS   0.0004623209             0.0000000000
##     GB   0.0000000000             0.0000000000
##     GBA  0.0000000000             0.0000000000
##     GC   0.0000000000             0.0000000000
##     GEN  0.0000000000             0.0000000000
##     GG   0.0000000000             0.0000000000
##     N64  0.0000000000             0.0000000000
##     NES  0.0000000000             0.0000000000
##     NG   0.0000000000             0.0000000000
##     PC   0.0041666667             0.0000000000
##     PCFX 0.0000000000             0.0000000000
##     PS   0.0000000000             0.0008361204
##     PS2  0.0004627487             0.0000000000
##     PS3  0.0015048909             0.0000000000
##     PS4  0.0029761905             0.0000000000
##     PSP  0.0008244023             0.0000000000
##     PSV  0.0000000000             0.0000000000
##     SAT  0.0000000000             0.0000000000
##     SCD  0.0000000000             0.0000000000
##     SNES 0.0000000000             0.0000000000
##     TG16 0.0000000000             0.0000000000
##     Wii  0.0015094340             0.0000000000
##     WiiU 0.0000000000             0.0000000000
##     WS   0.0000000000             0.0000000000
##     X360 0.0015810277             0.0000000000
##     XB   0.0000000000             0.0000000000
##     XOne 0.0093896714             0.0000000000
##         Publisher
## Platform Konami Digital Entertainment    Kool Kizz          KSS
##     2600                 0.0000000000 0.0000000000 0.0000000000
##     3DO                  0.3333333333 0.0000000000 0.0000000000
##     3DS                  0.0235756385 0.0000000000 0.0000000000
##     DC                   0.0192307692 0.0000000000 0.0000000000
##     DS                   0.0517799353 0.0000000000 0.0000000000
##     GB                   0.1020408163 0.0000000000 0.0000000000
##     GBA                  0.0729927007 0.0000000000 0.0000000000
##     GC                   0.0431654676 0.0000000000 0.0000000000
##     GEN                  0.0370370370 0.0000000000 0.0000000000
##     GG                   0.0000000000 0.0000000000 0.0000000000
##     N64                  0.0783699060 0.0000000000 0.0000000000
##     NES                  0.0918367347 0.0000000000 0.0000000000
##     NG                   0.0000000000 0.0000000000 0.0000000000
##     PC                   0.0125000000 0.0000000000 0.0000000000
##     PCFX                 0.0000000000 0.0000000000 0.0000000000
##     PS                   0.0668896321 0.0000000000 0.0000000000
##     PS2                  0.0754280426 0.0000000000 0.0000000000
##     PS3                  0.0458991723 0.0000000000 0.0000000000
##     PS4                  0.0208333333 0.0000000000 0.0000000000
##     PSP                  0.0651277824 0.0000000000 0.0000000000
##     PSV                  0.0290556901 0.0000000000 0.0000000000
##     SAT                  0.0231213873 0.0000000000 0.0000000000
##     SCD                  0.0000000000 0.0000000000 0.0000000000
##     SNES                 0.0794979079 0.0000000000 0.0041841004
##     TG16                 0.0000000000 0.0000000000 0.0000000000
##     Wii                  0.0415094340 0.0000000000 0.0000000000
##     WiiU                 0.0000000000 0.0000000000 0.0000000000
##     WS                   0.0000000000 0.0000000000 0.0000000000
##     X360                 0.0387351779 0.0000000000 0.0000000000
##     XB                   0.0376213592 0.0012135922 0.0000000000
##     XOne                 0.0234741784 0.0000000000 0.0000000000
##         Publisher
## Platform       Laguna Legacy Interactive   LEGO Media      Level 5
##     2600 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000 0.0216110020
##     DC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000       0.0004623209 0.0000000000 0.0032362460
##     GB   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000       0.0000000000 0.0024330900 0.0000000000
##     GC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000       0.0000000000 0.0031347962 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000       0.0000000000 0.0010416667 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000       0.0000000000 0.0025083612 0.0000000000
##     PS2  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000       0.0000000000 0.0000000000 0.0032976092
##     PSV  0.0000000000       0.0000000000 0.0000000000 0.0048426150
##     SAT  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0167364017       0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000       0.0000000000 0.0000000000 0.0015094340
##     WiiU 0.0000000000       0.0000000000 0.0000000000 0.0069930070
##     WS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Lexicon Entertainment  Licensed 4U Lighthouse Interactive
##     2600          0.0000000000 0.0000000000           0.0000000000
##     3DO           0.0000000000 0.0000000000           0.0000000000
##     3DS           0.0000000000 0.0019646365           0.0000000000
##     DC            0.0000000000 0.0000000000           0.0000000000
##     DS            0.0009246417 0.0009246417           0.0000000000
##     GB            0.0000000000 0.0000000000           0.0000000000
##     GBA           0.0000000000 0.0000000000           0.0000000000
##     GC            0.0000000000 0.0000000000           0.0000000000
##     GEN           0.0000000000 0.0000000000           0.0000000000
##     GG            0.0000000000 0.0000000000           0.0000000000
##     N64           0.0000000000 0.0000000000           0.0000000000
##     NES           0.0000000000 0.0000000000           0.0000000000
##     NG            0.0000000000 0.0000000000           0.0000000000
##     PC            0.0000000000 0.0000000000           0.0010416667
##     PCFX          0.0000000000 0.0000000000           0.0000000000
##     PS            0.0000000000 0.0000000000           0.0000000000
##     PS2           0.0000000000 0.0000000000           0.0000000000
##     PS3           0.0000000000 0.0000000000           0.0000000000
##     PS4           0.0000000000 0.0000000000           0.0000000000
##     PSP           0.0000000000 0.0000000000           0.0000000000
##     PSV           0.0000000000 0.0000000000           0.0000000000
##     SAT           0.0000000000 0.0000000000           0.0000000000
##     SCD           0.0000000000 0.0000000000           0.0000000000
##     SNES          0.0000000000 0.0000000000           0.0000000000
##     TG16          0.0000000000 0.0000000000           0.0000000000
##     Wii           0.0000000000 0.0000000000           0.0000000000
##     WiiU          0.0000000000 0.0000000000           0.0000000000
##     WS            0.0000000000 0.0000000000           0.0000000000
##     X360          0.0000000000 0.0000000000           0.0000000000
##     XB            0.0000000000 0.0000000000           0.0000000000
##     XOne          0.0000000000 0.0000000000           0.0000000000
##         Publisher
## Platform Liquid Games Little Orbit        Locus    LSP Games    LucasArts
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0137524558 0.0000000000 0.0000000000 0.0019646365
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0004623209 0.0000000000 0.0000000000 0.0041608877
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0024330900 0.0000000000 0.0000000000 0.0036496350 0.0012165450
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0071942446
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0031347962
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0145833333
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0008361204 0.0000000000 0.0033444816
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0004627487 0.0078667284
##     PS3  0.0000000000 0.0030097818 0.0000000000 0.0000000000 0.0045146727
##     PS4  0.0000000000 0.0029761905 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0074196208
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0022641509 0.0000000000 0.0000000000 0.0060377358
##     WiiU 0.0000000000 0.0209790210 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0047430830 0.0000000000 0.0000000000 0.0063241107
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0097087379
##     XOne 0.0000000000 0.0046948357 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform     Mad Catz Magical Company        Magix Majesco Entertainment
##     2600 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     3DO  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     3DS  0.0000000000    0.0000000000 0.0000000000          0.0078585462
##     DC   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     DS   0.0000000000    0.0000000000 0.0000000000          0.0180305132
##     GB   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     GBA  0.0000000000    0.0000000000 0.0000000000          0.0182481752
##     GC   0.0017985612    0.0000000000 0.0000000000          0.0000000000
##     GEN  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     GG   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     N64  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     NES  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     NG   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PC   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PCFX 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PS   0.0000000000    0.0008361204 0.0000000000          0.0000000000
##     PS2  0.0000000000    0.0000000000 0.0009254975          0.0004627487
##     PS3  0.0000000000    0.0000000000 0.0000000000          0.0007524454
##     PS4  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PSP  0.0000000000    0.0000000000 0.0000000000          0.0016488046
##     PSV  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     SAT  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     SCD  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     SNES 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     TG16 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     Wii  0.0000000000    0.0000000000 0.0000000000          0.0181132075
##     WiiU 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     WS   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     X360 0.0007905138    0.0000000000 0.0000000000          0.0031620553
##     XB   0.0012135922    0.0000000000 0.0000000000          0.0012135922
##     XOne 0.0000000000    0.0000000000 0.0000000000          0.0046948357
##         Publisher
## Platform  Mamba Games Marvel Entertainment Marvelous Entertainment
##     2600 0.0000000000         0.0000000000            0.0000000000
##     3DO  0.0000000000         0.0000000000            0.0000000000
##     3DS  0.0000000000         0.0000000000            0.0098231827
##     DC   0.0000000000         0.0000000000            0.0000000000
##     DS   0.0000000000         0.0000000000            0.0000000000
##     GB   0.0000000000         0.0000000000            0.0000000000
##     GBA  0.0000000000         0.0000000000            0.0000000000
##     GC   0.0000000000         0.0000000000            0.0000000000
##     GEN  0.0000000000         0.0000000000            0.0000000000
##     GG   0.0000000000         0.0000000000            0.0000000000
##     N64  0.0000000000         0.0000000000            0.0000000000
##     NES  0.0000000000         0.0000000000            0.0000000000
##     NG   0.0000000000         0.0000000000            0.0000000000
##     PC   0.0020833333         0.0000000000            0.0000000000
##     PCFX 0.0000000000         0.0000000000            0.0000000000
##     PS   0.0000000000         0.0000000000            0.0000000000
##     PS2  0.0000000000         0.0000000000            0.0000000000
##     PS3  0.0000000000         0.0000000000            0.0000000000
##     PS4  0.0000000000         0.0000000000            0.0000000000
##     PSP  0.0000000000         0.0000000000            0.0016488046
##     PSV  0.0000000000         0.0024213075            0.0121065375
##     SAT  0.0000000000         0.0000000000            0.0000000000
##     SCD  0.0000000000         0.0000000000            0.0000000000
##     SNES 0.0000000000         0.0000000000            0.0000000000
##     TG16 0.0000000000         0.0000000000            0.0000000000
##     Wii  0.0000000000         0.0000000000            0.0000000000
##     WiiU 0.0000000000         0.0000000000            0.0000000000
##     WS   0.0000000000         0.0000000000            0.0000000000
##     X360 0.0000000000         0.0000000000            0.0000000000
##     XB   0.0000000000         0.0000000000            0.0000000000
##     XOne 0.0000000000         0.0000000000            0.0000000000
##         Publisher
## Platform Marvelous Games Marvelous Interactive Masque Publishing
##     2600    0.0000000000          0.0000000000      0.0000000000
##     3DO     0.0000000000          0.0000000000      0.0000000000
##     3DS     0.0000000000          0.0058939096      0.0000000000
##     DC      0.0000000000          0.0000000000      0.0000000000
##     DS      0.0000000000          0.0060101711      0.0000000000
##     GB      0.0000000000          0.0000000000      0.0000000000
##     GBA     0.0000000000          0.0036496350      0.0000000000
##     GC      0.0000000000          0.0017985612      0.0000000000
##     GEN     0.0000000000          0.0000000000      0.0000000000
##     GG      0.0000000000          0.0000000000      0.0000000000
##     N64     0.0000000000          0.0000000000      0.0000000000
##     NES     0.0000000000          0.0000000000      0.0000000000
##     NG      0.0000000000          0.0000000000      0.0000000000
##     PC      0.0000000000          0.0000000000      0.0010416667
##     PCFX    0.0000000000          0.0000000000      0.0000000000
##     PS      0.0000000000          0.0000000000      0.0000000000
##     PS2     0.0000000000          0.0055529847      0.0000000000
##     PS3     0.0000000000          0.0015048909      0.0000000000
##     PS4     0.0000000000          0.0059523810      0.0000000000
##     PSP     0.0000000000          0.0090684254      0.0000000000
##     PSV     0.0024213075          0.0072639225      0.0000000000
##     SAT     0.0000000000          0.0000000000      0.0000000000
##     SCD     0.0000000000          0.0000000000      0.0000000000
##     SNES    0.0000000000          0.0000000000      0.0000000000
##     TG16    0.0000000000          0.0000000000      0.0000000000
##     Wii     0.0000000000          0.0037735849      0.0000000000
##     WiiU    0.0000000000          0.0000000000      0.0000000000
##     WS      0.0000000000          0.0000000000      0.0000000000
##     X360    0.0000000000          0.0007905138      0.0000000000
##     XB      0.0000000000          0.0000000000      0.0000000000
##     XOne    0.0000000000          0.0000000000      0.0000000000
##         Publisher
## Platform Mastertronic      Mastiff Mattel Interactive     Max Five
##     2600 0.0000000000 0.0000000000       0.0601503759 0.0000000000
##     3DO  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0058939096       0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS   0.0018492834 0.0009246417       0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0012165450       0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC   0.0041666667 0.0010416667       0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000       0.0033444816 0.0008361204
##     PS2  0.0004627487 0.0004627487       0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0007547170 0.0052830189       0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360 0.0023715415 0.0000000000       0.0000000000 0.0000000000
##     XB   0.0000000000 0.0012135922       0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Maximum Family Games        Maxis MC2 Entertainment
##     2600         0.0000000000 0.0000000000      0.0000000000
##     3DO          0.0000000000 0.0000000000      0.0000000000
##     3DS          0.0019646365 0.0000000000      0.0000000000
##     DC           0.0000000000 0.0000000000      0.0000000000
##     DS           0.0000000000 0.0000000000      0.0000000000
##     GB           0.0000000000 0.0000000000      0.0000000000
##     GBA          0.0000000000 0.0000000000      0.0000000000
##     GC           0.0000000000 0.0000000000      0.0000000000
##     GEN          0.0000000000 0.0000000000      0.0000000000
##     GG           0.0000000000 0.0000000000      0.0000000000
##     N64          0.0000000000 0.0000000000      0.0000000000
##     NES          0.0000000000 0.0000000000      0.0000000000
##     NG           0.0000000000 0.0000000000      0.0000000000
##     PC           0.0000000000 0.0020833333      0.0020833333
##     PCFX         0.0000000000 0.0000000000      0.0000000000
##     PS           0.0000000000 0.0008361204      0.0000000000
##     PS2          0.0000000000 0.0000000000      0.0000000000
##     PS3          0.0000000000 0.0000000000      0.0000000000
##     PS4          0.0000000000 0.0000000000      0.0000000000
##     PSP          0.0000000000 0.0000000000      0.0000000000
##     PSV          0.0000000000 0.0000000000      0.0000000000
##     SAT          0.0000000000 0.0000000000      0.0000000000
##     SCD          0.0000000000 0.0000000000      0.0000000000
##     SNES         0.0000000000 0.0000000000      0.0000000000
##     TG16         0.0000000000 0.0000000000      0.0000000000
##     Wii          0.0000000000 0.0000000000      0.0000000000
##     WiiU         0.0000000000 0.0000000000      0.0000000000
##     WS           0.0000000000 0.0000000000      0.0000000000
##     X360         0.0000000000 0.0000000000      0.0000000000
##     XB           0.0000000000 0.0000000000      0.0012135922
##     XOne         0.0000000000 0.0000000000      0.0000000000
##         Publisher
## Platform Media Entertainment Media Factory  Media Rings  Media Works
##     2600        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DO         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DS         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DC          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DS          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GB          0.0000000000  0.0102040816 0.0000000000 0.0000000000
##     GBA         0.0000000000  0.0000000000 0.0012165450 0.0000000000
##     GC          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GEN         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GG          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     N64         0.0000000000  0.0031347962 0.0000000000 0.0000000000
##     NES         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     NG          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PC          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PCFX        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS          0.0000000000  0.0000000000 0.0000000000 0.0016722408
##     PS2         0.0004627487  0.0000000000 0.0000000000 0.0009254975
##     PS3         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS4         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSP         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSV         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     SAT         0.0000000000  0.0000000000 0.0000000000 0.0057803468
##     SCD         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     SNES        0.0000000000  0.0000000000 0.0083682008 0.0000000000
##     TG16        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     Wii         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WiiU        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WS          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     X360        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     XB          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     XOne        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   MediaQuest Men-A-Vision Mentor Interactive Mercury Games
##     2600 0.0000000000 0.0075187970       0.0000000000  0.0000000000
##     3DO  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     3DS  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     DC   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     DS   0.0000000000 0.0000000000       0.0023116043  0.0009246417
##     GB   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GBA  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GC   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GEN  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GG   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     N64  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     NES  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     NG   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PC   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PCFX 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PS   0.0008361204 0.0000000000       0.0000000000  0.0000000000
##     PS2  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PS3  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PS4  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PSP  0.0000000000 0.0000000000       0.0000000000  0.0016488046
##     PSV  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     SAT  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     SCD  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     SNES 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     TG16 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     Wii  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     WiiU 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     WS   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     X360 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     XB   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     XOne 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##         Publisher
## Platform  Merscom LLC     Metro 3D  Michaelsoft  Micro Cabin     Microids
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.3333333333 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0012165450
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0010416667 0.0000000000 0.0000000000 0.0000000000 0.0031250000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0032392411 0.0004627487 0.0000000000 0.0004627487
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0029761905
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0115606936 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0030188679 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0012135922 0.0000000000 0.0000000000 0.0048543689
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   Microprose Microsoft Game Studios
##     2600 0.0000000000           0.0000000000
##     3DO  0.0000000000           0.0000000000
##     3DS  0.0000000000           0.0000000000
##     DC   0.0000000000           0.0000000000
##     DS   0.0000000000           0.0000000000
##     GB   0.0000000000           0.0000000000
##     GBA  0.0000000000           0.0000000000
##     GC   0.0000000000           0.0000000000
##     GEN  0.0000000000           0.0000000000
##     GG   0.0000000000           0.0000000000
##     N64  0.0000000000           0.0000000000
##     NES  0.0000000000           0.0000000000
##     NG   0.0000000000           0.0000000000
##     PC   0.0020833333           0.0302083333
##     PCFX 0.0000000000           0.0000000000
##     PS   0.0033444816           0.0000000000
##     PS2  0.0000000000           0.0000000000
##     PS3  0.0000000000           0.0000000000
##     PS4  0.0000000000           0.0000000000
##     PSP  0.0000000000           0.0000000000
##     PSV  0.0000000000           0.0000000000
##     SAT  0.0000000000           0.0000000000
##     SCD  0.0000000000           0.0000000000
##     SNES 0.0000000000           0.0000000000
##     TG16 0.0000000000           0.0000000000
##     Wii  0.0000000000           0.0000000000
##     WiiU 0.0000000000           0.0069930070
##     WS   0.0000000000           0.0000000000
##     X360 0.0000000000           0.0561264822
##     XB   0.0000000000           0.0825242718
##     XOne 0.0000000000           0.0938967136
##         Publisher
## Platform Midas Interactive Entertainment Midway Games    Milestone
##     2600                    0.0000000000 0.0000000000 0.0000000000
##     3DO                     0.0000000000 0.0000000000 0.0000000000
##     3DS                     0.0000000000 0.0000000000 0.0000000000
##     DC                      0.0000000000 0.0000000000 0.0000000000
##     DS                      0.0023116043 0.0036985668 0.0000000000
##     GB                      0.0000000000 0.0000000000 0.0000000000
##     GBA                     0.0000000000 0.0085158151 0.0000000000
##     GC                      0.0000000000 0.0449640288 0.0000000000
##     GEN                     0.0000000000 0.0000000000 0.0000000000
##     GG                      0.0000000000 0.0000000000 0.0000000000
##     N64                     0.0000000000 0.0626959248 0.0000000000
##     NES                     0.0000000000 0.0000000000 0.0000000000
##     NG                      0.0000000000 0.0000000000 0.0000000000
##     PC                      0.0000000000 0.0020833333 0.0000000000
##     PCFX                    0.0000000000 0.0000000000 0.0000000000
##     PS                      0.0050167224 0.0117056856 0.0000000000
##     PS2                     0.0046274873 0.0231374364 0.0000000000
##     PS3                     0.0000000000 0.0052671181 0.0000000000
##     PS4                     0.0000000000 0.0000000000 0.0000000000
##     PSP                     0.0008244023 0.0057708162 0.0000000000
##     PSV                     0.0000000000 0.0000000000 0.0000000000
##     SAT                     0.0000000000 0.0000000000 0.0000000000
##     SCD                     0.0000000000 0.0000000000 0.0000000000
##     SNES                    0.0000000000 0.0000000000 0.0000000000
##     TG16                    0.0000000000 0.0000000000 0.0000000000
##     Wii                     0.0015094340 0.0075471698 0.0007547170
##     WiiU                    0.0000000000 0.0000000000 0.0000000000
##     WS                      0.0000000000 0.0000000000 0.0000000000
##     X360                    0.0000000000 0.0071146245 0.0000000000
##     XB                      0.0000000000 0.0473300971 0.0000000000
##     XOne                    0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Milestone S.r.l Milestone S.r.l. Minato Station    Mindscape
##     2600    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DO     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DS     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     DC      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     DS      0.0000000000     0.0000000000   0.0000000000 0.0050855294
##     GB      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GBA     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GC      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GEN     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GG      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     N64     0.0000000000     0.0000000000   0.0000000000 0.0031347962
##     NES     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     NG      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PC      0.0000000000     0.0020833333   0.0000000000 0.0000000000
##     PCFX    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PS      0.0000000000     0.0000000000   0.0000000000 0.0058528428
##     PS2     0.0000000000     0.0000000000   0.0004627487 0.0004627487
##     PS3     0.0000000000     0.0022573363   0.0007524454 0.0000000000
##     PS4     0.0029761905     0.0119047619   0.0000000000 0.0000000000
##     PSP     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PSV     0.0000000000     0.0024213075   0.0024213075 0.0000000000
##     SAT     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SCD     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SNES    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     TG16    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     Wii     0.0000000000     0.0000000000   0.0000000000 0.0075471698
##     WiiU    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     WS      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     X360    0.0000000000     0.0023715415   0.0000000000 0.0007905138
##     XB      0.0000000000     0.0000000000   0.0000000000 0.0012135922
##     XOne    0.0046948357     0.0140845070   0.0000000000 0.0000000000
##         Publisher
## Platform Mirai Shounen       Misawa       Mitsui    mixi, Inc      MLB.com
##     2600  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS   0.0000000000 0.0000000000 0.0000000000 0.0019646365 0.0000000000
##     DC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS    0.0004623209 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64   0.0000000000 0.0000000000 0.0031347962 0.0000000000 0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES  0.0000000000 0.0083682008 0.0000000000 0.0000000000 0.0000000000
##     TG16  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0046948357
##         Publisher
## Platform       Mojang Monte Christo Multimedia         Moss          MTO
##     2600 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000             0.0000000000 0.0000000000 0.0032362460
##     GB   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PC   0.0010416667             0.0010416667 0.0000000000 0.0000000000
##     PCFX 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000             0.0000000000 0.0000000000 0.0008361204
##     PS2  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0007524454             0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0029761905             0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     X360 0.0007905138             0.0000000000 0.0015810277 0.0000000000
##     XB   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0046948357             0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    MTV Games Mud Duck Productions  Mumbo Jumbo        Mycom
##     2600 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DS   0.0004623209         0.0000000000 0.0009246417 0.0004623209
##     GB   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000         0.0000000000 0.0010416667 0.0000000000
##     PCFX 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0032392411         0.0004627487 0.0000000000 0.0000000000
##     PS3  0.0075244545         0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0008244023         0.0000000000 0.0016488046 0.0000000000
##     PSV  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0090566038         0.0000000000 0.0007547170 0.0000000000
##     WiiU 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     X360 0.0079051383         0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000         0.0024271845 0.0000000000 0.0000000000
##     XOne 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Myelin Media     Mystique          N/A Namco Bandai Games
##     2600 0.0000000000 0.0075187970 0.0000000000       0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0039292731       0.1709233792
##     DC   0.0000000000 0.0000000000 0.0000000000       0.0384615385
##     DS   0.0000000000 0.0000000000 0.0032362460       0.0624133148
##     GB   0.0000000000 0.0000000000 0.0000000000       0.0306122449
##     GBA  0.0000000000 0.0000000000 0.0316301703       0.0194647202
##     GC   0.0000000000 0.0000000000 0.0000000000       0.0395683453
##     GEN  0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000       0.0188087774
##     NES  0.0000000000 0.0000000000 0.0000000000       0.1428571429
##     NG   0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PC   0.0000000000 0.0000000000 0.0062500000       0.0125000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PS   0.0000000000 0.0000000000 0.0025083612       0.0401337793
##     PS2  0.0004627487 0.0000000000 0.0009254975       0.0495141138
##     PS3  0.0000000000 0.0000000000 0.0022573363       0.0872836719
##     PS4  0.0000000000 0.0000000000 0.0000000000       0.0892857143
##     PSP  0.0008244023 0.0000000000 0.0016488046       0.0997526793
##     PSV  0.0000000000 0.0000000000 0.0048426150       0.1089588378
##     SAT  0.0000000000 0.0000000000 0.0000000000       0.0462427746
##     SCD  0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000       0.1087866109
##     TG16 0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0007547170       0.0422641509
##     WiiU 0.0000000000 0.0000000000 0.0000000000       0.0909090909
##     WS   0.0000000000 0.0000000000 0.0000000000       0.6666666667
##     X360 0.0000000000 0.0000000000 0.0031620553       0.0347826087
##     XB   0.0012135922 0.0000000000 0.0000000000       0.0121359223
##     XOne 0.0000000000 0.0000000000 0.0000000000       0.0328638498
##         Publisher
## Platform      Natsume Navarre Corp   Naxat Soft          NCS       NCSoft
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0019646365 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0023116043 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0024330900 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0031347962 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0062500000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0016722408 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0018509949 0.0000000000 0.0004627487 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0008244023 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0173410405 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0007547170 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0007905138 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform NDA Productions          NEC NEC Interchannel Neko Entertainment
##     2600    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     3DO     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     3DS     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     DC      0.0000000000 0.0000000000     0.0576923077       0.0000000000
##     DS      0.0000000000 0.0000000000     0.0000000000       0.0013869626
##     GB      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     GBA     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     GC      0.0017985612 0.0000000000     0.0000000000       0.0000000000
##     GEN     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     GG      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     N64     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     NES     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     NG      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PC      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PCFX    0.0000000000 1.0000000000     0.0000000000       0.0000000000
##     PS      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PS2     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PS3     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PS4     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PSP     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PSV     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     SAT     0.0000000000 0.0057803468     0.0289017341       0.0000000000
##     SCD     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     SNES    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     TG16    0.0000000000 0.5000000000     0.0000000000       0.0000000000
##     Wii     0.0000000000 0.0000000000     0.0000000000       0.0030188679
##     WiiU    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     WS      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     X360    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     XB      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     XOne    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##         Publisher
## Platform      NetRevo          New New World Computing     NewKidCo
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000        0.0000000000 0.0048661800
##     GC   0.0000000000 0.0000000000        0.0000000000 0.0017985612
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.0062695925
##     NES  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000        0.0010416667 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 0.0008361204        0.0000000000 0.0016722408
##     PS2  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  0.0016488046 0.0000000000        0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform        Nexon   Nichibutsu Nihon Falcom Corporation     Nintendo
##     2600 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000             0.0000000000 0.1611001965
##     DC   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     DS   0.0004623209 0.0000000000             0.0000000000 0.0698104485
##     GB   0.0000000000 0.0000000000             0.0000000000 0.6224489796
##     GBA  0.0000000000 0.0000000000             0.0000000000 0.1107055961
##     GC   0.0000000000 0.0000000000             0.0000000000 0.0953237410
##     GEN  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000             0.0000000000 0.1880877743
##     NES  0.0000000000 0.0000000000             0.0000000000 0.4591836735
##     NG   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000             0.0029761905 0.0000000000
##     PSP  0.0000000000 0.0000000000             0.0008244023 0.0000000000
##     PSV  0.0000000000 0.0000000000             0.0121065375 0.0000000000
##     SAT  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0041841004             0.0000000000 0.1506276151
##     TG16 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000             0.0000000000 0.0633962264
##     WiiU 0.0000000000 0.0000000000             0.0000000000 0.2797202797
##     WS   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##         Publisher
## Platform Nippon Amuse Nippon Columbia Nippon Ichi Software Nippon Telenet
##     2600 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     3DO  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     3DS  0.0000000000    0.0137524558         0.0098231827   0.0000000000
##     DC   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     DS   0.0000000000    0.0000000000         0.0009246417   0.0000000000
##     GB   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GBA  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GC   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GEN  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GG   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     N64  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     NES  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     NG   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     PC   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     PCFX 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     PS   0.0000000000    0.0000000000         0.0008361204   0.0000000000
##     PS2  0.0004627487    0.0000000000         0.0023137436   0.0000000000
##     PS3  0.0000000000    0.0000000000         0.0248306998   0.0000000000
##     PS4  0.0000000000    0.0000000000         0.0267857143   0.0000000000
##     PSP  0.0000000000    0.0000000000         0.0140148392   0.0000000000
##     PSV  0.0000000000    0.0000000000         0.0750605327   0.0000000000
##     SAT  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     SCD  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     SNES 0.0000000000    0.0000000000         0.0000000000   0.0083682008
##     TG16 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     Wii  0.0000000000    0.0000000000         0.0007547170   0.0000000000
##     WiiU 0.0000000000    0.0000000000         0.0069930070   0.0000000000
##     WS   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     X360 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     XB   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     XOne 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##         Publisher
## Platform    Nitroplus      Nobilis  Nordcurrent Nordic Games    NovaLogic
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0046232085 0.0009246417 0.0004623209 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0010416667 0.0000000000 0.0041666667 0.0010416667
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0004627487
##     PS3  0.0007524454 0.0000000000 0.0000000000 0.0015048909 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0178571429 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0024213075 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0015094340 0.0022641509 0.0113207547 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0209790210 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0015810277 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0012135922
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0093896714 0.0000000000
##         Publisher
## Platform  Number None      O-Games O3 Entertainment        Ocean
##     2600 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DS   0.0000000000 0.0027739251     0.0009246417 0.0000000000
##     GB   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000     0.0017985612 0.0000000000
##     GEN  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000     0.0000000000 0.0156739812
##     NES  0.0000000000 0.0000000000     0.0000000000 0.0102040816
##     NG   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PC   0.0010416667 0.0000000000     0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000     0.0000000000 0.0058528428
##     PS2  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0022573363     0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000     0.0000000000 0.0041841004
##     TG16 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0045283019     0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     X360 0.0000000000 0.0015810277     0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform Office Create    On Demand    Ongakukan Origin Systems
##     2600  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DS   0.0039292731 0.0000000000 0.0000000000   0.0000000000
##     DC    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DS    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GBA   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GC    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     N64   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PC    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PCFX  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS    0.0000000000 0.0008361204 0.0000000000   0.0008361204
##     PS2   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS3   0.0000000000 0.0000000000 0.0007524454   0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSP   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSV   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SNES  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     TG16  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     Wii   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     X360  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XB    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##         Publisher
## Platform      Otomate Oxygen Interactive     P2 Games
##     2600 0.0000000000       0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000 0.0000000000
##     DS   0.0000000000       0.0041608877 0.0009246417
##     GB   0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000       0.0000000000 0.0000000000
##     GC   0.0000000000       0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000
##     PC   0.0000000000       0.0000000000 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000
##     PS   0.0000000000       0.0000000000 0.0000000000
##     PS2  0.0000000000       0.0009254975 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000       0.0000000000 0.0000000000
##     PSP  0.0008244023       0.0032976092 0.0000000000
##     PSV  0.0000000000       0.0000000000 0.0000000000
##     SAT  0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000       0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0000000000       0.0045283019 0.0007547170
##     WiiU 0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000 0.0000000000
##     X360 0.0000000000       0.0007905138 0.0000000000
##     XB   0.0000000000       0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Pacific Century Cyber Works Pack-In-Video Pack In Soft
##     2600                0.0000000000  0.0000000000 0.0000000000
##     3DO                 0.0000000000  0.0000000000 0.0000000000
##     3DS                 0.0000000000  0.0000000000 0.0000000000
##     DC                  0.0000000000  0.0000000000 0.0000000000
##     DS                  0.0000000000  0.0000000000 0.0000000000
##     GB                  0.0000000000  0.0000000000 0.0000000000
##     GBA                 0.0000000000  0.0000000000 0.0000000000
##     GC                  0.0000000000  0.0000000000 0.0000000000
##     GEN                 0.0000000000  0.0000000000 0.0000000000
##     GG                  0.0000000000  0.0000000000 0.0000000000
##     N64                 0.0000000000  0.0000000000 0.0031347962
##     NES                 0.0000000000  0.0000000000 0.0000000000
##     NG                  0.0000000000  0.0000000000 0.0000000000
##     PC                  0.0000000000  0.0000000000 0.0000000000
##     PCFX                0.0000000000  0.0000000000 0.0000000000
##     PS                  0.0000000000  0.0000000000 0.0000000000
##     PS2                 0.0004627487  0.0000000000 0.0000000000
##     PS3                 0.0000000000  0.0000000000 0.0000000000
##     PS4                 0.0000000000  0.0000000000 0.0000000000
##     PSP                 0.0000000000  0.0000000000 0.0000000000
##     PSV                 0.0000000000  0.0000000000 0.0000000000
##     SAT                 0.0000000000  0.0000000000 0.0000000000
##     SCD                 0.0000000000  0.0000000000 0.0000000000
##     SNES                0.0000000000  0.0083682008 0.0000000000
##     TG16                0.0000000000  0.0000000000 0.0000000000
##     Wii                 0.0000000000  0.0000000000 0.0000000000
##     WiiU                0.0000000000  0.0000000000 0.0000000000
##     WS                  0.0000000000  0.0000000000 0.0000000000
##     X360                0.0000000000  0.0000000000 0.0000000000
##     XB                  0.0000000000  0.0000000000 0.0000000000
##     XOne                0.0000000000  0.0000000000 0.0000000000
##         Publisher
## Platform       Palcom Panther Software         Paon Paon Corporation
##     2600 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     3DO  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     3DS  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     DC   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     DS   0.0000000000     0.0000000000 0.0004623209     0.0000000000
##     GB   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GBA  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GC   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GEN  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GG   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     N64  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     NES  0.0102040816     0.0000000000 0.0000000000     0.0000000000
##     NG   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PC   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PCFX 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PS   0.0000000000     0.0008361204 0.0000000000     0.0000000000
##     PS2  0.0000000000     0.0000000000 0.0013882462     0.0000000000
##     PS3  0.0000000000     0.0000000000 0.0000000000     0.0007524454
##     PS4  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PSP  0.0000000000     0.0000000000 0.0016488046     0.0000000000
##     PSV  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     SAT  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     SCD  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     SNES 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     TG16 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     Wii  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     WiiU 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     WS   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     X360 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     XB   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     XOne 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##         Publisher
## Platform Paradox Development Paradox Interactive Parker Bros.
##     2600        0.0000000000        0.0000000000 0.0526315789
##     3DO         0.0000000000        0.0000000000 0.0000000000
##     3DS         0.0000000000        0.0000000000 0.0000000000
##     DC          0.0000000000        0.0000000000 0.0000000000
##     DS          0.0000000000        0.0000000000 0.0000000000
##     GB          0.0000000000        0.0000000000 0.0000000000
##     GBA         0.0000000000        0.0000000000 0.0000000000
##     GC          0.0000000000        0.0000000000 0.0000000000
##     GEN         0.0000000000        0.0000000000 0.0000000000
##     GG          0.0000000000        0.0000000000 0.0000000000
##     N64         0.0000000000        0.0000000000 0.0000000000
##     NES         0.0000000000        0.0000000000 0.0000000000
##     NG          0.0000000000        0.0000000000 0.0000000000
##     PC          0.0010416667        0.0239583333 0.0000000000
##     PCFX        0.0000000000        0.0000000000 0.0000000000
##     PS          0.0000000000        0.0000000000 0.0000000000
##     PS2         0.0000000000        0.0000000000 0.0000000000
##     PS3         0.0000000000        0.0000000000 0.0000000000
##     PS4         0.0000000000        0.0000000000 0.0000000000
##     PSP         0.0000000000        0.0000000000 0.0000000000
##     PSV         0.0000000000        0.0000000000 0.0000000000
##     SAT         0.0000000000        0.0000000000 0.0000000000
##     SCD         0.0000000000        0.0000000000 0.0000000000
##     SNES        0.0000000000        0.0000000000 0.0000000000
##     TG16        0.0000000000        0.0000000000 0.0000000000
##     Wii         0.0000000000        0.0000000000 0.0000000000
##     WiiU        0.0000000000        0.0000000000 0.0000000000
##     WS          0.0000000000        0.0000000000 0.0000000000
##     X360        0.0000000000        0.0000000000 0.0000000000
##     XB          0.0000000000        0.0000000000 0.0000000000
##     XOne        0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform Performance Designed Products   Phantagram  Phantom EFX
##     2600                  0.0000000000 0.0000000000 0.0000000000
##     3DO                   0.0000000000 0.0000000000 0.0000000000
##     3DS                   0.0000000000 0.0000000000 0.0000000000
##     DC                    0.0000000000 0.0000000000 0.0000000000
##     DS                    0.0004623209 0.0000000000 0.0000000000
##     GB                    0.0000000000 0.0000000000 0.0000000000
##     GBA                   0.0000000000 0.0000000000 0.0000000000
##     GC                    0.0000000000 0.0000000000 0.0000000000
##     GEN                   0.0000000000 0.0000000000 0.0000000000
##     GG                    0.0000000000 0.0000000000 0.0000000000
##     N64                   0.0000000000 0.0000000000 0.0000000000
##     NES                   0.0000000000 0.0000000000 0.0000000000
##     NG                    0.0000000000 0.0000000000 0.0000000000
##     PC                    0.0000000000 0.0000000000 0.0000000000
##     PCFX                  0.0000000000 0.0000000000 0.0000000000
##     PS                    0.0000000000 0.0000000000 0.0000000000
##     PS2                   0.0000000000 0.0000000000 0.0000000000
##     PS3                   0.0000000000 0.0000000000 0.0000000000
##     PS4                   0.0000000000 0.0000000000 0.0000000000
##     PSP                   0.0000000000 0.0000000000 0.0000000000
##     PSV                   0.0000000000 0.0000000000 0.0000000000
##     SAT                   0.0000000000 0.0000000000 0.0000000000
##     SCD                   0.0000000000 0.0000000000 0.0000000000
##     SNES                  0.0000000000 0.0000000000 0.0000000000
##     TG16                  0.0000000000 0.0000000000 0.0000000000
##     Wii                   0.0007547170 0.0000000000 0.0000000000
##     WiiU                  0.0000000000 0.0000000000 0.0000000000
##     WS                    0.0000000000 0.0000000000 0.0000000000
##     X360                  0.0000000000 0.0000000000 0.0007905138
##     XB                    0.0000000000 0.0012135922 0.0000000000
##     XOne                  0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   Phenomedia Phoenix Games       Piacci     Pinnacle  Pioneer LDC
##     2600 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0018492834  0.0004623209 0.0000000000 0.0013869626 0.0000000000
##     GB   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000  0.0000000000 0.0000000000 0.0010416667 0.0000000000
##     PCFX 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0033444816
##     PS2  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000  0.0000000000 0.0008244023 0.0000000000 0.0000000000
##     PSV  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000  0.0000000000 0.0000000000 0.0007547170 0.0000000000
##     WiiU 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform      Play It Playlogic Game Factory    Playmates     Playmore
##     2600 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000           0.0013869626 0.0000000000 0.0000000000
##     GB   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0012165450           0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000           0.0010416667 0.0000000000 0.0000000000
##     PCFX 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000           0.0000000000 0.0008361204 0.0000000000
##     PS2  0.0055529847           0.0004627487 0.0000000000 0.0004627487
##     PS3  0.0000000000           0.0007524454 0.0000000000 0.0000000000
##     PS4  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0008244023           0.0008244023 0.0000000000 0.0000000000
##     PSV  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000           0.0037735849 0.0000000000 0.0000000000
##     WiiU 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000           0.0015810277 0.0000000000 0.0000000000
##     XB   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform        PlayV       Plenty   PM Studios  Pony Canyon PopCap Games
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0018492834 0.0004623209 0.0000000000 0.0000000000 0.0018492834
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0062500000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0008361204 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0007524454
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0008244023 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0031620553
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Popcorn Arcade PopTop Software          Pow        PQube
##     2600   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     3DO    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     3DS    0.0000000000    0.0000000000 0.0000000000 0.0019646365
##     DC     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     DS     0.0000000000    0.0000000000 0.0000000000 0.0013869626
##     GB     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GBA    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GC     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GEN    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GG     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     N64    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NES    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NG     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PC     0.0000000000    0.0000000000 0.0000000000 0.0010416667
##     PCFX   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS     0.0000000000    0.0008361204 0.0000000000 0.0000000000
##     PS2    0.0000000000    0.0000000000 0.0000000000 0.0004627487
##     PS3    0.0000000000    0.0000000000 0.0000000000 0.0075244545
##     PS4    0.0000000000    0.0000000000 0.0000000000 0.0119047619
##     PSP    0.0000000000    0.0000000000 0.0000000000 0.0032976092
##     PSV    0.0000000000    0.0000000000 0.0000000000 0.0169491525
##     SAT    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SCD    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SNES   0.0000000000    0.0000000000 0.0041841004 0.0000000000
##     TG16   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     Wii    0.0075471698    0.0000000000 0.0000000000 0.0030188679
##     WiiU   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     WS     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     X360   0.0000000000    0.0000000000 0.0000000000 0.0023715415
##     XB     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     XOne   0.0000000000    0.0000000000 0.0000000000 0.0046948357
##         Publisher
## Platform Princess Soft    Prototype    Psygnosis       Quelle        Quest
##     2600  0.0000000000 0.0000000000 0.0000000000 0.0075187970 0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS    0.0000000000 0.0000000000 0.0267558528 0.0000000000 0.0000000000
##     PS2   0.0013882462 0.0032392411 0.0000000000 0.0000000000 0.0000000000
##     PS3   0.0000000000 0.0007524454 0.0000000000 0.0000000000 0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP   0.0000000000 0.0090684254 0.0000000000 0.0000000000 0.0000000000
##     PSV   0.0000000000 0.0145278450 0.0000000000 0.0000000000 0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0041841004
##     TG16  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360  0.0000000000 0.0015810277 0.0000000000 0.0000000000 0.0000000000
##     XB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform     Quinrose      Quintet Rage Software   Rain Games    Rebellion
##     2600 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000  0.0012165450 0.0000000000 0.0024330900
##     GC   0.0000000000 0.0000000000  0.0017985612 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000  0.0009254975 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0115416323 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000  0.0000000000 0.0024213075 0.0000000000
##     SAT  0.0000000000 0.0057803468  0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000  0.0036407767 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Rebellion Developments RED Entertainment      Red Orb
##     2600           0.0000000000      0.0000000000 0.0000000000
##     3DO            0.0000000000      0.0000000000 0.0000000000
##     3DS            0.0000000000      0.0000000000 0.0000000000
##     DC             0.0000000000      0.0000000000 0.0000000000
##     DS             0.0000000000      0.0000000000 0.0000000000
##     GB             0.0000000000      0.0000000000 0.0000000000
##     GBA            0.0000000000      0.0000000000 0.0000000000
##     GC             0.0000000000      0.0000000000 0.0000000000
##     GEN            0.0000000000      0.0000000000 0.0000000000
##     GG             0.0000000000      0.0000000000 0.0000000000
##     N64            0.0000000000      0.0000000000 0.0000000000
##     NES            0.0000000000      0.0000000000 0.0000000000
##     NG             0.0000000000      0.0000000000 0.0000000000
##     PC             0.0000000000      0.0000000000 0.0020833333
##     PCFX           0.0000000000      0.0000000000 0.0000000000
##     PS             0.0000000000      0.0000000000 0.0000000000
##     PS2            0.0000000000      0.0004627487 0.0000000000
##     PS3            0.0000000000      0.0000000000 0.0000000000
##     PS4            0.0029761905      0.0000000000 0.0000000000
##     PSP            0.0000000000      0.0000000000 0.0000000000
##     PSV            0.0000000000      0.0000000000 0.0000000000
##     SAT            0.0000000000      0.0000000000 0.0000000000
##     SCD            0.0000000000      0.0000000000 0.0000000000
##     SNES           0.0000000000      0.0000000000 0.0000000000
##     TG16           0.0000000000      0.0000000000 0.0000000000
##     Wii            0.0000000000      0.0000000000 0.0000000000
##     WiiU           0.0000000000      0.0000000000 0.0000000000
##     WS             0.0000000000      0.0000000000 0.0000000000
##     X360           0.0000000000      0.0000000000 0.0000000000
##     XB             0.0000000000      0.0000000000 0.0000000000
##     XOne           0.0046948357      0.0000000000 0.0000000000
##         Publisher
## Platform Red Storm Entertainment    RedOctane Reef Entertainment
##     2600            0.0000000000 0.0000000000       0.0000000000
##     3DO             0.0000000000 0.0000000000       0.0000000000
##     3DS             0.0000000000 0.0000000000       0.0000000000
##     DC              0.0000000000 0.0000000000       0.0000000000
##     DS              0.0000000000 0.0000000000       0.0004623209
##     GB              0.0000000000 0.0000000000       0.0000000000
##     GBA             0.0000000000 0.0000000000       0.0000000000
##     GC              0.0000000000 0.0000000000       0.0000000000
##     GEN             0.0000000000 0.0000000000       0.0000000000
##     GG              0.0000000000 0.0000000000       0.0000000000
##     N64             0.0031347962 0.0000000000       0.0000000000
##     NES             0.0000000000 0.0000000000       0.0000000000
##     NG              0.0000000000 0.0000000000       0.0000000000
##     PC              0.0000000000 0.0000000000       0.0010416667
##     PCFX            0.0000000000 0.0000000000       0.0000000000
##     PS              0.0016722408 0.0000000000       0.0000000000
##     PS2             0.0000000000 0.0018509949       0.0000000000
##     PS3             0.0000000000 0.0000000000       0.0007524454
##     PS4             0.0000000000 0.0000000000       0.0000000000
##     PSP             0.0000000000 0.0000000000       0.0000000000
##     PSV             0.0000000000 0.0000000000       0.0000000000
##     SAT             0.0000000000 0.0000000000       0.0000000000
##     SCD             0.0000000000 0.0000000000       0.0000000000
##     SNES            0.0000000000 0.0000000000       0.0000000000
##     TG16            0.0000000000 0.0000000000       0.0000000000
##     Wii             0.0000000000 0.0000000000       0.0030188679
##     WiiU            0.0000000000 0.0000000000       0.0000000000
##     WS              0.0000000000 0.0000000000       0.0000000000
##     X360            0.0000000000 0.0000000000       0.0000000000
##     XB              0.0000000000 0.0000000000       0.0000000000
##     XOne            0.0000000000 0.0000000000       0.0000000000
##         Publisher
## Platform responDESIGN Revolution (Japan) Revolution Software
##     2600 0.0000000000       0.0000000000        0.0000000000
##     3DO  0.0000000000       0.0000000000        0.0000000000
##     3DS  0.0000000000       0.0000000000        0.0000000000
##     DC   0.0000000000       0.0000000000        0.0000000000
##     DS   0.0000000000       0.0000000000        0.0000000000
##     GB   0.0000000000       0.0000000000        0.0000000000
##     GBA  0.0000000000       0.0000000000        0.0000000000
##     GC   0.0000000000       0.0000000000        0.0000000000
##     GEN  0.0000000000       0.0000000000        0.0000000000
##     GG   0.0000000000       0.0000000000        0.0000000000
##     N64  0.0000000000       0.0000000000        0.0000000000
##     NES  0.0000000000       0.0000000000        0.0000000000
##     NG   0.0000000000       0.0000000000        0.0000000000
##     PC   0.0000000000       0.0000000000        0.0000000000
##     PCFX 0.0000000000       0.0000000000        0.0000000000
##     PS   0.0000000000       0.0000000000        0.0000000000
##     PS2  0.0004627487       0.0004627487        0.0000000000
##     PS3  0.0000000000       0.0000000000        0.0000000000
##     PS4  0.0000000000       0.0000000000        0.0029761905
##     PSP  0.0000000000       0.0000000000        0.0000000000
##     PSV  0.0000000000       0.0000000000        0.0000000000
##     SAT  0.0000000000       0.0000000000        0.0000000000
##     SCD  0.0000000000       0.0000000000        0.0000000000
##     SNES 0.0000000000       0.0000000000        0.0000000000
##     TG16 0.0000000000       0.0000000000        0.0000000000
##     Wii  0.0000000000       0.0000000000        0.0000000000
##     WiiU 0.0000000000       0.0000000000        0.0000000000
##     WS   0.0000000000       0.0000000000        0.0000000000
##     X360 0.0000000000       0.0000000000        0.0000000000
##     XB   0.0012135922       0.0000000000        0.0000000000
##     XOne 0.0000000000       0.0000000000        0.0046948357
##         Publisher
## Platform Rising Star Games Riverhillsoft Rocket Company   Rondomedia
##     2600      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     3DO       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     3DS       0.0078585462  0.0000000000   0.0137524558 0.0000000000
##     DC        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     DS        0.0184928340  0.0000000000   0.0041608877 0.0023116043
##     GB        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GBA       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GC        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GEN       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GG        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     N64       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     NES       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     NG        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     PC        0.0010416667  0.0000000000   0.0000000000 0.0072916667
##     PCFX      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     PS        0.0000000000  0.0008361204   0.0000000000 0.0000000000
##     PS2       0.0013882462  0.0000000000   0.0000000000 0.0000000000
##     PS3       0.0015048909  0.0000000000   0.0000000000 0.0000000000
##     PS4       0.0029761905  0.0000000000   0.0000000000 0.0000000000
##     PSP       0.0098928277  0.0000000000   0.0000000000 0.0000000000
##     PSV       0.0024213075  0.0000000000   0.0000000000 0.0000000000
##     SAT       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     SCD       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     SNES      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     TG16      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     Wii       0.0128301887  0.0000000000   0.0007547170 0.0015094340
##     WiiU      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     WS        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     X360      0.0039525692  0.0000000000   0.0000000000 0.0000000000
##     XB        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     XOne      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##         Publisher
## Platform          RTL       Russel Sammy Corporation       Saurus
##     2600 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     DS   0.0013869626 0.0004623209      0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000      0.0012165450 0.0000000000
##     GC   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PC   0.0000000000 0.0010416667      0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000      0.0000000000 0.0008361204
##     PS2  0.0000000000 0.0009254975      0.0041647385 0.0000000000
##     PS3  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0016488046      0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000      0.0041841004 0.0000000000
##     TG16 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     Wii  0.0022641509 0.0000000000      0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     X360 0.0015810277 0.0000000000      0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##         Publisher
## Platform Scholastic Inc.          SCi   Screenlife SCS Software
##     2600    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS     0.0000000000 0.0000000000 0.0058939096 0.0000000000
##     DC      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS      0.0032362460 0.0000000000 0.0000000000 0.0000000000
##     GB      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC      0.0000000000 0.0053956835 0.0000000000 0.0000000000
##     GEN     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC      0.0000000000 0.0010416667 0.0000000000 0.0010416667
##     PCFX    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2     0.0004627487 0.0023137436 0.0000000000 0.0000000000
##     PS3     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV     0.0000000000 0.0000000000 0.0072639225 0.0000000000
##     SAT     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii     0.0015094340 0.0000000000 0.0000000000 0.0000000000
##     WiiU    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB      0.0000000000 0.0097087379 0.0000000000 0.0000000000
##     XOne    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform        Sears         Sega Seta Corporation Seventh Chord
##     2600 0.0075187970 0.0075187970     0.0000000000  0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     3DS  0.0000000000 0.0412573674     0.0000000000  0.0019646365
##     DC   0.0000000000 0.5769230769     0.0000000000  0.0000000000
##     DS   0.0000000000 0.0295885344     0.0000000000  0.0000000000
##     GB   0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     GBA  0.0000000000 0.0121654501     0.0000000000  0.0000000000
##     GC   0.0000000000 0.0449640288     0.0000000000  0.0000000000
##     GEN  0.0000000000 0.6666666667     0.0000000000  0.0000000000
##     GG   0.0000000000 1.0000000000     0.0000000000  0.0000000000
##     N64  0.0000000000 0.0000000000     0.0031347962  0.0000000000
##     NES  0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     NG   0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     PC   0.0000000000 0.0343750000     0.0000000000  0.0000000000
##     PCFX 0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     PS   0.0000000000 0.0000000000     0.0025083612  0.0000000000
##     PS2  0.0000000000 0.0384081444     0.0000000000  0.0000000000
##     PS3  0.0000000000 0.0458991723     0.0000000000  0.0000000000
##     PS4  0.0000000000 0.0238095238     0.0000000000  0.0000000000
##     PSP  0.0000000000 0.0420445177     0.0000000000  0.0000000000
##     PSV  0.0000000000 0.0387409201     0.0000000000  0.0000000000
##     SAT  0.0000000000 0.4450867052     0.0115606936  0.0000000000
##     SCD  0.0000000000 1.0000000000     0.0000000000  0.0000000000
##     SNES 0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     TG16 0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     Wii  0.0000000000 0.0332075472     0.0000000000  0.0000000000
##     WiiU 0.0000000000 0.0279720280     0.0000000000  0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     X360 0.0000000000 0.0371541502     0.0000000000  0.0000000000
##     XB   0.0000000000 0.0461165049     0.0000000000  0.0000000000
##     XOne 0.0000000000 0.0046948357     0.0000000000  0.0000000000
##         Publisher
## Platform   Shogakukan Simon & Schuster Interactive Slightly Mad Studios
##     2600 0.0000000000                 0.0000000000         0.0000000000
##     3DO  0.0000000000                 0.0000000000         0.0000000000
##     3DS  0.0019646365                 0.0000000000         0.0000000000
##     DC   0.0000000000                 0.0000000000         0.0000000000
##     DS   0.0009246417                 0.0000000000         0.0000000000
##     GB   0.0000000000                 0.0000000000         0.0000000000
##     GBA  0.0000000000                 0.0000000000         0.0000000000
##     GC   0.0000000000                 0.0000000000         0.0000000000
##     GEN  0.0000000000                 0.0000000000         0.0000000000
##     GG   0.0000000000                 0.0000000000         0.0000000000
##     N64  0.0000000000                 0.0000000000         0.0000000000
##     NES  0.0000000000                 0.0000000000         0.0000000000
##     NG   0.0000000000                 0.0000000000         0.0000000000
##     PC   0.0000000000                 0.0000000000         0.0010416667
##     PCFX 0.0000000000                 0.0000000000         0.0000000000
##     PS   0.0000000000                 0.0000000000         0.0000000000
##     PS2  0.0000000000                 0.0000000000         0.0000000000
##     PS3  0.0000000000                 0.0000000000         0.0000000000
##     PS4  0.0000000000                 0.0000000000         0.0029761905
##     PSP  0.0000000000                 0.0000000000         0.0000000000
##     PSV  0.0000000000                 0.0000000000         0.0000000000
##     SAT  0.0115606936                 0.0000000000         0.0000000000
##     SCD  0.0000000000                 0.0000000000         0.0000000000
##     SNES 0.0000000000                 0.0000000000         0.0000000000
##     TG16 0.0000000000                 0.0000000000         0.0000000000
##     Wii  0.0000000000                 0.0000000000         0.0000000000
##     WiiU 0.0000000000                 0.0000000000         0.0000000000
##     WS   0.0000000000                 0.0000000000         0.0000000000
##     X360 0.0000000000                 0.0000000000         0.0000000000
##     XB   0.0000000000                 0.0012135922         0.0000000000
##     XOne 0.0000000000                 0.0000000000         0.0046948357
##         Publisher
## Platform Slitherine Software          SNK SNK Playmore      Societa
##     2600        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC          0.0000000000 0.0384615385 0.0000000000 0.0000000000
##     DS          0.0004623209 0.0000000000 0.0018492834 0.0000000000
##     GB          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG          0.0000000000 0.8333333333 0.0000000000 0.0000000000
##     PC          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS          0.0000000000 0.0041806020 0.0025083612 0.0000000000
##     PS2         0.0000000000 0.0004627487 0.0027764924 0.0000000000
##     PS3         0.0007524454 0.0000000000 0.0000000000 0.0000000000
##     PS4         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP         0.0008244023 0.0000000000 0.0008244023 0.0000000000
##     PSV         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT         0.0000000000 0.0231213873 0.0057803468 0.0057803468
##     SCD         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360        0.0007905138 0.0000000000 0.0000000000 0.0000000000
##     XB          0.0000000000 0.0000000000 0.0036407767 0.0000000000
##     XOne        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform     Sold Out       Sonnet Sony Computer Entertainment
##     2600 0.0000000000 0.0000000000                0.0000000000
##     3DO  0.0000000000 0.0000000000                0.0000000000
##     3DS  0.0000000000 0.0000000000                0.0000000000
##     DC   0.0000000000 0.0000000000                0.0000000000
##     DS   0.0000000000 0.0000000000                0.0000000000
##     GB   0.0000000000 0.0000000000                0.0000000000
##     GBA  0.0000000000 0.0000000000                0.0000000000
##     GC   0.0000000000 0.0000000000                0.0000000000
##     GEN  0.0000000000 0.0000000000                0.0000000000
##     GG   0.0000000000 0.0000000000                0.0000000000
##     N64  0.0000000000 0.0000000000                0.0000000000
##     NES  0.0000000000 0.0000000000                0.0000000000
##     NG   0.0000000000 0.0000000000                0.0000000000
##     PC   0.0000000000 0.0000000000                0.0000000000
##     PCFX 0.0000000000 0.0000000000                0.0000000000
##     PS   0.0000000000 0.0000000000                0.1571906355
##     PS2  0.0000000000 0.0000000000                0.0944007404
##     PS3  0.0000000000 0.0000000000                0.0970654628
##     PS4  0.0029761905 0.0000000000                0.0505952381
##     PSP  0.0000000000 0.0000000000                0.0964550701
##     PSV  0.0000000000 0.0000000000                0.0677966102
##     SAT  0.0000000000 0.0115606936                0.0000000000
##     SCD  0.0000000000 0.0000000000                0.0000000000
##     SNES 0.0000000000 0.0000000000                0.0000000000
##     TG16 0.0000000000 0.0000000000                0.0000000000
##     Wii  0.0000000000 0.0000000000                0.0000000000
##     WiiU 0.0000000000 0.0000000000                0.0000000000
##     WS   0.0000000000 0.0000000000                0.0000000000
##     X360 0.0000000000 0.0000000000                0.0000000000
##     XB   0.0000000000 0.0000000000                0.0000000000
##     XOne 0.0000000000 0.0000000000                0.0000000000
##         Publisher
## Platform Sony Computer Entertainment America
##     2600                        0.0000000000
##     3DO                         0.0000000000
##     3DS                         0.0000000000
##     DC                          0.0000000000
##     DS                          0.0000000000
##     GB                          0.0000000000
##     GBA                         0.0000000000
##     GC                          0.0000000000
##     GEN                         0.0000000000
##     GG                          0.0000000000
##     N64                         0.0000000000
##     NES                         0.0000000000
##     NG                          0.0000000000
##     PC                          0.0000000000
##     PCFX                        0.0000000000
##     PS                          0.0000000000
##     PS2                         0.0000000000
##     PS3                         0.0007524454
##     PS4                         0.0029761905
##     PSP                         0.0000000000
##     PSV                         0.0024213075
##     SAT                         0.0000000000
##     SCD                         0.0000000000
##     SNES                        0.0000000000
##     TG16                        0.0000000000
##     Wii                         0.0000000000
##     WiiU                        0.0000000000
##     WS                          0.0000000000
##     X360                        0.0000000000
##     XB                          0.0000000000
##     XOne                        0.0000000000
##         Publisher
## Platform Sony Computer Entertainment Europe Sony Music Entertainment
##     2600                       0.0000000000             0.0000000000
##     3DO                        0.0000000000             0.0000000000
##     3DS                        0.0000000000             0.0000000000
##     DC                         0.0000000000             0.0000000000
##     DS                         0.0000000000             0.0000000000
##     GB                         0.0000000000             0.0000000000
##     GBA                        0.0000000000             0.0000000000
##     GC                         0.0000000000             0.0000000000
##     GEN                        0.0000000000             0.0000000000
##     GG                         0.0000000000             0.0000000000
##     N64                        0.0000000000             0.0000000000
##     NES                        0.0000000000             0.0000000000
##     NG                         0.0000000000             0.0000000000
##     PC                         0.0000000000             0.0000000000
##     PCFX                       0.0000000000             0.0000000000
##     PS                         0.0000000000             0.0000000000
##     PS2                        0.0009254975             0.0004627487
##     PS3                        0.0037622272             0.0000000000
##     PS4                        0.0119047619             0.0000000000
##     PSP                        0.0000000000             0.0000000000
##     PSV                        0.0096852300             0.0000000000
##     SAT                        0.0000000000             0.0000000000
##     SCD                        0.0000000000             0.0000000000
##     SNES                       0.0000000000             0.0000000000
##     TG16                       0.0000000000             0.0000000000
##     Wii                        0.0000000000             0.0000000000
##     WiiU                       0.0000000000             0.0000000000
##     WS                         0.0000000000             0.0000000000
##     X360                       0.0000000000             0.0000000000
##     XB                         0.0000000000             0.0000000000
##     XOne                       0.0000000000             0.0000000000
##         Publisher
## Platform Sony Online Entertainment SouthPeak Games        Spike
##     2600              0.0000000000    0.0000000000 0.0000000000
##     3DO               0.0000000000    0.0000000000 0.0000000000
##     3DS               0.0000000000    0.0000000000 0.0000000000
##     DC                0.0000000000    0.0000000000 0.0000000000
##     DS                0.0000000000    0.0060101711 0.0036985668
##     GB                0.0000000000    0.0000000000 0.0000000000
##     GBA               0.0000000000    0.0000000000 0.0012165450
##     GC                0.0000000000    0.0000000000 0.0000000000
##     GEN               0.0000000000    0.0000000000 0.0000000000
##     GG                0.0000000000    0.0000000000 0.0000000000
##     N64               0.0000000000    0.0000000000 0.0000000000
##     NES               0.0000000000    0.0000000000 0.0000000000
##     NG                0.0000000000    0.0000000000 0.0000000000
##     PC                0.0020833333    0.0010416667 0.0000000000
##     PCFX              0.0000000000    0.0000000000 0.0000000000
##     PS                0.0000000000    0.0008361204 0.0000000000
##     PS2               0.0018509949    0.0013882462 0.0032392411
##     PS3               0.0007524454    0.0022573363 0.0030097818
##     PS4               0.0000000000    0.0000000000 0.0000000000
##     PSP               0.0008244023    0.0016488046 0.0115416323
##     PSV               0.0000000000    0.0000000000 0.0000000000
##     SAT               0.0000000000    0.0000000000 0.0000000000
##     SCD               0.0000000000    0.0000000000 0.0000000000
##     SNES              0.0000000000    0.0000000000 0.0000000000
##     TG16              0.0000000000    0.0000000000 0.0000000000
##     Wii               0.0000000000    0.0067924528 0.0000000000
##     WiiU              0.0000000000    0.0000000000 0.0000000000
##     WS                0.0000000000    0.0000000000 0.0000000000
##     X360              0.0000000000    0.0039525692 0.0023715415
##     XB                0.0000000000    0.0000000000 0.0000000000
##     XOne              0.0000000000    0.0000000000 0.0000000000
##         Publisher
## Platform          SPS       Square    Square EA  Square Enix   SquareSoft
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0275049116 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0208044383 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0306122449
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0024330900 0.0012165450
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0102040816 0.0000000000 0.0000000000 0.0306122449
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0218750000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0008361204 0.0033444816 0.0008361204 0.0000000000 0.0209030100
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0120314669 0.0018509949
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0218209180 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0565476190 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0164880462 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0193704600 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0041841004 0.0000000000 0.0000000000 0.0585774059
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0067924528 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0209790210 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0205533597 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0516431925 0.0000000000
##         Publisher
## Platform          SSI Stainless Games     Starfish Starpath Corp.
##     2600 0.0000000000    0.0000000000 0.0000000000   0.0075187970
##     3DO  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     3DS  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     DC   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     DS   0.0000000000    0.0000000000 0.0009246417   0.0000000000
##     GB   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     GBA  0.0000000000    0.0000000000 0.0012165450   0.0000000000
##     GC   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     GEN  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     GG   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     N64  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     NES  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     NG   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PC   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PCFX 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PS   0.0008361204    0.0000000000 0.0016722408   0.0000000000
##     PS2  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PS3  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PS4  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PSP  0.0000000000    0.0000000000 0.0032976092   0.0000000000
##     PSV  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     SAT  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     SCD  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     SNES 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     TG16 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     Wii  0.0000000000    0.0000000000 0.0007547170   0.0000000000
##     WiiU 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     WS   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     X360 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     XB   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     XOne 0.0000000000    0.0046948357 0.0000000000   0.0000000000
##         Publisher
## Platform        Sting Storm City Games Strategy First      Success
##     2600 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DO  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DS  0.0000000000     0.0000000000   0.0000000000 0.0039292731
##     DC   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     DS   0.0013869626     0.0060101711   0.0000000000 0.0036985668
##     GB   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GBA  0.0024330900     0.0000000000   0.0000000000 0.0000000000
##     GC   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GEN  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GG   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     N64  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     NES  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     NG   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PC   0.0000000000     0.0000000000   0.0010416667 0.0000000000
##     PCFX 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PS   0.0000000000     0.0000000000   0.0000000000 0.0033444816
##     PS2  0.0004627487     0.0000000000   0.0000000000 0.0013882462
##     PS3  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PS4  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PSP  0.0016488046     0.0000000000   0.0000000000 0.0008244023
##     PSV  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SAT  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SCD  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SNES 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     TG16 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     Wii  0.0007547170     0.0045283019   0.0000000000 0.0000000000
##     WiiU 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     WS   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     X360 0.0000000000     0.0000000000   0.0000000000 0.0007905138
##     XB   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     XOne 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##         Publisher
## Platform   Summitsoft   Sunflowers Sunrise Interactive      Sunsoft
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.0019646365
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0012165450 0.0000000000        0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.0031347962
##     NES  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 0.0010416667        0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000        0.0000000000 0.0033444816
##     PS2  0.0000000000 0.0000000000        0.0018509949 0.0000000000
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.0115606936
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000        0.0000000000 0.0083682008
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform       Sweets Swing! Entertainment       Syscom     System 3
##     2600 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000         0.0012165450 0.0000000000 0.0000000000
##     GC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000         0.0008361204 0.0016722408 0.0000000000
##     PS2  0.0009254975         0.0013882462 0.0000000000 0.0000000000
##     PS3  0.0000000000         0.0000000000 0.0000000000 0.0007524454
##     PS4  0.0000000000         0.0000000000 0.0000000000 0.0029761905
##     PSP  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000         0.0000000000 0.0000000000 0.0024213075
##     SAT  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000         0.0012135922 0.0000000000 0.0000000000
##     XOne 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform System 3 Arcade Software  System Soft     T&E Soft        Taito
##     2600             0.0000000000 0.0000000000 0.0000000000 0.0075187970
##     3DO              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS               0.0013869626 0.0000000000 0.0000000000 0.0013869626
##     GB               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA              0.0000000000 0.0000000000 0.0000000000 0.0012165450
##     GC               0.0000000000 0.0000000000 0.0000000000 0.0017985612
##     GEN              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64              0.0000000000 0.0000000000 0.0000000000 0.0031347962
##     NES              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS               0.0000000000 0.0000000000 0.0000000000 0.0016722408
##     PS2              0.0004627487 0.0000000000 0.0000000000 0.0023137436
##     PS3              0.0015048909 0.0000000000 0.0000000000 0.0000000000
##     PS4              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP              0.0016488046 0.0032976092 0.0000000000 0.0000000000
##     PSV              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT              0.0000000000 0.0000000000 0.0000000000 0.0057803468
##     SCD              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES             0.0000000000 0.0000000000 0.0041841004 0.0083682008
##     TG16             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii              0.0045283019 0.0000000000 0.0000000000 0.0015094340
##     WiiU             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform       Takara  Takara Tomy Take-Two Interactive       Takuyo
##     2600 0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0058939096         0.0039292731 0.0000000000
##     DC   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     DS   0.0000000000 0.0101710587         0.0134073047 0.0000000000
##     GB   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     GBA  0.0012165450 0.0000000000         0.0048661800 0.0000000000
##     GC   0.0000000000 0.0000000000         0.0071942446 0.0000000000
##     GEN  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     N64  0.0031347962 0.0000000000         0.0125391850 0.0000000000
##     NES  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000         0.0468750000 0.0000000000
##     PCFX 0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     PS   0.0050167224 0.0000000000         0.0150501672 0.0000000000
##     PS2  0.0013882462 0.0000000000         0.0277649236 0.0000000000
##     PS3  0.0000000000 0.0000000000         0.0398796087 0.0000000000
##     PS4  0.0000000000 0.0000000000         0.0357142857 0.0000000000
##     PSP  0.0000000000 0.0024732069         0.0189612531 0.0008244023
##     PSV  0.0000000000 0.0000000000         0.0048426150 0.0000000000
##     SAT  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     SNES 0.0209205021 0.0000000000         0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0060377358         0.0286792453 0.0000000000
##     WiiU 0.0000000000 0.0000000000         0.0069930070 0.0000000000
##     WS   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     X360 0.0000000000 0.0007905138         0.0553359684 0.0000000000
##     XB   0.0000000000 0.0000000000         0.0436893204 0.0000000000
##     XOne 0.0000000000 0.0000000000         0.0563380282 0.0000000000
##         Publisher
## Platform    TalonSoft     TDK Core TDK Mediactive Team17 Software
##     2600 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     3DO  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     DC   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     DS   0.0000000000 0.0013869626   0.0000000000    0.0000000000
##     GB   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     GBA  0.0000000000 0.0012165450   0.0133819951    0.0000000000
##     GC   0.0000000000 0.0000000000   0.0161870504    0.0000000000
##     GEN  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     N64  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     NES  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PC   0.0000000000 0.0000000000   0.0000000000    0.0010416667
##     PCFX 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PS   0.0008361204 0.0008361204   0.0016722408    0.0000000000
##     PS2  0.0000000000 0.0000000000   0.0027764924    0.0000000000
##     PS3  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PS4  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PSP  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PSV  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     SNES 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     Wii  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     X360 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     XB   0.0000000000 0.0000000000   0.0097087379    0.0000000000
##     XOne 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##         Publisher
## Platform Technos Japan Corporation   TechnoSoft   Tecmo Koei    Telegames
##     2600              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS               0.0000000000 0.0000000000 0.0176817289 0.0000000000
##     DC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS                0.0000000000 0.0000000000 0.0120203421 0.0018492834
##     GB                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA               0.0000000000 0.0000000000 0.0012165450 0.0036496350
##     GC                0.0000000000 0.0000000000 0.0017985612 0.0000000000
##     GEN               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG                0.0833333333 0.0000000000 0.0000000000 0.0000000000
##     PC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS                0.0000000000 0.0008361204 0.0150501672 0.0008361204
##     PS2               0.0000000000 0.0000000000 0.0393336418 0.0000000000
##     PS3               0.0000000000 0.0000000000 0.0421369451 0.0000000000
##     PS4               0.0000000000 0.0000000000 0.0654761905 0.0000000000
##     PSP               0.0000000000 0.0000000000 0.0272052762 0.0000000000
##     PSV               0.0000000000 0.0000000000 0.0774818402 0.0000000000
##     SAT               0.0000000000 0.0000000000 0.0173410405 0.0000000000
##     SCD               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES              0.0000000000 0.0000000000 0.0334728033 0.0000000000
##     TG16              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii               0.0000000000 0.0000000000 0.0045283019 0.0000000000
##     WiiU              0.0000000000 0.0000000000 0.0209790210 0.0000000000
##     WS                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360              0.0000000000 0.0000000000 0.0181818182 0.0000000000
##     XB                0.0000000000 0.0000000000 0.0072815534 0.0000000000
##     XOne              0.0000000000 0.0000000000 0.0281690141 0.0000000000
##         Publisher
## Platform Telltale Games      Telstar Tetris Online          TGL
##     2600   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     3DO    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     3DS    0.0000000000 0.0000000000  0.0019646365 0.0000000000
##     DC     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     DS     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GB     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GBA    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GC     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GEN    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GG     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     N64    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     NES    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     NG     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PC     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PCFX   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PS     0.0000000000 0.0025083612  0.0000000000 0.0000000000
##     PS2    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PS3    0.0037622272 0.0000000000  0.0000000000 0.0000000000
##     PS4    0.0208333333 0.0000000000  0.0000000000 0.0000000000
##     PSP    0.0000000000 0.0000000000  0.0000000000 0.0008244023
##     PSV    0.0048426150 0.0000000000  0.0000000000 0.0072639225
##     SAT    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     SCD    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     SNES   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     TG16   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     Wii    0.0007547170 0.0000000000  0.0000000000 0.0000000000
##     WiiU   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     WS     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     X360   0.0031620553 0.0000000000  0.0000000000 0.0000000000
##     XB     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     XOne   0.0281690141 0.0000000000  0.0000000000 0.0000000000
##         Publisher
## Platform The Adventure Company The Learning Company          THQ
##     2600          0.0000000000         0.0000000000 0.0000000000
##     3DO           0.0000000000         0.0000000000 0.0000000000
##     3DS           0.0000000000         0.0000000000 0.0058939096
##     DC            0.0000000000         0.0000000000 0.0000000000
##     DS            0.0004623209         0.0000000000 0.0531668978
##     GB            0.0000000000         0.0000000000 0.0000000000
##     GBA           0.0000000000         0.0000000000 0.1338199513
##     GC            0.0000000000         0.0000000000 0.0845323741
##     GEN           0.0000000000         0.0000000000 0.0000000000
##     GG            0.0000000000         0.0000000000 0.0000000000
##     N64           0.0000000000         0.0000000000 0.0564263323
##     NES           0.0000000000         0.0000000000 0.0000000000
##     NG            0.0000000000         0.0000000000 0.0000000000
##     PC            0.0000000000         0.0000000000 0.0302083333
##     PCFX          0.0000000000         0.0000000000 0.0000000000
##     PS            0.0000000000         0.0008361204 0.0225752508
##     PS2           0.0000000000         0.0000000000 0.0462748727
##     PS3           0.0000000000         0.0000000000 0.0346124906
##     PS4           0.0000000000         0.0000000000 0.0000000000
##     PSP           0.0000000000         0.0000000000 0.0247320692
##     PSV           0.0000000000         0.0000000000 0.0000000000
##     SAT           0.0000000000         0.0000000000 0.0000000000
##     SCD           0.0000000000         0.0000000000 0.0000000000
##     SNES          0.0000000000         0.0000000000 0.0041841004
##     TG16          0.0000000000         0.0000000000 0.0000000000
##     Wii           0.0030188679         0.0000000000 0.0573584906
##     WiiU          0.0000000000         0.0000000000 0.0069930070
##     WS            0.0000000000         0.0000000000 0.0000000000
##     X360          0.0000000000         0.0000000000 0.0505928854
##     XB            0.0000000000         0.0000000000 0.0582524272
##     XOne          0.0000000000         0.0000000000 0.0000000000
##         Publisher
## Platform  Tigervision Time Warner Interactive        Titus       Tivola
##     2600 0.0225563910            0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000            0.0000000000 0.0000000000 0.0013869626
##     GB   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000            0.0000000000 0.0048661800 0.0000000000
##     GC   0.0000000000            0.0000000000 0.0017985612 0.0000000000
##     GEN  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000            0.0000000000 0.0188087774 0.0000000000
##     NES  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000            0.0041806020 0.0025083612 0.0000000000
##     PS2  0.0000000000            0.0000000000 0.0013882462 0.0000000000
##     PS3  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000            0.0000000000 0.0041841004 0.0000000000
##     TG16 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000            0.0000000000 0.0012135922 0.0000000000
##     XOne 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform         TOHO        Tommo Tomy Corporation TopWare Interactive
##     2600 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     3DS  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     DC   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     DS   0.0000000000 0.0013869626     0.0023116043        0.0000000000
##     GB   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     GBA  0.0000000000 0.0000000000     0.0024330900        0.0000000000
##     GC   0.0000000000 0.0000000000     0.0089928058        0.0000000000
##     GEN  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     GG   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     N64  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     NES  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     NG   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PC   0.0000000000 0.0000000000     0.0000000000        0.0010416667
##     PCFX 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PS   0.0000000000 0.0000000000     0.0033444816        0.0000000000
##     PS2  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PS3  0.0000000000 0.0000000000     0.0000000000        0.0007524454
##     PS4  0.0000000000 0.0000000000     0.0000000000        0.0029761905
##     PSP  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PSV  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     SAT  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     SCD  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     SNES 0.0041841004 0.0000000000     0.0000000000        0.0000000000
##     TG16 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     Wii  0.0000000000 0.0015094340     0.0015094340        0.0000000000
##     WiiU 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     X360 0.0000000000 0.0000000000     0.0000000000        0.0007905138
##     XB   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     XOne 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##         Publisher
## Platform   Touchstone    Tradewest Trion Worlds Tripwire Interactive
##     2600 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     DS   0.0004623209 0.0000000000 0.0000000000         0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PC   0.0010416667 0.0000000000 0.0020833333         0.0010416667
##     PCFX 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PS3  0.0007524454 0.0007524454 0.0007524454         0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     Wii  0.0000000000 0.0007547170 0.0000000000         0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     X360 0.0007905138 0.0007905138 0.0007905138         0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##         Publisher
## Platform Tru Blu Entertainment     Tryfirst          TYO    Type-Moon
##     2600          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            0.0000000000 0.0000000000 0.0008361204 0.0000000000
##     PS2           0.0000000000 0.0004627487 0.0000000000 0.0000000000
##     PS3           0.0015048909 0.0000000000 0.0000000000 0.0000000000
##     PS4           0.0059523810 0.0000000000 0.0000000000 0.0000000000
##     PSP           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV           0.0000000000 0.0000000000 0.0000000000 0.0024213075
##     SAT           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.0015810277 0.0000000000 0.0000000000 0.0000000000
##     XB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne          0.0093896714 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    U.S. Gold      Ubisoft Ubisoft Annecy  UEP Systems
##     2600 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0412573674   0.0039292731 0.0000000000
##     DC   0.0000000000 0.0192307692   0.0000000000 0.0000000000
##     DS   0.0000000000 0.0836800740   0.0000000000 0.0000000000
##     GB   0.0000000000 0.0102040816   0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0644768856   0.0000000000 0.0000000000
##     GC   0.0000000000 0.0647482014   0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     N64  0.0000000000 0.0376175549   0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     PC   0.0000000000 0.0791666667   0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     PS   0.0033444816 0.0200668896   0.0000000000 0.0008361204
##     PS2  0.0000000000 0.0323924109   0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0549285177   0.0037622272 0.0000000000
##     PS4  0.0000000000 0.0714285714   0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0313272877   0.0032976092 0.0000000000
##     PSV  0.0000000000 0.0266343826   0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0867924528   0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.1118881119   0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     X360 0.0000000000 0.0782608696   0.0023715415 0.0000000000
##     XB   0.0000000000 0.0546116505   0.0000000000 0.0000000000
##     XOne 0.0000000000 0.1173708920   0.0000000000 0.0000000000
##         Publisher
## Platform UFO Interactive UIG Entertainment  Ultravision Universal Gamex
##     2600    0.0000000000      0.0000000000 0.0075187970    0.0075187970
##     3DO     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     3DS     0.0019646365      0.0000000000 0.0000000000    0.0000000000
##     DC      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     DS      0.0046232085      0.0000000000 0.0000000000    0.0000000000
##     GB      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GBA     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GC      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GEN     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GG      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     N64     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     NES     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     NG      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PC      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PCFX    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS2     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS3     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS4     0.0000000000      0.0029761905 0.0000000000    0.0000000000
##     PSP     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PSV     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     SAT     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     SCD     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     SNES    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     TG16    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     Wii     0.0037735849      0.0000000000 0.0000000000    0.0000000000
##     WiiU    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     WS      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     X360    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     XB      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     XOne    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##         Publisher
## Platform Universal Interactive      Unknown Valcon Games     ValuSoft
##     2600          0.0000000000 0.0075187970 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.0176817289 0.0000000000 0.0000000000
##     DC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS            0.0000000000 0.0152565881 0.0004623209 0.0009246417
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.0060827251 0.0133819951 0.0000000000 0.0000000000
##     GC            0.0089928058 0.0215827338 0.0000000000 0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.0000000000 0.0031347962 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0000000000 0.0229166667 0.0000000000 0.0010416667
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            0.0000000000 0.0033444816 0.0000000000 0.0000000000
##     PS2           0.0037019898 0.0111059695 0.0009254975 0.0004627487
##     PS3           0.0000000000 0.0112866817 0.0000000000 0.0000000000
##     PS4           0.0000000000 0.0029761905 0.0000000000 0.0000000000
##     PSP           0.0000000000 0.0107172300 0.0000000000 0.0000000000
##     PSV           0.0000000000 0.0145278450 0.0000000000 0.0000000000
##     SAT           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.0196226415 0.0022641509 0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.0000000000 0.0094861660 0.0015810277 0.0000000000
##     XB            0.0060679612 0.0145631068 0.0000000000 0.0000000000
##     XOne          0.0000000000 0.0046948357 0.0000000000 0.0000000000
##         Publisher
## Platform        Valve Valve Software          Vap Vatical Entertainment
##     2600 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     3DO  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     3DS  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     DC   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     DS   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GB   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GBA  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GC   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GEN  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GG   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     N64  0.0000000000   0.0000000000 0.0000000000          0.0031347962
##     NES  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     NG   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PC   0.0000000000   0.0020833333 0.0000000000          0.0000000000
##     PCFX 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PS   0.0000000000   0.0000000000 0.0000000000          0.0008361204
##     PS2  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PS3  0.0007524454   0.0000000000 0.0000000000          0.0000000000
##     PS4  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PSP  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PSV  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     SAT  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     SCD  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     SNES 0.0000000000   0.0000000000 0.0041841004          0.0000000000
##     TG16 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     Wii  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     WiiU 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     WS   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     X360 0.0000000000   0.0007905138 0.0000000000          0.0000000000
##     XB   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     XOne 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##         Publisher
## Platform    Vic Tokai Victor Interactive Video System        Views
##     2600 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000       0.0102040816 0.0000000000 0.0000000000
##     GBA  0.0000000000       0.0012165450 0.0000000000 0.0000000000
##     GC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     N64  0.0031347962       0.0000000000 0.0062695925 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS   0.0008361204       0.0025083612 0.0008361204 0.0000000000
##     PS2  0.0000000000       0.0009254975 0.0000000000 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000 0.0007524454
##     PS4  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000       0.0000000000 0.0000000000 0.0008244023
##     PSV  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000       0.0057803468 0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000       0.0041841004 0.0041841004 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Vir2L Studios Virgin Interactive Virtual Play Games        Visco
##     2600  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     3DO   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     3DS   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     DC    0.0000000000       0.0384615385       0.0000000000 0.0000000000
##     DS    0.0009246417       0.0000000000       0.0000000000 0.0000000000
##     GB    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     GBA   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     GC    0.0000000000       0.0035971223       0.0000000000 0.0000000000
##     GEN   0.0000000000       0.0370370370       0.0000000000 0.0000000000
##     GG    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     N64   0.0000000000       0.0125391850       0.0000000000 0.0000000000
##     NES   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     NG    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PC    0.0000000000       0.0041666667       0.0000000000 0.0010416667
##     PCFX  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PS    0.0000000000       0.0326086957       0.0000000000 0.0000000000
##     PS2   0.0000000000       0.0027764924       0.0000000000 0.0000000000
##     PS3   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PS4   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PSP   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PSV   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     SAT   0.0000000000       0.0115606936       0.0000000000 0.0000000000
##     SCD   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     SNES  0.0000000000       0.0041841004       0.0000000000 0.0000000000
##     TG16  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     Wii   0.0007547170       0.0000000000       0.0015094340 0.0000000000
##     WiiU  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     WS    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     X360  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     XB    0.0000000000       0.0012135922       0.0000000000 0.0000000000
##     XOne  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Vivendi Games      Wanadoo      Warashi Wargaming.net
##     2600  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DS   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     DC    0.0000000000 0.0000000000 0.0192307692  0.0000000000
##     DS    0.0060101711 0.0000000000 0.0000000000  0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GBA   0.0279805353 0.0012165450 0.0000000000  0.0000000000
##     GC    0.0269784173 0.0017985612 0.0000000000  0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     N64   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PC    0.0239583333 0.0000000000 0.0000000000  0.0010416667
##     PCFX  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PS    0.0016722408 0.0000000000 0.0000000000  0.0000000000
##     PS2   0.0143452106 0.0009254975 0.0000000000  0.0000000000
##     PS3   0.0037622272 0.0000000000 0.0000000000  0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PSP   0.0065952185 0.0000000000 0.0000000000  0.0000000000
##     PSV   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SNES  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     TG16  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     Wii   0.0067924528 0.0000000000 0.0000000000  0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     X360  0.0071146245 0.0000000000 0.0000000000  0.0000000000
##     XB    0.0315533981 0.0012135922 0.0000000000  0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##         Publisher
## Platform Warner Bros. Interactive Entertainment         Warp
##     2600                           0.0000000000 0.0000000000
##     3DO                            0.0000000000 0.0000000000
##     3DS                            0.0353634578 0.0000000000
##     DC                             0.0000000000 0.0000000000
##     DS                             0.0147942672 0.0000000000
##     GB                             0.0000000000 0.0000000000
##     GBA                            0.0000000000 0.0000000000
##     GC                             0.0017985612 0.0000000000
##     GEN                            0.0000000000 0.0000000000
##     GG                             0.0000000000 0.0000000000
##     N64                            0.0000000000 0.0000000000
##     NES                            0.0000000000 0.0000000000
##     NG                             0.0000000000 0.0000000000
##     PC                             0.0208333333 0.0000000000
##     PCFX                           0.0000000000 0.0000000000
##     PS                             0.0000000000 0.0000000000
##     PS2                            0.0037019898 0.0000000000
##     PS3                            0.0240782543 0.0000000000
##     PS4                            0.0416666667 0.0000000000
##     PSP                            0.0041220115 0.0000000000
##     PSV                            0.0387409201 0.0000000000
##     SAT                            0.0000000000 0.0057803468
##     SCD                            0.0000000000 0.0000000000
##     SNES                           0.0000000000 0.0000000000
##     TG16                           0.0000000000 0.0000000000
##     Wii                            0.0181132075 0.0000000000
##     WiiU                           0.1048951049 0.0000000000
##     WS                             0.0000000000 0.0000000000
##     X360                           0.0268774704 0.0000000000
##     XB                             0.0000000000 0.0000000000
##     XOne                           0.0610328638 0.0000000000
##         Publisher
## Platform WayForward Technologies Westwood Studios White Park Bay Software
##     2600            0.0000000000     0.0000000000            0.0000000000
##     3DO             0.0000000000     0.0000000000            0.0000000000
##     3DS             0.0019646365     0.0000000000            0.0000000000
##     DC              0.0000000000     0.0000000000            0.0000000000
##     DS              0.0000000000     0.0000000000            0.0004623209
##     GB              0.0000000000     0.0000000000            0.0000000000
##     GBA             0.0000000000     0.0000000000            0.0000000000
##     GC              0.0000000000     0.0000000000            0.0000000000
##     GEN             0.0000000000     0.0000000000            0.0000000000
##     GG              0.0000000000     0.0000000000            0.0000000000
##     N64             0.0000000000     0.0000000000            0.0000000000
##     NES             0.0000000000     0.0000000000            0.0000000000
##     NG              0.0000000000     0.0000000000            0.0000000000
##     PC              0.0000000000     0.0010416667            0.0000000000
##     PCFX            0.0000000000     0.0000000000            0.0000000000
##     PS              0.0000000000     0.0000000000            0.0000000000
##     PS2             0.0000000000     0.0000000000            0.0000000000
##     PS3             0.0000000000     0.0000000000            0.0000000000
##     PS4             0.0000000000     0.0000000000            0.0000000000
##     PSP             0.0000000000     0.0000000000            0.0000000000
##     PSV             0.0000000000     0.0000000000            0.0000000000
##     SAT             0.0000000000     0.0000000000            0.0000000000
##     SCD             0.0000000000     0.0000000000            0.0000000000
##     SNES            0.0000000000     0.0000000000            0.0000000000
##     TG16            0.0000000000     0.0000000000            0.0000000000
##     Wii             0.0000000000     0.0000000000            0.0000000000
##     WiiU            0.0000000000     0.0000000000            0.0000000000
##     WS              0.0000000000     0.0000000000            0.0000000000
##     X360            0.0000000000     0.0000000000            0.0000000000
##     XB              0.0000000000     0.0000000000            0.0000000000
##     XOne            0.0000000000     0.0000000000            0.0000000000
##         Publisher
## Platform Wizard Video Games Xicat Interactive Xing Entertainment
##     2600       0.0075187970      0.0000000000       0.0000000000
##     3DO        0.0000000000      0.0000000000       0.0000000000
##     3DS        0.0000000000      0.0000000000       0.0000000000
##     DC         0.0000000000      0.0000000000       0.0000000000
##     DS         0.0000000000      0.0000000000       0.0000000000
##     GB         0.0000000000      0.0000000000       0.0000000000
##     GBA        0.0000000000      0.0000000000       0.0000000000
##     GC         0.0000000000      0.0000000000       0.0000000000
##     GEN        0.0000000000      0.0000000000       0.0000000000
##     GG         0.0000000000      0.0000000000       0.0000000000
##     N64        0.0000000000      0.0000000000       0.0000000000
##     NES        0.0000000000      0.0000000000       0.0000000000
##     NG         0.0000000000      0.0000000000       0.0000000000
##     PC         0.0000000000      0.0000000000       0.0000000000
##     PCFX       0.0000000000      0.0000000000       0.0000000000
##     PS         0.0000000000      0.0000000000       0.0008361204
##     PS2        0.0000000000      0.0004627487       0.0000000000
##     PS3        0.0000000000      0.0000000000       0.0000000000
##     PS4        0.0000000000      0.0000000000       0.0000000000
##     PSP        0.0000000000      0.0000000000       0.0000000000
##     PSV        0.0000000000      0.0000000000       0.0000000000
##     SAT        0.0000000000      0.0000000000       0.0000000000
##     SCD        0.0000000000      0.0000000000       0.0000000000
##     SNES       0.0000000000      0.0000000000       0.0000000000
##     TG16       0.0000000000      0.0000000000       0.0000000000
##     Wii        0.0000000000      0.0000000000       0.0000000000
##     WiiU       0.0000000000      0.0000000000       0.0000000000
##     WS         0.0000000000      0.0000000000       0.0000000000
##     X360       0.0000000000      0.0000000000       0.0000000000
##     XB         0.0000000000      0.0024271845       0.0000000000
##     XOne       0.0000000000      0.0000000000       0.0000000000
##         Publisher
## Platform      Xplosiv     XS Games  Xseed Games Yacht Club Games
##     2600 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0019646365     0.0019646365
##     DC   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GBA  0.0000000000 0.0024330900 0.0000000000     0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PS   0.0000000000 0.0008361204 0.0000000000     0.0000000000
##     PS2  0.0018509949 0.0013882462 0.0000000000     0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0029761905     0.0029761905
##     PSP  0.0032976092 0.0000000000 0.0000000000     0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0048426150     0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     Wii  0.0015094340 0.0030188679 0.0000000000     0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000     0.0069930070
##     WS   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     X360 0.0000000000 0.0007905138 0.0000000000     0.0000000000
##     XB   0.0000000000 0.0012135922 0.0000000000     0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##         Publisher
## Platform Yamasa Entertainment         Yeti       Yuke's      Yumedia
##     2600         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2          0.0004627487 0.0018509949 0.0013882462 0.0000000000
##     PS3          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4          0.0000000000 0.0029761905 0.0000000000 0.0000000000
##     PSP          0.0008244023 0.0041220115 0.0000000000 0.0000000000
##     PSV          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT          0.0000000000 0.0000000000 0.0000000000 0.0057803468
##     SCD          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360         0.0000000000 0.0007905138 0.0000000000 0.0000000000
##     XB           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform       Zenrin Zoo Digital Publishing    Zoo Games  Zushi Games
##     2600 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000           0.0120203421 0.0046232085 0.0032362460
##     GB   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000           0.0462287105 0.0000000000 0.0000000000
##     GC   0.0000000000           0.0017985612 0.0000000000 0.0000000000
##     GEN  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000           0.0050902360 0.0000000000 0.0000000000
##     PS3  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0016488046           0.0000000000 0.0000000000 0.0008244023
##     PSV  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000           0.0135849057 0.0166037736 0.0060377358
##     WiiU 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000           0.0000000000 0.0007905138 0.0015810277
##     XB   0.0000000000           0.0121359223 0.0000000000 0.0000000000
##     XOne 0.0000000000           0.0000000000 0.0000000000 0.0000000000
prop.table(myTable,2)
##         Publisher
## Platform 10TACLE Studios   1C Company 20th Century Fox Video Games
##     2600    0.0000000000 0.0000000000                 1.0000000000
##     3DO     0.0000000000 0.0000000000                 0.0000000000
##     3DS     0.0000000000 0.0000000000                 0.0000000000
##     DC      0.0000000000 0.0000000000                 0.0000000000
##     DS      0.6666666667 0.0000000000                 0.0000000000
##     GB      0.0000000000 0.0000000000                 0.0000000000
##     GBA     0.0000000000 0.0000000000                 0.0000000000
##     GC      0.0000000000 0.0000000000                 0.0000000000
##     GEN     0.0000000000 0.0000000000                 0.0000000000
##     GG      0.0000000000 0.0000000000                 0.0000000000
##     N64     0.0000000000 0.0000000000                 0.0000000000
##     NES     0.0000000000 0.0000000000                 0.0000000000
##     NG      0.0000000000 0.0000000000                 0.0000000000
##     PC      0.0000000000 1.0000000000                 0.0000000000
##     PCFX    0.0000000000 0.0000000000                 0.0000000000
##     PS      0.0000000000 0.0000000000                 0.0000000000
##     PS2     0.3333333333 0.0000000000                 0.0000000000
##     PS3     0.0000000000 0.0000000000                 0.0000000000
##     PS4     0.0000000000 0.0000000000                 0.0000000000
##     PSP     0.0000000000 0.0000000000                 0.0000000000
##     PSV     0.0000000000 0.0000000000                 0.0000000000
##     SAT     0.0000000000 0.0000000000                 0.0000000000
##     SCD     0.0000000000 0.0000000000                 0.0000000000
##     SNES    0.0000000000 0.0000000000                 0.0000000000
##     TG16    0.0000000000 0.0000000000                 0.0000000000
##     Wii     0.0000000000 0.0000000000                 0.0000000000
##     WiiU    0.0000000000 0.0000000000                 0.0000000000
##     WS      0.0000000000 0.0000000000                 0.0000000000
##     X360    0.0000000000 0.0000000000                 0.0000000000
##     XB      0.0000000000 0.0000000000                 0.0000000000
##     XOne    0.0000000000 0.0000000000                 0.0000000000
##         Publisher
## Platform       2D Boy          3DO      49Games    505 Games          5pb
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0156250000 0.0163934426
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.3385416667 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0277777778 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.1388888889 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   1.0000000000 0.0000000000 0.0000000000 0.0208333333 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.4444444444 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.3611111111 0.0000000000 0.1145833333 0.1147540984
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0781250000 0.1639344262
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0312500000 0.0163934426
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0520833333 0.1967213115
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0052083333 0.2295081967
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.1562500000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0104166667 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 1.0000000000 0.1406250000 0.2459016393
##     XB   0.0000000000 0.0277777778 0.0000000000 0.0052083333 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0312500000 0.0163934426
##         Publisher
## Platform     7G//AMES   989 Sports  989 Studios     Abylight
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.5000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 1.0000000000 1.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 1.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.5000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Acclaim Entertainment     Accolade  Ackkstudios      Acquire
##     2600          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.0000000000 0.1000000000 0.0769230769
##     DC            0.0054347826 0.0000000000 0.0000000000 0.0000000000
##     DS            0.0000000000 0.0000000000 0.1000000000 0.0000000000
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.0543478261 0.0000000000 0.0000000000 0.0000000000
##     GC            0.1304347826 0.0000000000 0.0000000000 0.0000000000
##     GEN           0.0108695652 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.1684782609 0.0000000000 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0054347826 0.0000000000 0.0000000000 0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            0.2934782609 1.0000000000 0.0000000000 0.0000000000
##     PS2           0.1793478261 0.0000000000 0.0000000000 0.0769230769
##     PS3           0.0000000000 0.0000000000 0.3000000000 0.2307692308
##     PS4           0.0000000000 0.0000000000 0.0000000000 0.0769230769
##     PSP           0.0000000000 0.0000000000 0.3000000000 0.5384615385
##     PSV           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT           0.0163043478 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0217391304 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.0000000000 0.2000000000 0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB            0.1141304348 0.0000000000 0.0000000000 0.0000000000
##     XOne          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   Activision Activision Blizzard Activision Value
##     2600 0.0287179487        0.0000000000     0.0000000000
##     3DO  0.0000000000        0.0000000000     0.0000000000
##     3DS  0.0276923077        0.0000000000     0.0000000000
##     DC   0.0010256410        0.0000000000     0.0000000000
##     DS   0.1138461538        0.0000000000     0.0000000000
##     GB   0.0010256410        0.0000000000     0.0000000000
##     GBA  0.0502564103        0.0000000000     0.0344827586
##     GC   0.0451282051        0.0000000000     0.0344827586
##     GEN  0.0000000000        0.0000000000     0.0000000000
##     GG   0.0000000000        0.0000000000     0.0000000000
##     N64  0.0133333333        0.0000000000     0.0000000000
##     NES  0.0000000000        0.0000000000     0.0000000000
##     NG   0.0000000000        0.0000000000     0.0000000000
##     PC   0.0574358974        1.0000000000     0.0000000000
##     PCFX 0.0000000000        0.0000000000     0.0000000000
##     PS   0.0328205128        0.0000000000     0.0344827586
##     PS2  0.1056410256        0.0000000000     0.2068965517
##     PS3  0.1107692308        0.0000000000     0.1379310345
##     PS4  0.0215384615        0.0000000000     0.0000000000
##     PSP  0.0348717949        0.0000000000     0.0689655172
##     PSV  0.0030769231        0.0000000000     0.0000000000
##     SAT  0.0000000000        0.0000000000     0.0000000000
##     SCD  0.0000000000        0.0000000000     0.0000000000
##     SNES 0.0000000000        0.0000000000     0.0000000000
##     TG16 0.0000000000        0.0000000000     0.0000000000
##     Wii  0.1138461538        0.0000000000     0.1724137931
##     WiiU 0.0184615385        0.0000000000     0.0000000000
##     WS   0.0000000000        0.0000000000     0.0000000000
##     X360 0.1374358974        0.0000000000     0.2413793103
##     XB   0.0625641026        0.0000000000     0.0689655172
##     XOne 0.0205128205        0.0000000000     0.0000000000
##         Publisher
## Platform Adeline Software     Aerosoft Agatsuma Entertainment       Agetec
##     2600     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     3DO      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     3DS      0.0000000000 0.0000000000           0.6666666667 0.0000000000
##     DC       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     DS       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GB       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GBA      0.0000000000 0.0000000000           0.3333333333 0.0000000000
##     GC       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GEN      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     GG       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     N64      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     NES      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     NG       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PC       0.0000000000 1.0000000000           0.0000000000 0.0000000000
##     PCFX     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PS       1.0000000000 0.0000000000           0.0000000000 0.3750000000
##     PS2      0.0000000000 0.0000000000           0.0000000000 0.5000000000
##     PS3      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PS4      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     PSP      0.0000000000 0.0000000000           0.0000000000 0.1250000000
##     PSV      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     SAT      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     SCD      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     SNES     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     TG16     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     Wii      0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     WiiU     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     WS       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     X360     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     XB       0.0000000000 0.0000000000           0.0000000000 0.0000000000
##     XOne     0.0000000000 0.0000000000           0.0000000000 0.0000000000
##         Publisher
## Platform  Aksys Games Alawar Entertainment    Alchemist
##     2600 0.0000000000         0.0000000000 0.0000000000
##     3DO  0.0000000000         0.0000000000 0.0000000000
##     3DS  0.1250000000         0.0000000000 0.1162790698
##     DC   0.0000000000         0.0000000000 0.0000000000
##     DS   0.1250000000         0.0000000000 0.1395348837
##     GB   0.0000000000         0.0000000000 0.0000000000
##     GBA  0.0000000000         0.0000000000 0.0000000000
##     GC   0.0000000000         0.0000000000 0.0000000000
##     GEN  0.0000000000         0.0000000000 0.0000000000
##     GG   0.0000000000         0.0000000000 0.0000000000
##     N64  0.0000000000         0.0000000000 0.0000000000
##     NES  0.0000000000         0.0000000000 0.0000000000
##     NG   0.0000000000         0.0000000000 0.0000000000
##     PC   0.0000000000         1.0000000000 0.0000000000
##     PCFX 0.0000000000         0.0000000000 0.0000000000
##     PS   0.0000000000         0.0000000000 0.0000000000
##     PS2  0.0000000000         0.0000000000 0.3023255814
##     PS3  0.1250000000         0.0000000000 0.0465116279
##     PS4  0.1250000000         0.0000000000 0.0000000000
##     PSP  0.0000000000         0.0000000000 0.3488372093
##     PSV  0.5000000000         0.0000000000 0.0000000000
##     SAT  0.0000000000         0.0000000000 0.0000000000
##     SCD  0.0000000000         0.0000000000 0.0000000000
##     SNES 0.0000000000         0.0000000000 0.0000000000
##     TG16 0.0000000000         0.0000000000 0.0000000000
##     Wii  0.0000000000         0.0000000000 0.0000000000
##     WiiU 0.0000000000         0.0000000000 0.0000000000
##     WS   0.0000000000         0.0000000000 0.0000000000
##     X360 0.0000000000         0.0000000000 0.0465116279
##     XB   0.0000000000         0.0000000000 0.0000000000
##     XOne 0.0000000000         0.0000000000 0.0000000000
##         Publisher
## Platform Alternative Software       Altron       Alvion American Softworks
##     2600         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     3DO          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     3DS          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     DC           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     DS           0.0000000000 0.0000000000 1.0000000000       0.0000000000
##     GB           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GBA          0.0000000000 1.0000000000 0.0000000000       0.0000000000
##     GC           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GEN          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GG           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     N64          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     NES          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     NG           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PC           0.1666666667 0.0000000000 0.0000000000       0.0000000000
##     PCFX         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PS           0.0000000000 0.0000000000 0.0000000000       1.0000000000
##     PS2          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PS3          0.1666666667 0.0000000000 0.0000000000       0.0000000000
##     PS4          0.1666666667 0.0000000000 0.0000000000       0.0000000000
##     PSP          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PSV          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SAT          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SCD          0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SNES         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     TG16         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     Wii          0.1666666667 0.0000000000 0.0000000000       0.0000000000
##     WiiU         0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     WS           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     X360         0.1666666667 0.0000000000 0.0000000000       0.0000000000
##     XB           0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     XOne         0.1666666667 0.0000000000 0.0000000000       0.0000000000
##         Publisher
## Platform Angel Studios Answer Software AQ Interactive    Aqua Plus
##     2600  0.0000000000    1.0000000000   0.0000000000 0.0000000000
##     3DO   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     3DS   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     DC    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     DS    0.0000000000    0.0000000000   0.4000000000 0.0000000000
##     GB    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GBA   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GC    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GEN   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     GG    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     N64   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     NES   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     NG    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     PC    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     PCFX  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     PS    0.0000000000    0.0000000000   0.0000000000 0.0434782609
##     PS2   0.0000000000    0.0000000000   0.4000000000 0.0869565217
##     PS3   0.0000000000    0.0000000000   0.0000000000 0.3478260870
##     PS4   0.0000000000    0.0000000000   0.0000000000 0.0869565217
##     PSP   0.0000000000    0.0000000000   0.2000000000 0.2608695652
##     PSV   0.0000000000    0.0000000000   0.0000000000 0.1739130435
##     SAT   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     SCD   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     SNES  1.0000000000    0.0000000000   0.0000000000 0.0000000000
##     TG16  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     Wii   0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     WiiU  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     WS    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     X360  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     XB    0.0000000000    0.0000000000   0.0000000000 0.0000000000
##     XOne  0.0000000000    0.0000000000   0.0000000000 0.0000000000
##         Publisher
## Platform        Aques Arc System Works Arena Entertainment         Aria
##     2600 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000     0.1538461538        0.0000000000 0.0000000000
##     DC   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000     0.3461538462        0.0000000000 0.0000000000
##     GB   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     GC   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     GEN  0.0000000000     0.0000000000        1.0000000000 0.0000000000
##     GG   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     NES  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     PCFX 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     PS   1.0000000000     0.0000000000        0.0000000000 0.0000000000
##     PS2  0.0000000000     0.0000000000        0.0000000000 1.0000000000
##     PS3  0.0000000000     0.1923076923        0.0000000000 0.0000000000
##     PS4  0.0000000000     0.0384615385        0.0000000000 0.0000000000
##     PSP  0.0000000000     0.0769230769        0.0000000000 0.0000000000
##     PSV  0.0000000000     0.1923076923        0.0000000000 0.0000000000
##     SAT  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     TG16 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000     0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000     0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform        Arika      ArtDink   Aruze Corp    ASC Games
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.1111111111 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.3333333333 0.1111111111 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.4444444444 1.0000000000 1.0000000000
##     PS2  0.6666666667 0.2222222222 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.1111111111 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Ascaron Entertainment Ascaron Entertainment GmbH
##     2600          0.0000000000               0.0000000000
##     3DO           0.0000000000               0.0000000000
##     3DS           0.0000000000               0.0000000000
##     DC            0.0000000000               0.0000000000
##     DS            0.0000000000               0.0000000000
##     GB            0.0000000000               0.0000000000
##     GBA           0.0000000000               0.0000000000
##     GC            0.0000000000               0.0000000000
##     GEN           0.0000000000               0.0000000000
##     GG            0.0000000000               0.0000000000
##     N64           0.0000000000               0.0000000000
##     NES           0.0000000000               0.0000000000
##     NG            0.0000000000               0.0000000000
##     PC            1.0000000000               1.0000000000
##     PCFX          0.0000000000               0.0000000000
##     PS            0.0000000000               0.0000000000
##     PS2           0.0000000000               0.0000000000
##     PS3           0.0000000000               0.0000000000
##     PS4           0.0000000000               0.0000000000
##     PSP           0.0000000000               0.0000000000
##     PSV           0.0000000000               0.0000000000
##     SAT           0.0000000000               0.0000000000
##     SCD           0.0000000000               0.0000000000
##     SNES          0.0000000000               0.0000000000
##     TG16          0.0000000000               0.0000000000
##     Wii           0.0000000000               0.0000000000
##     WiiU          0.0000000000               0.0000000000
##     WS            0.0000000000               0.0000000000
##     X360          0.0000000000               0.0000000000
##     XB            0.0000000000               0.0000000000
##     XOne          0.0000000000               0.0000000000
##         Publisher
## Platform ASCII Entertainment ASCII Media Works       Asgard          ASK
##     2600        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DO         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DS         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DC          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DS          0.0000000000      0.4444444444 0.0000000000 0.0000000000
##     GB          0.0500000000      0.0000000000 0.0000000000 0.0000000000
##     GBA         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GC          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GEN         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GG          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     N64         0.0500000000      0.0000000000 0.0000000000 0.0000000000
##     NES         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NG          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PC          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PCFX        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS          0.4000000000      0.0000000000 0.0000000000 0.0000000000
##     PS2         0.0500000000      0.1111111111 0.0000000000 0.0000000000
##     PS3         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS4         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PSP         0.0000000000      0.3333333333 0.8750000000 0.0000000000
##     PSV         0.0000000000      0.1111111111 0.1250000000 0.0000000000
##     SAT         0.0500000000      0.0000000000 0.0000000000 1.0000000000
##     SCD         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SNES        0.4000000000      0.0000000000 0.0000000000 0.0000000000
##     TG16        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     Wii         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WiiU        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WS          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     X360        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XB          0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XOne        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Asmik Ace Entertainment   Asmik Corp        Aspyr     Astragon
##     2600            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS              0.0000000000 0.0000000000 0.5000000000 0.6666666667
##     GB              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA             0.0000000000 0.0000000000 0.1250000000 0.0000000000
##     GC              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC              0.0000000000 0.0000000000 0.2500000000 0.3333333333
##     PCFX            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS              0.3333333333 0.0000000000 0.0000000000 0.0000000000
##     PS2             0.6666666667 0.0000000000 0.0000000000 0.0000000000
##     PS3             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES            0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     TG16            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360            0.0000000000 0.0000000000 0.1250000000 0.0000000000
##     XB              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Asylum Entertainment        Atari       Athena        Atlus
##     2600         0.0000000000 0.1487603306 0.0000000000 0.0000000000
##     3DO          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS          0.1666666667 0.0027548209 0.0000000000 0.1492537313
##     DC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS           0.5000000000 0.0991735537 0.0000000000 0.1343283582
##     GB           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA          0.0000000000 0.1212121212 0.0000000000 0.0597014925
##     GC           0.0000000000 0.0495867769 0.0000000000 0.0149253731
##     GEN          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64          0.0000000000 0.0000000000 0.5000000000 0.0298507463
##     NES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC           0.0000000000 0.0688705234 0.0000000000 0.0000000000
##     PCFX         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS           0.0000000000 0.0303030303 0.0000000000 0.1194029851
##     PS2          0.0000000000 0.1928374656 0.5000000000 0.0895522388
##     PS3          0.0000000000 0.0165289256 0.0000000000 0.0298507463
##     PS4          0.0000000000 0.0000000000 0.0000000000 0.0149253731
##     PSP          0.0000000000 0.0468319559 0.0000000000 0.1492537313
##     PSV          0.0000000000 0.0000000000 0.0000000000 0.0298507463
##     SAT          0.0000000000 0.0000000000 0.0000000000 0.0746268657
##     SCD          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES         0.0000000000 0.0000000000 0.0000000000 0.0298507463
##     TG16         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii          0.3333333333 0.0661157025 0.0000000000 0.0000000000
##     WiiU         0.0000000000 0.0000000000 0.0000000000 0.0149253731
##     WS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360         0.0000000000 0.0550964187 0.0000000000 0.0298507463
##     XB           0.0000000000 0.1019283747 0.0000000000 0.0298507463
##     XOne         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Avalon Interactive    Avanquest Avanquest Software        Axela
##     2600       0.1666666667 0.0000000000       0.0000000000 0.0000000000
##     3DO        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS        0.0000000000 0.0000000000       0.2222222222 0.0000000000
##     DC         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS         0.0000000000 0.6153846154       0.3333333333 0.0000000000
##     GB         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GC         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GEN        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC         0.0000000000 0.1538461538       0.2222222222 0.0000000000
##     PCFX       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS         0.1666666667 0.0000000000       0.0000000000 1.0000000000
##     PS2        0.3333333333 0.0000000000       0.0000000000 0.0000000000
##     PS3        0.0000000000 0.0000000000       0.1111111111 0.0000000000
##     PS4        0.0000000000 0.0769230769       0.0000000000 0.0000000000
##     PSP        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSV        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SCD        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii        0.0000000000 0.1538461538       0.0000000000 0.0000000000
##     WiiU       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360       0.0000000000 0.0000000000       0.1111111111 0.0000000000
##     XB         0.3333333333 0.0000000000       0.0000000000 0.0000000000
##     XOne       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform BAM! Entertainment    Banpresto      Benesse     Berkeley
##     2600       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS         0.0000000000 0.0821917808 1.0000000000 0.0000000000
##     GB         0.0000000000 0.0136986301 0.0000000000 0.0000000000
##     GBA        0.4000000000 0.1506849315 0.0000000000 0.0000000000
##     GC         0.1714285714 0.0000000000 0.0000000000 0.0000000000
##     GEN        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64        0.0285714286 0.0273972603 0.0000000000 0.0000000000
##     NES        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS         0.0571428571 0.1369863014 0.0000000000 1.0000000000
##     PS2        0.2285714286 0.2876712329 0.0000000000 0.0000000000
##     PS3        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP        0.0000000000 0.0684931507 0.0000000000 0.0000000000
##     PSV        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT        0.0000000000 0.0273972603 0.0000000000 0.0000000000
##     SCD        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES       0.0000000000 0.1780821918 0.0000000000 0.0000000000
##     TG16       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360       0.0000000000 0.0273972603 0.0000000000 0.0000000000
##     XB         0.1142857143 0.0000000000 0.0000000000 0.0000000000
##     XOne       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Bethesda Softworks Big Ben Interactive Big Fish Games
##     2600       0.0000000000        0.0000000000   0.0000000000
##     3DO        0.0000000000        0.0000000000   0.0000000000
##     3DS        0.0000000000        0.1428571429   0.0000000000
##     DC         0.0000000000        0.0000000000   0.0000000000
##     DS         0.0000000000        0.2857142857   0.0000000000
##     GB         0.0000000000        0.0000000000   0.0000000000
##     GBA        0.0000000000        0.0000000000   0.0000000000
##     GC         0.0000000000        0.0000000000   0.0000000000
##     GEN        0.0000000000        0.0000000000   0.0000000000
##     GG         0.0000000000        0.0000000000   0.0000000000
##     N64        0.0000000000        0.0000000000   0.0000000000
##     NES        0.0000000000        0.0000000000   0.0000000000
##     NG         0.0000000000        0.0000000000   0.0000000000
##     PC         0.2112676056        0.0000000000   1.0000000000
##     PCFX       0.0000000000        0.0000000000   0.0000000000
##     PS         0.0000000000        0.0000000000   0.0000000000
##     PS2        0.0845070423        0.1428571429   0.0000000000
##     PS3        0.1830985915        0.0000000000   0.0000000000
##     PS4        0.0985915493        0.0000000000   0.0000000000
##     PSP        0.0000000000        0.0000000000   0.0000000000
##     PSV        0.0000000000        0.0000000000   0.0000000000
##     SAT        0.0000000000        0.0000000000   0.0000000000
##     SCD        0.0000000000        0.0000000000   0.0000000000
##     SNES       0.0000000000        0.0000000000   0.0000000000
##     TG16       0.0000000000        0.0000000000   0.0000000000
##     Wii        0.0563380282        0.4285714286   0.0000000000
##     WiiU       0.0000000000        0.0000000000   0.0000000000
##     WS         0.0000000000        0.0000000000   0.0000000000
##     X360       0.2112676056        0.0000000000   0.0000000000
##     XB         0.0563380282        0.0000000000   0.0000000000
##     XOne       0.0985915493        0.0000000000   0.0000000000
##         Publisher
## Platform Bigben Interactive bitComposer Games Black Bean Games
##     2600       0.0000000000      0.0000000000     0.0000000000
##     3DO        0.0000000000      0.0000000000     0.0000000000
##     3DS        0.0000000000      0.0000000000     0.0000000000
##     DC         0.0000000000      0.0000000000     0.0000000000
##     DS         0.0000000000      0.0000000000     0.0588235294
##     GB         0.0000000000      0.0000000000     0.0000000000
##     GBA        0.0000000000      0.0000000000     0.0000000000
##     GC         0.0000000000      0.0000000000     0.0000000000
##     GEN        0.0000000000      0.0000000000     0.0000000000
##     GG         0.0000000000      0.0000000000     0.0000000000
##     N64        0.0000000000      0.0000000000     0.0000000000
##     NES        0.0000000000      0.0000000000     0.0000000000
##     NG         0.0000000000      0.0000000000     0.0000000000
##     PC         0.0000000000      0.6000000000     0.0588235294
##     PCFX       0.0000000000      0.0000000000     0.0000000000
##     PS         0.0000000000      0.0000000000     0.0000000000
##     PS2        0.0000000000      0.0000000000     0.0882352941
##     PS3        0.2307692308      0.2000000000     0.2941176471
##     PS4        0.2307692308      0.0000000000     0.0000000000
##     PSP        0.0000000000      0.0000000000     0.0588235294
##     PSV        0.1538461538      0.0000000000     0.0000000000
##     SAT        0.0000000000      0.0000000000     0.0000000000
##     SCD        0.0000000000      0.0000000000     0.0000000000
##     SNES       0.0000000000      0.0000000000     0.0000000000
##     TG16       0.0000000000      0.0000000000     0.0000000000
##     Wii        0.0000000000      0.0000000000     0.1764705882
##     WiiU       0.0000000000      0.0000000000     0.0000000000
##     WS         0.0000000000      0.0000000000     0.0000000000
##     X360       0.2307692308      0.2000000000     0.2647058824
##     XB         0.0000000000      0.0000000000     0.0000000000
##     XOne       0.1538461538      0.0000000000     0.0000000000
##         Publisher
## Platform Black Label Games Blast! Entertainment Ltd    Blue Byte
##     2600      0.0000000000             0.0000000000 0.0000000000
##     3DO       0.0000000000             0.0000000000 0.0000000000
##     3DS       0.0000000000             0.0000000000 0.0000000000
##     DC        0.0000000000             0.0000000000 0.0000000000
##     DS        0.0000000000             0.5000000000 0.0000000000
##     GB        0.0000000000             0.0000000000 0.0000000000
##     GBA       0.0000000000             0.0000000000 0.0000000000
##     GC        0.0000000000             0.0000000000 0.0000000000
##     GEN       0.0000000000             0.0000000000 0.0000000000
##     GG        0.0000000000             0.0000000000 0.0000000000
##     N64       0.0000000000             0.0000000000 0.0000000000
##     NES       0.0000000000             0.0000000000 0.0000000000
##     NG        0.0000000000             0.0000000000 0.0000000000
##     PC        0.0000000000             0.0000000000 1.0000000000
##     PCFX      0.0000000000             0.0000000000 0.0000000000
##     PS        0.0000000000             0.0000000000 0.0000000000
##     PS2       1.0000000000             0.1666666667 0.0000000000
##     PS3       0.0000000000             0.0000000000 0.0000000000
##     PS4       0.0000000000             0.0000000000 0.0000000000
##     PSP       0.0000000000             0.0000000000 0.0000000000
##     PSV       0.0000000000             0.0000000000 0.0000000000
##     SAT       0.0000000000             0.0000000000 0.0000000000
##     SCD       0.0000000000             0.0000000000 0.0000000000
##     SNES      0.0000000000             0.0000000000 0.0000000000
##     TG16      0.0000000000             0.0000000000 0.0000000000
##     Wii       0.0000000000             0.3333333333 0.0000000000
##     WiiU      0.0000000000             0.0000000000 0.0000000000
##     WS        0.0000000000             0.0000000000 0.0000000000
##     X360      0.0000000000             0.0000000000 0.0000000000
##     XB        0.0000000000             0.0000000000 0.0000000000
##     XOne      0.0000000000             0.0000000000 0.0000000000
##         Publisher
## Platform BMG Interactive Entertainment Bohemia Interactive         Bomb
##     2600                  0.0000000000        0.0000000000 1.0000000000
##     3DO                   0.0000000000        0.0000000000 0.0000000000
##     3DS                   0.0000000000        0.0000000000 0.0000000000
##     DC                    0.0000000000        0.0000000000 0.0000000000
##     DS                    0.0000000000        0.0000000000 0.0000000000
##     GB                    0.0000000000        0.0000000000 0.0000000000
##     GBA                   0.0000000000        0.0000000000 0.0000000000
##     GC                    0.0000000000        0.0000000000 0.0000000000
##     GEN                   0.0000000000        0.0000000000 0.0000000000
##     GG                    0.0000000000        0.0000000000 0.0000000000
##     N64                   0.0000000000        0.0000000000 0.0000000000
##     NES                   0.0000000000        0.0000000000 0.0000000000
##     NG                    0.0000000000        0.0000000000 0.0000000000
##     PC                    0.0000000000        1.0000000000 0.0000000000
##     PCFX                  0.0000000000        0.0000000000 0.0000000000
##     PS                    1.0000000000        0.0000000000 0.0000000000
##     PS2                   0.0000000000        0.0000000000 0.0000000000
##     PS3                   0.0000000000        0.0000000000 0.0000000000
##     PS4                   0.0000000000        0.0000000000 0.0000000000
##     PSP                   0.0000000000        0.0000000000 0.0000000000
##     PSV                   0.0000000000        0.0000000000 0.0000000000
##     SAT                   0.0000000000        0.0000000000 0.0000000000
##     SCD                   0.0000000000        0.0000000000 0.0000000000
##     SNES                  0.0000000000        0.0000000000 0.0000000000
##     TG16                  0.0000000000        0.0000000000 0.0000000000
##     Wii                   0.0000000000        0.0000000000 0.0000000000
##     WiiU                  0.0000000000        0.0000000000 0.0000000000
##     WS                    0.0000000000        0.0000000000 0.0000000000
##     X360                  0.0000000000        0.0000000000 0.0000000000
##     XB                    0.0000000000        0.0000000000 0.0000000000
##     XOne                  0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform     Boost On          BPS Brash Entertainment     Broccoli
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000        0.4000000000 0.0909090909
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NES  0.0000000000 0.5000000000        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000        0.3000000000 0.2272727273
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  1.0000000000 0.0000000000        0.0000000000 0.5909090909
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0909090909
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.5000000000        0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.2000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.1000000000 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform    BushiRoad       Capcom         Cave CBS Electronics
##     2600 0.0000000000 0.0000000000 0.0000000000    1.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0393700787 0.0000000000    0.0000000000
##     DC   0.0000000000 0.0078740157 0.0000000000    0.0000000000
##     DS   0.0000000000 0.0656167979 0.1000000000    0.0000000000
##     GB   0.0000000000 0.0078740157 0.0000000000    0.0000000000
##     GBA  0.0000000000 0.0577427822 0.0000000000    0.0000000000
##     GC   0.0000000000 0.0498687664 0.0000000000    0.0000000000
##     GEN  0.0000000000 0.0052493438 0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     N64  0.0000000000 0.0026246719 0.0000000000    0.0000000000
##     NES  0.0000000000 0.0314960630 0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     PC   0.0000000000 0.0419947507 0.0000000000    0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     PS   0.0000000000 0.0472440945 0.0000000000    0.0000000000
##     PS2  0.0000000000 0.1601049869 0.0000000000    0.0000000000
##     PS3  0.0000000000 0.1102362205 0.0000000000    0.0000000000
##     PS4  0.0000000000 0.0419947507 0.0000000000    0.0000000000
##     PSP  1.0000000000 0.0682414698 0.0000000000    0.0000000000
##     PSV  0.0000000000 0.0078740157 0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0236220472 0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     SNES 0.0000000000 0.0314960630 0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     Wii  0.0000000000 0.0472440945 0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0052493438 0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000    0.0000000000
##     X360 0.0000000000 0.0918635171 0.9000000000    0.0000000000
##     XB   0.0000000000 0.0419947507 0.0000000000    0.0000000000
##     XOne 0.0000000000 0.0131233596 0.0000000000    0.0000000000
##         Publisher
## Platform          CCP CDV Software Entertainment     ChunSoft
##     2600 0.0000000000               0.0000000000 0.0000000000
##     3DO  0.0000000000               0.0000000000 0.0000000000
##     3DS  0.0000000000               0.0000000000 0.0555555556
##     DC   0.0000000000               0.0000000000 0.0000000000
##     DS   0.0000000000               0.5000000000 0.1666666667
##     GB   0.0000000000               0.0000000000 0.0555555556
##     GBA  0.0000000000               0.0000000000 0.0000000000
##     GC   0.0000000000               0.0000000000 0.0000000000
##     GEN  0.0000000000               0.0000000000 0.0000000000
##     GG   0.0000000000               0.0000000000 0.0000000000
##     N64  0.0000000000               0.0000000000 0.0555555556
##     NES  0.0000000000               0.0000000000 0.0000000000
##     NG   0.0000000000               0.0000000000 0.0000000000
##     PC   1.0000000000               0.3333333333 0.0000000000
##     PCFX 0.0000000000               0.0000000000 0.0000000000
##     PS   0.0000000000               0.0000000000 0.0555555556
##     PS2  0.0000000000               0.0000000000 0.0555555556
##     PS3  0.0000000000               0.0000000000 0.0000000000
##     PS4  0.0000000000               0.0000000000 0.0000000000
##     PSP  0.0000000000               0.0000000000 0.1111111111
##     PSV  0.0000000000               0.0000000000 0.1111111111
##     SAT  0.0000000000               0.0000000000 0.0555555556
##     SCD  0.0000000000               0.0000000000 0.0000000000
##     SNES 0.0000000000               0.0000000000 0.2222222222
##     TG16 0.0000000000               0.0000000000 0.0000000000
##     Wii  0.0000000000               0.1666666667 0.0000000000
##     WiiU 0.0000000000               0.0000000000 0.0000000000
##     WS   0.0000000000               0.0000000000 0.0000000000
##     X360 0.0000000000               0.0000000000 0.0555555556
##     XB   0.0000000000               0.0000000000 0.0000000000
##     XOne 0.0000000000               0.0000000000 0.0000000000
##         Publisher
## Platform City Interactive Cloud Imperium Games Corporation Coconuts Japan
##     2600     0.0000000000                     0.0000000000   0.0000000000
##     3DO      0.0000000000                     0.0000000000   0.0000000000
##     3DS      0.0000000000                     0.0000000000   0.0000000000
##     DC       0.0000000000                     0.0000000000   0.0000000000
##     DS       0.4736842105                     0.0000000000   0.0000000000
##     GB       0.0000000000                     0.0000000000   0.0000000000
##     GBA      0.0000000000                     0.0000000000   0.0000000000
##     GC       0.0000000000                     0.0000000000   0.0000000000
##     GEN      0.0000000000                     0.0000000000   0.0000000000
##     GG       0.0000000000                     0.0000000000   0.0000000000
##     N64      0.0000000000                     0.0000000000   0.0000000000
##     NES      0.0000000000                     0.0000000000   0.0000000000
##     NG       0.0000000000                     0.0000000000   0.0000000000
##     PC       0.1578947368                     0.0000000000   0.0000000000
##     PCFX     0.0000000000                     0.0000000000   0.0000000000
##     PS       0.0000000000                     0.0000000000   0.5000000000
##     PS2      0.0000000000                     0.0000000000   0.0000000000
##     PS3      0.1578947368                     0.5000000000   0.0000000000
##     PS4      0.0000000000                     0.0000000000   0.0000000000
##     PSP      0.0000000000                     0.0000000000   0.0000000000
##     PSV      0.0000000000                     0.0000000000   0.0000000000
##     SAT      0.0000000000                     0.0000000000   0.0000000000
##     SCD      0.0000000000                     0.0000000000   0.0000000000
##     SNES     0.0000000000                     0.0000000000   0.5000000000
##     TG16     0.0000000000                     0.0000000000   0.0000000000
##     Wii      0.1052631579                     0.0000000000   0.0000000000
##     WiiU     0.0000000000                     0.0000000000   0.0000000000
##     WS       0.0000000000                     0.0000000000   0.0000000000
##     X360     0.1052631579                     0.5000000000   0.0000000000
##     XB       0.0000000000                     0.0000000000   0.0000000000
##     XOne     0.0000000000                     0.0000000000   0.0000000000
##         Publisher
## Platform  Codemasters Codemasters Online CokeM Interactive       Coleco
##     2600 0.0000000000       0.0000000000      0.0000000000 1.0000000000
##     3DO  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     3DS  0.0065789474       0.0000000000      0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     DS   0.0460526316       0.0000000000      1.0000000000 0.0000000000
##     GB   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     GBA  0.0131578947       0.0000000000      0.0000000000 0.0000000000
##     GC   0.0065789474       0.0000000000      0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     N64  0.0065789474       0.0000000000      0.0000000000 0.0000000000
##     NES  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     PC   0.1776315789       1.0000000000      0.0000000000 0.0000000000
##     PCFX 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     PS   0.0592105263       0.0000000000      0.0000000000 0.0000000000
##     PS2  0.1118421053       0.0000000000      0.0000000000 0.0000000000
##     PS3  0.1710526316       0.0000000000      0.0000000000 0.0000000000
##     PS4  0.0197368421       0.0000000000      0.0000000000 0.0000000000
##     PSP  0.0394736842       0.0000000000      0.0000000000 0.0000000000
##     PSV  0.0065789474       0.0000000000      0.0000000000 0.0000000000
##     SAT  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     SNES 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     Wii  0.0394736842       0.0000000000      0.0000000000 0.0000000000
##     WiiU 0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000      0.0000000000 0.0000000000
##     X360 0.1776315789       0.0000000000      0.0000000000 0.0000000000
##     XB   0.0986842105       0.0000000000      0.0000000000 0.0000000000
##     XOne 0.0197368421       0.0000000000      0.0000000000 0.0000000000
##         Publisher
## Platform      Comfort     Commseed      Compile Compile Heart
##     2600 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     DS   0.0000000000 1.0000000000 0.0000000000  0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     N64  0.0000000000 0.0000000000 0.1666666667  0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PS   0.0000000000 0.0000000000 0.1666666667  0.0000000000
##     PS2  0.3333333333 0.0000000000 0.0000000000  0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000  0.3000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000  0.0500000000
##     PSP  0.6666666667 0.0000000000 0.0000000000  0.1000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000  0.4000000000
##     SAT  0.0000000000 0.0000000000 0.3333333333  0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SNES 0.0000000000 0.0000000000 0.3333333333  0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000  0.1500000000
##     XB   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000  0.0000000000
##         Publisher
## Platform Conspiracy Entertainment Core Design Ltd. CPG Products
##     2600             0.0000000000     0.0000000000 1.0000000000
##     3DO              0.0000000000     0.0000000000 0.0000000000
##     3DS              0.0000000000     0.0000000000 0.0000000000
##     DC               0.0000000000     0.0000000000 0.0000000000
##     DS               0.2142857143     0.0000000000 0.0000000000
##     GB               0.0000000000     0.0000000000 0.0000000000
##     GBA              0.1428571429     0.0000000000 0.0000000000
##     GC               0.0000000000     0.0000000000 0.0000000000
##     GEN              0.0000000000     0.0000000000 0.0000000000
##     GG               0.0000000000     0.0000000000 0.0000000000
##     N64              0.0000000000     0.0000000000 0.0000000000
##     NES              0.0000000000     0.0000000000 0.0000000000
##     NG               0.0000000000     0.0000000000 0.0000000000
##     PC               0.0000000000     0.0000000000 0.0000000000
##     PCFX             0.0000000000     0.0000000000 0.0000000000
##     PS               0.0714285714     1.0000000000 0.0000000000
##     PS2              0.0714285714     0.0000000000 0.0000000000
##     PS3              0.0714285714     0.0000000000 0.0000000000
##     PS4              0.0000000000     0.0000000000 0.0000000000
##     PSP              0.0714285714     0.0000000000 0.0000000000
##     PSV              0.0000000000     0.0000000000 0.0000000000
##     SAT              0.0000000000     0.0000000000 0.0000000000
##     SCD              0.0000000000     0.0000000000 0.0000000000
##     SNES             0.0000000000     0.0000000000 0.0000000000
##     TG16             0.0000000000     0.0000000000 0.0000000000
##     Wii              0.2857142857     0.0000000000 0.0000000000
##     WiiU             0.0000000000     0.0000000000 0.0000000000
##     WS               0.0000000000     0.0000000000 0.0000000000
##     X360             0.0714285714     0.0000000000 0.0000000000
##     XB               0.0000000000     0.0000000000 0.0000000000
##     XOne             0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform Crave Entertainment Creative Core  Crimson Cow Crystal Dynamics
##     2600        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     3DO         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     3DS         0.0563380282  0.0000000000 0.0000000000     0.0000000000
##     DC          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     DS          0.0704225352  1.0000000000 0.0000000000     0.0000000000
##     GB          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     GBA         0.0985915493  0.0000000000 0.0000000000     0.0000000000
##     GC          0.0563380282  0.0000000000 0.0000000000     0.0000000000
##     GEN         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     GG          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     N64         0.0704225352  0.0000000000 0.0000000000     0.0000000000
##     NES         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     NG          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     PC          0.0000000000  0.0000000000 1.0000000000     0.0000000000
##     PCFX        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     PS          0.0704225352  0.0000000000 0.0000000000     1.0000000000
##     PS2         0.1126760563  0.0000000000 0.0000000000     0.0000000000
##     PS3         0.0422535211  0.0000000000 0.0000000000     0.0000000000
##     PS4         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     PSP         0.0563380282  0.0000000000 0.0000000000     0.0000000000
##     PSV         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     SAT         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     SCD         0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     SNES        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     TG16        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     Wii         0.1830985915  0.0000000000 0.0000000000     0.0000000000
##     WiiU        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     WS          0.0000000000  0.0000000000 0.0000000000     0.0000000000
##     X360        0.0563380282  0.0000000000 0.0000000000     0.0000000000
##     XB          0.1267605634  0.0000000000 0.0000000000     0.0000000000
##     XOne        0.0000000000  0.0000000000 0.0000000000     0.0000000000
##         Publisher
## Platform      CTO SpA Culture Brain Culture Publishers   CyberFront
##     2600 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     3DO  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     DC   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     DS   0.0000000000  0.5000000000       0.0000000000 0.0000000000
##     GB   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GC   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GEN  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PC   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PCFX 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PS   1.0000000000  0.0000000000       1.0000000000 0.0000000000
##     PS2  0.0000000000  0.0000000000       0.0000000000 0.1428571429
##     PS3  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     PSP  0.0000000000  0.0000000000       0.0000000000 0.5714285714
##     PSV  0.0000000000  0.0000000000       0.0000000000 0.1428571429
##     SAT  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000  0.5000000000       0.0000000000 0.0000000000
##     TG16 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     WiiU 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     X360 0.0000000000  0.0000000000       0.0000000000 0.1428571429
##     XB   0.0000000000  0.0000000000       0.0000000000 0.0000000000
##     XOne 0.0000000000  0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform      Cygames  D3Publisher     Daedalic Daedalic Entertainment
##     2600 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DS  0.0000000000 0.0380434783 0.0000000000           0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     DS   0.0000000000 0.2608695652 0.0000000000           0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GBA  0.0000000000 0.0108695652 0.0000000000           0.0000000000
##     GC   0.0000000000 0.0054347826 0.0000000000           0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PC   0.0000000000 0.0000000000 1.0000000000           1.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS   0.0000000000 0.0217391304 0.0000000000           0.0000000000
##     PS2  0.0000000000 0.1304347826 0.0000000000           0.0000000000
##     PS3  0.0000000000 0.0760869565 0.0000000000           0.0000000000
##     PS4  0.0000000000 0.0108695652 0.0000000000           0.0000000000
##     PSP  0.0000000000 0.1739130435 0.0000000000           0.0000000000
##     PSV  1.0000000000 0.0489130435 0.0000000000           0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     Wii  0.0000000000 0.1195652174 0.0000000000           0.0000000000
##     WiiU 0.0000000000 0.0163043478 0.0000000000           0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     X360 0.0000000000 0.0869565217 0.0000000000           0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##         Publisher
## Platform        Daito     Data Age Data Design Interactive    Data East
##     2600 0.0000000000 1.0000000000            0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PS2  0.5000000000 0.0000000000            0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     PSP  0.5000000000 0.0000000000            0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000            0.0000000000 0.5000000000
##     SCD  0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000            0.0000000000 0.5000000000
##     TG16 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000            1.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000            0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000            0.0000000000 0.0000000000
##         Publisher
## Platform Datam Polystar  Deep Silver Destination Software, Inc
##     2600   0.0000000000 0.0000000000              0.0000000000
##     3DO    0.0000000000 0.0000000000              0.0000000000
##     3DS    0.0000000000 0.0163934426              0.0000000000
##     DC     0.0000000000 0.0000000000              0.0000000000
##     DS     0.0000000000 0.1721311475              0.4166666667
##     GB     0.0000000000 0.0000000000              0.0000000000
##     GBA    0.0000000000 0.0000000000              0.5833333333
##     GC     0.0000000000 0.0000000000              0.0000000000
##     GEN    0.0000000000 0.0000000000              0.0000000000
##     GG     0.0000000000 0.0000000000              0.0000000000
##     N64    0.0000000000 0.0000000000              0.0000000000
##     NES    0.0000000000 0.0000000000              0.0000000000
##     NG     0.0000000000 0.0000000000              0.0000000000
##     PC     0.0000000000 0.1721311475              0.0000000000
##     PCFX   0.0000000000 0.0000000000              0.0000000000
##     PS     0.0000000000 0.0000000000              0.0000000000
##     PS2    1.0000000000 0.0000000000              0.0000000000
##     PS3    0.0000000000 0.1639344262              0.0000000000
##     PS4    0.0000000000 0.0819672131              0.0000000000
##     PSP    0.0000000000 0.0245901639              0.0000000000
##     PSV    0.0000000000 0.0000000000              0.0000000000
##     SAT    0.0000000000 0.0000000000              0.0000000000
##     SCD    0.0000000000 0.0000000000              0.0000000000
##     SNES   0.0000000000 0.0000000000              0.0000000000
##     TG16   0.0000000000 0.0000000000              0.0000000000
##     Wii    0.0000000000 0.1065573770              0.0000000000
##     WiiU   0.0000000000 0.0081967213              0.0000000000
##     WS     0.0000000000 0.0000000000              0.0000000000
##     X360   0.0000000000 0.1803278689              0.0000000000
##     XB     0.0000000000 0.0245901639              0.0000000000
##     XOne   0.0000000000 0.0491803279              0.0000000000
##         Publisher
## Platform    Destineer  Detn8 Games Devolver Digital DHM Interactive
##     2600 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     DC   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     DS   0.4888888889 0.0000000000     0.0000000000    0.3333333333
##     GB   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GBA  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GC   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GEN  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     N64  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     NES  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PC   0.0222222222 0.0000000000     0.5000000000    0.0000000000
##     PCFX 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PS   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PS2  0.0222222222 0.0000000000     0.0000000000    0.0000000000
##     PS3  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     PS4  0.0000000000 0.0000000000     0.5000000000    0.0000000000
##     PSP  0.0444444444 0.0000000000     0.0000000000    0.6666666667
##     PSV  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     SNES 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     Wii  0.4222222222 1.0000000000     0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     X360 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     XB   0.0000000000 0.0000000000     0.0000000000    0.0000000000
##     XOne 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##         Publisher
## Platform     DigiCube Disney Interactive Studios       Dorart
##     2600 0.0000000000               0.0000000000 0.0000000000
##     3DO  0.0000000000               0.0000000000 0.0000000000
##     3DS  0.0000000000               0.0321100917 0.0000000000
##     DC   0.0000000000               0.0000000000 0.0000000000
##     DS   0.0000000000               0.2706422018 0.0000000000
##     GB   0.0000000000               0.0000000000 0.0000000000
##     GBA  0.0000000000               0.0871559633 0.0000000000
##     GC   0.0000000000               0.0137614679 0.0000000000
##     GEN  0.0000000000               0.0000000000 0.0000000000
##     GG   0.0000000000               0.0000000000 0.0000000000
##     N64  0.0000000000               0.0000000000 0.0000000000
##     NES  0.0000000000               0.0000000000 0.0000000000
##     NG   0.0000000000               0.0000000000 0.0000000000
##     PC   0.0000000000               0.0183486239 0.0000000000
##     PCFX 0.0000000000               0.0000000000 0.0000000000
##     PS   0.0000000000               0.0000000000 0.0000000000
##     PS2  1.0000000000               0.0779816514 0.0000000000
##     PS3  0.0000000000               0.1009174312 0.0000000000
##     PS4  0.0000000000               0.0091743119 0.0000000000
##     PSP  0.0000000000               0.0458715596 1.0000000000
##     PSV  0.0000000000               0.0091743119 0.0000000000
##     SAT  0.0000000000               0.0000000000 0.0000000000
##     SCD  0.0000000000               0.0000000000 0.0000000000
##     SNES 0.0000000000               0.0000000000 0.0000000000
##     TG16 0.0000000000               0.0000000000 0.0000000000
##     Wii  0.0000000000               0.1788990826 0.0000000000
##     WiiU 0.0000000000               0.0275229358 0.0000000000
##     WS   0.0000000000               0.0000000000 0.0000000000
##     X360 0.0000000000               0.0963302752 0.0000000000
##     XB   0.0000000000               0.0183486239 0.0000000000
##     XOne 0.0000000000               0.0137614679 0.0000000000
##         Publisher
## Platform dramatic create DreamCatcher Interactive DreamWorks Interactive
##     2600    0.0000000000             0.0000000000           0.0000000000
##     3DO     0.0000000000             0.0000000000           0.0000000000
##     3DS     0.0000000000             0.0000000000           0.0000000000
##     DC      0.0000000000             0.0000000000           0.0000000000
##     DS      0.0000000000             0.5882352941           0.0000000000
##     GB      0.0000000000             0.0000000000           0.0000000000
##     GBA     0.0000000000             0.0000000000           0.0000000000
##     GC      0.0000000000             0.0000000000           0.0000000000
##     GEN     0.0000000000             0.0000000000           0.0000000000
##     GG      0.0000000000             0.0000000000           0.0000000000
##     N64     0.0000000000             0.0000000000           0.0000000000
##     NES     0.0000000000             0.0000000000           0.0000000000
##     NG      0.0000000000             0.0000000000           0.0000000000
##     PC      0.0000000000             0.1176470588           0.0000000000
##     PCFX    0.0000000000             0.0000000000           0.0000000000
##     PS      0.0000000000             0.0000000000           1.0000000000
##     PS2     0.0000000000             0.1176470588           0.0000000000
##     PS3     0.0000000000             0.0000000000           0.0000000000
##     PS4     0.0000000000             0.0000000000           0.0000000000
##     PSP     0.0000000000             0.0000000000           0.0000000000
##     PSV     1.0000000000             0.0000000000           0.0000000000
##     SAT     0.0000000000             0.0000000000           0.0000000000
##     SCD     0.0000000000             0.0000000000           0.0000000000
##     SNES    0.0000000000             0.0000000000           0.0000000000
##     TG16    0.0000000000             0.0000000000           0.0000000000
##     Wii     0.0000000000             0.0000000000           0.0000000000
##     WiiU    0.0000000000             0.0000000000           0.0000000000
##     WS      0.0000000000             0.0000000000           0.0000000000
##     X360    0.0000000000             0.0000000000           0.0000000000
##     XB      0.0000000000             0.1764705882           0.0000000000
##     XOne    0.0000000000             0.0000000000           0.0000000000
##         Publisher
## Platform    DSI Games DTP Entertainment Dusenberry Martin Racing
##     2600 0.0000000000      0.0000000000             0.0000000000
##     3DO  0.0000000000      0.0000000000             0.0000000000
##     3DS  0.0000000000      0.0444444444             0.0000000000
##     DC   0.0000000000      0.0000000000             0.0000000000
##     DS   0.8333333333      0.2000000000             0.0000000000
##     GB   0.0000000000      0.0000000000             0.0000000000
##     GBA  0.1666666667      0.0444444444             0.0000000000
##     GC   0.0000000000      0.0000000000             0.0000000000
##     GEN  0.0000000000      0.0000000000             0.0000000000
##     GG   0.0000000000      0.0000000000             0.0000000000
##     N64  0.0000000000      0.0000000000             0.0000000000
##     NES  0.0000000000      0.0000000000             0.0000000000
##     NG   0.0000000000      0.0000000000             0.0000000000
##     PC   0.0000000000      0.2888888889             0.0000000000
##     PCFX 0.0000000000      0.0000000000             0.0000000000
##     PS   0.0000000000      0.0000000000             0.0000000000
##     PS2  0.0000000000      0.0222222222             0.0000000000
##     PS3  0.0000000000      0.0888888889             0.0000000000
##     PS4  0.0000000000      0.0000000000             0.5000000000
##     PSP  0.0000000000      0.0000000000             0.0000000000
##     PSV  0.0000000000      0.0000000000             0.0000000000
##     SAT  0.0000000000      0.0000000000             0.0000000000
##     SCD  0.0000000000      0.0000000000             0.0000000000
##     SNES 0.0000000000      0.0000000000             0.0000000000
##     TG16 0.0000000000      0.0000000000             0.0000000000
##     Wii  0.0000000000      0.1555555556             0.0000000000
##     WiiU 0.0000000000      0.0000000000             0.0000000000
##     WS   0.0000000000      0.0000000000             0.0000000000
##     X360 0.0000000000      0.1555555556             0.0000000000
##     XB   0.0000000000      0.0000000000             0.0000000000
##     XOne 0.0000000000      0.0000000000             0.5000000000
##         Publisher
## Platform     EA Games Easy Interactive        Ecole         Edia
##     2600 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000     1.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000     0.0000000000 1.0000000000 0.0000000000
##     PS3  1.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000     0.0000000000 0.0000000000 1.0000000000
##     PSV  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000     0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000     0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Eidos Interactive Electronic Arts Electronic Arts Victor
##     2600      0.0000000000    0.0000000000           0.0000000000
##     3DO       0.0000000000    0.0000000000           0.0000000000
##     3DS       0.0000000000    0.0051813472           0.0000000000
##     DC        0.0101010101    0.0000000000           0.0000000000
##     DS        0.1060606061    0.0584752036           0.0000000000
##     GB        0.0050505051    0.0007401925           0.0000000000
##     GBA       0.0101010101    0.0296076980           0.0000000000
##     GC        0.0404040404    0.0666173205           0.0000000000
##     GEN       0.0000000000    0.0000000000           0.0000000000
##     GG        0.0000000000    0.0000000000           0.0000000000
##     N64       0.0000000000    0.0170244264           0.0000000000
##     NES       0.0000000000    0.0000000000           0.0000000000
##     NG        0.0000000000    0.0000000000           0.0000000000
##     PC        0.1414141414    0.1095484826           0.0000000000
##     PCFX      0.0000000000    0.0000000000           0.0000000000
##     PS        0.1414141414    0.0784603997           1.0000000000
##     PS2       0.2222222222    0.1472982976           0.0000000000
##     PS3       0.0353535354    0.1051073279           0.0000000000
##     PS4       0.0000000000    0.0192450037           0.0000000000
##     PSP       0.0353535354    0.0532938564           0.0000000000
##     PSV       0.0000000000    0.0044411547           0.0000000000
##     SAT       0.0000000000    0.0007401925           0.0000000000
##     SCD       0.0000000000    0.0000000000           0.0000000000
##     SNES      0.0000000000    0.0000000000           0.0000000000
##     TG16      0.0000000000    0.0000000000           0.0000000000
##     Wii       0.0606060606    0.0666173205           0.0000000000
##     WiiU      0.0000000000    0.0029607698           0.0000000000
##     WS        0.0000000000    0.0000000000           0.0000000000
##     X360      0.0707070707    0.1236121392           0.0000000000
##     XB        0.1212121212    0.0910436714           0.0000000000
##     XOne      0.0000000000    0.0199851962           0.0000000000
##         Publisher
## Platform          Elf        Elite Empire Interactive       Encore
##     2600 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000       0.1153846154 0.0000000000
##     GB   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000       0.0384615385 0.0000000000
##     GC   0.0000000000 0.0000000000       0.0576923077 0.2500000000
##     GEN  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000       0.0769230769 0.2500000000
##     PCFX 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS   0.0000000000 1.0000000000       0.1153846154 0.2500000000
##     PS2  0.0000000000 0.0000000000       0.3076923077 0.0000000000
##     PS3  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000       0.0576923077 0.0000000000
##     PSV  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT  1.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000       0.0192307692 0.0000000000
##     XB   0.0000000000 0.0000000000       0.2115384615 0.2500000000
##     XOne 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Enix Corporation Enjoy Gaming ltd.   Enterbrain
##     2600     0.0000000000      0.0000000000 0.0000000000
##     3DO      0.0000000000      0.0000000000 0.0000000000
##     3DS      0.0000000000      0.0000000000 0.0000000000
##     DC       0.0000000000      0.0000000000 0.0000000000
##     DS       0.0000000000      1.0000000000 0.2000000000
##     GB       0.1333333333      0.0000000000 0.0000000000
##     GBA      0.0333333333      0.0000000000 0.0666666667
##     GC       0.0000000000      0.0000000000 0.0000000000
##     GEN      0.0000000000      0.0000000000 0.0000000000
##     GG       0.0000000000      0.0000000000 0.0000000000
##     N64      0.0333333333      0.0000000000 0.0000000000
##     NES      0.1000000000      0.0000000000 0.0000000000
##     NG       0.0000000000      0.0000000000 0.0000000000
##     PC       0.0000000000      0.0000000000 0.0000000000
##     PCFX     0.0000000000      0.0000000000 0.0000000000
##     PS       0.2000000000      0.0000000000 0.0666666667
##     PS2      0.2000000000      0.0000000000 0.6000000000
##     PS3      0.0000000000      0.0000000000 0.0000000000
##     PS4      0.0000000000      0.0000000000 0.0000000000
##     PSP      0.0000000000      0.0000000000 0.0666666667
##     PSV      0.0000000000      0.0000000000 0.0000000000
##     SAT      0.0000000000      0.0000000000 0.0000000000
##     SCD      0.0000000000      0.0000000000 0.0000000000
##     SNES     0.3000000000      0.0000000000 0.0000000000
##     TG16     0.0000000000      0.0000000000 0.0000000000
##     Wii      0.0000000000      0.0000000000 0.0000000000
##     WiiU     0.0000000000      0.0000000000 0.0000000000
##     WS       0.0000000000      0.0000000000 0.0000000000
##     X360     0.0000000000      0.0000000000 0.0000000000
##     XB       0.0000000000      0.0000000000 0.0000000000
##     XOne     0.0000000000      0.0000000000 0.0000000000
##         Publisher
## Platform EON Digital Entertainment   Epic Games        Epoch       Ertain
##     2600              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS                0.0000000000 0.0000000000 0.0000000000 1.0000000000
##     GB                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64               0.0000000000 0.0000000000 0.1428571429 0.0000000000
##     NES               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS                1.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4               0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PSP               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES              0.0000000000 0.0000000000 0.8571428571 0.0000000000
##     TG16              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform          ESP Essential Games Evolution Games Evolved Games
##     2600 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     3DO  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     3DS  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     DC   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     DS   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GB   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GBA  0.2000000000    0.0000000000    0.0000000000  0.0000000000
##     GC   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GEN  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     GG   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     N64  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     NES  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     NG   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PC   0.0000000000    0.0000000000    0.0000000000  0.1250000000
##     PCFX 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PS   0.2000000000    0.0000000000    1.0000000000  0.0000000000
##     PS2  0.0000000000    1.0000000000    0.0000000000  0.2500000000
##     PS3  0.0000000000    0.0000000000    0.0000000000  0.1250000000
##     PS4  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PSP  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     PSV  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     SAT  0.6000000000    0.0000000000    0.0000000000  0.0000000000
##     SCD  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     SNES 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     TG16 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     Wii  0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     WiiU 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     WS   0.0000000000    0.0000000000    0.0000000000  0.0000000000
##     X360 0.0000000000    0.0000000000    0.0000000000  0.2500000000
##     XB   0.0000000000    0.0000000000    0.0000000000  0.2500000000
##     XOne 0.0000000000    0.0000000000    0.0000000000  0.0000000000
##         Publisher
## Platform Excalibur Publishing Experience Inc. Extreme Entertainment Group
##     2600         0.0000000000    0.0000000000                0.0000000000
##     3DO          0.0000000000    0.0000000000                0.0000000000
##     3DS          0.2500000000    0.0000000000                1.0000000000
##     DC           0.0000000000    0.0000000000                0.0000000000
##     DS           0.0000000000    0.0000000000                0.0000000000
##     GB           0.0000000000    0.0000000000                0.0000000000
##     GBA          0.0000000000    0.0000000000                0.0000000000
##     GC           0.0000000000    0.0000000000                0.0000000000
##     GEN          0.0000000000    0.0000000000                0.0000000000
##     GG           0.0000000000    0.0000000000                0.0000000000
##     N64          0.0000000000    0.0000000000                0.0000000000
##     NES          0.0000000000    0.0000000000                0.0000000000
##     NG           0.0000000000    0.0000000000                0.0000000000
##     PC           0.7500000000    0.0000000000                0.0000000000
##     PCFX         0.0000000000    0.0000000000                0.0000000000
##     PS           0.0000000000    0.0000000000                0.0000000000
##     PS2          0.0000000000    0.0000000000                0.0000000000
##     PS3          0.0000000000    0.0000000000                0.0000000000
##     PS4          0.0000000000    0.0000000000                0.0000000000
##     PSP          0.0000000000    0.0000000000                0.0000000000
##     PSV          0.0000000000    1.0000000000                0.0000000000
##     SAT          0.0000000000    0.0000000000                0.0000000000
##     SCD          0.0000000000    0.0000000000                0.0000000000
##     SNES         0.0000000000    0.0000000000                0.0000000000
##     TG16         0.0000000000    0.0000000000                0.0000000000
##     Wii          0.0000000000    0.0000000000                0.0000000000
##     WiiU         0.0000000000    0.0000000000                0.0000000000
##     WS           0.0000000000    0.0000000000                0.0000000000
##     X360         0.0000000000    0.0000000000                0.0000000000
##     XB           0.0000000000    0.0000000000                0.0000000000
##     XOne         0.0000000000    0.0000000000                0.0000000000
##         Publisher
## Platform Falcom Corporation       Fields Flashpoint Games  Flight-Plan
##     2600       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DO        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DS        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DC         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DS         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GB         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GBA        0.0000000000 0.0000000000     0.5000000000 0.0000000000
##     GC         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GEN        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GG         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     N64        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     NES        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     NG         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PC         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PCFX       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS2        0.0000000000 0.0000000000     0.0000000000 1.0000000000
##     PS3        0.1875000000 1.0000000000     0.0000000000 0.0000000000
##     PS4        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PSP        0.7500000000 0.0000000000     0.0000000000 0.0000000000
##     PSV        0.0625000000 0.0000000000     0.0000000000 0.0000000000
##     SAT        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SCD        0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SNES       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     TG16       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     Wii        0.0000000000 0.0000000000     0.5000000000 0.0000000000
##     WiiU       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     WS         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     X360       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     XB         0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     XOne       0.0000000000 0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform Focus Home Interactive Focus Multimedia       fonfun
##     2600           0.0000000000     0.0000000000 0.0000000000
##     3DO            0.0000000000     0.0000000000 0.0000000000
##     3DS            0.0000000000     0.0000000000 0.0000000000
##     DC             0.0000000000     0.0000000000 0.0000000000
##     DS             0.0862068966     0.0000000000 0.0000000000
##     GB             0.0000000000     0.0000000000 0.0000000000
##     GBA            0.0000000000     0.0000000000 0.0000000000
##     GC             0.0000000000     0.0000000000 0.0000000000
##     GEN            0.0000000000     0.0000000000 0.0000000000
##     GG             0.0000000000     0.0000000000 0.0000000000
##     N64            0.0000000000     0.0000000000 0.0000000000
##     NES            0.0000000000     0.0000000000 0.0000000000
##     NG             0.0000000000     0.0000000000 0.0000000000
##     PC             0.4827586207     1.0000000000 0.0000000000
##     PCFX           0.0000000000     0.0000000000 0.0000000000
##     PS             0.0000000000     0.0000000000 0.0000000000
##     PS2            0.0000000000     0.0000000000 0.0000000000
##     PS3            0.0862068966     0.0000000000 0.0000000000
##     PS4            0.1034482759     0.0000000000 0.0000000000
##     PSP            0.0000000000     0.0000000000 1.0000000000
##     PSV            0.0172413793     0.0000000000 0.0000000000
##     SAT            0.0000000000     0.0000000000 0.0000000000
##     SCD            0.0000000000     0.0000000000 0.0000000000
##     SNES           0.0000000000     0.0000000000 0.0000000000
##     TG16           0.0000000000     0.0000000000 0.0000000000
##     Wii            0.0344827586     0.0000000000 0.0000000000
##     WiiU           0.0000000000     0.0000000000 0.0000000000
##     WS             0.0000000000     0.0000000000 0.0000000000
##     X360           0.1379310345     0.0000000000 0.0000000000
##     XB             0.0000000000     0.0000000000 0.0000000000
##     XOne           0.0517241379     0.0000000000 0.0000000000
##         Publisher
## Platform Foreign Media Games    Fortyfive Fox Interactive From Software
##     2600        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     3DO         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     3DS         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     DC          0.0000000000 1.0000000000    0.0000000000  0.0000000000
##     DS          1.0000000000 0.0000000000    0.0000000000  0.0666666667
##     GB          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GBA         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GC          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GEN         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     GG          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     N64         0.0000000000 0.0000000000    0.1250000000  0.0000000000
##     NES         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     NG          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PC          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PCFX        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PS          0.0000000000 0.0000000000    0.8750000000  0.4000000000
##     PS2         0.0000000000 0.0000000000    0.0000000000  0.0666666667
##     PS3         0.0000000000 0.0000000000    0.0000000000  0.0666666667
##     PS4         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     PSP         0.0000000000 0.0000000000    0.0000000000  0.3333333333
##     PSV         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     SAT         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     SCD         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     SNES        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     TG16        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     Wii         0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     WiiU        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     WS          0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     X360        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##     XB          0.0000000000 0.0000000000    0.0000000000  0.0666666667
##     XOne        0.0000000000 0.0000000000    0.0000000000  0.0000000000
##         Publisher
## Platform         Fuji Funbox Media       Funcom      FunSoft       Funsta
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.3333333333 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.5000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   1.0000000000 0.0000000000 0.0000000000 1.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2500000000
##     PSV  0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.3333333333 0.0000000000 0.0000000000 0.2500000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform        FuRyu FuRyu Corporation        G.Rev         Gaga
##     2600 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DS  0.5185185185      0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DS   0.0370370370      0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000      1.0000000000 0.0000000000 0.0000000000
##     PSP  0.2222222222      0.0000000000 0.0000000000 0.0000000000
##     PSV  0.2222222222      0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000      0.0000000000 0.0000000000 1.0000000000
##     SCD  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000      0.0000000000 1.0000000000 0.0000000000
##     XB   0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000      0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Gainax Network Systems       Gakken    Game Arts Game Factory
##     2600           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS             0.0000000000 1.0000000000 0.0000000000 0.5625000000
##     GB             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA            0.0000000000 0.0000000000 0.0000000000 0.1562500000
##     GC             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN            0.0000000000 0.0000000000 1.0000000000 0.0000000000
##     GG             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS             1.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2            0.0000000000 0.0000000000 0.0000000000 0.0625000000
##     PS3            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP            0.0000000000 0.0000000000 0.0000000000 0.0625000000
##     PSV            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii            0.0000000000 0.0000000000 0.0000000000 0.1562500000
##     WiiU           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    Game Life   Gamebridge     Gamecock     Gameloft
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   1.0000000000 0.0000000000 0.2500000000 1.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.2500000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.5000000000 0.2500000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.5000000000 0.2500000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform GameMill Entertainment      GameTek Gathering of Developers
##     2600           0.0000000000 0.0000000000            0.0000000000
##     3DO            0.0000000000 0.0000000000            0.0000000000
##     3DS            0.0000000000 0.0000000000            0.0000000000
##     DC             0.0000000000 0.0000000000            0.0000000000
##     DS             0.6250000000 0.0000000000            0.0000000000
##     GB             0.0000000000 0.0000000000            0.0000000000
##     GBA            0.0000000000 0.0000000000            0.0000000000
##     GC             0.0000000000 0.0000000000            0.0000000000
##     GEN            0.0000000000 0.0000000000            0.0000000000
##     GG             0.0000000000 0.0000000000            0.0000000000
##     N64            0.0000000000 1.0000000000            0.0000000000
##     NES            0.0000000000 0.0000000000            0.0000000000
##     NG             0.0000000000 0.0000000000            0.0000000000
##     PC             0.0000000000 0.0000000000            0.3333333333
##     PCFX           0.0000000000 0.0000000000            0.0000000000
##     PS             0.0000000000 0.0000000000            0.0000000000
##     PS2            0.0000000000 0.0000000000            0.3333333333
##     PS3            0.0000000000 0.0000000000            0.0000000000
##     PS4            0.0000000000 0.0000000000            0.0000000000
##     PSP            0.0000000000 0.0000000000            0.0000000000
##     PSV            0.0000000000 0.0000000000            0.0000000000
##     SAT            0.0000000000 0.0000000000            0.0000000000
##     SCD            0.0000000000 0.0000000000            0.0000000000
##     SNES           0.0000000000 0.0000000000            0.0000000000
##     TG16           0.0000000000 0.0000000000            0.0000000000
##     Wii            0.2500000000 0.0000000000            0.0000000000
##     WiiU           0.0000000000 0.0000000000            0.0000000000
##     WS             0.0000000000 0.0000000000            0.0000000000
##     X360           0.1250000000 0.0000000000            0.0000000000
##     XB             0.0000000000 0.0000000000            0.3333333333
##     XOne           0.0000000000 0.0000000000            0.0000000000
##         Publisher
## Platform General Entertainment        Genki  Genterprise   Ghostlight
##     2600          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.1250000000 0.0000000000 0.0666666667
##     DC            0.0000000000 0.1250000000 0.0000000000 0.0000000000
##     DS            0.0000000000 0.1250000000 1.0000000000 0.3333333333
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            1.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2           0.0000000000 0.2500000000 0.0000000000 0.2666666667
##     PS3           0.0000000000 0.1250000000 0.0000000000 0.1333333333
##     PS4           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP           0.0000000000 0.1250000000 0.0000000000 0.1333333333
##     PSV           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.0000000000 0.0000000000 0.0666666667
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB            0.0000000000 0.1250000000 0.0000000000 0.0000000000
##     XOne          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform         Giga       Giza10        Glams Global A Entertainment
##     2600 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000           0.5000000000
##     GB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     PSP  0.0000000000 1.0000000000 0.0000000000           0.5000000000
##     PSV  1.0000000000 0.0000000000 0.0000000000           0.0000000000
##     SAT  0.0000000000 0.0000000000 1.0000000000           0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000           0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000           0.0000000000
##         Publisher
## Platform  Global Star  GN Software          GOA Gotham Games     Graffiti
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.5000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0769230769 0.0000000000 0.0000000000 0.1428571429 0.0000000000
##     GC   0.1538461538 0.0000000000 0.0000000000 0.1428571429 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.1428571429 0.0000000000
##     PS2  0.3589743590 0.6666666667 0.0000000000 0.4285714286 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.3333333333 0.0000000000 0.0000000000 0.1666666667
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.4102564103 0.0000000000 0.0000000000 0.1428571429 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Grand Prix Games Graphsim Entertainment Gremlin Interactive Ltd
##     2600     0.0000000000           0.0000000000            0.0000000000
##     3DO      0.0000000000           0.0000000000            0.0000000000
##     3DS      0.0000000000           0.0000000000            0.0000000000
##     DC       0.0000000000           0.0000000000            0.0000000000
##     DS       0.0000000000           0.0000000000            0.0000000000
##     GB       0.0000000000           0.0000000000            0.0000000000
##     GBA      0.0000000000           0.0000000000            0.0000000000
##     GC       0.0000000000           0.0000000000            0.0000000000
##     GEN      0.0000000000           0.0000000000            0.0000000000
##     GG       0.0000000000           0.0000000000            0.0000000000
##     N64      0.0000000000           0.0000000000            0.1111111111
##     NES      0.0000000000           0.0000000000            0.0000000000
##     NG       0.0000000000           0.0000000000            0.0000000000
##     PC       0.0000000000           1.0000000000            0.0000000000
##     PCFX     0.0000000000           0.0000000000            0.0000000000
##     PS       0.0000000000           0.0000000000            0.8888888889
##     PS2      0.0000000000           0.0000000000            0.0000000000
##     PS3      0.0000000000           0.0000000000            0.0000000000
##     PS4      0.0000000000           0.0000000000            0.0000000000
##     PSP      1.0000000000           0.0000000000            0.0000000000
##     PSV      0.0000000000           0.0000000000            0.0000000000
##     SAT      0.0000000000           0.0000000000            0.0000000000
##     SCD      0.0000000000           0.0000000000            0.0000000000
##     SNES     0.0000000000           0.0000000000            0.0000000000
##     TG16     0.0000000000           0.0000000000            0.0000000000
##     Wii      0.0000000000           0.0000000000            0.0000000000
##     WiiU     0.0000000000           0.0000000000            0.0000000000
##     WS       0.0000000000           0.0000000000            0.0000000000
##     X360     0.0000000000           0.0000000000            0.0000000000
##     XB       0.0000000000           0.0000000000            0.0000000000
##     XOne     0.0000000000           0.0000000000            0.0000000000
##         Publisher
## Platform Griffin International Groove Games          GSP GT Interactive
##     2600          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DS           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DC            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DS            0.0000000000 0.0000000000 0.8750000000   0.0000000000
##     GB            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GBA           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GC            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     N64           0.0000000000 0.0000000000 0.0000000000   0.4000000000
##     NES           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PC            0.0000000000 0.0000000000 0.0625000000   0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS            0.0000000000 0.0000000000 0.0000000000   0.6000000000
##     PS2           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS3           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS4           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSP           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSV           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SAT           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     Wii           0.0000000000 0.0000000000 0.0625000000   0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     X360          1.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XB            0.0000000000 1.0000000000 0.0000000000   0.0000000000
##     XOne          0.0000000000 0.0000000000 0.0000000000   0.0000000000
##         Publisher
## Platform       GungHo         Gust    Hackberry HAL Laboratory
##     2600 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DS  0.1538461538 0.0000000000 0.0000000000   0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DS   0.3076923077 0.1538461538 0.0000000000   0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000   1.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS   0.0000000000 0.1538461538 0.0000000000   0.0000000000
##     PS2  0.0000000000 0.2307692308 1.0000000000   0.0000000000
##     PS3  0.0769230769 0.0000000000 0.0000000000   0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSP  0.2307692308 0.2307692308 0.0000000000   0.0000000000
##     PSV  0.2307692308 0.2307692308 0.0000000000   0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##         Publisher
## Platform Hamster Corporation     Happinet Harmonix Music Systems
##     2600        0.0000000000 0.0000000000           0.0000000000
##     3DO         0.0000000000 0.0000000000           0.0000000000
##     3DS         0.0000000000 1.0000000000           0.0000000000
##     DC          0.0000000000 0.0000000000           0.0000000000
##     DS          0.0000000000 0.0000000000           0.0000000000
##     GB          0.0000000000 0.0000000000           0.0000000000
##     GBA         0.0000000000 0.0000000000           0.0000000000
##     GC          0.0000000000 0.0000000000           0.0000000000
##     GEN         0.0000000000 0.0000000000           0.0000000000
##     GG          0.0000000000 0.0000000000           0.0000000000
##     N64         0.0000000000 0.0000000000           0.0000000000
##     NES         0.0000000000 0.0000000000           0.0000000000
##     NG          0.0000000000 0.0000000000           0.0000000000
##     PC          0.0000000000 0.0000000000           0.0000000000
##     PCFX        0.0000000000 0.0000000000           0.0000000000
##     PS          0.5000000000 0.0000000000           0.0000000000
##     PS2         0.5000000000 0.0000000000           0.0000000000
##     PS3         0.0000000000 0.0000000000           0.0000000000
##     PS4         0.0000000000 0.0000000000           0.5000000000
##     PSP         0.0000000000 0.0000000000           0.0000000000
##     PSV         0.0000000000 0.0000000000           0.0000000000
##     SAT         0.0000000000 0.0000000000           0.0000000000
##     SCD         0.0000000000 0.0000000000           0.0000000000
##     SNES        0.0000000000 0.0000000000           0.0000000000
##     TG16        0.0000000000 0.0000000000           0.0000000000
##     Wii         0.0000000000 0.0000000000           0.0000000000
##     WiiU        0.0000000000 0.0000000000           0.0000000000
##     WS          0.0000000000 0.0000000000           0.0000000000
##     X360        0.0000000000 0.0000000000           0.0000000000
##     XB          0.0000000000 0.0000000000           0.0000000000
##     XOne        0.0000000000 0.0000000000           0.5000000000
##         Publisher
## Platform Hasbro Interactive Havas Interactive Headup Games Hearty Robin
##     2600       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DO        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     3DS        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DC         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     DS         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GB         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GBA        0.0625000000      0.0000000000 0.0000000000 0.0000000000
##     GC         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GEN        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     GG         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     N64        0.1250000000      0.0000000000 0.0000000000 0.0000000000
##     NES        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     NG         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PC         0.0625000000      1.0000000000 1.0000000000 0.0000000000
##     PCFX       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS         0.7500000000      0.0000000000 0.0000000000 1.0000000000
##     PS2        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS3        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PS4        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PSP        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     PSV        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SAT        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SCD        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     SNES       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     TG16       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     Wii        0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WiiU       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     WS         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     X360       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XB         0.0000000000      0.0000000000 0.0000000000 0.0000000000
##     XOne       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform         Hect  Hello Games Her Interactive Hip Interactive
##     2600 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     3DO  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     DC   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     DS   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GB   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GBA  0.0000000000 0.0000000000    0.0000000000    0.4000000000
##     GC   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GEN  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     N64  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     NES  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PC   0.0000000000 0.0000000000    1.0000000000    0.0000000000
##     PCFX 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PS   0.3333333333 0.0000000000    0.0000000000    0.0000000000
##     PS2  0.0000000000 0.0000000000    0.0000000000    0.2000000000
##     PS3  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PS4  0.0000000000 1.0000000000    0.0000000000    0.0000000000
##     PSP  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     PSV  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     SNES 0.6666666667 0.0000000000    0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     Wii  0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     X360 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##     XB   0.0000000000 0.0000000000    0.0000000000    0.4000000000
##     XOne 0.0000000000 0.0000000000    0.0000000000    0.0000000000
##         Publisher
## Platform HMH Interactive Home Entertainment Suppliers Hudson Entertainment
##     2600    0.0000000000                 0.0000000000         0.0000000000
##     3DO     0.0000000000                 0.0000000000         0.0000000000
##     3DS     0.0000000000                 0.0000000000         0.0000000000
##     DC      0.0000000000                 0.0000000000         0.0000000000
##     DS      0.5000000000                 0.0000000000         0.0909090909
##     GB      0.0000000000                 0.0000000000         0.0000000000
##     GBA     0.0000000000                 0.0000000000         0.3636363636
##     GC      0.0000000000                 0.0000000000         0.0000000000
##     GEN     0.0000000000                 0.0000000000         0.0000000000
##     GG      0.0000000000                 0.0000000000         0.0000000000
##     N64     0.0000000000                 0.0000000000         0.0909090909
##     NES     0.0000000000                 0.0000000000         0.0000000000
##     NG      0.0000000000                 0.0000000000         0.0000000000
##     PC      0.5000000000                 0.2000000000         0.0000000000
##     PCFX    0.0000000000                 0.0000000000         0.0000000000
##     PS      0.0000000000                 0.0000000000         0.1818181818
##     PS2     0.0000000000                 0.0000000000         0.0000000000
##     PS3     0.0000000000                 0.4000000000         0.0000000000
##     PS4     0.0000000000                 0.0000000000         0.0000000000
##     PSP     0.0000000000                 0.0000000000         0.0909090909
##     PSV     0.0000000000                 0.0000000000         0.0000000000
##     SAT     0.0000000000                 0.0000000000         0.0000000000
##     SCD     0.0000000000                 0.0000000000         0.0000000000
##     SNES    0.0000000000                 0.0000000000         0.0000000000
##     TG16    0.0000000000                 0.0000000000         0.0000000000
##     Wii     0.0000000000                 0.0000000000         0.1818181818
##     WiiU    0.0000000000                 0.0000000000         0.0000000000
##     WS      0.0000000000                 0.0000000000         0.0000000000
##     X360    0.0000000000                 0.4000000000         0.0000000000
##     XB      0.0000000000                 0.0000000000         0.0000000000
##     XOne    0.0000000000                 0.0000000000         0.0000000000
##         Publisher
## Platform  Hudson Soft Human Entertainment        HuneX Iceberg Interactive
##     2600 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     3DO  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     3DS  0.0246913580        0.0000000000 0.0000000000        0.0000000000
##     DC   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     DS   0.1851851852        0.0000000000 0.0000000000        0.0000000000
##     GB   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     GBA  0.0246913580        0.0000000000 0.0000000000        0.0000000000
##     GC   0.0246913580        0.0000000000 0.0000000000        0.0000000000
##     GEN  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     GG   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     N64  0.0370370370        0.0000000000 0.0000000000        0.0000000000
##     NES  0.0864197531        0.0000000000 0.0000000000        0.0000000000
##     NG   0.0123456790        0.0000000000 0.0000000000        0.0000000000
##     PC   0.0000000000        0.0000000000 0.0000000000        1.0000000000
##     PCFX 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     PS   0.0246913580        0.6153846154 0.0000000000        0.0000000000
##     PS2  0.0740740741        0.0000000000 0.0000000000        0.0000000000
##     PS3  0.0123456790        0.0000000000 0.0000000000        0.0000000000
##     PS4  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     PSP  0.0493827160        0.0000000000 0.0000000000        0.0000000000
##     PSV  0.0000000000        0.0000000000 1.0000000000        0.0000000000
##     SAT  0.0370370370        0.0769230769 0.0000000000        0.0000000000
##     SCD  0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     SNES 0.2222222222        0.3076923077 0.0000000000        0.0000000000
##     TG16 0.0123456790        0.0000000000 0.0000000000        0.0000000000
##     Wii  0.1481481481        0.0000000000 0.0000000000        0.0000000000
##     WiiU 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     WS   0.0000000000        0.0000000000 0.0000000000        0.0000000000
##     X360 0.0123456790        0.0000000000 0.0000000000        0.0000000000
##     XB   0.0123456790        0.0000000000 0.0000000000        0.0000000000
##     XOne 0.0000000000        0.0000000000 0.0000000000        0.0000000000
##         Publisher
## Platform  id Software Idea Factory Idea Factory International IE Institute
##     2600 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000               0.0000000000 0.2000000000
##     DC   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     DS   0.0000000000 0.0465116279               0.0000000000 0.8000000000
##     GB   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     PC   1.0000000000 0.0000000000               0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     PS2  0.0000000000 0.1317829457               0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0155038760               0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0077519380               0.3333333333 0.0000000000
##     PSP  0.0000000000 0.5348837209               0.0000000000 0.0000000000
##     PSV  0.0000000000 0.2480620155               0.6666666667 0.0000000000
##     SAT  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     X360 0.0000000000 0.0155038760               0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000               0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000               0.0000000000 0.0000000000
##         Publisher
## Platform Ignition Entertainment Illusion Softworks       Imadio
##     2600           0.0000000000       0.0000000000 0.0000000000
##     3DO            0.0000000000       0.0000000000 0.0000000000
##     3DS            0.0000000000       0.0000000000 0.0000000000
##     DC             0.0000000000       0.0000000000 0.0000000000
##     DS             0.2131147541       0.0000000000 0.0000000000
##     GB             0.0000000000       0.0000000000 0.0000000000
##     GBA            0.0983606557       0.0000000000 0.0000000000
##     GC             0.0491803279       0.0000000000 0.0000000000
##     GEN            0.0000000000       0.0000000000 0.0000000000
##     GG             0.0000000000       0.0000000000 0.0000000000
##     N64            0.0000000000       0.0000000000 0.0000000000
##     NES            0.0000000000       0.0000000000 0.0000000000
##     NG             0.0000000000       0.0000000000 0.0000000000
##     PC             0.0000000000       0.0000000000 0.0000000000
##     PCFX           0.0000000000       0.0000000000 0.0000000000
##     PS             0.0000000000       0.0000000000 0.0000000000
##     PS2            0.2786885246       1.0000000000 0.0000000000
##     PS3            0.0491803279       0.0000000000 0.0000000000
##     PS4            0.0000000000       0.0000000000 0.0000000000
##     PSP            0.1311475410       0.0000000000 0.0000000000
##     PSV            0.0000000000       0.0000000000 0.0000000000
##     SAT            0.0000000000       0.0000000000 1.0000000000
##     SCD            0.0000000000       0.0000000000 0.0000000000
##     SNES           0.0000000000       0.0000000000 0.0000000000
##     TG16           0.0000000000       0.0000000000 0.0000000000
##     Wii            0.0983606557       0.0000000000 0.0000000000
##     WiiU           0.0000000000       0.0000000000 0.0000000000
##     WS             0.0000000000       0.0000000000 0.0000000000
##     X360           0.0327868852       0.0000000000 0.0000000000
##     XB             0.0491803279       0.0000000000 0.0000000000
##     XOne           0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform  Image Epoch imageepoch Inc.   Imageworks       Imagic
##     2600 0.0000000000    0.0000000000 0.0000000000 1.0000000000
##     3DO  0.0000000000    0.0000000000 1.0000000000 0.0000000000
##     3DS  0.0000000000    1.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PSP  1.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000    0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    Imagineer         Imax  Indie Games   Infogrames
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0161290323
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.2500000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.1290322581
##     GC   0.0000000000 0.0000000000 0.0000000000 0.1290322581
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.3125000000 0.0000000000 0.0000000000 0.1290322581
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0161290323
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0625000000 0.0000000000 0.0000000000 0.3709677419
##     PS2  0.0000000000 0.0000000000 1.0000000000 0.1129032258
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.1875000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.1875000000 1.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0967741935
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Insomniac Games Interchannel Interchannel-Holon    Intergrow
##     2600    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DO     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS     0.0000000000 0.0000000000       0.0000000000 1.0000000000
##     DC      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GB      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GC      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GEN     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC      0.3333333333 0.0000000000       0.0000000000 0.0000000000
##     PCFX    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS2     0.0000000000 1.0000000000       1.0000000000 0.0000000000
##     PS3     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS4     0.3333333333 0.0000000000       0.0000000000 0.0000000000
##     PSP     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSV     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SCD     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii     0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WiiU    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360    0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     XB      0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     XOne    0.3333333333 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform    Interplay Interplay Productions Interworks Unlimited, Inc.
##     2600 0.0000000000          0.0000000000               0.0000000000
##     3DO  0.0000000000          0.0000000000               0.0000000000
##     3DS  0.0000000000          0.0000000000               0.0000000000
##     DC   0.0000000000          0.0000000000               0.0000000000
##     DS   0.0000000000          0.0000000000               0.0000000000
##     GB   0.0000000000          0.0000000000               0.0000000000
##     GBA  0.0666666667          0.0000000000               0.0000000000
##     GC   0.0000000000          0.0000000000               0.0000000000
##     GEN  0.0000000000          0.0000000000               0.0000000000
##     GG   0.0000000000          0.0000000000               0.0000000000
##     N64  0.1000000000          0.0000000000               0.0000000000
##     NES  0.0000000000          0.0000000000               0.0000000000
##     NG   0.0000000000          0.0000000000               0.0000000000
##     PC   0.1000000000          0.0000000000               0.0000000000
##     PCFX 0.0000000000          0.0000000000               0.0000000000
##     PS   0.5000000000          1.0000000000               0.0000000000
##     PS2  0.1333333333          0.0000000000               0.0000000000
##     PS3  0.0000000000          0.0000000000               1.0000000000
##     PS4  0.0000000000          0.0000000000               0.0000000000
##     PSP  0.0000000000          0.0000000000               0.0000000000
##     PSV  0.0000000000          0.0000000000               0.0000000000
##     SAT  0.0000000000          0.0000000000               0.0000000000
##     SCD  0.0000000000          0.0000000000               0.0000000000
##     SNES 0.0333333333          0.0000000000               0.0000000000
##     TG16 0.0000000000          0.0000000000               0.0000000000
##     Wii  0.0000000000          0.0000000000               0.0000000000
##     WiiU 0.0000000000          0.0000000000               0.0000000000
##     WS   0.0000000000          0.0000000000               0.0000000000
##     X360 0.0000000000          0.0000000000               0.0000000000
##     XB   0.0666666667          0.0000000000               0.0000000000
##     XOne 0.0000000000          0.0000000000               0.0000000000
##         Publisher
## Platform Inti Creates Introversion Software inXile Entertainment
##     2600 0.0000000000          0.0000000000         0.0000000000
##     3DO  0.0000000000          0.0000000000         0.0000000000
##     3DS  1.0000000000          0.0000000000         0.0000000000
##     DC   0.0000000000          0.0000000000         0.0000000000
##     DS   0.0000000000          0.0000000000         0.0000000000
##     GB   0.0000000000          0.0000000000         0.0000000000
##     GBA  0.0000000000          0.0000000000         0.0000000000
##     GC   0.0000000000          0.0000000000         0.0000000000
##     GEN  0.0000000000          0.0000000000         0.0000000000
##     GG   0.0000000000          0.0000000000         0.0000000000
##     N64  0.0000000000          0.0000000000         0.0000000000
##     NES  0.0000000000          0.0000000000         0.0000000000
##     NG   0.0000000000          0.0000000000         0.0000000000
##     PC   0.0000000000          0.0000000000         1.0000000000
##     PCFX 0.0000000000          0.0000000000         0.0000000000
##     PS   0.0000000000          0.0000000000         0.0000000000
##     PS2  0.0000000000          0.0000000000         0.0000000000
##     PS3  0.0000000000          0.0000000000         0.0000000000
##     PS4  0.0000000000          1.0000000000         0.0000000000
##     PSP  0.0000000000          0.0000000000         0.0000000000
##     PSV  0.0000000000          0.0000000000         0.0000000000
##     SAT  0.0000000000          0.0000000000         0.0000000000
##     SCD  0.0000000000          0.0000000000         0.0000000000
##     SNES 0.0000000000          0.0000000000         0.0000000000
##     TG16 0.0000000000          0.0000000000         0.0000000000
##     Wii  0.0000000000          0.0000000000         0.0000000000
##     WiiU 0.0000000000          0.0000000000         0.0000000000
##     WS   0.0000000000          0.0000000000         0.0000000000
##     X360 0.0000000000          0.0000000000         0.0000000000
##     XB   0.0000000000          0.0000000000         0.0000000000
##     XOne 0.0000000000          0.0000000000         0.0000000000
##         Publisher
## Platform Irem Software Engineering ITT Family Games    Ivolgamus
##     2600              0.0000000000     1.0000000000 0.0000000000
##     3DO               0.0000000000     0.0000000000 0.0000000000
##     3DS               0.1666666667     0.0000000000 0.0000000000
##     DC                0.0000000000     0.0000000000 0.0000000000
##     DS                0.0000000000     0.0000000000 0.0000000000
##     GB                0.0000000000     0.0000000000 0.0000000000
##     GBA               0.0000000000     0.0000000000 0.0000000000
##     GC                0.0000000000     0.0000000000 0.0000000000
##     GEN               0.0000000000     0.0000000000 0.0000000000
##     GG                0.0000000000     0.0000000000 0.0000000000
##     N64               0.0000000000     0.0000000000 0.0000000000
##     NES               0.0000000000     0.0000000000 0.0000000000
##     NG                0.0000000000     0.0000000000 0.0000000000
##     PC                0.0000000000     0.0000000000 0.0000000000
##     PCFX              0.0000000000     0.0000000000 0.0000000000
##     PS                0.0833333333     0.0000000000 0.0000000000
##     PS2               0.1666666667     0.0000000000 0.0000000000
##     PS3               0.0833333333     0.0000000000 0.0000000000
##     PS4               0.0000000000     0.0000000000 0.0000000000
##     PSP               0.5000000000     0.0000000000 1.0000000000
##     PSV               0.0000000000     0.0000000000 0.0000000000
##     SAT               0.0000000000     0.0000000000 0.0000000000
##     SCD               0.0000000000     0.0000000000 0.0000000000
##     SNES              0.0000000000     0.0000000000 0.0000000000
##     TG16              0.0000000000     0.0000000000 0.0000000000
##     Wii               0.0000000000     0.0000000000 0.0000000000
##     WiiU              0.0000000000     0.0000000000 0.0000000000
##     WS                0.0000000000     0.0000000000 0.0000000000
##     X360              0.0000000000     0.0000000000 0.0000000000
##     XB                0.0000000000     0.0000000000 0.0000000000
##     XOne              0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform         iWin Jack of All Games       Jaleco Jester Interactive
##     2600 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     3DO  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     3DS  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     DC   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     DS   1.0000000000      0.6666666667 0.1304347826       0.0000000000
##     GB   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     GBA  0.0000000000      0.3333333333 0.0434782609       0.0000000000
##     GC   0.0000000000      0.0000000000 0.0869565217       0.0000000000
##     GEN  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     GG   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     N64  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     NES  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     NG   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PC   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PCFX 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PS   0.0000000000      0.0000000000 0.2608695652       0.0000000000
##     PS2  0.0000000000      0.0000000000 0.1304347826       1.0000000000
##     PS3  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PS4  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PSP  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     PSV  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     SAT  0.0000000000      0.0000000000 0.0434782609       0.0000000000
##     SCD  0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     SNES 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     TG16 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     Wii  0.0000000000      0.0000000000 0.0434782609       0.0000000000
##     WiiU 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     WS   0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     X360 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##     XB   0.0000000000      0.0000000000 0.2608695652       0.0000000000
##     XOne 0.0000000000      0.0000000000 0.0000000000       0.0000000000
##         Publisher
## Platform      Jorudan JoWood Productions  Just Flight          JVC
##     2600 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000       0.2727272727 0.0000000000 0.0000000000
##     GB   0.3333333333       0.0000000000 0.0000000000 0.0000000000
##     GBA  0.6666666667       0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000       0.0909090909 0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000       0.3181818182 1.0000000000 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000       0.0000000000 0.0000000000 0.8750000000
##     PS2  0.0000000000       0.0909090909 0.0000000000 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000       0.0000000000 0.0000000000 0.1250000000
##     SCD  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000       0.1363636364 0.0000000000 0.0000000000
##     WiiU 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000       0.0454545455 0.0000000000 0.0000000000
##     XB   0.0000000000       0.0454545455 0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Kadokawa Games Kadokawa Shoten  Kaga Create Kalypso Media
##     2600   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     3DO    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     3DS    0.0666666667    0.0400000000 0.0000000000  0.0000000000
##     DC     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     DS     0.0000000000    0.1000000000 0.0000000000  0.0000000000
##     GB     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GBA    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GC     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GEN    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     GG     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     N64    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     NES    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     NG     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     PC     0.0000000000    0.0000000000 0.0000000000  0.6896551724
##     PCFX   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     PS     0.0000000000    0.0600000000 0.0000000000  0.0000000000
##     PS2    0.0000000000    0.2400000000 0.0000000000  0.0000000000
##     PS3    0.0666666667    0.0000000000 0.1666666667  0.0344827586
##     PS4    0.0000000000    0.0000000000 0.0000000000  0.0689655172
##     PSP    0.2000000000    0.3800000000 0.1666666667  0.0000000000
##     PSV    0.6666666667    0.0600000000 0.6666666667  0.0000000000
##     SAT    0.0000000000    0.0800000000 0.0000000000  0.0000000000
##     SCD    0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     SNES   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     TG16   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     Wii    0.0000000000    0.0400000000 0.0000000000  0.0000000000
##     WiiU   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     WS     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     X360   0.0000000000    0.0000000000 0.0000000000  0.2068965517
##     XB     0.0000000000    0.0000000000 0.0000000000  0.0000000000
##     XOne   0.0000000000    0.0000000000 0.0000000000  0.0000000000
##         Publisher
## Platform        Kamui  Kando Games Karin Entertainment        Kemco
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   1.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000        0.0000000000 0.0952380952
##     GC   0.0000000000 0.0000000000        0.0000000000 0.1904761905
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.3333333333
##     NES  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000        0.0000000000 0.0476190476
##     PS2  0.0000000000 1.0000000000        0.0000000000 0.0952380952
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000        1.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000        0.0000000000 0.0476190476
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.1904761905
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform          KID Kids Station King Records Knowledge Adventure
##     2600 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     DS   0.0000000000 1.0000000000 0.0000000000        0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     GBA  0.0000000000 0.0000000000 1.0000000000        0.5000000000
##     GC   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PS2  0.7500000000 0.0000000000 0.0000000000        0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     SAT  0.2500000000 0.0000000000 0.0000000000        0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000        0.5000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##         Publisher
## Platform   Koch Media Kokopeli Digital Studios
##     2600 0.0000000000             0.0000000000
##     3DO  0.0000000000             0.0000000000
##     3DS  0.0588235294             0.0000000000
##     DC   0.0000000000             0.0000000000
##     DS   0.0588235294             0.0000000000
##     GB   0.0000000000             0.0000000000
##     GBA  0.0000000000             0.0000000000
##     GC   0.0000000000             0.0000000000
##     GEN  0.0000000000             0.0000000000
##     GG   0.0000000000             0.0000000000
##     N64  0.0000000000             0.0000000000
##     NES  0.0000000000             0.0000000000
##     NG   0.0000000000             0.0000000000
##     PC   0.2352941176             0.0000000000
##     PCFX 0.0000000000             0.0000000000
##     PS   0.0000000000             1.0000000000
##     PS2  0.0588235294             0.0000000000
##     PS3  0.1176470588             0.0000000000
##     PS4  0.0588235294             0.0000000000
##     PSP  0.0588235294             0.0000000000
##     PSV  0.0000000000             0.0000000000
##     SAT  0.0000000000             0.0000000000
##     SCD  0.0000000000             0.0000000000
##     SNES 0.0000000000             0.0000000000
##     TG16 0.0000000000             0.0000000000
##     Wii  0.1176470588             0.0000000000
##     WiiU 0.0000000000             0.0000000000
##     WS   0.0000000000             0.0000000000
##     X360 0.1176470588             0.0000000000
##     XB   0.0000000000             0.0000000000
##     XOne 0.1176470588             0.0000000000
##         Publisher
## Platform Konami Digital Entertainment    Kool Kizz          KSS
##     2600                 0.0000000000 0.0000000000 0.0000000000
##     3DO                  0.0012019231 0.0000000000 0.0000000000
##     3DS                  0.0144230769 0.0000000000 0.0000000000
##     DC                   0.0012019231 0.0000000000 0.0000000000
##     DS                   0.1346153846 0.0000000000 0.0000000000
##     GB                   0.0120192308 0.0000000000 0.0000000000
##     GBA                  0.0721153846 0.0000000000 0.0000000000
##     GC                   0.0288461538 0.0000000000 0.0000000000
##     GEN                  0.0012019231 0.0000000000 0.0000000000
##     GG                   0.0000000000 0.0000000000 0.0000000000
##     N64                  0.0300480769 0.0000000000 0.0000000000
##     NES                  0.0108173077 0.0000000000 0.0000000000
##     NG                   0.0000000000 0.0000000000 0.0000000000
##     PC                   0.0144230769 0.0000000000 0.0000000000
##     PCFX                 0.0000000000 0.0000000000 0.0000000000
##     PS                   0.0961538462 0.0000000000 0.0000000000
##     PS2                  0.1959134615 0.0000000000 0.0000000000
##     PS3                  0.0733173077 0.0000000000 0.0000000000
##     PS4                  0.0084134615 0.0000000000 0.0000000000
##     PSP                  0.0949519231 0.0000000000 0.0000000000
##     PSV                  0.0144230769 0.0000000000 0.0000000000
##     SAT                  0.0048076923 0.0000000000 0.0000000000
##     SCD                  0.0000000000 0.0000000000 0.0000000000
##     SNES                 0.0228365385 0.0000000000 1.0000000000
##     TG16                 0.0000000000 0.0000000000 0.0000000000
##     Wii                  0.0661057692 0.0000000000 0.0000000000
##     WiiU                 0.0000000000 0.0000000000 0.0000000000
##     WS                   0.0000000000 0.0000000000 0.0000000000
##     X360                 0.0588942308 0.0000000000 0.0000000000
##     XB                   0.0372596154 1.0000000000 0.0000000000
##     XOne                 0.0060096154 0.0000000000 0.0000000000
##         Publisher
## Platform       Laguna Legacy Interactive   LEGO Media      Level 5
##     2600 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000 0.4074074074
##     DC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000       1.0000000000 0.0000000000 0.2592592593
##     GB   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000       0.0000000000 0.2857142857 0.0000000000
##     GC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000       0.0000000000 0.1428571429 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000       0.0000000000 0.1428571429 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000       0.0000000000 0.4285714286 0.0000000000
##     PS2  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000       0.0000000000 0.0000000000 0.1481481481
##     PSV  0.0000000000       0.0000000000 0.0000000000 0.0740740741
##     SAT  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SNES 1.0000000000       0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000       0.0000000000 0.0000000000 0.0740740741
##     WiiU 0.0000000000       0.0000000000 0.0000000000 0.0370370370
##     WS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Lexicon Entertainment  Licensed 4U Lighthouse Interactive
##     2600          0.0000000000 0.0000000000           0.0000000000
##     3DO           0.0000000000 0.0000000000           0.0000000000
##     3DS           0.0000000000 0.3333333333           0.0000000000
##     DC            0.0000000000 0.0000000000           0.0000000000
##     DS            1.0000000000 0.6666666667           0.0000000000
##     GB            0.0000000000 0.0000000000           0.0000000000
##     GBA           0.0000000000 0.0000000000           0.0000000000
##     GC            0.0000000000 0.0000000000           0.0000000000
##     GEN           0.0000000000 0.0000000000           0.0000000000
##     GG            0.0000000000 0.0000000000           0.0000000000
##     N64           0.0000000000 0.0000000000           0.0000000000
##     NES           0.0000000000 0.0000000000           0.0000000000
##     NG            0.0000000000 0.0000000000           0.0000000000
##     PC            0.0000000000 0.0000000000           1.0000000000
##     PCFX          0.0000000000 0.0000000000           0.0000000000
##     PS            0.0000000000 0.0000000000           0.0000000000
##     PS2           0.0000000000 0.0000000000           0.0000000000
##     PS3           0.0000000000 0.0000000000           0.0000000000
##     PS4           0.0000000000 0.0000000000           0.0000000000
##     PSP           0.0000000000 0.0000000000           0.0000000000
##     PSV           0.0000000000 0.0000000000           0.0000000000
##     SAT           0.0000000000 0.0000000000           0.0000000000
##     SCD           0.0000000000 0.0000000000           0.0000000000
##     SNES          0.0000000000 0.0000000000           0.0000000000
##     TG16          0.0000000000 0.0000000000           0.0000000000
##     Wii           0.0000000000 0.0000000000           0.0000000000
##     WiiU          0.0000000000 0.0000000000           0.0000000000
##     WS            0.0000000000 0.0000000000           0.0000000000
##     X360          0.0000000000 0.0000000000           0.0000000000
##     XB            0.0000000000 0.0000000000           0.0000000000
##     XOne          0.0000000000 0.0000000000           0.0000000000
##         Publisher
## Platform Liquid Games Little Orbit        Locus    LSP Games    LucasArts
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.2692307692 0.0000000000 0.0000000000 0.0111111111
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.1000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  1.0000000000 0.0000000000 0.0000000000 0.7500000000 0.0111111111
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0444444444
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0111111111
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1555555556
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0444444444
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.2500000000 0.1888888889
##     PS3  0.0000000000 0.1538461538 0.0000000000 0.0000000000 0.0666666667
##     PS4  0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.1153846154 0.0000000000 0.0000000000 0.0888888889
##     WiiU 0.0000000000 0.1153846154 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.2307692308 0.0000000000 0.0000000000 0.0888888889
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0888888889
##     XOne 0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform     Mad Catz Magical Company        Magix Majesco Entertainment
##     2600 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     3DO  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     3DS  0.0000000000    0.0000000000 0.0000000000          0.0434782609
##     DC   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     DS   0.0000000000    0.0000000000 0.0000000000          0.4239130435
##     GB   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     GBA  0.0000000000    0.0000000000 0.0000000000          0.1630434783
##     GC   0.3333333333    0.0000000000 0.0000000000          0.0000000000
##     GEN  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     GG   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     N64  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     NES  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     NG   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PC   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PCFX 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PS   0.0000000000    1.0000000000 0.0000000000          0.0000000000
##     PS2  0.0000000000    0.0000000000 1.0000000000          0.0108695652
##     PS3  0.0000000000    0.0000000000 0.0000000000          0.0108695652
##     PS4  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     PSP  0.0000000000    0.0000000000 0.0000000000          0.0217391304
##     PSV  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     SAT  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     SCD  0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     SNES 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     TG16 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     Wii  0.0000000000    0.0000000000 0.0000000000          0.2608695652
##     WiiU 0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     WS   0.0000000000    0.0000000000 0.0000000000          0.0000000000
##     X360 0.3333333333    0.0000000000 0.0000000000          0.0434782609
##     XB   0.3333333333    0.0000000000 0.0000000000          0.0108695652
##     XOne 0.0000000000    0.0000000000 0.0000000000          0.0108695652
##         Publisher
## Platform  Mamba Games Marvel Entertainment Marvelous Entertainment
##     2600 0.0000000000         0.0000000000            0.0000000000
##     3DO  0.0000000000         0.0000000000            0.0000000000
##     3DS  0.0000000000         0.0000000000            0.4166666667
##     DC   0.0000000000         0.0000000000            0.0000000000
##     DS   0.0000000000         0.0000000000            0.0000000000
##     GB   0.0000000000         0.0000000000            0.0000000000
##     GBA  0.0000000000         0.0000000000            0.0000000000
##     GC   0.0000000000         0.0000000000            0.0000000000
##     GEN  0.0000000000         0.0000000000            0.0000000000
##     GG   0.0000000000         0.0000000000            0.0000000000
##     N64  0.0000000000         0.0000000000            0.0000000000
##     NES  0.0000000000         0.0000000000            0.0000000000
##     NG   0.0000000000         0.0000000000            0.0000000000
##     PC   1.0000000000         0.0000000000            0.0000000000
##     PCFX 0.0000000000         0.0000000000            0.0000000000
##     PS   0.0000000000         0.0000000000            0.0000000000
##     PS2  0.0000000000         0.0000000000            0.0000000000
##     PS3  0.0000000000         0.0000000000            0.0000000000
##     PS4  0.0000000000         0.0000000000            0.0000000000
##     PSP  0.0000000000         0.0000000000            0.1666666667
##     PSV  0.0000000000         1.0000000000            0.4166666667
##     SAT  0.0000000000         0.0000000000            0.0000000000
##     SCD  0.0000000000         0.0000000000            0.0000000000
##     SNES 0.0000000000         0.0000000000            0.0000000000
##     TG16 0.0000000000         0.0000000000            0.0000000000
##     Wii  0.0000000000         0.0000000000            0.0000000000
##     WiiU 0.0000000000         0.0000000000            0.0000000000
##     WS   0.0000000000         0.0000000000            0.0000000000
##     X360 0.0000000000         0.0000000000            0.0000000000
##     XB   0.0000000000         0.0000000000            0.0000000000
##     XOne 0.0000000000         0.0000000000            0.0000000000
##         Publisher
## Platform Marvelous Games Marvelous Interactive Masque Publishing
##     2600    0.0000000000          0.0000000000      0.0000000000
##     3DO     0.0000000000          0.0000000000      0.0000000000
##     3DS     0.0000000000          0.0535714286      0.0000000000
##     DC      0.0000000000          0.0000000000      0.0000000000
##     DS      0.0000000000          0.2321428571      0.0000000000
##     GB      0.0000000000          0.0000000000      0.0000000000
##     GBA     0.0000000000          0.0535714286      0.0000000000
##     GC      0.0000000000          0.0178571429      0.0000000000
##     GEN     0.0000000000          0.0000000000      0.0000000000
##     GG      0.0000000000          0.0000000000      0.0000000000
##     N64     0.0000000000          0.0000000000      0.0000000000
##     NES     0.0000000000          0.0000000000      0.0000000000
##     NG      0.0000000000          0.0000000000      0.0000000000
##     PC      0.0000000000          0.0000000000      1.0000000000
##     PCFX    0.0000000000          0.0000000000      0.0000000000
##     PS      0.0000000000          0.0000000000      0.0000000000
##     PS2     0.0000000000          0.2142857143      0.0000000000
##     PS3     0.0000000000          0.0357142857      0.0000000000
##     PS4     0.0000000000          0.0357142857      0.0000000000
##     PSP     0.0000000000          0.1964285714      0.0000000000
##     PSV     1.0000000000          0.0535714286      0.0000000000
##     SAT     0.0000000000          0.0000000000      0.0000000000
##     SCD     0.0000000000          0.0000000000      0.0000000000
##     SNES    0.0000000000          0.0000000000      0.0000000000
##     TG16    0.0000000000          0.0000000000      0.0000000000
##     Wii     0.0000000000          0.0892857143      0.0000000000
##     WiiU    0.0000000000          0.0000000000      0.0000000000
##     WS      0.0000000000          0.0000000000      0.0000000000
##     X360    0.0000000000          0.0178571429      0.0000000000
##     XB      0.0000000000          0.0000000000      0.0000000000
##     XOne    0.0000000000          0.0000000000      0.0000000000
##         Publisher
## Platform Mastertronic      Mastiff Mattel Interactive     Max Five
##     2600 0.0000000000 0.0000000000       0.6666666667 0.0000000000
##     3DO  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000 0.1875000000       0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     DS   0.3076923077 0.1250000000       0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0625000000       0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PC   0.3076923077 0.0625000000       0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000       0.3333333333 1.0000000000
##     PS2  0.0769230769 0.0625000000       0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0769230769 0.4375000000       0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##     X360 0.2307692308 0.0000000000       0.0000000000 0.0000000000
##     XB   0.0000000000 0.0625000000       0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Maximum Family Games        Maxis MC2 Entertainment
##     2600         0.0000000000 0.0000000000      0.0000000000
##     3DO          0.0000000000 0.0000000000      0.0000000000
##     3DS          1.0000000000 0.0000000000      0.0000000000
##     DC           0.0000000000 0.0000000000      0.0000000000
##     DS           0.0000000000 0.0000000000      0.0000000000
##     GB           0.0000000000 0.0000000000      0.0000000000
##     GBA          0.0000000000 0.0000000000      0.0000000000
##     GC           0.0000000000 0.0000000000      0.0000000000
##     GEN          0.0000000000 0.0000000000      0.0000000000
##     GG           0.0000000000 0.0000000000      0.0000000000
##     N64          0.0000000000 0.0000000000      0.0000000000
##     NES          0.0000000000 0.0000000000      0.0000000000
##     NG           0.0000000000 0.0000000000      0.0000000000
##     PC           0.0000000000 0.6666666667      0.6666666667
##     PCFX         0.0000000000 0.0000000000      0.0000000000
##     PS           0.0000000000 0.3333333333      0.0000000000
##     PS2          0.0000000000 0.0000000000      0.0000000000
##     PS3          0.0000000000 0.0000000000      0.0000000000
##     PS4          0.0000000000 0.0000000000      0.0000000000
##     PSP          0.0000000000 0.0000000000      0.0000000000
##     PSV          0.0000000000 0.0000000000      0.0000000000
##     SAT          0.0000000000 0.0000000000      0.0000000000
##     SCD          0.0000000000 0.0000000000      0.0000000000
##     SNES         0.0000000000 0.0000000000      0.0000000000
##     TG16         0.0000000000 0.0000000000      0.0000000000
##     Wii          0.0000000000 0.0000000000      0.0000000000
##     WiiU         0.0000000000 0.0000000000      0.0000000000
##     WS           0.0000000000 0.0000000000      0.0000000000
##     X360         0.0000000000 0.0000000000      0.0000000000
##     XB           0.0000000000 0.0000000000      0.3333333333
##     XOne         0.0000000000 0.0000000000      0.0000000000
##         Publisher
## Platform Media Entertainment Media Factory  Media Rings  Media Works
##     2600        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DO         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DS         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DC          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DS          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GB          0.0000000000  0.5000000000 0.0000000000 0.0000000000
##     GBA         0.0000000000  0.0000000000 0.3333333333 0.0000000000
##     GC          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GEN         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GG          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     N64         0.0000000000  0.5000000000 0.0000000000 0.0000000000
##     NES         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     NG          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PC          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PCFX        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS          0.0000000000  0.0000000000 0.0000000000 0.4000000000
##     PS2         1.0000000000  0.0000000000 0.0000000000 0.4000000000
##     PS3         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS4         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSP         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSV         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     SAT         0.0000000000  0.0000000000 0.0000000000 0.2000000000
##     SCD         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     SNES        0.0000000000  0.0000000000 0.6666666667 0.0000000000
##     TG16        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     Wii         0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WiiU        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WS          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     X360        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     XB          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     XOne        0.0000000000  0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   MediaQuest Men-A-Vision Mentor Interactive Mercury Games
##     2600 0.0000000000 1.0000000000       0.0000000000  0.0000000000
##     3DO  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     3DS  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     DC   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     DS   0.0000000000 0.0000000000       1.0000000000  0.5000000000
##     GB   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GBA  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GC   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GEN  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     GG   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     N64  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     NES  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     NG   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PC   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PCFX 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PS   1.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PS2  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PS3  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PS4  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     PSP  0.0000000000 0.0000000000       0.0000000000  0.5000000000
##     PSV  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     SAT  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     SCD  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     SNES 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     TG16 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     Wii  0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     WiiU 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     WS   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     X360 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     XB   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##     XOne 0.0000000000 0.0000000000       0.0000000000  0.0000000000
##         Publisher
## Platform  Merscom LLC     Metro 3D  Michaelsoft  Micro Cabin     Microids
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.3333333333 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   1.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.5833333333 1.0000000000 0.0000000000 0.1000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.6666666667 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.3333333333 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0833333333 0.0000000000 0.0000000000 0.4000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   Microprose Microsoft Game Studios
##     2600 0.0000000000           0.0000000000
##     3DO  0.0000000000           0.0000000000
##     3DS  0.0000000000           0.0000000000
##     DC   0.0000000000           0.0000000000
##     DS   0.0000000000           0.0000000000
##     GB   0.0000000000           0.0000000000
##     GBA  0.0000000000           0.0000000000
##     GC   0.0000000000           0.0000000000
##     GEN  0.0000000000           0.0000000000
##     GG   0.0000000000           0.0000000000
##     N64  0.0000000000           0.0000000000
##     NES  0.0000000000           0.0000000000
##     NG   0.0000000000           0.0000000000
##     PC   0.3333333333           0.1534391534
##     PCFX 0.0000000000           0.0000000000
##     PS   0.6666666667           0.0000000000
##     PS2  0.0000000000           0.0000000000
##     PS3  0.0000000000           0.0000000000
##     PS4  0.0000000000           0.0000000000
##     PSP  0.0000000000           0.0000000000
##     PSV  0.0000000000           0.0000000000
##     SAT  0.0000000000           0.0000000000
##     SCD  0.0000000000           0.0000000000
##     SNES 0.0000000000           0.0000000000
##     TG16 0.0000000000           0.0000000000
##     Wii  0.0000000000           0.0000000000
##     WiiU 0.0000000000           0.0052910053
##     WS   0.0000000000           0.0000000000
##     X360 0.0000000000           0.3756613757
##     XB   0.0000000000           0.3597883598
##     XOne 0.0000000000           0.1058201058
##         Publisher
## Platform Midas Interactive Entertainment Midway Games    Milestone
##     2600                    0.0000000000 0.0000000000 0.0000000000
##     3DO                     0.0000000000 0.0000000000 0.0000000000
##     3DS                     0.0000000000 0.0000000000 0.0000000000
##     DC                      0.0000000000 0.0000000000 0.0000000000
##     DS                      0.2083333333 0.0404040404 0.0000000000
##     GB                      0.0000000000 0.0000000000 0.0000000000
##     GBA                     0.0000000000 0.0353535354 0.0000000000
##     GC                      0.0000000000 0.1262626263 0.0000000000
##     GEN                     0.0000000000 0.0000000000 0.0000000000
##     GG                      0.0000000000 0.0000000000 0.0000000000
##     N64                     0.0000000000 0.1010101010 0.0000000000
##     NES                     0.0000000000 0.0000000000 0.0000000000
##     NG                      0.0000000000 0.0000000000 0.0000000000
##     PC                      0.0000000000 0.0101010101 0.0000000000
##     PCFX                    0.0000000000 0.0000000000 0.0000000000
##     PS                      0.2500000000 0.0707070707 0.0000000000
##     PS2                     0.4166666667 0.2525252525 0.0000000000
##     PS3                     0.0000000000 0.0353535354 0.0000000000
##     PS4                     0.0000000000 0.0000000000 0.0000000000
##     PSP                     0.0416666667 0.0353535354 0.0000000000
##     PSV                     0.0000000000 0.0000000000 0.0000000000
##     SAT                     0.0000000000 0.0000000000 0.0000000000
##     SCD                     0.0000000000 0.0000000000 0.0000000000
##     SNES                    0.0000000000 0.0000000000 0.0000000000
##     TG16                    0.0000000000 0.0000000000 0.0000000000
##     Wii                     0.0833333333 0.0505050505 1.0000000000
##     WiiU                    0.0000000000 0.0000000000 0.0000000000
##     WS                      0.0000000000 0.0000000000 0.0000000000
##     X360                    0.0000000000 0.0454545455 0.0000000000
##     XB                      0.0000000000 0.1969696970 0.0000000000
##     XOne                    0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Milestone S.r.l Milestone S.r.l. Minato Station    Mindscape
##     2600    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DO     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DS     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     DC      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     DS      0.0000000000     0.0000000000   0.0000000000 0.3437500000
##     GB      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GBA     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GC      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GEN     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GG      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     N64     0.0000000000     0.0000000000   0.0000000000 0.0312500000
##     NES     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     NG      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PC      0.0000000000     0.1250000000   0.0000000000 0.0000000000
##     PCFX    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PS      0.0000000000     0.0000000000   0.0000000000 0.2187500000
##     PS2     0.0000000000     0.0000000000   0.3333333333 0.0312500000
##     PS3     0.0000000000     0.1875000000   0.3333333333 0.0000000000
##     PS4     0.5000000000     0.2500000000   0.0000000000 0.0000000000
##     PSP     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PSV     0.0000000000     0.0625000000   0.3333333333 0.0000000000
##     SAT     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SCD     0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SNES    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     TG16    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     Wii     0.0000000000     0.0000000000   0.0000000000 0.3125000000
##     WiiU    0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     WS      0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     X360    0.0000000000     0.1875000000   0.0000000000 0.0312500000
##     XB      0.0000000000     0.0000000000   0.0000000000 0.0312500000
##     XOne    0.5000000000     0.1875000000   0.0000000000 0.0000000000
##         Publisher
## Platform Mirai Shounen       Misawa       Mitsui    mixi, Inc      MLB.com
##     2600  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS   0.0000000000 0.0000000000 0.0000000000 1.0000000000 0.0000000000
##     DC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS    1.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64   0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES  0.0000000000 1.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000 0.0000000000 1.0000000000
##         Publisher
## Platform       Mojang Monte Christo Multimedia         Moss          MTO
##     2600 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000             0.0000000000 0.0000000000 0.8750000000
##     GB   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PC   0.2000000000             1.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000             0.0000000000 0.0000000000 0.1250000000
##     PS2  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PS3  0.2000000000             0.0000000000 0.0000000000 0.0000000000
##     PS4  0.2000000000             0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     X360 0.2000000000             0.0000000000 1.0000000000 0.0000000000
##     XB   0.0000000000             0.0000000000 0.0000000000 0.0000000000
##     XOne 0.2000000000             0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    MTV Games Mud Duck Productions  Mumbo Jumbo        Mycom
##     2600 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DS   0.0243902439         0.0000000000 0.3333333333 1.0000000000
##     GB   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000         0.0000000000 0.1666666667 0.0000000000
##     PCFX 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PS2  0.1707317073         0.3333333333 0.0000000000 0.0000000000
##     PS3  0.2439024390         0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0243902439         0.0000000000 0.3333333333 0.0000000000
##     PSV  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     Wii  0.2926829268         0.0000000000 0.1666666667 0.0000000000
##     WiiU 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     X360 0.2439024390         0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000         0.6666666667 0.0000000000 0.0000000000
##     XOne 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Myelin Media     Mystique          N/A Namco Bandai Games
##     2600 0.0000000000 1.0000000000 0.0000000000       0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0344827586       0.0933476395
##     DC   0.0000000000 0.0000000000 0.0000000000       0.0021459227
##     DS   0.0000000000 0.0000000000 0.1206896552       0.1448497854
##     GB   0.0000000000 0.0000000000 0.0000000000       0.0032188841
##     GBA  0.0000000000 0.0000000000 0.4482758621       0.0171673820
##     GC   0.0000000000 0.0000000000 0.0000000000       0.0236051502
##     GEN  0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000       0.0064377682
##     NES  0.0000000000 0.0000000000 0.0000000000       0.0150214592
##     NG   0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PC   0.0000000000 0.0000000000 0.1034482759       0.0128755365
##     PCFX 0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     PS   0.0000000000 0.0000000000 0.0517241379       0.0515021459
##     PS2  0.3333333333 0.0000000000 0.0344827586       0.1148068670
##     PS3  0.0000000000 0.0000000000 0.0517241379       0.1244635193
##     PS4  0.0000000000 0.0000000000 0.0000000000       0.0321888412
##     PSP  0.3333333333 0.0000000000 0.0344827586       0.1298283262
##     PSV  0.0000000000 0.0000000000 0.0344827586       0.0482832618
##     SAT  0.0000000000 0.0000000000 0.0000000000       0.0085836910
##     SCD  0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000       0.0278969957
##     TG16 0.0000000000 0.0000000000 0.0000000000       0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0172413793       0.0600858369
##     WiiU 0.0000000000 0.0000000000 0.0000000000       0.0139484979
##     WS   0.0000000000 0.0000000000 0.0000000000       0.0042918455
##     X360 0.0000000000 0.0000000000 0.0689655172       0.0472103004
##     XB   0.3333333333 0.0000000000 0.0000000000       0.0107296137
##     XOne 0.0000000000 0.0000000000 0.0000000000       0.0075107296
##         Publisher
## Platform      Natsume Navarre Corp   Naxat Soft          NCS       NCSoft
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0588235294 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.2941176471 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.1176470588 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0588235294 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 1.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.1176470588 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.2352941176 0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0588235294 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 1.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0588235294 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 1.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform NDA Productions          NEC NEC Interchannel Neko Entertainment
##     2600    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     3DO     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     3DS     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     DC      0.0000000000 0.0000000000     0.3750000000       0.0000000000
##     DS      0.0000000000 0.0000000000     0.0000000000       0.4285714286
##     GB      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     GBA     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     GC      1.0000000000 0.0000000000     0.0000000000       0.0000000000
##     GEN     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     GG      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     N64     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     NES     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     NG      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PC      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PCFX    0.0000000000 0.3333333333     0.0000000000       0.0000000000
##     PS      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PS2     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PS3     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PS4     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PSP     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     PSV     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     SAT     0.0000000000 0.3333333333     0.6250000000       0.0000000000
##     SCD     0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     SNES    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     TG16    0.0000000000 0.3333333333     0.0000000000       0.0000000000
##     Wii     0.0000000000 0.0000000000     0.0000000000       0.5714285714
##     WiiU    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     WS      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     X360    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     XB      0.0000000000 0.0000000000     0.0000000000       0.0000000000
##     XOne    0.0000000000 0.0000000000     0.0000000000       0.0000000000
##         Publisher
## Platform      NetRevo          New New World Computing     NewKidCo
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000        0.0000000000 0.4444444444
##     GC   0.0000000000 0.0000000000        0.0000000000 0.1111111111
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.2222222222
##     NES  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000        1.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 1.0000000000        0.0000000000 0.2222222222
##     PS2  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  1.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform        Nexon   Nichibutsu Nihon Falcom Corporation     Nintendo
##     2600 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000             0.0000000000 0.1166429587
##     DC   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     DS   1.0000000000 0.0000000000             0.0000000000 0.2147937411
##     GB   0.0000000000 0.0000000000             0.0000000000 0.0867709815
##     GBA  0.0000000000 0.0000000000             0.0000000000 0.1294452347
##     GC   0.0000000000 0.0000000000             0.0000000000 0.0753911807
##     GEN  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000             0.0000000000 0.0853485064
##     NES  0.0000000000 0.0000000000             0.0000000000 0.0640113798
##     NG   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000             0.1428571429 0.0000000000
##     PSP  0.0000000000 0.0000000000             0.1428571429 0.0000000000
##     PSV  0.0000000000 0.0000000000             0.7142857143 0.0000000000
##     SAT  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     SNES 0.0000000000 1.0000000000             0.0000000000 0.0512091038
##     TG16 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000             0.0000000000 0.1194879090
##     WiiU 0.0000000000 0.0000000000             0.0000000000 0.0568990043
##     WS   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000             0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000             0.0000000000 0.0000000000
##         Publisher
## Platform Nippon Amuse Nippon Columbia Nippon Ichi Software Nippon Telenet
##     2600 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     3DO  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     3DS  0.0000000000    1.0000000000         0.0476190476   0.0000000000
##     DC   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     DS   0.0000000000    0.0000000000         0.0190476190   0.0000000000
##     GB   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GBA  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GC   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GEN  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     GG   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     N64  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     NES  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     NG   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     PC   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     PCFX 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     PS   0.0000000000    0.0000000000         0.0095238095   0.0000000000
##     PS2  1.0000000000    0.0000000000         0.0476190476   0.0000000000
##     PS3  0.0000000000    0.0000000000         0.3142857143   0.0000000000
##     PS4  0.0000000000    0.0000000000         0.0857142857   0.0000000000
##     PSP  0.0000000000    0.0000000000         0.1619047619   0.0000000000
##     PSV  0.0000000000    0.0000000000         0.2952380952   0.0000000000
##     SAT  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     SCD  0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     SNES 0.0000000000    0.0000000000         0.0000000000   1.0000000000
##     TG16 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     Wii  0.0000000000    0.0000000000         0.0095238095   0.0000000000
##     WiiU 0.0000000000    0.0000000000         0.0095238095   0.0000000000
##     WS   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     X360 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     XB   0.0000000000    0.0000000000         0.0000000000   0.0000000000
##     XOne 0.0000000000    0.0000000000         0.0000000000   0.0000000000
##         Publisher
## Platform    Nitroplus      Nobilis  Nordcurrent Nordic Games    NovaLogic
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.7692307692 0.4000000000 0.0285714286 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0769230769 0.0000000000 0.1142857143 0.3333333333
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
##     PS3  0.5000000000 0.0000000000 0.0000000000 0.0571428571 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.1714285714 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV  0.5000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.1538461538 0.6000000000 0.4285714286 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0857142857 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0571428571 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0571428571 0.0000000000
##         Publisher
## Platform  Number None      O-Games O3 Entertainment        Ocean
##     2600 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     DS   0.0000000000 0.3529411765     0.6666666667 0.0000000000
##     GB   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000     0.3333333333 0.0000000000
##     GEN  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000     0.0000000000 0.3571428571
##     NES  0.0000000000 0.0000000000     0.0000000000 0.0714285714
##     NG   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PC   1.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000     0.0000000000 0.5000000000
##     PS2  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PS3  0.0000000000 0.1764705882     0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000     0.0000000000 0.0714285714
##     TG16 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     Wii  0.0000000000 0.3529411765     0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     X360 0.0000000000 0.1176470588     0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000     0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000     0.0000000000 0.0000000000
##         Publisher
## Platform Office Create    On Demand    Ongakukan Origin Systems
##     2600  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     3DS   1.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DC    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     DS    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GBA   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GC    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     N64   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PC    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PCFX  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS    0.0000000000 1.0000000000 0.0000000000   1.0000000000
##     PS2   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PS3   0.0000000000 0.0000000000 1.0000000000   0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSP   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     PSV   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     SNES  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     TG16  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     Wii   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     X360  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XB    0.0000000000 0.0000000000 0.0000000000   0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000   0.0000000000
##         Publisher
## Platform      Otomate Oxygen Interactive     P2 Games
##     2600 0.0000000000       0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000 0.0000000000
##     DS   0.0000000000       0.4090909091 0.6666666667
##     GB   0.0000000000       0.0000000000 0.0000000000
##     GBA  0.0000000000       0.0000000000 0.0000000000
##     GC   0.0000000000       0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000
##     N64  0.0000000000       0.0000000000 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000
##     PC   0.0000000000       0.0000000000 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000
##     PS   0.0000000000       0.0000000000 0.0000000000
##     PS2  0.0000000000       0.0909090909 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000
##     PS4  0.0000000000       0.0000000000 0.0000000000
##     PSP  1.0000000000       0.1818181818 0.0000000000
##     PSV  0.0000000000       0.0000000000 0.0000000000
##     SAT  0.0000000000       0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000 0.0000000000
##     SNES 0.0000000000       0.0000000000 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000
##     Wii  0.0000000000       0.2727272727 0.3333333333
##     WiiU 0.0000000000       0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000 0.0000000000
##     X360 0.0000000000       0.0454545455 0.0000000000
##     XB   0.0000000000       0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Pacific Century Cyber Works Pack-In-Video Pack In Soft
##     2600                0.0000000000  0.0000000000 0.0000000000
##     3DO                 0.0000000000  0.0000000000 0.0000000000
##     3DS                 0.0000000000  0.0000000000 0.0000000000
##     DC                  0.0000000000  0.0000000000 0.0000000000
##     DS                  0.0000000000  0.0000000000 0.0000000000
##     GB                  0.0000000000  0.0000000000 0.0000000000
##     GBA                 0.0000000000  0.0000000000 0.0000000000
##     GC                  0.0000000000  0.0000000000 0.0000000000
##     GEN                 0.0000000000  0.0000000000 0.0000000000
##     GG                  0.0000000000  0.0000000000 0.0000000000
##     N64                 0.0000000000  0.0000000000 1.0000000000
##     NES                 0.0000000000  0.0000000000 0.0000000000
##     NG                  0.0000000000  0.0000000000 0.0000000000
##     PC                  0.0000000000  0.0000000000 0.0000000000
##     PCFX                0.0000000000  0.0000000000 0.0000000000
##     PS                  0.0000000000  0.0000000000 0.0000000000
##     PS2                 1.0000000000  0.0000000000 0.0000000000
##     PS3                 0.0000000000  0.0000000000 0.0000000000
##     PS4                 0.0000000000  0.0000000000 0.0000000000
##     PSP                 0.0000000000  0.0000000000 0.0000000000
##     PSV                 0.0000000000  0.0000000000 0.0000000000
##     SAT                 0.0000000000  0.0000000000 0.0000000000
##     SCD                 0.0000000000  0.0000000000 0.0000000000
##     SNES                0.0000000000  1.0000000000 0.0000000000
##     TG16                0.0000000000  0.0000000000 0.0000000000
##     Wii                 0.0000000000  0.0000000000 0.0000000000
##     WiiU                0.0000000000  0.0000000000 0.0000000000
##     WS                  0.0000000000  0.0000000000 0.0000000000
##     X360                0.0000000000  0.0000000000 0.0000000000
##     XB                  0.0000000000  0.0000000000 0.0000000000
##     XOne                0.0000000000  0.0000000000 0.0000000000
##         Publisher
## Platform       Palcom Panther Software         Paon Paon Corporation
##     2600 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     3DO  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     3DS  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     DC   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     DS   0.0000000000     0.0000000000 0.1666666667     0.0000000000
##     GB   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GBA  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GC   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GEN  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     GG   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     N64  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     NES  1.0000000000     0.0000000000 0.0000000000     0.0000000000
##     NG   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PC   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PCFX 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PS   0.0000000000     1.0000000000 0.0000000000     0.0000000000
##     PS2  0.0000000000     0.0000000000 0.5000000000     0.0000000000
##     PS3  0.0000000000     0.0000000000 0.0000000000     1.0000000000
##     PS4  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     PSP  0.0000000000     0.0000000000 0.3333333333     0.0000000000
##     PSV  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     SAT  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     SCD  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     SNES 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     TG16 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     Wii  0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     WiiU 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     WS   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     X360 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     XB   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##     XOne 0.0000000000     0.0000000000 0.0000000000     0.0000000000
##         Publisher
## Platform Paradox Development Paradox Interactive Parker Bros.
##     2600        0.0000000000        0.0000000000 1.0000000000
##     3DO         0.0000000000        0.0000000000 0.0000000000
##     3DS         0.0000000000        0.0000000000 0.0000000000
##     DC          0.0000000000        0.0000000000 0.0000000000
##     DS          0.0000000000        0.0000000000 0.0000000000
##     GB          0.0000000000        0.0000000000 0.0000000000
##     GBA         0.0000000000        0.0000000000 0.0000000000
##     GC          0.0000000000        0.0000000000 0.0000000000
##     GEN         0.0000000000        0.0000000000 0.0000000000
##     GG          0.0000000000        0.0000000000 0.0000000000
##     N64         0.0000000000        0.0000000000 0.0000000000
##     NES         0.0000000000        0.0000000000 0.0000000000
##     NG          0.0000000000        0.0000000000 0.0000000000
##     PC          1.0000000000        1.0000000000 0.0000000000
##     PCFX        0.0000000000        0.0000000000 0.0000000000
##     PS          0.0000000000        0.0000000000 0.0000000000
##     PS2         0.0000000000        0.0000000000 0.0000000000
##     PS3         0.0000000000        0.0000000000 0.0000000000
##     PS4         0.0000000000        0.0000000000 0.0000000000
##     PSP         0.0000000000        0.0000000000 0.0000000000
##     PSV         0.0000000000        0.0000000000 0.0000000000
##     SAT         0.0000000000        0.0000000000 0.0000000000
##     SCD         0.0000000000        0.0000000000 0.0000000000
##     SNES        0.0000000000        0.0000000000 0.0000000000
##     TG16        0.0000000000        0.0000000000 0.0000000000
##     Wii         0.0000000000        0.0000000000 0.0000000000
##     WiiU        0.0000000000        0.0000000000 0.0000000000
##     WS          0.0000000000        0.0000000000 0.0000000000
##     X360        0.0000000000        0.0000000000 0.0000000000
##     XB          0.0000000000        0.0000000000 0.0000000000
##     XOne        0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform Performance Designed Products   Phantagram  Phantom EFX
##     2600                  0.0000000000 0.0000000000 0.0000000000
##     3DO                   0.0000000000 0.0000000000 0.0000000000
##     3DS                   0.0000000000 0.0000000000 0.0000000000
##     DC                    0.0000000000 0.0000000000 0.0000000000
##     DS                    0.5000000000 0.0000000000 0.0000000000
##     GB                    0.0000000000 0.0000000000 0.0000000000
##     GBA                   0.0000000000 0.0000000000 0.0000000000
##     GC                    0.0000000000 0.0000000000 0.0000000000
##     GEN                   0.0000000000 0.0000000000 0.0000000000
##     GG                    0.0000000000 0.0000000000 0.0000000000
##     N64                   0.0000000000 0.0000000000 0.0000000000
##     NES                   0.0000000000 0.0000000000 0.0000000000
##     NG                    0.0000000000 0.0000000000 0.0000000000
##     PC                    0.0000000000 0.0000000000 0.0000000000
##     PCFX                  0.0000000000 0.0000000000 0.0000000000
##     PS                    0.0000000000 0.0000000000 0.0000000000
##     PS2                   0.0000000000 0.0000000000 0.0000000000
##     PS3                   0.0000000000 0.0000000000 0.0000000000
##     PS4                   0.0000000000 0.0000000000 0.0000000000
##     PSP                   0.0000000000 0.0000000000 0.0000000000
##     PSV                   0.0000000000 0.0000000000 0.0000000000
##     SAT                   0.0000000000 0.0000000000 0.0000000000
##     SCD                   0.0000000000 0.0000000000 0.0000000000
##     SNES                  0.0000000000 0.0000000000 0.0000000000
##     TG16                  0.0000000000 0.0000000000 0.0000000000
##     Wii                   0.5000000000 0.0000000000 0.0000000000
##     WiiU                  0.0000000000 0.0000000000 0.0000000000
##     WS                    0.0000000000 0.0000000000 0.0000000000
##     X360                  0.0000000000 0.0000000000 1.0000000000
##     XB                    0.0000000000 1.0000000000 0.0000000000
##     XOne                  0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform   Phenomedia Phoenix Games       Piacci     Pinnacle  Pioneer LDC
##     2600 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   1.0000000000  1.0000000000 0.0000000000 0.6000000000 0.0000000000
##     GB   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000  0.0000000000 0.0000000000 0.2000000000 0.0000000000
##     PCFX 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000  0.0000000000 0.0000000000 0.0000000000 1.0000000000
##     PS2  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000  0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000  0.0000000000 0.0000000000 0.2000000000 0.0000000000
##     WiiU 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000  0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform      Play It Playlogic Game Factory    Playmates     Playmore
##     2600 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000           0.2142857143 0.0000000000 0.0000000000
##     GB   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0714285714           0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000           0.0714285714 0.0000000000 0.0000000000
##     PCFX 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000           0.0000000000 1.0000000000 0.0000000000
##     PS2  0.8571428571           0.0714285714 0.0000000000 1.0000000000
##     PS3  0.0000000000           0.0714285714 0.0000000000 0.0000000000
##     PS4  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0714285714           0.0714285714 0.0000000000 0.0000000000
##     PSV  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000           0.3571428571 0.0000000000 0.0000000000
##     WiiU 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000           0.1428571429 0.0000000000 0.0000000000
##     XB   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform        PlayV       Plenty   PM Studios  Pony Canyon PopCap Games
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   1.0000000000 1.0000000000 0.0000000000 0.0000000000 0.2666666667
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.4000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000 1.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0666666667
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2666666667
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Popcorn Arcade PopTop Software          Pow        PQube
##     2600   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     3DO    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     3DS    0.0000000000    0.0000000000 0.0000000000 0.0256410256
##     DC     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     DS     0.0000000000    0.0000000000 0.0000000000 0.0769230769
##     GB     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GBA    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GC     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GEN    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     GG     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     N64    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NES    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     NG     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PC     0.0000000000    0.0000000000 0.0000000000 0.0256410256
##     PCFX   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     PS     0.0000000000    1.0000000000 0.0000000000 0.0000000000
##     PS2    0.0000000000    0.0000000000 0.0000000000 0.0256410256
##     PS3    0.0000000000    0.0000000000 0.0000000000 0.2564102564
##     PS4    0.0000000000    0.0000000000 0.0000000000 0.1025641026
##     PSP    0.0000000000    0.0000000000 0.0000000000 0.1025641026
##     PSV    0.0000000000    0.0000000000 0.0000000000 0.1794871795
##     SAT    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SCD    0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     SNES   0.0000000000    0.0000000000 1.0000000000 0.0000000000
##     TG16   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     Wii    1.0000000000    0.0000000000 0.0000000000 0.1025641026
##     WiiU   0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     WS     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     X360   0.0000000000    0.0000000000 0.0000000000 0.0769230769
##     XB     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##     XOne   0.0000000000    0.0000000000 0.0000000000 0.0256410256
##         Publisher
## Platform Princess Soft    Prototype    Psygnosis       Quelle        Quest
##     2600  0.0000000000 0.0000000000 0.0000000000 1.0000000000 0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS    0.0000000000 0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PS2   1.0000000000 0.2592592593 0.0000000000 0.0000000000 0.0000000000
##     PS3   0.0000000000 0.0370370370 0.0000000000 0.0000000000 0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP   0.0000000000 0.4074074074 0.0000000000 0.0000000000 0.0000000000
##     PSV   0.0000000000 0.2222222222 0.0000000000 0.0000000000 0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES  0.0000000000 0.0000000000 0.0000000000 0.0000000000 1.0000000000
##     TG16  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360  0.0000000000 0.0740740741 0.0000000000 0.0000000000 0.0000000000
##     XB    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform     Quinrose      Quintet Rage Software   Rain Games    Rebellion
##     2600 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000  0.1428571429 0.0000000000 1.0000000000
##     GC   0.0000000000 0.0000000000  0.1428571429 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000 0.0000000000  0.2857142857 0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSP  1.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000  0.0000000000 1.0000000000 0.0000000000
##     SAT  0.0000000000 1.0000000000  0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000  0.4285714286 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Rebellion Developments RED Entertainment      Red Orb
##     2600           0.0000000000      0.0000000000 0.0000000000
##     3DO            0.0000000000      0.0000000000 0.0000000000
##     3DS            0.0000000000      0.0000000000 0.0000000000
##     DC             0.0000000000      0.0000000000 0.0000000000
##     DS             0.0000000000      0.0000000000 0.0000000000
##     GB             0.0000000000      0.0000000000 0.0000000000
##     GBA            0.0000000000      0.0000000000 0.0000000000
##     GC             0.0000000000      0.0000000000 0.0000000000
##     GEN            0.0000000000      0.0000000000 0.0000000000
##     GG             0.0000000000      0.0000000000 0.0000000000
##     N64            0.0000000000      0.0000000000 0.0000000000
##     NES            0.0000000000      0.0000000000 0.0000000000
##     NG             0.0000000000      0.0000000000 0.0000000000
##     PC             0.0000000000      0.0000000000 1.0000000000
##     PCFX           0.0000000000      0.0000000000 0.0000000000
##     PS             0.0000000000      0.0000000000 0.0000000000
##     PS2            0.0000000000      1.0000000000 0.0000000000
##     PS3            0.0000000000      0.0000000000 0.0000000000
##     PS4            0.5000000000      0.0000000000 0.0000000000
##     PSP            0.0000000000      0.0000000000 0.0000000000
##     PSV            0.0000000000      0.0000000000 0.0000000000
##     SAT            0.0000000000      0.0000000000 0.0000000000
##     SCD            0.0000000000      0.0000000000 0.0000000000
##     SNES           0.0000000000      0.0000000000 0.0000000000
##     TG16           0.0000000000      0.0000000000 0.0000000000
##     Wii            0.0000000000      0.0000000000 0.0000000000
##     WiiU           0.0000000000      0.0000000000 0.0000000000
##     WS             0.0000000000      0.0000000000 0.0000000000
##     X360           0.0000000000      0.0000000000 0.0000000000
##     XB             0.0000000000      0.0000000000 0.0000000000
##     XOne           0.5000000000      0.0000000000 0.0000000000
##         Publisher
## Platform Red Storm Entertainment    RedOctane Reef Entertainment
##     2600            0.0000000000 0.0000000000       0.0000000000
##     3DO             0.0000000000 0.0000000000       0.0000000000
##     3DS             0.0000000000 0.0000000000       0.0000000000
##     DC              0.0000000000 0.0000000000       0.0000000000
##     DS              0.0000000000 0.0000000000       0.1428571429
##     GB              0.0000000000 0.0000000000       0.0000000000
##     GBA             0.0000000000 0.0000000000       0.0000000000
##     GC              0.0000000000 0.0000000000       0.0000000000
##     GEN             0.0000000000 0.0000000000       0.0000000000
##     GG              0.0000000000 0.0000000000       0.0000000000
##     N64             0.3333333333 0.0000000000       0.0000000000
##     NES             0.0000000000 0.0000000000       0.0000000000
##     NG              0.0000000000 0.0000000000       0.0000000000
##     PC              0.0000000000 0.0000000000       0.1428571429
##     PCFX            0.0000000000 0.0000000000       0.0000000000
##     PS              0.6666666667 0.0000000000       0.0000000000
##     PS2             0.0000000000 1.0000000000       0.0000000000
##     PS3             0.0000000000 0.0000000000       0.1428571429
##     PS4             0.0000000000 0.0000000000       0.0000000000
##     PSP             0.0000000000 0.0000000000       0.0000000000
##     PSV             0.0000000000 0.0000000000       0.0000000000
##     SAT             0.0000000000 0.0000000000       0.0000000000
##     SCD             0.0000000000 0.0000000000       0.0000000000
##     SNES            0.0000000000 0.0000000000       0.0000000000
##     TG16            0.0000000000 0.0000000000       0.0000000000
##     Wii             0.0000000000 0.0000000000       0.5714285714
##     WiiU            0.0000000000 0.0000000000       0.0000000000
##     WS              0.0000000000 0.0000000000       0.0000000000
##     X360            0.0000000000 0.0000000000       0.0000000000
##     XB              0.0000000000 0.0000000000       0.0000000000
##     XOne            0.0000000000 0.0000000000       0.0000000000
##         Publisher
## Platform responDESIGN Revolution (Japan) Revolution Software
##     2600 0.0000000000       0.0000000000        0.0000000000
##     3DO  0.0000000000       0.0000000000        0.0000000000
##     3DS  0.0000000000       0.0000000000        0.0000000000
##     DC   0.0000000000       0.0000000000        0.0000000000
##     DS   0.0000000000       0.0000000000        0.0000000000
##     GB   0.0000000000       0.0000000000        0.0000000000
##     GBA  0.0000000000       0.0000000000        0.0000000000
##     GC   0.0000000000       0.0000000000        0.0000000000
##     GEN  0.0000000000       0.0000000000        0.0000000000
##     GG   0.0000000000       0.0000000000        0.0000000000
##     N64  0.0000000000       0.0000000000        0.0000000000
##     NES  0.0000000000       0.0000000000        0.0000000000
##     NG   0.0000000000       0.0000000000        0.0000000000
##     PC   0.0000000000       0.0000000000        0.0000000000
##     PCFX 0.0000000000       0.0000000000        0.0000000000
##     PS   0.0000000000       0.0000000000        0.0000000000
##     PS2  0.5000000000       1.0000000000        0.0000000000
##     PS3  0.0000000000       0.0000000000        0.0000000000
##     PS4  0.0000000000       0.0000000000        0.5000000000
##     PSP  0.0000000000       0.0000000000        0.0000000000
##     PSV  0.0000000000       0.0000000000        0.0000000000
##     SAT  0.0000000000       0.0000000000        0.0000000000
##     SCD  0.0000000000       0.0000000000        0.0000000000
##     SNES 0.0000000000       0.0000000000        0.0000000000
##     TG16 0.0000000000       0.0000000000        0.0000000000
##     Wii  0.0000000000       0.0000000000        0.0000000000
##     WiiU 0.0000000000       0.0000000000        0.0000000000
##     WS   0.0000000000       0.0000000000        0.0000000000
##     X360 0.0000000000       0.0000000000        0.0000000000
##     XB   0.5000000000       0.0000000000        0.0000000000
##     XOne 0.0000000000       0.0000000000        0.5000000000
##         Publisher
## Platform Rising Star Games Riverhillsoft Rocket Company   Rondomedia
##     2600      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     3DO       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     3DS       0.0465116279  0.0000000000   0.4117647059 0.0000000000
##     DC        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     DS        0.4651162791  0.0000000000   0.5294117647 0.3571428571
##     GB        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GBA       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GC        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GEN       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     GG        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     N64       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     NES       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     NG        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     PC        0.0116279070  0.0000000000   0.0000000000 0.5000000000
##     PCFX      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     PS        0.0000000000  1.0000000000   0.0000000000 0.0000000000
##     PS2       0.0348837209  0.0000000000   0.0000000000 0.0000000000
##     PS3       0.0232558140  0.0000000000   0.0000000000 0.0000000000
##     PS4       0.0116279070  0.0000000000   0.0000000000 0.0000000000
##     PSP       0.1395348837  0.0000000000   0.0000000000 0.0000000000
##     PSV       0.0116279070  0.0000000000   0.0000000000 0.0000000000
##     SAT       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     SCD       0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     SNES      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     TG16      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     Wii       0.1976744186  0.0000000000   0.0588235294 0.1428571429
##     WiiU      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     WS        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     X360      0.0581395349  0.0000000000   0.0000000000 0.0000000000
##     XB        0.0000000000  0.0000000000   0.0000000000 0.0000000000
##     XOne      0.0000000000  0.0000000000   0.0000000000 0.0000000000
##         Publisher
## Platform          RTL       Russel Sammy Corporation       Saurus
##     2600 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     DC   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     DS   0.3750000000 0.1666666667      0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0000000000      0.0909090909 0.0000000000
##     GC   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PC   0.0000000000 0.1666666667      0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000      0.0000000000 1.0000000000
##     PS2  0.0000000000 0.3333333333      0.8181818182 0.0000000000
##     PS3  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     PSP  0.0000000000 0.3333333333      0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000      0.0909090909 0.0000000000
##     TG16 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     Wii  0.3750000000 0.0000000000      0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     X360 0.2500000000 0.0000000000      0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000      0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000      0.0000000000 0.0000000000
##         Publisher
## Platform Scholastic Inc.          SCi   Screenlife SCS Software
##     2600    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS     0.0000000000 0.0000000000 0.5000000000 0.0000000000
##     DC      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS      0.7000000000 0.0000000000 0.0000000000 0.0000000000
##     GB      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC      0.0000000000 0.1764705882 0.0000000000 0.0000000000
##     GEN     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC      0.0000000000 0.0588235294 0.0000000000 1.0000000000
##     PCFX    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2     0.1000000000 0.2941176471 0.0000000000 0.0000000000
##     PS3     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV     0.0000000000 0.0000000000 0.5000000000 0.0000000000
##     SAT     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii     0.2000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB      0.0000000000 0.4705882353 0.0000000000 0.0000000000
##     XOne    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform        Sears         Sega Seta Corporation Seventh Chord
##     2600 1.0000000000 0.0015649452     0.0000000000  0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     3DS  0.0000000000 0.0328638498     0.0000000000  1.0000000000
##     DC   0.0000000000 0.0469483568     0.0000000000  0.0000000000
##     DS   0.0000000000 0.1001564945     0.0000000000  0.0000000000
##     GB   0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     GBA  0.0000000000 0.0156494523     0.0000000000  0.0000000000
##     GC   0.0000000000 0.0391236307     0.0000000000  0.0000000000
##     GEN  0.0000000000 0.0281690141     0.0000000000  0.0000000000
##     GG   0.0000000000 0.0015649452     0.0000000000  0.0000000000
##     N64  0.0000000000 0.0000000000     0.1666666667  0.0000000000
##     NES  0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     NG   0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     PC   0.0000000000 0.0516431925     0.0000000000  0.0000000000
##     PCFX 0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     PS   0.0000000000 0.0000000000     0.5000000000  0.0000000000
##     PS2  0.0000000000 0.1298904538     0.0000000000  0.0000000000
##     PS3  0.0000000000 0.0954616588     0.0000000000  0.0000000000
##     PS4  0.0000000000 0.0125195618     0.0000000000  0.0000000000
##     PSP  0.0000000000 0.0798122066     0.0000000000  0.0000000000
##     PSV  0.0000000000 0.0250391236     0.0000000000  0.0000000000
##     SAT  0.0000000000 0.1205007825     0.3333333333  0.0000000000
##     SCD  0.0000000000 0.0093896714     0.0000000000  0.0000000000
##     SNES 0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     TG16 0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     Wii  0.0000000000 0.0688575900     0.0000000000  0.0000000000
##     WiiU 0.0000000000 0.0062597809     0.0000000000  0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000  0.0000000000
##     X360 0.0000000000 0.0735524257     0.0000000000  0.0000000000
##     XB   0.0000000000 0.0594679186     0.0000000000  0.0000000000
##     XOne 0.0000000000 0.0015649452     0.0000000000  0.0000000000
##         Publisher
## Platform   Shogakukan Simon & Schuster Interactive Slightly Mad Studios
##     2600 0.0000000000                 0.0000000000         0.0000000000
##     3DO  0.0000000000                 0.0000000000         0.0000000000
##     3DS  0.2000000000                 0.0000000000         0.0000000000
##     DC   0.0000000000                 0.0000000000         0.0000000000
##     DS   0.4000000000                 0.0000000000         0.0000000000
##     GB   0.0000000000                 0.0000000000         0.0000000000
##     GBA  0.0000000000                 0.0000000000         0.0000000000
##     GC   0.0000000000                 0.0000000000         0.0000000000
##     GEN  0.0000000000                 0.0000000000         0.0000000000
##     GG   0.0000000000                 0.0000000000         0.0000000000
##     N64  0.0000000000                 0.0000000000         0.0000000000
##     NES  0.0000000000                 0.0000000000         0.0000000000
##     NG   0.0000000000                 0.0000000000         0.0000000000
##     PC   0.0000000000                 0.0000000000         0.3333333333
##     PCFX 0.0000000000                 0.0000000000         0.0000000000
##     PS   0.0000000000                 0.0000000000         0.0000000000
##     PS2  0.0000000000                 0.0000000000         0.0000000000
##     PS3  0.0000000000                 0.0000000000         0.0000000000
##     PS4  0.0000000000                 0.0000000000         0.3333333333
##     PSP  0.0000000000                 0.0000000000         0.0000000000
##     PSV  0.0000000000                 0.0000000000         0.0000000000
##     SAT  0.4000000000                 0.0000000000         0.0000000000
##     SCD  0.0000000000                 0.0000000000         0.0000000000
##     SNES 0.0000000000                 0.0000000000         0.0000000000
##     TG16 0.0000000000                 0.0000000000         0.0000000000
##     Wii  0.0000000000                 0.0000000000         0.0000000000
##     WiiU 0.0000000000                 0.0000000000         0.0000000000
##     WS   0.0000000000                 0.0000000000         0.0000000000
##     X360 0.0000000000                 0.0000000000         0.0000000000
##     XB   0.0000000000                 1.0000000000         0.0000000000
##     XOne 0.0000000000                 0.0000000000         0.3333333333
##         Publisher
## Platform Slitherine Software          SNK SNK Playmore      Societa
##     2600        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC          0.0000000000 0.0909090909 0.0000000000 0.0000000000
##     DS          0.2500000000 0.0000000000 0.2222222222 0.0000000000
##     GB          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG          0.0000000000 0.4545454545 0.0000000000 0.0000000000
##     PC          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS          0.0000000000 0.2272727273 0.1666666667 0.0000000000
##     PS2         0.0000000000 0.0454545455 0.3333333333 0.0000000000
##     PS3         0.2500000000 0.0000000000 0.0000000000 0.0000000000
##     PS4         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP         0.2500000000 0.0000000000 0.0555555556 0.0000000000
##     PSV         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT         0.0000000000 0.1818181818 0.0555555556 1.0000000000
##     SCD         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360        0.2500000000 0.0000000000 0.0000000000 0.0000000000
##     XB          0.0000000000 0.0000000000 0.1666666667 0.0000000000
##     XOne        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform     Sold Out       Sonnet Sony Computer Entertainment
##     2600 0.0000000000 0.0000000000                0.0000000000
##     3DO  0.0000000000 0.0000000000                0.0000000000
##     3DS  0.0000000000 0.0000000000                0.0000000000
##     DC   0.0000000000 0.0000000000                0.0000000000
##     DS   0.0000000000 0.0000000000                0.0000000000
##     GB   0.0000000000 0.0000000000                0.0000000000
##     GBA  0.0000000000 0.0000000000                0.0000000000
##     GC   0.0000000000 0.0000000000                0.0000000000
##     GEN  0.0000000000 0.0000000000                0.0000000000
##     GG   0.0000000000 0.0000000000                0.0000000000
##     N64  0.0000000000 0.0000000000                0.0000000000
##     NES  0.0000000000 0.0000000000                0.0000000000
##     NG   0.0000000000 0.0000000000                0.0000000000
##     PC   0.0000000000 0.0000000000                0.0000000000
##     PCFX 0.0000000000 0.0000000000                0.0000000000
##     PS   0.0000000000 0.0000000000                0.2752562225
##     PS2  0.0000000000 0.0000000000                0.2986822840
##     PS3  0.0000000000 0.0000000000                0.1888726208
##     PS4  1.0000000000 0.0000000000                0.0248901903
##     PSP  0.0000000000 0.0000000000                0.1713030747
##     PSV  0.0000000000 0.0000000000                0.0409956076
##     SAT  0.0000000000 1.0000000000                0.0000000000
##     SCD  0.0000000000 0.0000000000                0.0000000000
##     SNES 0.0000000000 0.0000000000                0.0000000000
##     TG16 0.0000000000 0.0000000000                0.0000000000
##     Wii  0.0000000000 0.0000000000                0.0000000000
##     WiiU 0.0000000000 0.0000000000                0.0000000000
##     WS   0.0000000000 0.0000000000                0.0000000000
##     X360 0.0000000000 0.0000000000                0.0000000000
##     XB   0.0000000000 0.0000000000                0.0000000000
##     XOne 0.0000000000 0.0000000000                0.0000000000
##         Publisher
## Platform Sony Computer Entertainment America
##     2600                        0.0000000000
##     3DO                         0.0000000000
##     3DS                         0.0000000000
##     DC                          0.0000000000
##     DS                          0.0000000000
##     GB                          0.0000000000
##     GBA                         0.0000000000
##     GC                          0.0000000000
##     GEN                         0.0000000000
##     GG                          0.0000000000
##     N64                         0.0000000000
##     NES                         0.0000000000
##     NG                          0.0000000000
##     PC                          0.0000000000
##     PCFX                        0.0000000000
##     PS                          0.0000000000
##     PS2                         0.0000000000
##     PS3                         0.3333333333
##     PS4                         0.3333333333
##     PSP                         0.0000000000
##     PSV                         0.3333333333
##     SAT                         0.0000000000
##     SCD                         0.0000000000
##     SNES                        0.0000000000
##     TG16                        0.0000000000
##     Wii                         0.0000000000
##     WiiU                        0.0000000000
##     WS                          0.0000000000
##     X360                        0.0000000000
##     XB                          0.0000000000
##     XOne                        0.0000000000
##         Publisher
## Platform Sony Computer Entertainment Europe Sony Music Entertainment
##     2600                       0.0000000000             0.0000000000
##     3DO                        0.0000000000             0.0000000000
##     3DS                        0.0000000000             0.0000000000
##     DC                         0.0000000000             0.0000000000
##     DS                         0.0000000000             0.0000000000
##     GB                         0.0000000000             0.0000000000
##     GBA                        0.0000000000             0.0000000000
##     GC                         0.0000000000             0.0000000000
##     GEN                        0.0000000000             0.0000000000
##     GG                         0.0000000000             0.0000000000
##     N64                        0.0000000000             0.0000000000
##     NES                        0.0000000000             0.0000000000
##     NG                         0.0000000000             0.0000000000
##     PC                         0.0000000000             0.0000000000
##     PCFX                       0.0000000000             0.0000000000
##     PS                         0.0000000000             0.0000000000
##     PS2                        0.1333333333             1.0000000000
##     PS3                        0.3333333333             0.0000000000
##     PS4                        0.2666666667             0.0000000000
##     PSP                        0.0000000000             0.0000000000
##     PSV                        0.2666666667             0.0000000000
##     SAT                        0.0000000000             0.0000000000
##     SCD                        0.0000000000             0.0000000000
##     SNES                       0.0000000000             0.0000000000
##     TG16                       0.0000000000             0.0000000000
##     Wii                        0.0000000000             0.0000000000
##     WiiU                       0.0000000000             0.0000000000
##     WS                         0.0000000000             0.0000000000
##     X360                       0.0000000000             0.0000000000
##     XB                         0.0000000000             0.0000000000
##     XOne                       0.0000000000             0.0000000000
##         Publisher
## Platform Sony Online Entertainment SouthPeak Games        Spike
##     2600              0.0000000000    0.0000000000 0.0000000000
##     3DO               0.0000000000    0.0000000000 0.0000000000
##     3DS               0.0000000000    0.0000000000 0.0000000000
##     DC                0.0000000000    0.0000000000 0.0000000000
##     DS                0.0000000000    0.3513513514 0.2162162162
##     GB                0.0000000000    0.0000000000 0.0000000000
##     GBA               0.0000000000    0.0000000000 0.0270270270
##     GC                0.0000000000    0.0000000000 0.0000000000
##     GEN               0.0000000000    0.0000000000 0.0000000000
##     GG                0.0000000000    0.0000000000 0.0000000000
##     N64               0.0000000000    0.0000000000 0.0000000000
##     NES               0.0000000000    0.0000000000 0.0000000000
##     NG                0.0000000000    0.0000000000 0.0000000000
##     PC                0.2500000000    0.0270270270 0.0000000000
##     PCFX              0.0000000000    0.0000000000 0.0000000000
##     PS                0.0000000000    0.0270270270 0.0000000000
##     PS2               0.5000000000    0.0810810811 0.1891891892
##     PS3               0.1250000000    0.0810810811 0.1081081081
##     PS4               0.0000000000    0.0000000000 0.0000000000
##     PSP               0.1250000000    0.0540540541 0.3783783784
##     PSV               0.0000000000    0.0000000000 0.0000000000
##     SAT               0.0000000000    0.0000000000 0.0000000000
##     SCD               0.0000000000    0.0000000000 0.0000000000
##     SNES              0.0000000000    0.0000000000 0.0000000000
##     TG16              0.0000000000    0.0000000000 0.0000000000
##     Wii               0.0000000000    0.2432432432 0.0000000000
##     WiiU              0.0000000000    0.0000000000 0.0000000000
##     WS                0.0000000000    0.0000000000 0.0000000000
##     X360              0.0000000000    0.1351351351 0.0810810811
##     XB                0.0000000000    0.0000000000 0.0000000000
##     XOne              0.0000000000    0.0000000000 0.0000000000
##         Publisher
## Platform          SPS       Square    Square EA  Square Enix   SquareSoft
##     2600 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000 0.0600858369 0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000 0.1931330472 0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0576923077
##     GBA  0.0000000000 0.0000000000 0.0000000000 0.0085836910 0.0192307692
##     GC   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.0576923077
##     NG   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000 0.0901287554 0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS   1.0000000000 0.6666666667 1.0000000000 0.0000000000 0.4807692308
##     PS2  0.0000000000 0.0000000000 0.0000000000 0.1115879828 0.0769230769
##     PS3  0.0000000000 0.0000000000 0.0000000000 0.1244635193 0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000 0.0815450644 0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000 0.0858369099 0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000 0.0343347639 0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.2692307692
##     TG16 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000 0.0000000000 0.0386266094 0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000 0.0128755365 0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0384615385
##     X360 0.0000000000 0.0000000000 0.0000000000 0.1115879828 0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000 0.0472103004 0.0000000000
##         Publisher
## Platform          SSI Stainless Games     Starfish Starpath Corp.
##     2600 0.0000000000    0.0000000000 0.0000000000   1.0000000000
##     3DO  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     3DS  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     DC   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     DS   0.0000000000    0.0000000000 0.2000000000   0.0000000000
##     GB   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     GBA  0.0000000000    0.0000000000 0.1000000000   0.0000000000
##     GC   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     GEN  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     GG   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     N64  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     NES  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     NG   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PC   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PCFX 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PS   1.0000000000    0.0000000000 0.2000000000   0.0000000000
##     PS2  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PS3  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PS4  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     PSP  0.0000000000    0.0000000000 0.4000000000   0.0000000000
##     PSV  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     SAT  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     SCD  0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     SNES 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     TG16 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     Wii  0.0000000000    0.0000000000 0.1000000000   0.0000000000
##     WiiU 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     WS   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     X360 0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     XB   0.0000000000    0.0000000000 0.0000000000   0.0000000000
##     XOne 0.0000000000    1.0000000000 0.0000000000   0.0000000000
##         Publisher
## Platform        Sting Storm City Games Strategy First      Success
##     2600 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DO  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     3DS  0.0000000000     0.0000000000   0.0000000000 0.1052631579
##     DC   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     DS   0.3333333333     0.6842105263   0.0000000000 0.4210526316
##     GB   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GBA  0.2222222222     0.0000000000   0.0000000000 0.0000000000
##     GC   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GEN  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     GG   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     N64  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     NES  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     NG   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PC   0.0000000000     0.0000000000   1.0000000000 0.0000000000
##     PCFX 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PS   0.0000000000     0.0000000000   0.0000000000 0.2105263158
##     PS2  0.1111111111     0.0000000000   0.0000000000 0.1578947368
##     PS3  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PS4  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     PSP  0.2222222222     0.0000000000   0.0000000000 0.0526315789
##     PSV  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SAT  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SCD  0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     SNES 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     TG16 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     Wii  0.1111111111     0.3157894737   0.0000000000 0.0000000000
##     WiiU 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     WS   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     X360 0.0000000000     0.0000000000   0.0000000000 0.0526315789
##     XB   0.0000000000     0.0000000000   0.0000000000 0.0000000000
##     XOne 0.0000000000     0.0000000000   0.0000000000 0.0000000000
##         Publisher
## Platform   Summitsoft   Sunflowers Sunrise Interactive      Sunsoft
##     2600 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0000000000        0.0000000000 0.1000000000
##     DC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     DS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GBA  1.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GC   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     N64  0.0000000000 0.0000000000        0.0000000000 0.1000000000
##     NES  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PC   0.0000000000 1.0000000000        0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS   0.0000000000 0.0000000000        0.0000000000 0.4000000000
##     PS2  0.0000000000 0.0000000000        1.0000000000 0.0000000000
##     PS3  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PS4  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     PSV  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000        0.0000000000 0.2000000000
##     SCD  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000        0.0000000000 0.2000000000
##     TG16 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     Wii  0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     X360 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XB   0.0000000000 0.0000000000        0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0000000000        0.0000000000 0.0000000000
##         Publisher
## Platform       Sweets Swing! Entertainment       Syscom     System 3
##     2600 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000         0.1666666667 0.0000000000 0.0000000000
##     GC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000         0.1666666667 1.0000000000 0.0000000000
##     PS2  1.0000000000         0.5000000000 0.0000000000 0.0000000000
##     PS3  0.0000000000         0.0000000000 0.0000000000 0.3333333333
##     PS4  0.0000000000         0.0000000000 0.0000000000 0.3333333333
##     PSP  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000         0.0000000000 0.0000000000 0.3333333333
##     SAT  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000         0.1666666667 0.0000000000 0.0000000000
##     XOne 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform System 3 Arcade Software  System Soft     T&E Soft        Taito
##     2600             0.0000000000 0.0000000000 0.0000000000 0.0526315789
##     3DO              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS               0.2142857143 0.0000000000 0.0000000000 0.1578947368
##     GB               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA              0.0000000000 0.0000000000 0.0000000000 0.0526315789
##     GC               0.0000000000 0.0000000000 0.0000000000 0.0526315789
##     GEN              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64              0.0000000000 0.0000000000 0.0000000000 0.0526315789
##     NES              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS               0.0000000000 0.0000000000 0.0000000000 0.1052631579
##     PS2              0.0714285714 0.0000000000 0.0000000000 0.2631578947
##     PS3              0.1428571429 0.0000000000 0.0000000000 0.0000000000
##     PS4              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSP              0.1428571429 1.0000000000 0.0000000000 0.0000000000
##     PSV              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT              0.0000000000 0.0000000000 0.0000000000 0.0526315789
##     SCD              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES             0.0000000000 0.0000000000 1.0000000000 0.1052631579
##     TG16             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii              0.4285714286 0.0000000000 0.0000000000 0.1052631579
##     WiiU             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XB               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform       Takara  Takara Tomy Take-Two Interactive       Takuyo
##     2600 0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0810810811         0.0048426150 0.0000000000
##     DC   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     DS   0.0000000000 0.5945945946         0.0702179177 0.0000000000
##     GB   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     GBA  0.0625000000 0.0000000000         0.0096852300 0.0000000000
##     GC   0.0000000000 0.0000000000         0.0096852300 0.0000000000
##     GEN  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     N64  0.0625000000 0.0000000000         0.0096852300 0.0000000000
##     NES  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     PC   0.0000000000 0.0000000000         0.1089588378 0.0000000000
##     PCFX 0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     PS   0.3750000000 0.0000000000         0.0435835351 0.0000000000
##     PS2  0.1875000000 0.0000000000         0.1452784504 0.0000000000
##     PS3  0.0000000000 0.0000000000         0.1283292978 0.0000000000
##     PS4  0.0000000000 0.0000000000         0.0290556901 0.0000000000
##     PSP  0.0000000000 0.0810810811         0.0556900726 1.0000000000
##     PSV  0.0000000000 0.0000000000         0.0048426150 0.0000000000
##     SAT  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     SNES 0.3125000000 0.0000000000         0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     Wii  0.0000000000 0.2162162162         0.0920096852 0.0000000000
##     WiiU 0.0000000000 0.0000000000         0.0024213075 0.0000000000
##     WS   0.0000000000 0.0000000000         0.0000000000 0.0000000000
##     X360 0.0000000000 0.0270270270         0.1694915254 0.0000000000
##     XB   0.0000000000 0.0000000000         0.0871670702 0.0000000000
##     XOne 0.0000000000 0.0000000000         0.0290556901 0.0000000000
##         Publisher
## Platform    TalonSoft     TDK Core TDK Mediactive Team17 Software
##     2600 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     3DO  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     3DS  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     DC   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     DS   0.0000000000 0.6000000000   0.0000000000    0.0000000000
##     GB   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     GBA  0.0000000000 0.2000000000   0.3055555556    0.0000000000
##     GC   0.0000000000 0.0000000000   0.2500000000    0.0000000000
##     GEN  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     GG   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     N64  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     NES  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     NG   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PC   0.0000000000 0.0000000000   0.0000000000    1.0000000000
##     PCFX 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PS   1.0000000000 0.2000000000   0.0555555556    0.0000000000
##     PS2  0.0000000000 0.0000000000   0.1666666667    0.0000000000
##     PS3  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PS4  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PSP  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     PSV  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     SAT  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     SCD  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     SNES 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     TG16 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     Wii  0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     WiiU 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     WS   0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     X360 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##     XB   0.0000000000 0.0000000000   0.2222222222    0.0000000000
##     XOne 0.0000000000 0.0000000000   0.0000000000    0.0000000000
##         Publisher
## Platform Technos Japan Corporation   TechnoSoft   Tecmo Koei    Telegames
##     2600              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS               0.0000000000 0.0000000000 0.0266272189 0.0000000000
##     DC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS                0.0000000000 0.0000000000 0.0769230769 0.5000000000
##     GB                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA               0.0000000000 0.0000000000 0.0029585799 0.3750000000
##     GC                0.0000000000 0.0000000000 0.0029585799 0.0000000000
##     GEN               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG                1.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS                0.0000000000 1.0000000000 0.0532544379 0.1250000000
##     PS2               0.0000000000 0.0000000000 0.2514792899 0.0000000000
##     PS3               0.0000000000 0.0000000000 0.1656804734 0.0000000000
##     PS4               0.0000000000 0.0000000000 0.0650887574 0.0000000000
##     PSP               0.0000000000 0.0000000000 0.0976331361 0.0000000000
##     PSV               0.0000000000 0.0000000000 0.0946745562 0.0000000000
##     SAT               0.0000000000 0.0000000000 0.0088757396 0.0000000000
##     SCD               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES              0.0000000000 0.0000000000 0.0236686391 0.0000000000
##     TG16              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii               0.0000000000 0.0000000000 0.0177514793 0.0000000000
##     WiiU              0.0000000000 0.0000000000 0.0088757396 0.0000000000
##     WS                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360              0.0000000000 0.0000000000 0.0680473373 0.0000000000
##     XB                0.0000000000 0.0000000000 0.0177514793 0.0000000000
##     XOne              0.0000000000 0.0000000000 0.0177514793 0.0000000000
##         Publisher
## Platform Telltale Games      Telstar Tetris Online          TGL
##     2600   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     3DO    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     3DS    0.0000000000 0.0000000000  1.0000000000 0.0000000000
##     DC     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     DS     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GB     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GBA    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GC     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GEN    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     GG     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     N64    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     NES    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     NG     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PC     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PCFX   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PS     0.0000000000 1.0000000000  0.0000000000 0.0000000000
##     PS2    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     PS3    0.2000000000 0.0000000000  0.0000000000 0.0000000000
##     PS4    0.2800000000 0.0000000000  0.0000000000 0.0000000000
##     PSP    0.0000000000 0.0000000000  0.0000000000 0.2500000000
##     PSV    0.0800000000 0.0000000000  0.0000000000 0.7500000000
##     SAT    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     SCD    0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     SNES   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     TG16   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     Wii    0.0400000000 0.0000000000  0.0000000000 0.0000000000
##     WiiU   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     WS     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     X360   0.1600000000 0.0000000000  0.0000000000 0.0000000000
##     XB     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##     XOne   0.2400000000 0.0000000000  0.0000000000 0.0000000000
##         Publisher
## Platform The Adventure Company The Learning Company          THQ
##     2600          0.0000000000         0.0000000000 0.0000000000
##     3DO           0.0000000000         0.0000000000 0.0000000000
##     3DS           0.0000000000         0.0000000000 0.0041958042
##     DC            0.0000000000         0.0000000000 0.0000000000
##     DS            0.2000000000         0.0000000000 0.1608391608
##     GB            0.0000000000         0.0000000000 0.0000000000
##     GBA           0.0000000000         0.0000000000 0.1538461538
##     GC            0.0000000000         0.0000000000 0.0657342657
##     GEN           0.0000000000         0.0000000000 0.0000000000
##     GG            0.0000000000         0.0000000000 0.0000000000
##     N64           0.0000000000         0.0000000000 0.0251748252
##     NES           0.0000000000         0.0000000000 0.0000000000
##     NG            0.0000000000         0.0000000000 0.0000000000
##     PC            0.0000000000         0.0000000000 0.0405594406
##     PCFX          0.0000000000         0.0000000000 0.0000000000
##     PS            0.0000000000         1.0000000000 0.0377622378
##     PS2           0.0000000000         0.0000000000 0.1398601399
##     PS3           0.0000000000         0.0000000000 0.0643356643
##     PS4           0.0000000000         0.0000000000 0.0000000000
##     PSP           0.0000000000         0.0000000000 0.0419580420
##     PSV           0.0000000000         0.0000000000 0.0000000000
##     SAT           0.0000000000         0.0000000000 0.0000000000
##     SCD           0.0000000000         0.0000000000 0.0000000000
##     SNES          0.0000000000         0.0000000000 0.0013986014
##     TG16          0.0000000000         0.0000000000 0.0000000000
##     Wii           0.8000000000         0.0000000000 0.1062937063
##     WiiU          0.0000000000         0.0000000000 0.0013986014
##     WS            0.0000000000         0.0000000000 0.0000000000
##     X360          0.0000000000         0.0000000000 0.0895104895
##     XB            0.0000000000         0.0000000000 0.0671328671
##     XOne          0.0000000000         0.0000000000 0.0000000000
##         Publisher
## Platform  Tigervision Time Warner Interactive        Titus       Tivola
##     2600 1.0000000000            0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000            0.0000000000 0.0000000000 1.0000000000
##     GB   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000            0.0000000000 0.2105263158 0.0000000000
##     GC   0.0000000000            0.0000000000 0.0526315789 0.0000000000
##     GEN  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000            0.0000000000 0.3157894737 0.0000000000
##     NES  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000            1.0000000000 0.1578947368 0.0000000000
##     PS2  0.0000000000            0.0000000000 0.1578947368 0.0000000000
##     PS3  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     PSV  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000            0.0000000000 0.0526315789 0.0000000000
##     TG16 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000            0.0000000000 0.0526315789 0.0000000000
##     XOne 0.0000000000            0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform         TOHO        Tommo Tomy Corporation TopWare Interactive
##     2600 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     3DO  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     3DS  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     DC   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     DS   0.0000000000 0.6000000000     0.2777777778        0.0000000000
##     GB   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     GBA  0.0000000000 0.0000000000     0.1111111111        0.0000000000
##     GC   0.0000000000 0.0000000000     0.2777777778        0.0000000000
##     GEN  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     GG   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     N64  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     NES  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     NG   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PC   0.0000000000 0.0000000000     0.0000000000        0.2500000000
##     PCFX 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PS   0.0000000000 0.0000000000     0.2222222222        0.0000000000
##     PS2  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PS3  0.0000000000 0.0000000000     0.0000000000        0.2500000000
##     PS4  0.0000000000 0.0000000000     0.0000000000        0.2500000000
##     PSP  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     PSV  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     SAT  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     SCD  0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     SNES 1.0000000000 0.0000000000     0.0000000000        0.0000000000
##     TG16 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     Wii  0.0000000000 0.4000000000     0.1111111111        0.0000000000
##     WiiU 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     WS   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     X360 0.0000000000 0.0000000000     0.0000000000        0.2500000000
##     XB   0.0000000000 0.0000000000     0.0000000000        0.0000000000
##     XOne 0.0000000000 0.0000000000     0.0000000000        0.0000000000
##         Publisher
## Platform   Touchstone    Tradewest Trion Worlds Tripwire Interactive
##     2600 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     3DS  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     DC   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     DS   0.2500000000 0.0000000000 0.0000000000         0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GBA  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PC   0.2500000000 0.0000000000 0.5000000000         1.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PS   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PS2  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PS3  0.2500000000 0.3333333333 0.2500000000         0.0000000000
##     PS4  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PSP  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     PSV  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     Wii  0.0000000000 0.3333333333 0.0000000000         0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     WS   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     X360 0.2500000000 0.3333333333 0.2500000000         0.0000000000
##     XB   0.0000000000 0.0000000000 0.0000000000         0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000         0.0000000000
##         Publisher
## Platform Tru Blu Entertainment     Tryfirst          TYO    Type-Moon
##     2600          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            0.0000000000 0.0000000000 1.0000000000 0.0000000000
##     PS2           0.0000000000 1.0000000000 0.0000000000 0.0000000000
##     PS3           0.2500000000 0.0000000000 0.0000000000 0.0000000000
##     PS4           0.2500000000 0.0000000000 0.0000000000 0.0000000000
##     PSP           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PSV           0.0000000000 0.0000000000 0.0000000000 1.0000000000
##     SAT           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.2500000000 0.0000000000 0.0000000000 0.0000000000
##     XB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne          0.2500000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform    U.S. Gold      Ubisoft Ubisoft Annecy  UEP Systems
##     2600 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     3DO  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     3DS  0.0000000000 0.0228013029   0.1428571429 0.0000000000
##     DC   0.0000000000 0.0010857763   0.0000000000 0.0000000000
##     DS   0.0000000000 0.1965255157   0.0000000000 0.0000000000
##     GB   0.0000000000 0.0010857763   0.0000000000 0.0000000000
##     GBA  0.0000000000 0.0575461455   0.0000000000 0.0000000000
##     GC   0.0000000000 0.0390879479   0.0000000000 0.0000000000
##     GEN  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     GG   0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     N64  0.0000000000 0.0130293160   0.0000000000 0.0000000000
##     NES  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     NG   0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     PC   0.0000000000 0.0825190011   0.0000000000 0.0000000000
##     PCFX 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     PS   1.0000000000 0.0260586319   0.0000000000 1.0000000000
##     PS2  0.0000000000 0.0760043431   0.0000000000 0.0000000000
##     PS3  0.0000000000 0.0792616721   0.3571428571 0.0000000000
##     PS4  0.0000000000 0.0260586319   0.0000000000 0.0000000000
##     PSP  0.0000000000 0.0412595005   0.2857142857 0.0000000000
##     PSV  0.0000000000 0.0119435396   0.0000000000 0.0000000000
##     SAT  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     SCD  0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     SNES 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     TG16 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     Wii  0.0000000000 0.1248642780   0.0000000000 0.0000000000
##     WiiU 0.0000000000 0.0173724213   0.0000000000 0.0000000000
##     WS   0.0000000000 0.0000000000   0.0000000000 0.0000000000
##     X360 0.0000000000 0.1074918567   0.2142857143 0.0000000000
##     XB   0.0000000000 0.0488599349   0.0000000000 0.0000000000
##     XOne 0.0000000000 0.0271444083   0.0000000000 0.0000000000
##         Publisher
## Platform UFO Interactive UIG Entertainment  Ultravision Universal Gamex
##     2600    0.0000000000      0.0000000000 1.0000000000    1.0000000000
##     3DO     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     3DS     0.0625000000      0.0000000000 0.0000000000    0.0000000000
##     DC      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     DS      0.6250000000      0.0000000000 0.0000000000    0.0000000000
##     GB      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GBA     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GC      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GEN     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     GG      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     N64     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     NES     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     NG      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PC      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PCFX    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS2     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS3     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PS4     0.0000000000      1.0000000000 0.0000000000    0.0000000000
##     PSP     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     PSV     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     SAT     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     SCD     0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     SNES    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     TG16    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     Wii     0.3125000000      0.0000000000 0.0000000000    0.0000000000
##     WiiU    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     WS      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     X360    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     XB      0.0000000000      0.0000000000 0.0000000000    0.0000000000
##     XOne    0.0000000000      0.0000000000 0.0000000000    0.0000000000
##         Publisher
## Platform Universal Interactive      Unknown Valcon Games     ValuSoft
##     2600          0.0000000000 0.0049261084 0.0000000000 0.0000000000
##     3DO           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS           0.0000000000 0.0443349754 0.0000000000 0.0000000000
##     DC            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS            0.0000000000 0.1625615764 0.1250000000 0.5000000000
##     GB            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA           0.2173913043 0.0541871921 0.0000000000 0.0000000000
##     GC            0.2173913043 0.0591133005 0.0000000000 0.0000000000
##     GEN           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64           0.0000000000 0.0049261084 0.0000000000 0.0000000000
##     NES           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC            0.0000000000 0.1083743842 0.0000000000 0.2500000000
##     PCFX          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS            0.0000000000 0.0197044335 0.0000000000 0.0000000000
##     PS2           0.3478260870 0.1182266010 0.2500000000 0.2500000000
##     PS3           0.0000000000 0.0738916256 0.0000000000 0.0000000000
##     PS4           0.0000000000 0.0049261084 0.0000000000 0.0000000000
##     PSP           0.0000000000 0.0640394089 0.0000000000 0.0000000000
##     PSV           0.0000000000 0.0295566502 0.0000000000 0.0000000000
##     SAT           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SCD           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii           0.0000000000 0.1280788177 0.3750000000 0.0000000000
##     WiiU          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360          0.0000000000 0.0591133005 0.2500000000 0.0000000000
##     XB            0.2173913043 0.0591133005 0.0000000000 0.0000000000
##     XOne          0.0000000000 0.0049261084 0.0000000000 0.0000000000
##         Publisher
## Platform        Valve Valve Software          Vap Vatical Entertainment
##     2600 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     3DO  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     3DS  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     DC   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     DS   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GB   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GBA  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GC   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GEN  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     GG   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     N64  0.0000000000   0.0000000000 0.0000000000          0.5000000000
##     NES  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     NG   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PC   0.0000000000   0.6666666667 0.0000000000          0.0000000000
##     PCFX 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PS   0.0000000000   0.0000000000 0.0000000000          0.5000000000
##     PS2  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PS3  1.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PS4  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PSP  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     PSV  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     SAT  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     SCD  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     SNES 0.0000000000   0.0000000000 1.0000000000          0.0000000000
##     TG16 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     Wii  0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     WiiU 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     WS   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     X360 0.0000000000   0.3333333333 0.0000000000          0.0000000000
##     XB   0.0000000000   0.0000000000 0.0000000000          0.0000000000
##     XOne 0.0000000000   0.0000000000 0.0000000000          0.0000000000
##         Publisher
## Platform    Vic Tokai Victor Interactive Video System        Views
##     2600 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GB   0.0000000000       0.1111111111 0.0000000000 0.0000000000
##     GBA  0.0000000000       0.1111111111 0.0000000000 0.0000000000
##     GC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GEN  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     N64  0.5000000000       0.0000000000 0.5000000000 0.0000000000
##     NES  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PS   0.5000000000       0.3333333333 0.2500000000 0.0000000000
##     PS2  0.0000000000       0.2222222222 0.0000000000 0.0000000000
##     PS3  0.0000000000       0.0000000000 0.0000000000 0.5000000000
##     PS4  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     PSP  0.0000000000       0.0000000000 0.0000000000 0.5000000000
##     PSV  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000       0.1111111111 0.0000000000 0.0000000000
##     SCD  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000       0.1111111111 0.2500000000 0.0000000000
##     TG16 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     WiiU 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XB   0.0000000000       0.0000000000 0.0000000000 0.0000000000
##     XOne 0.0000000000       0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform Vir2L Studios Virgin Interactive Virtual Play Games        Visco
##     2600  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     3DO   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     3DS   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     DC    0.0000000000       0.0322580645       0.0000000000 0.0000000000
##     DS    0.6666666667       0.0000000000       0.0000000000 0.0000000000
##     GB    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     GBA   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     GC    0.0000000000       0.0322580645       0.0000000000 0.0000000000
##     GEN   0.0000000000       0.0161290323       0.0000000000 0.0000000000
##     GG    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     N64   0.0000000000       0.0645161290       0.0000000000 0.0000000000
##     NES   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     NG    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PC    0.0000000000       0.0645161290       0.0000000000 1.0000000000
##     PCFX  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PS    0.0000000000       0.6290322581       0.0000000000 0.0000000000
##     PS2   0.0000000000       0.0967741935       0.0000000000 0.0000000000
##     PS3   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PS4   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PSP   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     PSV   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     SAT   0.0000000000       0.0322580645       0.0000000000 0.0000000000
##     SCD   0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     SNES  0.0000000000       0.0161290323       0.0000000000 0.0000000000
##     TG16  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     Wii   0.3333333333       0.0000000000       1.0000000000 0.0000000000
##     WiiU  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     WS    0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     X360  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##     XB    0.0000000000       0.0161290323       0.0000000000 0.0000000000
##     XOne  0.0000000000       0.0000000000       0.0000000000 0.0000000000
##         Publisher
## Platform Vivendi Games      Wanadoo      Warashi Wargaming.net
##     2600  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DO   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     3DS   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     DC    0.0000000000 0.0000000000 1.0000000000  0.0000000000
##     DS    0.0792682927 0.0000000000 0.0000000000  0.0000000000
##     GB    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GBA   0.1402439024 0.2000000000 0.0000000000  0.0000000000
##     GC    0.0914634146 0.2000000000 0.0000000000  0.0000000000
##     GEN   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     GG    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     N64   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     NES   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     NG    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PC    0.1402439024 0.0000000000 0.0000000000  1.0000000000
##     PCFX  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PS    0.0121951220 0.0000000000 0.0000000000  0.0000000000
##     PS2   0.1890243902 0.4000000000 0.0000000000  0.0000000000
##     PS3   0.0304878049 0.0000000000 0.0000000000  0.0000000000
##     PS4   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     PSP   0.0487804878 0.0000000000 0.0000000000  0.0000000000
##     PSV   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SAT   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SCD   0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     SNES  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     TG16  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     Wii   0.0548780488 0.0000000000 0.0000000000  0.0000000000
##     WiiU  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     WS    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##     X360  0.0548780488 0.0000000000 0.0000000000  0.0000000000
##     XB    0.1585365854 0.2000000000 0.0000000000  0.0000000000
##     XOne  0.0000000000 0.0000000000 0.0000000000  0.0000000000
##         Publisher
## Platform Warner Bros. Interactive Entertainment         Warp
##     2600                           0.0000000000 0.0000000000
##     3DO                            0.0000000000 0.0000000000
##     3DS                            0.0775862069 0.0000000000
##     DC                             0.0000000000 0.0000000000
##     DS                             0.1379310345 0.0000000000
##     GB                             0.0000000000 0.0000000000
##     GBA                            0.0000000000 0.0000000000
##     GC                             0.0043103448 0.0000000000
##     GEN                            0.0000000000 0.0000000000
##     GG                             0.0000000000 0.0000000000
##     N64                            0.0000000000 0.0000000000
##     NES                            0.0000000000 0.0000000000
##     NG                             0.0000000000 0.0000000000
##     PC                             0.0862068966 0.0000000000
##     PCFX                           0.0000000000 0.0000000000
##     PS                             0.0000000000 0.0000000000
##     PS2                            0.0344827586 0.0000000000
##     PS3                            0.1379310345 0.0000000000
##     PS4                            0.0603448276 0.0000000000
##     PSP                            0.0215517241 0.0000000000
##     PSV                            0.0689655172 0.0000000000
##     SAT                            0.0000000000 1.0000000000
##     SCD                            0.0000000000 0.0000000000
##     SNES                           0.0000000000 0.0000000000
##     TG16                           0.0000000000 0.0000000000
##     Wii                            0.1034482759 0.0000000000
##     WiiU                           0.0646551724 0.0000000000
##     WS                             0.0000000000 0.0000000000
##     X360                           0.1465517241 0.0000000000
##     XB                             0.0000000000 0.0000000000
##     XOne                           0.0560344828 0.0000000000
##         Publisher
## Platform WayForward Technologies Westwood Studios White Park Bay Software
##     2600            0.0000000000     0.0000000000            0.0000000000
##     3DO             0.0000000000     0.0000000000            0.0000000000
##     3DS             1.0000000000     0.0000000000            0.0000000000
##     DC              0.0000000000     0.0000000000            0.0000000000
##     DS              0.0000000000     0.0000000000            1.0000000000
##     GB              0.0000000000     0.0000000000            0.0000000000
##     GBA             0.0000000000     0.0000000000            0.0000000000
##     GC              0.0000000000     0.0000000000            0.0000000000
##     GEN             0.0000000000     0.0000000000            0.0000000000
##     GG              0.0000000000     0.0000000000            0.0000000000
##     N64             0.0000000000     0.0000000000            0.0000000000
##     NES             0.0000000000     0.0000000000            0.0000000000
##     NG              0.0000000000     0.0000000000            0.0000000000
##     PC              0.0000000000     1.0000000000            0.0000000000
##     PCFX            0.0000000000     0.0000000000            0.0000000000
##     PS              0.0000000000     0.0000000000            0.0000000000
##     PS2             0.0000000000     0.0000000000            0.0000000000
##     PS3             0.0000000000     0.0000000000            0.0000000000
##     PS4             0.0000000000     0.0000000000            0.0000000000
##     PSP             0.0000000000     0.0000000000            0.0000000000
##     PSV             0.0000000000     0.0000000000            0.0000000000
##     SAT             0.0000000000     0.0000000000            0.0000000000
##     SCD             0.0000000000     0.0000000000            0.0000000000
##     SNES            0.0000000000     0.0000000000            0.0000000000
##     TG16            0.0000000000     0.0000000000            0.0000000000
##     Wii             0.0000000000     0.0000000000            0.0000000000
##     WiiU            0.0000000000     0.0000000000            0.0000000000
##     WS              0.0000000000     0.0000000000            0.0000000000
##     X360            0.0000000000     0.0000000000            0.0000000000
##     XB              0.0000000000     0.0000000000            0.0000000000
##     XOne            0.0000000000     0.0000000000            0.0000000000
##         Publisher
## Platform Wizard Video Games Xicat Interactive Xing Entertainment
##     2600       1.0000000000      0.0000000000       0.0000000000
##     3DO        0.0000000000      0.0000000000       0.0000000000
##     3DS        0.0000000000      0.0000000000       0.0000000000
##     DC         0.0000000000      0.0000000000       0.0000000000
##     DS         0.0000000000      0.0000000000       0.0000000000
##     GB         0.0000000000      0.0000000000       0.0000000000
##     GBA        0.0000000000      0.0000000000       0.0000000000
##     GC         0.0000000000      0.0000000000       0.0000000000
##     GEN        0.0000000000      0.0000000000       0.0000000000
##     GG         0.0000000000      0.0000000000       0.0000000000
##     N64        0.0000000000      0.0000000000       0.0000000000
##     NES        0.0000000000      0.0000000000       0.0000000000
##     NG         0.0000000000      0.0000000000       0.0000000000
##     PC         0.0000000000      0.0000000000       0.0000000000
##     PCFX       0.0000000000      0.0000000000       0.0000000000
##     PS         0.0000000000      0.0000000000       1.0000000000
##     PS2        0.0000000000      0.3333333333       0.0000000000
##     PS3        0.0000000000      0.0000000000       0.0000000000
##     PS4        0.0000000000      0.0000000000       0.0000000000
##     PSP        0.0000000000      0.0000000000       0.0000000000
##     PSV        0.0000000000      0.0000000000       0.0000000000
##     SAT        0.0000000000      0.0000000000       0.0000000000
##     SCD        0.0000000000      0.0000000000       0.0000000000
##     SNES       0.0000000000      0.0000000000       0.0000000000
##     TG16       0.0000000000      0.0000000000       0.0000000000
##     Wii        0.0000000000      0.0000000000       0.0000000000
##     WiiU       0.0000000000      0.0000000000       0.0000000000
##     WS         0.0000000000      0.0000000000       0.0000000000
##     X360       0.0000000000      0.0000000000       0.0000000000
##     XB         0.0000000000      0.6666666667       0.0000000000
##     XOne       0.0000000000      0.0000000000       0.0000000000
##         Publisher
## Platform      Xplosiv     XS Games  Xseed Games Yacht Club Games
##     2600 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     3DO  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     3DS  0.0000000000 0.0000000000 0.2500000000     0.3333333333
##     DC   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     DS   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GB   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GBA  0.0000000000 0.1666666667 0.0000000000     0.0000000000
##     GC   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GEN  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     GG   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     N64  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     NES  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     NG   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PC   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PCFX 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PS   0.0000000000 0.0833333333 0.0000000000     0.0000000000
##     PS2  0.4000000000 0.2500000000 0.0000000000     0.0000000000
##     PS3  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     PS4  0.0000000000 0.0000000000 0.2500000000     0.3333333333
##     PSP  0.4000000000 0.0000000000 0.0000000000     0.0000000000
##     PSV  0.0000000000 0.0000000000 0.5000000000     0.0000000000
##     SAT  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     SCD  0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     SNES 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     TG16 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     Wii  0.2000000000 0.3333333333 0.0000000000     0.0000000000
##     WiiU 0.0000000000 0.0000000000 0.0000000000     0.3333333333
##     WS   0.0000000000 0.0000000000 0.0000000000     0.0000000000
##     X360 0.0000000000 0.0833333333 0.0000000000     0.0000000000
##     XB   0.0000000000 0.0833333333 0.0000000000     0.0000000000
##     XOne 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##         Publisher
## Platform Yamasa Entertainment         Yeti       Yuke's      Yumedia
##     2600         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DO          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     3DS          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     DS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GB           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GBA          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GEN          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     GG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     N64          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NES          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     NG           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PC           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PCFX         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS2          0.5000000000 0.3636363636 1.0000000000 0.0000000000
##     PS3          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     PS4          0.0000000000 0.0909090909 0.0000000000 0.0000000000
##     PSP          0.5000000000 0.4545454545 0.0000000000 0.0000000000
##     PSV          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SAT          0.0000000000 0.0000000000 0.0000000000 1.0000000000
##     SCD          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     SNES         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     TG16         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     Wii          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WiiU         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     WS           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     X360         0.0000000000 0.0909090909 0.0000000000 0.0000000000
##     XB           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##     XOne         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##         Publisher
## Platform       Zenrin Zoo Digital Publishing    Zoo Games  Zushi Games
##     2600 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DO  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     3DS  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     DS   0.0000000000           0.2500000000 0.3030303030 0.3888888889
##     GB   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GBA  0.0000000000           0.3653846154 0.0000000000 0.0000000000
##     GC   0.0000000000           0.0096153846 0.0000000000 0.0000000000
##     GEN  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     GG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     N64  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NES  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     NG   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PC   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PCFX 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS2  0.0000000000           0.1057692308 0.0000000000 0.0000000000
##     PS3  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PS4  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     PSP  1.0000000000           0.0000000000 0.0000000000 0.0555555556
##     PSV  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SAT  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SCD  0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     SNES 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     TG16 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     Wii  0.0000000000           0.1730769231 0.6666666667 0.4444444444
##     WiiU 0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     WS   0.0000000000           0.0000000000 0.0000000000 0.0000000000
##     X360 0.0000000000           0.0000000000 0.0303030303 0.1111111111
##     XB   0.0000000000           0.0961538462 0.0000000000 0.0000000000
##     XOne 0.0000000000           0.0000000000 0.0000000000 0.0000000000

Imagic is the publisher that makes more games on 2600 console.

myTable <-xtabs(~Genre+Year)
addmargins(myTable)
##               Year
## Genre           1980  1981  1982  1983  1984  1985  1986  1987  1988  1989
##   Action           1    25    18     7     1     2     6     2     2     2
##   Adventure        0     0     0     1     0     0     0     1     0     0
##   Fighting         1     0     0     0     0     1     0     2     0     0
##   Misc             4     0     1     1     1     0     0     0     0     1
##   Platform         0     3     5     5     1     4     6     2     4     3
##   Puzzle           0     2     3     1     3     4     0     0     1     5
##   Racing           0     1     2     0     3     0     1     0     1     0
##   Role-Playing     0     0     0     0     0     0     1     3     3     2
##   Shooter          2    10     5     1     3     1     4     2     1     1
##   Simulation       0     1     0     0     0     1     0     0     1     0
##   Sports           1     4     2     1     2     1     3     4     2     3
##   Strategy         0     0     0     0     0     0     0     0     0     0
##   Sum              9    46    36    17    14    14    21    16    15    17
##               Year
## Genre           1990  1991  1992  1993  1994  1995  1996  1997  1998  1999
##   Action           3     5     1     6     4     8    20    31    44    40
##   Adventure        0     2     4     1     4    13    17    14    23    19
##   Fighting         0     1     7    11    22    29    30    28    41    24
##   Misc             0     1     2     3     6    22    23    12    22    25
##   Platform         3     6     6    11    11    13    14    18    25    18
##   Puzzle           2     4     5     3     3    12     9    14    13     6
##   Racing           2     1     2     2     8    12    22    36    49    49
##   Role-Playing     2     5     5     9    17    24    28    23    26    33
##   Shooter          0     3     3     2    11    29    23    27    23    16
##   Simulation       1     2     1     1     7    14    13    19     8    20
##   Sports           3     7     4     9    22    29    52    46    70    62
##   Strategy         0     4     3     2     6    14    12    21    35    26
##   Sum             16    41    43    60   121   219   263   289   379   338
##               Year
## Genre           2000  2001  2002  2003  2004  2005  2006  2007  2008  2009
##   Action          44    67   125   144   125   192   184   211   221   272
##   Adventure       16    21    42    12    39    42    71    84   166   141
##   Fighting        29    18    54    44    39    43    55    50    57    53
##   Misc            20    26    45    53    85   115   109   151   212   207
##   Platform        24    43    77    87    66    83    54    42    62    29
##   Puzzle          12    15    20     8    25    33    43    66    64    79
##   Racing          43    71   103   109    71    77    75    86    82    84
##   Role-Playing    29    41    55    48    60    71   110   103   112   103
##   Shooter         20    36    79    73    88    96    69    85    83    91
##   Simulation      15    28    19    35    27    38    58    90   119   123
##   Sports          81    96   188   125   106   122   138   167   200   184
##   Strategy        16    20    22    37    32    29    42    67    50    65
##   Sum            349   482   829   775   763   941  1008  1202  1428  1431
##               Year
## Genre           2010  2011  2012  2013  2014  2015  2016  2017  2020   N/A
##   Action         226   239   266   148   186   255   119     1     0    63
##   Adventure      154   108    58    60    75    54    34     0     0    10
##   Fighting        40    50    29    20    23    21    14     0     0    12
##   Misc           201   184    38    42    41    39    18     0     0    29
##   Platform        31    37    12    37    10    14    10     0     0    10
##   Puzzle          45    43    11     3     8     6     0     0     0    11
##   Racing          57    65    30    16    27    19    20     0     0    23
##   Role-Playing   103    95    78    71    91    78    40     2     0    17
##   Shooter         81    94    48    59    47    34    32     0     0    28
##   Simulation      82    56    18    18    11    15     9     0     1    16
##   Sports         186   122    54    53    55    62    38     0     0    42
##   Strategy        53    46    15    19     8    17    10     0     0    10
##   Sum           1259  1139   657   546   582   614   344     3     1   271
##               Year
## Genre            Sum
##   Action        3316
##   Adventure     1286
##   Fighting       848
##   Misc          1739
##   Platform       886
##   Puzzle         582
##   Racing        1249
##   Role-Playing  1488
##   Shooter       1310
##   Simulation     867
##   Sports        2346
##   Strategy       681
##   Sum          16598
myTable
##               Year
## Genre          1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
##   Action          1   25   18    7    1    2    6    2    2    2    3    5
##   Adventure       0    0    0    1    0    0    0    1    0    0    0    2
##   Fighting        1    0    0    0    0    1    0    2    0    0    0    1
##   Misc            4    0    1    1    1    0    0    0    0    1    0    1
##   Platform        0    3    5    5    1    4    6    2    4    3    3    6
##   Puzzle          0    2    3    1    3    4    0    0    1    5    2    4
##   Racing          0    1    2    0    3    0    1    0    1    0    2    1
##   Role-Playing    0    0    0    0    0    0    1    3    3    2    2    5
##   Shooter         2   10    5    1    3    1    4    2    1    1    0    3
##   Simulation      0    1    0    0    0    1    0    0    1    0    1    2
##   Sports          1    4    2    1    2    1    3    4    2    3    3    7
##   Strategy        0    0    0    0    0    0    0    0    0    0    0    4
##               Year
## Genre          1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003
##   Action          1    6    4    8   20   31   44   40   44   67  125  144
##   Adventure       4    1    4   13   17   14   23   19   16   21   42   12
##   Fighting        7   11   22   29   30   28   41   24   29   18   54   44
##   Misc            2    3    6   22   23   12   22   25   20   26   45   53
##   Platform        6   11   11   13   14   18   25   18   24   43   77   87
##   Puzzle          5    3    3   12    9   14   13    6   12   15   20    8
##   Racing          2    2    8   12   22   36   49   49   43   71  103  109
##   Role-Playing    5    9   17   24   28   23   26   33   29   41   55   48
##   Shooter         3    2   11   29   23   27   23   16   20   36   79   73
##   Simulation      1    1    7   14   13   19    8   20   15   28   19   35
##   Sports          4    9   22   29   52   46   70   62   81   96  188  125
##   Strategy        3    2    6   14   12   21   35   26   16   20   22   37
##               Year
## Genre          2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015
##   Action        125  192  184  211  221  272  226  239  266  148  186  255
##   Adventure      39   42   71   84  166  141  154  108   58   60   75   54
##   Fighting       39   43   55   50   57   53   40   50   29   20   23   21
##   Misc           85  115  109  151  212  207  201  184   38   42   41   39
##   Platform       66   83   54   42   62   29   31   37   12   37   10   14
##   Puzzle         25   33   43   66   64   79   45   43   11    3    8    6
##   Racing         71   77   75   86   82   84   57   65   30   16   27   19
##   Role-Playing   60   71  110  103  112  103  103   95   78   71   91   78
##   Shooter        88   96   69   85   83   91   81   94   48   59   47   34
##   Simulation     27   38   58   90  119  123   82   56   18   18   11   15
##   Sports        106  122  138  167  200  184  186  122   54   53   55   62
##   Strategy       32   29   42   67   50   65   53   46   15   19    8   17
##               Year
## Genre          2016 2017 2020 N/A
##   Action        119    1    0  63
##   Adventure      34    0    0  10
##   Fighting       14    0    0  12
##   Misc           18    0    0  29
##   Platform       10    0    0  10
##   Puzzle          0    0    0  11
##   Racing         20    0    0  23
##   Role-Playing   40    2    0  17
##   Shooter        32    0    0  28
##   Simulation      9    0    1  16
##   Sports         38    0    0  42
##   Strategy       10    0    0  10
prop.table(myTable,1)
##               Year
## Genre                  1980         1981         1982         1983
##   Action       0.0003015682 0.0075392039 0.0054282268 0.0021109771
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0007776050
##   Fighting     0.0011792453 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0023001725 0.0000000000 0.0005750431 0.0005750431
##   Platform     0.0000000000 0.0033860045 0.0056433409 0.0056433409
##   Puzzle       0.0000000000 0.0034364261 0.0051546392 0.0017182131
##   Racing       0.0000000000 0.0008006405 0.0016012810 0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0015267176 0.0076335878 0.0038167939 0.0007633588
##   Simulation   0.0000000000 0.0011534025 0.0000000000 0.0000000000
##   Sports       0.0004262575 0.0017050298 0.0008525149 0.0004262575
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Year
## Genre                  1984         1985         1986         1987
##   Action       0.0003015682 0.0006031363 0.0018094089 0.0006031363
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0007776050
##   Fighting     0.0000000000 0.0011792453 0.0000000000 0.0023584906
##   Misc         0.0005750431 0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0011286682 0.0045146727 0.0067720090 0.0022573363
##   Puzzle       0.0051546392 0.0068728522 0.0000000000 0.0000000000
##   Racing       0.0024019215 0.0000000000 0.0008006405 0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0006720430 0.0020161290
##   Shooter      0.0022900763 0.0007633588 0.0030534351 0.0015267176
##   Simulation   0.0000000000 0.0011534025 0.0000000000 0.0000000000
##   Sports       0.0008525149 0.0004262575 0.0012787724 0.0017050298
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Year
## Genre                  1988         1989         1990         1991
##   Action       0.0006031363 0.0006031363 0.0009047045 0.0015078408
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0015552100
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0011792453
##   Misc         0.0000000000 0.0005750431 0.0000000000 0.0005750431
##   Platform     0.0045146727 0.0033860045 0.0033860045 0.0067720090
##   Puzzle       0.0017182131 0.0085910653 0.0034364261 0.0068728522
##   Racing       0.0008006405 0.0000000000 0.0016012810 0.0008006405
##   Role-Playing 0.0020161290 0.0013440860 0.0013440860 0.0033602151
##   Shooter      0.0007633588 0.0007633588 0.0000000000 0.0022900763
##   Simulation   0.0011534025 0.0000000000 0.0011534025 0.0023068051
##   Sports       0.0008525149 0.0012787724 0.0012787724 0.0029838022
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0058737151
##               Year
## Genre                  1992         1993         1994         1995
##   Action       0.0003015682 0.0018094089 0.0012062726 0.0024125452
##   Adventure    0.0031104199 0.0007776050 0.0031104199 0.0101088647
##   Fighting     0.0082547170 0.0129716981 0.0259433962 0.0341981132
##   Misc         0.0011500863 0.0017251294 0.0034502588 0.0126509488
##   Platform     0.0067720090 0.0124153499 0.0124153499 0.0146726862
##   Puzzle       0.0085910653 0.0051546392 0.0051546392 0.0206185567
##   Racing       0.0016012810 0.0016012810 0.0064051241 0.0096076861
##   Role-Playing 0.0033602151 0.0060483871 0.0114247312 0.0161290323
##   Shooter      0.0022900763 0.0015267176 0.0083969466 0.0221374046
##   Simulation   0.0011534025 0.0011534025 0.0080738178 0.0161476355
##   Sports       0.0017050298 0.0038363171 0.0093776641 0.0123614663
##   Strategy     0.0044052863 0.0029368576 0.0088105727 0.0205580029
##               Year
## Genre                  1996         1997         1998         1999
##   Action       0.0060313631 0.0093486128 0.0132689988 0.0120627262
##   Adventure    0.0132192846 0.0108864697 0.0178849145 0.0147744946
##   Fighting     0.0353773585 0.0330188679 0.0483490566 0.0283018868
##   Misc         0.0132259919 0.0069005175 0.0126509488 0.0143760782
##   Platform     0.0158013544 0.0203160271 0.0282167043 0.0203160271
##   Puzzle       0.0154639175 0.0240549828 0.0223367698 0.0103092784
##   Racing       0.0176140913 0.0288230584 0.0392313851 0.0392313851
##   Role-Playing 0.0188172043 0.0154569892 0.0174731183 0.0221774194
##   Shooter      0.0175572519 0.0206106870 0.0175572519 0.0122137405
##   Simulation   0.0149942330 0.0219146482 0.0092272203 0.0230680507
##   Sports       0.0221653879 0.0196078431 0.0298380222 0.0264279625
##   Strategy     0.0176211454 0.0308370044 0.0513950073 0.0381791483
##               Year
## Genre                  2000         2001         2002         2003
##   Action       0.0132689988 0.0202050663 0.0376960193 0.0434258142
##   Adventure    0.0124416796 0.0163297045 0.0326594090 0.0093312597
##   Fighting     0.0341981132 0.0212264151 0.0636792453 0.0518867925
##   Misc         0.0115008626 0.0149511213 0.0258769408 0.0304772858
##   Platform     0.0270880361 0.0485327314 0.0869074492 0.0981941309
##   Puzzle       0.0206185567 0.0257731959 0.0343642612 0.0137457045
##   Racing       0.0344275420 0.0568454764 0.0824659728 0.0872698159
##   Role-Playing 0.0194892473 0.0275537634 0.0369623656 0.0322580645
##   Shooter      0.0152671756 0.0274809160 0.0603053435 0.0557251908
##   Simulation   0.0173010381 0.0322952710 0.0219146482 0.0403690888
##   Sports       0.0345268542 0.0409207161 0.0801364024 0.0532821824
##   Strategy     0.0234948605 0.0293685756 0.0323054332 0.0543318649
##               Year
## Genre                  2004         2005         2006         2007
##   Action       0.0376960193 0.0579010856 0.0554885404 0.0636308806
##   Adventure    0.0303265941 0.0326594090 0.0552099533 0.0653188180
##   Fighting     0.0459905660 0.0507075472 0.0648584906 0.0589622642
##   Misc         0.0488786659 0.0661299597 0.0626797010 0.0868315124
##   Platform     0.0744920993 0.0936794582 0.0609480813 0.0474040632
##   Puzzle       0.0429553265 0.0567010309 0.0738831615 0.1134020619
##   Racing       0.0568454764 0.0616493195 0.0600480384 0.0688550841
##   Role-Playing 0.0403225806 0.0477150538 0.0739247312 0.0692204301
##   Shooter      0.0671755725 0.0732824427 0.0526717557 0.0648854962
##   Simulation   0.0311418685 0.0438292964 0.0668973472 0.1038062284
##   Sports       0.0451832907 0.0520034101 0.0588235294 0.0711849957
##   Strategy     0.0469897210 0.0425844347 0.0616740088 0.0983847283
##               Year
## Genre                  2008         2009         2010         2011
##   Action       0.0666465621 0.0820265380 0.0681544029 0.0720747889
##   Adventure    0.1290824261 0.1096423017 0.1197511664 0.0839813375
##   Fighting     0.0672169811 0.0625000000 0.0471698113 0.0589622642
##   Misc         0.1219091432 0.1190339275 0.1155836688 0.1058079356
##   Platform     0.0699774266 0.0327313770 0.0349887133 0.0417607223
##   Puzzle       0.1099656357 0.1357388316 0.0773195876 0.0738831615
##   Racing       0.0656525220 0.0672538030 0.0456365092 0.0520416333
##   Role-Playing 0.0752688172 0.0692204301 0.0692204301 0.0638440860
##   Shooter      0.0633587786 0.0694656489 0.0618320611 0.0717557252
##   Simulation   0.1372549020 0.1418685121 0.0945790081 0.0645905421
##   Sports       0.0852514919 0.0784313725 0.0792838875 0.0520034101
##   Strategy     0.0734214391 0.0954478708 0.0778267254 0.0675477239
##               Year
## Genre                  2012         2013         2014         2015
##   Action       0.0802171291 0.0446320869 0.0560916767 0.0768998794
##   Adventure    0.0451010886 0.0466562986 0.0583203733 0.0419906687
##   Fighting     0.0341981132 0.0235849057 0.0271226415 0.0247641509
##   Misc         0.0218516389 0.0241518114 0.0235767683 0.0224266820
##   Platform     0.0135440181 0.0417607223 0.0112866817 0.0158013544
##   Puzzle       0.0189003436 0.0051546392 0.0137457045 0.0103092784
##   Racing       0.0240192154 0.0128102482 0.0216172938 0.0152121697
##   Role-Playing 0.0524193548 0.0477150538 0.0611559140 0.0524193548
##   Shooter      0.0366412214 0.0450381679 0.0358778626 0.0259541985
##   Simulation   0.0207612457 0.0207612457 0.0126874279 0.0173010381
##   Sports       0.0230179028 0.0225916454 0.0234441603 0.0264279625
##   Strategy     0.0220264317 0.0279001468 0.0117474302 0.0249632893
##               Year
## Genre                  2016         2017         2020          N/A
##   Action       0.0358866104 0.0003015682 0.0000000000 0.0189987937
##   Adventure    0.0264385692 0.0000000000 0.0000000000 0.0077760498
##   Fighting     0.0165094340 0.0000000000 0.0000000000 0.0141509434
##   Misc         0.0103507763 0.0000000000 0.0000000000 0.0166762507
##   Platform     0.0112866817 0.0000000000 0.0000000000 0.0112866817
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0189003436
##   Racing       0.0160128102 0.0000000000 0.0000000000 0.0184147318
##   Role-Playing 0.0268817204 0.0013440860 0.0000000000 0.0114247312
##   Shooter      0.0244274809 0.0000000000 0.0000000000 0.0213740458
##   Simulation   0.0103806228 0.0000000000 0.0011534025 0.0184544406
##   Sports       0.0161977835 0.0000000000 0.0000000000 0.0179028133
##   Strategy     0.0146842878 0.0000000000 0.0000000000 0.0146842878
prop.table(myTable,2)
##               Year
## Genre                 1980        1981        1982        1983        1984
##   Action       0.111111111 0.543478261 0.500000000 0.411764706 0.071428571
##   Adventure    0.000000000 0.000000000 0.000000000 0.058823529 0.000000000
##   Fighting     0.111111111 0.000000000 0.000000000 0.000000000 0.000000000
##   Misc         0.444444444 0.000000000 0.027777778 0.058823529 0.071428571
##   Platform     0.000000000 0.065217391 0.138888889 0.294117647 0.071428571
##   Puzzle       0.000000000 0.043478261 0.083333333 0.058823529 0.214285714
##   Racing       0.000000000 0.021739130 0.055555556 0.000000000 0.214285714
##   Role-Playing 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter      0.222222222 0.217391304 0.138888889 0.058823529 0.214285714
##   Simulation   0.000000000 0.021739130 0.000000000 0.000000000 0.000000000
##   Sports       0.111111111 0.086956522 0.055555556 0.058823529 0.142857143
##   Strategy     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##               Year
## Genre                 1985        1986        1987        1988        1989
##   Action       0.142857143 0.285714286 0.125000000 0.133333333 0.117647059
##   Adventure    0.000000000 0.000000000 0.062500000 0.000000000 0.000000000
##   Fighting     0.071428571 0.000000000 0.125000000 0.000000000 0.000000000
##   Misc         0.000000000 0.000000000 0.000000000 0.000000000 0.058823529
##   Platform     0.285714286 0.285714286 0.125000000 0.266666667 0.176470588
##   Puzzle       0.285714286 0.000000000 0.000000000 0.066666667 0.294117647
##   Racing       0.000000000 0.047619048 0.000000000 0.066666667 0.000000000
##   Role-Playing 0.000000000 0.047619048 0.187500000 0.200000000 0.117647059
##   Shooter      0.071428571 0.190476190 0.125000000 0.066666667 0.058823529
##   Simulation   0.071428571 0.000000000 0.000000000 0.066666667 0.000000000
##   Sports       0.071428571 0.142857143 0.250000000 0.133333333 0.176470588
##   Strategy     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##               Year
## Genre                 1990        1991        1992        1993        1994
##   Action       0.187500000 0.121951220 0.023255814 0.100000000 0.033057851
##   Adventure    0.000000000 0.048780488 0.093023256 0.016666667 0.033057851
##   Fighting     0.000000000 0.024390244 0.162790698 0.183333333 0.181818182
##   Misc         0.000000000 0.024390244 0.046511628 0.050000000 0.049586777
##   Platform     0.187500000 0.146341463 0.139534884 0.183333333 0.090909091
##   Puzzle       0.125000000 0.097560976 0.116279070 0.050000000 0.024793388
##   Racing       0.125000000 0.024390244 0.046511628 0.033333333 0.066115702
##   Role-Playing 0.125000000 0.121951220 0.116279070 0.150000000 0.140495868
##   Shooter      0.000000000 0.073170732 0.069767442 0.033333333 0.090909091
##   Simulation   0.062500000 0.048780488 0.023255814 0.016666667 0.057851240
##   Sports       0.187500000 0.170731707 0.093023256 0.150000000 0.181818182
##   Strategy     0.000000000 0.097560976 0.069767442 0.033333333 0.049586777
##               Year
## Genre                 1995        1996        1997        1998        1999
##   Action       0.036529680 0.076045627 0.107266436 0.116094987 0.118343195
##   Adventure    0.059360731 0.064638783 0.048442907 0.060686016 0.056213018
##   Fighting     0.132420091 0.114068441 0.096885813 0.108179420 0.071005917
##   Misc         0.100456621 0.087452471 0.041522491 0.058047493 0.073964497
##   Platform     0.059360731 0.053231939 0.062283737 0.065963061 0.053254438
##   Puzzle       0.054794521 0.034220532 0.048442907 0.034300792 0.017751479
##   Racing       0.054794521 0.083650190 0.124567474 0.129287599 0.144970414
##   Role-Playing 0.109589041 0.106463878 0.079584775 0.068601583 0.097633136
##   Shooter      0.132420091 0.087452471 0.093425606 0.060686016 0.047337278
##   Simulation   0.063926941 0.049429658 0.065743945 0.021108179 0.059171598
##   Sports       0.132420091 0.197718631 0.159169550 0.184696570 0.183431953
##   Strategy     0.063926941 0.045627376 0.072664360 0.092348285 0.076923077
##               Year
## Genre                 2000        2001        2002        2003        2004
##   Action       0.126074499 0.139004149 0.150784077 0.185806452 0.163826999
##   Adventure    0.045845272 0.043568465 0.050663450 0.015483871 0.051114024
##   Fighting     0.083094556 0.037344398 0.065138721 0.056774194 0.051114024
##   Misc         0.057306590 0.053941909 0.054282268 0.068387097 0.111402359
##   Platform     0.068767908 0.089211618 0.092882992 0.112258065 0.086500655
##   Puzzle       0.034383954 0.031120332 0.024125452 0.010322581 0.032765400
##   Racing       0.123209169 0.147302905 0.124246080 0.140645161 0.093053735
##   Role-Playing 0.083094556 0.085062241 0.066344994 0.061935484 0.078636959
##   Shooter      0.057306590 0.074688797 0.095295537 0.094193548 0.115334207
##   Simulation   0.042979943 0.058091286 0.022919180 0.045161290 0.035386632
##   Sports       0.232091691 0.199170124 0.226779252 0.161290323 0.138925295
##   Strategy     0.045845272 0.041493776 0.026537998 0.047741935 0.041939712
##               Year
## Genre                 2005        2006        2007        2008        2009
##   Action       0.204038257 0.182539683 0.175540765 0.154761905 0.190076869
##   Adventure    0.044633369 0.070436508 0.069883527 0.116246499 0.098532495
##   Fighting     0.045696068 0.054563492 0.041597338 0.039915966 0.037037037
##   Misc         0.122210414 0.108134921 0.125623960 0.148459384 0.144654088
##   Platform     0.088204038 0.053571429 0.034941764 0.043417367 0.020265549
##   Puzzle       0.035069075 0.042658730 0.054908486 0.044817927 0.055206150
##   Racing       0.081827843 0.074404762 0.071547421 0.057422969 0.058700210
##   Role-Playing 0.075451647 0.109126984 0.085690516 0.078431373 0.071977638
##   Shooter      0.102019129 0.068452381 0.070715474 0.058123249 0.063591894
##   Simulation   0.040382572 0.057539683 0.074875208 0.083333333 0.085953878
##   Sports       0.129649309 0.136904762 0.138935108 0.140056022 0.128581412
##   Strategy     0.030818278 0.041666667 0.055740433 0.035014006 0.045422781
##               Year
## Genre                 2010        2011        2012        2013        2014
##   Action       0.179507546 0.209833187 0.404870624 0.271062271 0.319587629
##   Adventure    0.122319301 0.094820018 0.088280061 0.109890110 0.128865979
##   Fighting     0.031771247 0.043898156 0.044140030 0.036630037 0.039518900
##   Misc         0.159650516 0.161545215 0.057838661 0.076923077 0.070446735
##   Platform     0.024622716 0.032484636 0.018264840 0.067765568 0.017182131
##   Puzzle       0.035742653 0.037752414 0.016742770 0.005494505 0.013745704
##   Racing       0.045274027 0.057067603 0.045662100 0.029304029 0.046391753
##   Role-Playing 0.081810961 0.083406497 0.118721461 0.130036630 0.156357388
##   Shooter      0.064336775 0.082528534 0.073059361 0.108058608 0.080756014
##   Simulation   0.065131056 0.049165935 0.027397260 0.032967033 0.018900344
##   Sports       0.147736299 0.107111501 0.082191781 0.097069597 0.094501718
##   Strategy     0.042096902 0.040386304 0.022831050 0.034798535 0.013745704
##               Year
## Genre                 2015        2016        2017        2020         N/A
##   Action       0.415309446 0.345930233 0.333333333 0.000000000 0.232472325
##   Adventure    0.087947883 0.098837209 0.000000000 0.000000000 0.036900369
##   Fighting     0.034201954 0.040697674 0.000000000 0.000000000 0.044280443
##   Misc         0.063517915 0.052325581 0.000000000 0.000000000 0.107011070
##   Platform     0.022801303 0.029069767 0.000000000 0.000000000 0.036900369
##   Puzzle       0.009771987 0.000000000 0.000000000 0.000000000 0.040590406
##   Racing       0.030944625 0.058139535 0.000000000 0.000000000 0.084870849
##   Role-Playing 0.127035831 0.116279070 0.666666667 0.000000000 0.062730627
##   Shooter      0.055374593 0.093023256 0.000000000 0.000000000 0.103321033
##   Simulation   0.024429967 0.026162791 0.000000000 1.000000000 0.059040590
##   Sports       0.100977199 0.110465116 0.000000000 0.000000000 0.154981550
##   Strategy     0.027687296 0.029069767 0.000000000 0.000000000 0.036900369

Action games have been an all-time favourite, however, misc, role playing and adventure games are also gaining popularity in the recent years.

myTable <-xtabs(~Publisher+Year)
addmargins(myTable)
##                                         Year
## Publisher                                 1980  1981  1982  1983  1984
##   10TACLE Studios                            0     0     0     0     0
##   1C Company                                 0     0     0     0     0
##   20th Century Fox Video Games               0     3     2     0     0
##   2D Boy                                     0     0     0     0     0
##   3DO                                        0     0     0     0     0
##   49Games                                    0     0     0     0     0
##   505 Games                                  0     0     0     0     0
##   5pb                                        0     0     0     0     0
##   7G//AMES                                   0     0     0     0     0
##   989 Sports                                 0     0     0     0     0
##   989 Studios                                0     0     0     0     0
##   Abylight                                   0     0     0     0     0
##   Acclaim Entertainment                      0     0     0     0     0
##   Accolade                                   0     0     0     0     0
##   Ackkstudios                                0     0     0     0     0
##   Acquire                                    0     0     0     0     0
##   Activision                                 5     6     4     3     1
##   Activision Blizzard                        0     0     0     0     0
##   Activision Value                           0     0     0     0     0
##   Adeline Software                           0     0     0     0     0
##   Aerosoft                                   0     0     0     0     0
##   Agatsuma Entertainment                     0     0     0     0     0
##   Agetec                                     0     0     0     0     0
##   Aksys Games                                0     0     0     0     0
##   Alawar Entertainment                       0     0     0     0     0
##   Alchemist                                  0     0     0     0     0
##   Alternative Software                       0     0     0     0     0
##   Altron                                     0     0     0     0     0
##   Alvion                                     0     0     0     0     0
##   American Softworks                         0     0     0     0     0
##   Angel Studios                              0     0     0     0     0
##   Answer Software                            0     0     1     0     0
##   AQ Interactive                             0     0     0     0     0
##   Aqua Plus                                  0     0     0     0     0
##   Aques                                      0     0     0     0     0
##   Arc System Works                           0     0     0     0     0
##   Arena Entertainment                        0     0     0     0     0
##   Aria                                       0     0     0     0     0
##   Arika                                      0     0     0     0     0
##   ArtDink                                    0     0     0     0     0
##   Aruze Corp                                 0     0     0     0     0
##   ASC Games                                  0     0     0     0     0
##   Ascaron Entertainment                      0     0     0     0     0
##   Ascaron Entertainment GmbH                 0     0     0     0     0
##   ASCII Entertainment                        0     0     0     0     0
##   ASCII Media Works                          0     0     0     0     0
##   Asgard                                     0     0     0     0     0
##   ASK                                        0     0     0     0     0
##   Asmik Ace Entertainment                    0     0     0     0     0
##   Asmik Corp                                 0     0     0     0     0
##   Aspyr                                      0     0     0     0     0
##   Astragon                                   0     0     0     0     0
##   Asylum Entertainment                       0     0     0     0     0
##   Atari                                      4    11    14     6     0
##   Athena                                     0     0     0     0     0
##   Atlus                                      0     0     0     0     0
##   Avalon Interactive                         0     0     1     0     0
##   Avanquest                                  0     0     0     0     0
##   Avanquest Software                         0     0     0     0     0
##   Axela                                      0     0     0     0     0
##   BAM! Entertainment                         0     0     0     0     0
##   Banpresto                                  0     0     0     0     0
##   Benesse                                    0     0     0     0     0
##   Berkeley                                   0     0     0     0     0
##   Bethesda Softworks                         0     0     0     0     0
##   Big Ben Interactive                        0     0     0     0     0
##   Big Fish Games                             0     0     0     0     0
##   Bigben Interactive                         0     0     0     0     0
##   bitComposer Games                          0     0     0     0     0
##   Black Bean Games                           0     0     0     0     0
##   Black Label Games                          0     0     0     0     0
##   Blast! Entertainment Ltd                   0     0     0     0     0
##   Blue Byte                                  0     0     0     0     0
##   BMG Interactive Entertainment              0     0     0     0     0
##   Bohemia Interactive                        0     0     0     0     0
##   Bomb                                       0     0     1     0     0
##   Boost On                                   0     0     0     0     0
##   BPS                                        0     0     0     0     0
##   Brash Entertainment                        0     0     0     0     0
##   Broccoli                                   0     0     0     0     0
##   BushiRoad                                  0     0     0     0     0
##   Capcom                                     0     0     0     0     0
##   Cave                                       0     0     0     0     0
##   CBS Electronics                            0     0     1     0     0
##   CCP                                        0     0     0     0     0
##   CDV Software Entertainment                 0     0     0     0     0
##   ChunSoft                                   0     0     0     0     0
##   City Interactive                           0     0     0     0     0
##   Cloud Imperium Games Corporation           0     0     0     0     0
##   Coconuts Japan                             0     0     0     0     0
##   Codemasters                                0     0     0     0     0
##   Codemasters Online                         0     0     0     0     0
##   CokeM Interactive                          0     0     0     0     0
##   Coleco                                     0     4     1     0     0
##   Comfort                                    0     0     0     0     0
##   Commseed                                   0     0     0     0     0
##   Compile                                    0     0     0     0     0
##   Compile Heart                              0     0     0     0     0
##   Conspiracy Entertainment                   0     0     0     0     0
##   Core Design Ltd.                           0     0     0     0     0
##   CPG Products                               0     0     1     0     0
##   Crave Entertainment                        0     0     0     0     0
##   Creative Core                              0     0     0     0     0
##   Crimson Cow                                0     0     0     0     0
##   Crystal Dynamics                           0     0     0     0     0
##   CTO SpA                                    0     0     0     0     0
##   Culture Brain                              0     0     0     0     0
##   Culture Publishers                         0     0     0     0     0
##   CyberFront                                 0     0     0     0     0
##   Cygames                                    0     0     0     0     0
##   D3Publisher                                0     0     0     0     0
##   Daedalic                                   0     0     0     0     0
##   Daedalic Entertainment                     0     0     0     0     0
##   Daito                                      0     0     0     0     0
##   Data Age                                   0     1     1     0     0
##   Data Design Interactive                    0     0     0     0     0
##   Data East                                  0     0     0     0     0
##   Datam Polystar                             0     0     0     0     0
##   Deep Silver                                0     0     0     0     0
##   Destination Software, Inc                  0     0     0     0     0
##   Destineer                                  0     0     0     0     0
##   Detn8 Games                                0     0     0     0     0
##   Devolver Digital                           0     0     0     0     0
##   DHM Interactive                            0     0     0     0     0
##   DigiCube                                   0     0     0     0     0
##   Disney Interactive Studios                 0     0     0     0     0
##   Dorart                                     0     0     0     0     0
##   dramatic create                            0     0     0     0     0
##   DreamCatcher Interactive                   0     0     0     0     0
##   DreamWorks Interactive                     0     0     0     0     0
##   DSI Games                                  0     0     0     0     0
##   DTP Entertainment                          0     0     0     0     0
##   Dusenberry Martin Racing                   0     0     0     0     0
##   EA Games                                   0     0     0     0     0
##   Easy Interactive                           0     0     0     0     0
##   Ecole                                      0     0     0     0     0
##   Edia                                       0     0     0     0     0
##   Eidos Interactive                          0     0     0     0     0
##   Electronic Arts                            0     0     0     0     0
##   Electronic Arts Victor                     0     0     0     0     0
##   Elf                                        0     0     0     0     0
##   Elite                                      0     0     0     0     0
##   Empire Interactive                         0     0     0     0     0
##   Encore                                     0     0     0     0     0
##   Enix Corporation                           0     0     0     0     0
##   Enjoy Gaming ltd.                          0     0     0     0     0
##   Enterbrain                                 0     0     0     0     0
##   EON Digital Entertainment                  0     0     0     0     0
##   Epic Games                                 0     0     0     0     0
##   Epoch                                      0     0     0     0     0
##   Ertain                                     0     0     0     0     0
##   ESP                                        0     0     0     0     0
##   Essential Games                            0     0     0     0     0
##   Evolution Games                            0     0     0     0     0
##   Evolved Games                              0     0     0     0     0
##   Excalibur Publishing                       0     0     0     0     0
##   Experience Inc.                            0     0     0     0     0
##   Extreme Entertainment Group                0     0     0     0     0
##   Falcom Corporation                         0     0     0     0     0
##   Fields                                     0     0     0     0     0
##   Flashpoint Games                           0     0     0     0     0
##   Flight-Plan                                0     0     0     0     0
##   Focus Home Interactive                     0     0     0     0     0
##   Focus Multimedia                           0     0     0     0     0
##   fonfun                                     0     0     0     0     0
##   Foreign Media Games                        0     0     0     0     0
##   Fortyfive                                  0     0     0     0     0
##   Fox Interactive                            0     0     0     0     0
##   From Software                              0     0     0     0     0
##   Fuji                                       0     0     0     0     0
##   Funbox Media                               0     0     0     0     0
##   Funcom                                     0     0     0     0     0
##   FunSoft                                    0     0     0     0     0
##   Funsta                                     0     0     0     0     0
##   FuRyu                                      0     0     0     0     0
##   FuRyu Corporation                          0     0     0     0     0
##   G.Rev                                      0     0     0     0     0
##   Gaga                                       0     0     0     0     0
##   Gainax Network Systems                     0     0     0     0     0
##   Gakken                                     0     0     0     0     0
##   Game Arts                                  0     0     0     0     0
##   Game Factory                               0     0     0     0     0
##   Game Life                                  0     0     0     0     0
##   Gamebridge                                 0     0     0     0     0
##   Gamecock                                   0     0     0     0     0
##   Gameloft                                   0     0     0     0     0
##   GameMill Entertainment                     0     0     0     0     0
##   GameTek                                    0     0     0     0     0
##   Gathering of Developers                    0     0     0     0     0
##   General Entertainment                      0     0     0     0     0
##   Genki                                      0     0     0     0     0
##   Genterprise                                0     0     0     0     0
##   Ghostlight                                 0     0     0     0     0
##   Giga                                       0     0     0     0     0
##   Giza10                                     0     0     0     0     0
##   Glams                                      0     0     0     0     0
##   Global A Entertainment                     0     0     0     0     0
##   Global Star                                0     0     0     0     0
##   GN Software                                0     0     0     0     0
##   GOA                                        0     0     0     0     0
##   Gotham Games                               0     0     0     0     0
##   Graffiti                                   0     0     0     0     0
##   Grand Prix Games                           0     0     0     0     0
##   Graphsim Entertainment                     0     0     0     0     0
##   Gremlin Interactive Ltd                    0     0     0     0     0
##   Griffin International                      0     0     0     0     0
##   Groove Games                               0     0     0     0     0
##   GSP                                        0     0     0     0     0
##   GT Interactive                             0     0     0     0     0
##   GungHo                                     0     0     0     0     0
##   Gust                                       0     0     0     0     0
##   Hackberry                                  0     0     0     0     0
##   HAL Laboratory                             0     0     0     0     0
##   Hamster Corporation                        0     0     0     0     0
##   Happinet                                   0     0     0     0     0
##   Harmonix Music Systems                     0     0     0     0     0
##   Hasbro Interactive                         0     0     0     0     0
##   Havas Interactive                          0     0     0     0     0
##   Headup Games                               0     0     0     0     0
##   Hearty Robin                               0     0     0     0     0
##   Hect                                       0     0     0     0     0
##   Hello Games                                0     0     0     0     0
##   Her Interactive                            0     0     0     0     0
##   Hip Interactive                            0     0     0     0     0
##   HMH Interactive                            0     0     0     0     0
##   Home Entertainment Suppliers               0     0     0     0     0
##   Hudson Entertainment                       0     0     0     0     0
##   Hudson Soft                                0     0     0     0     1
##   Human Entertainment                        0     0     0     0     0
##   HuneX                                      0     0     0     0     0
##   Iceberg Interactive                        0     0     0     0     0
##   id Software                                0     0     0     0     0
##   Idea Factory                               0     0     0     0     0
##   Idea Factory International                 0     0     0     0     0
##   IE Institute                               0     0     0     0     0
##   Ignition Entertainment                     0     0     0     0     0
##   Illusion Softworks                         0     0     0     0     0
##   Imadio                                     0     0     0     0     0
##   Image Epoch                                0     0     0     0     0
##   imageepoch Inc.                            0     0     0     0     0
##   Imageworks                                 0     0     0     0     0
##   Imagic                                     0     4     0     0     0
##   Imagineer                                  0     0     0     0     0
##   Imax                                       0     0     0     0     0
##   Indie Games                                0     0     0     0     0
##   Infogrames                                 0     0     0     0     0
##   Insomniac Games                            0     0     0     0     0
##   Interchannel                               0     0     0     0     0
##   Interchannel-Holon                         0     0     0     0     0
##   Intergrow                                  0     0     0     0     0
##   Interplay                                  0     0     0     0     0
##   Interplay Productions                      0     0     0     0     0
##   Interworks Unlimited, Inc.                 0     0     0     0     0
##   Inti Creates                               0     0     0     0     0
##   Introversion Software                      0     0     0     0     0
##   inXile Entertainment                       0     0     0     0     0
##   Irem Software Engineering                  0     0     0     0     0
##   ITT Family Games                           0     0     1     0     0
##   Ivolgamus                                  0     0     0     0     0
##   iWin                                       0     0     0     0     0
##   Jack of All Games                          0     0     0     0     0
##   Jaleco                                     0     0     0     0     0
##   Jester Interactive                         0     0     0     0     0
##   Jorudan                                    0     0     0     0     0
##   JoWood Productions                         0     0     0     0     0
##   Just Flight                                0     0     0     0     0
##   JVC                                        0     0     0     0     0
##   Kadokawa Games                             0     0     0     0     0
##   Kadokawa Shoten                            0     0     0     0     0
##   Kaga Create                                0     0     0     0     0
##   Kalypso Media                              0     0     0     0     0
##   Kamui                                      0     0     0     0     0
##   Kando Games                                0     0     0     0     0
##   Karin Entertainment                        0     0     0     0     0
##   Kemco                                      0     0     0     0     0
##   KID                                        0     0     0     0     0
##   Kids Station                               0     0     0     0     0
##   King Records                               0     0     0     0     0
##   Knowledge Adventure                        0     0     0     0     0
##   Koch Media                                 0     0     0     0     0
##   Kokopeli Digital Studios                   0     0     0     0     0
##   Konami Digital Entertainment               0     0     0     0     0
##   Kool Kizz                                  0     0     0     0     0
##   KSS                                        0     0     0     0     0
##   Laguna                                     0     0     0     0     0
##   Legacy Interactive                         0     0     0     0     0
##   LEGO Media                                 0     0     0     0     0
##   Level 5                                    0     0     0     0     0
##   Lexicon Entertainment                      0     0     0     0     0
##   Licensed 4U                                0     0     0     0     0
##   Lighthouse Interactive                     0     0     0     0     0
##   Liquid Games                               0     0     0     0     0
##   Little Orbit                               0     0     0     0     0
##   Locus                                      0     0     0     0     0
##   LSP Games                                  0     0     0     0     0
##   LucasArts                                  0     0     0     0     0
##   Mad Catz                                   0     0     0     0     0
##   Magical Company                            0     0     0     0     0
##   Magix                                      0     0     0     0     0
##   Majesco Entertainment                      0     0     0     0     0
##   Mamba Games                                0     0     0     0     0
##   Marvel Entertainment                       0     0     0     0     0
##   Marvelous Entertainment                    0     0     0     0     0
##   Marvelous Games                            0     0     0     0     0
##   Marvelous Interactive                      0     0     0     0     0
##   Masque Publishing                          0     0     0     0     0
##   Mastertronic                               0     0     0     0     0
##   Mastiff                                    0     0     0     0     0
##   Mattel Interactive                         0     7     1     0     0
##   Max Five                                   0     0     0     0     0
##   Maximum Family Games                       0     0     0     0     0
##   Maxis                                      0     0     0     0     0
##   MC2 Entertainment                          0     0     0     0     0
##   Media Entertainment                        0     0     0     0     0
##   Media Factory                              0     0     0     0     0
##   Media Rings                                0     0     0     0     0
##   Media Works                                0     0     0     0     0
##   MediaQuest                                 0     0     0     0     0
##   Men-A-Vision                               0     1     0     0     0
##   Mentor Interactive                         0     0     0     0     0
##   Mercury Games                              0     0     0     0     0
##   Merscom LLC                                0     0     0     0     0
##   Metro 3D                                   0     0     0     0     0
##   Michaelsoft                                0     0     0     0     0
##   Micro Cabin                                0     0     0     0     0
##   Microids                                   0     0     0     0     0
##   Microprose                                 0     0     0     0     0
##   Microsoft Game Studios                     0     0     0     0     0
##   Midas Interactive Entertainment            0     0     0     0     0
##   Midway Games                               0     0     0     0     0
##   Milestone                                  0     0     0     0     0
##   Milestone S.r.l                            0     0     0     0     0
##   Milestone S.r.l.                           0     0     0     0     0
##   Minato Station                             0     0     0     0     0
##   Mindscape                                  0     0     0     0     0
##   Mirai Shounen                              0     0     0     0     0
##   Misawa                                     0     0     0     0     0
##   Mitsui                                     0     0     0     0     0
##   mixi, Inc                                  0     0     0     0     0
##   MLB.com                                    0     0     0     0     0
##   Mojang                                     0     0     0     0     0
##   Monte Christo Multimedia                   0     0     0     0     0
##   Moss                                       0     0     0     0     0
##   MTO                                        0     0     0     0     0
##   MTV Games                                  0     0     0     0     0
##   Mud Duck Productions                       0     0     0     0     0
##   Mumbo Jumbo                                0     0     0     0     0
##   Mycom                                      0     0     0     0     0
##   Myelin Media                               0     0     0     0     0
##   Mystique                                   0     1     0     0     0
##   N/A                                        0     0     0     0     0
##   Namco Bandai Games                         0     0     0     0     3
##   Natsume                                    0     0     0     0     0
##   Navarre Corp                               0     0     0     0     0
##   Naxat Soft                                 0     0     0     0     0
##   NCS                                        0     0     0     0     0
##   NCSoft                                     0     0     0     0     0
##   NDA Productions                            0     0     0     0     0
##   NEC                                        0     0     0     0     0
##   NEC Interchannel                           0     0     0     0     0
##   Neko Entertainment                         0     0     0     0     0
##   NetRevo                                    0     0     0     0     0
##   New                                        0     0     0     0     0
##   New World Computing                        0     0     0     0     0
##   NewKidCo                                   0     0     0     0     0
##   Nexon                                      0     0     0     0     0
##   Nichibutsu                                 0     0     0     0     0
##   Nihon Falcom Corporation                   0     0     0     0     0
##   Nintendo                                   0     0     0     6     9
##   Nippon Amuse                               0     0     0     0     0
##   Nippon Columbia                            0     0     0     0     0
##   Nippon Ichi Software                       0     0     0     0     0
##   Nippon Telenet                             0     0     0     0     0
##   Nitroplus                                  0     0     0     0     0
##   Nobilis                                    0     0     0     0     0
##   Nordcurrent                                0     0     0     0     0
##   Nordic Games                               0     0     0     0     0
##   NovaLogic                                  0     0     0     0     0
##   Number None                                0     0     0     0     0
##   O-Games                                    0     0     0     0     0
##   O3 Entertainment                           0     0     0     0     0
##   Ocean                                      0     0     0     0     0
##   Office Create                              0     0     0     0     0
##   On Demand                                  0     0     0     0     0
##   Ongakukan                                  0     0     0     0     0
##   Origin Systems                             0     0     0     0     0
##   Otomate                                    0     0     0     0     0
##   Oxygen Interactive                         0     0     0     0     0
##   P2 Games                                   0     0     0     0     0
##   Pacific Century Cyber Works                0     0     0     0     0
##   Pack-In-Video                              0     0     0     0     0
##   Pack In Soft                               0     0     0     0     0
##   Palcom                                     0     0     0     0     0
##   Panther Software                           0     0     0     0     0
##   Paon                                       0     0     0     0     0
##   Paon Corporation                           0     0     0     0     0
##   Paradox Development                        0     0     0     0     0
##   Paradox Interactive                        0     0     0     0     0
##   Parker Bros.                               0     3     2     2     0
##   Performance Designed Products              0     0     0     0     0
##   Phantagram                                 0     0     0     0     0
##   Phantom EFX                                0     0     0     0     0
##   Phenomedia                                 0     0     0     0     0
##   Phoenix Games                              0     0     0     0     0
##   Piacci                                     0     0     0     0     0
##   Pinnacle                                   0     0     0     0     0
##   Pioneer LDC                                0     0     0     0     0
##   Play It                                    0     0     0     0     0
##   Playlogic Game Factory                     0     0     0     0     0
##   Playmates                                  0     0     0     0     0
##   Playmore                                   0     0     0     0     0
##   PlayV                                      0     0     0     0     0
##   Plenty                                     0     0     0     0     0
##   PM Studios                                 0     0     0     0     0
##   Pony Canyon                                0     0     0     0     0
##   PopCap Games                               0     0     0     0     0
##   Popcorn Arcade                             0     0     0     0     0
##   PopTop Software                            0     0     0     0     0
##   Pow                                        0     0     0     0     0
##   PQube                                      0     0     0     0     0
##   Princess Soft                              0     0     0     0     0
##   Prototype                                  0     0     0     0     0
##   Psygnosis                                  0     0     0     0     0
##   Quelle                                     0     0     1     0     0
##   Quest                                      0     0     0     0     0
##   Quinrose                                   0     0     0     0     0
##   Quintet                                    0     0     0     0     0
##   Rage Software                              0     0     0     0     0
##   Rain Games                                 0     0     0     0     0
##   Rebellion                                  0     0     0     0     0
##   Rebellion Developments                     0     0     0     0     0
##   RED Entertainment                          0     0     0     0     0
##   Red Orb                                    0     0     0     0     0
##   Red Storm Entertainment                    0     0     0     0     0
##   RedOctane                                  0     0     0     0     0
##   Reef Entertainment                         0     0     0     0     0
##   responDESIGN                               0     0     0     0     0
##   Revolution (Japan)                         0     0     0     0     0
##   Revolution Software                        0     0     0     0     0
##   Rising Star Games                          0     0     0     0     0
##   Riverhillsoft                              0     0     0     0     0
##   Rocket Company                             0     0     0     0     0
##   Rondomedia                                 0     0     0     0     0
##   RTL                                        0     0     0     0     0
##   Russel                                     0     0     0     0     0
##   Sammy Corporation                          0     0     0     0     0
##   Saurus                                     0     0     0     0     0
##   Scholastic Inc.                            0     0     0     0     0
##   SCi                                        0     0     0     0     0
##   Screenlife                                 0     0     0     0     0
##   SCS Software                               0     0     0     0     0
##   Sears                                      0     0     0     0     0
##   Sega                                       0     0     1     0     0
##   Seta Corporation                           0     0     0     0     0
##   Seventh Chord                              0     0     0     0     0
##   Shogakukan                                 0     0     0     0     0
##   Simon & Schuster Interactive               0     0     0     0     0
##   Slightly Mad Studios                       0     0     0     0     0
##   Slitherine Software                        0     0     0     0     0
##   SNK                                        0     0     0     0     0
##   SNK Playmore                               0     0     0     0     0
##   Societa                                    0     0     0     0     0
##   Sold Out                                   0     0     0     0     0
##   Sonnet                                     0     0     0     0     0
##   Sony Computer Entertainment                0     0     0     0     0
##   Sony Computer Entertainment America        0     0     0     0     0
##   Sony Computer Entertainment Europe         0     0     0     0     0
##   Sony Music Entertainment                   0     0     0     0     0
##   Sony Online Entertainment                  0     0     0     0     0
##   SouthPeak Games                            0     0     0     0     0
##   Spike                                      0     0     0     0     0
##   SPS                                        0     0     0     0     0
##   Square                                     0     0     0     0     0
##   Square EA                                  0     0     0     0     0
##   Square Enix                                0     0     0     0     0
##   SquareSoft                                 0     0     0     0     0
##   SSI                                        0     0     0     0     0
##   Stainless Games                            0     0     0     0     0
##   Starfish                                   0     0     0     0     0
##   Starpath Corp.                             0     1     0     0     0
##   Sting                                      0     0     0     0     0
##   Storm City Games                           0     0     0     0     0
##   Strategy First                             0     0     0     0     0
##   Success                                    0     0     0     0     0
##   Summitsoft                                 0     0     0     0     0
##   Sunflowers                                 0     0     0     0     0
##   Sunrise Interactive                        0     0     0     0     0
##   Sunsoft                                    0     0     0     0     0
##   Sweets                                     0     0     0     0     0
##   Swing! Entertainment                       0     0     0     0     0
##   Syscom                                     0     0     0     0     0
##   System 3                                   0     0     0     0     0
##   System 3 Arcade Software                   0     0     0     0     0
##   System Soft                                0     0     0     0     0
##   T&E Soft                                   0     0     0     0     0
##   Taito                                      0     1     0     0     0
##   Takara                                     0     0     0     0     0
##   Takara Tomy                                0     0     0     0     0
##   Take-Two Interactive                       0     0     0     0     0
##   Takuyo                                     0     0     0     0     0
##   TalonSoft                                  0     0     0     0     0
##   TDK Core                                   0     0     0     0     0
##   TDK Mediactive                             0     0     0     0     0
##   Team17 Software                            0     0     0     0     0
##   Technos Japan Corporation                  0     0     0     0     0
##   TechnoSoft                                 0     0     0     0     0
##   Tecmo Koei                                 0     0     0     0     0
##   Telegames                                  0     0     0     0     0
##   Telltale Games                             0     0     0     0     0
##   Telstar                                    0     0     0     0     0
##   Tetris Online                              0     0     0     0     0
##   TGL                                        0     0     0     0     0
##   The Adventure Company                      0     0     0     0     0
##   The Learning Company                       0     0     0     0     0
##   THQ                                        0     0     0     0     0
##   Tigervision                                0     2     1     0     0
##   Time Warner Interactive                    0     0     0     0     0
##   Titus                                      0     0     0     0     0
##   Tivola                                     0     0     0     0     0
##   TOHO                                       0     0     0     0     0
##   Tommo                                      0     0     0     0     0
##   Tomy Corporation                           0     0     0     0     0
##   TopWare Interactive                        0     0     0     0     0
##   Touchstone                                 0     0     0     0     0
##   Tradewest                                  0     0     0     0     0
##   Trion Worlds                               0     0     0     0     0
##   Tripwire Interactive                       0     0     0     0     0
##   Tru Blu Entertainment                      0     0     0     0     0
##   Tryfirst                                   0     0     0     0     0
##   TYO                                        0     0     0     0     0
##   Type-Moon                                  0     0     0     0     0
##   U.S. Gold                                  0     0     0     0     0
##   Ubisoft                                    0     0     0     0     0
##   Ubisoft Annecy                             0     0     0     0     0
##   UEP Systems                                0     0     0     0     0
##   UFO Interactive                            0     0     0     0     0
##   UIG Entertainment                          0     0     0     0     0
##   Ultravision                                0     0     0     0     0
##   Universal Gamex                            0     0     1     0     0
##   Universal Interactive                      0     0     0     0     0
##   Unknown                                    0     1     0     0     0
##   Valcon Games                               0     0     0     0     0
##   ValuSoft                                   0     0     0     0     0
##   Valve                                      0     0     0     0     0
##   Valve Software                             0     0     0     0     0
##   Vap                                        0     0     0     0     0
##   Vatical Entertainment                      0     0     0     0     0
##   Vic Tokai                                  0     0     0     0     0
##   Victor Interactive                         0     0     0     0     0
##   Video System                               0     0     0     0     0
##   Views                                      0     0     0     0     0
##   Vir2L Studios                              0     0     0     0     0
##   Virgin Interactive                         0     0     0     0     0
##   Virtual Play Games                         0     0     0     0     0
##   Visco                                      0     0     0     0     0
##   Vivendi Games                              0     0     0     0     0
##   Wanadoo                                    0     0     0     0     0
##   Warashi                                    0     0     0     0     0
##   Wargaming.net                              0     0     0     0     0
##   Warner Bros. Interactive Entertainment     0     0     0     0     0
##   Warp                                       0     0     0     0     0
##   WayForward Technologies                    0     0     0     0     0
##   Westwood Studios                           0     0     0     0     0
##   White Park Bay Software                    0     0     0     0     0
##   Wizard Video Games                         0     0     1     0     0
##   Xicat Interactive                          0     0     0     0     0
##   Xing Entertainment                         0     0     0     0     0
##   Xplosiv                                    0     0     0     0     0
##   XS Games                                   0     0     0     0     0
##   Xseed Games                                0     0     0     0     0
##   Yacht Club Games                           0     0     0     0     0
##   Yamasa Entertainment                       0     0     0     0     0
##   Yeti                                       0     0     0     0     0
##   Yuke's                                     0     0     0     0     0
##   Yumedia                                    0     0     0     0     0
##   Zenrin                                     0     0     0     0     0
##   Zoo Digital Publishing                     0     0     0     0     0
##   Zoo Games                                  0     0     0     0     0
##   Zushi Games                                0     0     0     0     0
##   Sum                                        9    46    36    17    14
##                                         Year
## Publisher                                 1985  1986  1987  1988  1989
##   10TACLE Studios                            0     0     0     0     0
##   1C Company                                 0     0     0     0     0
##   20th Century Fox Video Games               0     0     0     0     0
##   2D Boy                                     0     0     0     0     0
##   3DO                                        0     0     0     0     0
##   49Games                                    0     0     0     0     0
##   505 Games                                  0     0     0     0     0
##   5pb                                        0     0     0     0     0
##   7G//AMES                                   0     0     0     0     0
##   989 Sports                                 0     0     0     0     0
##   989 Studios                                0     0     0     0     0
##   Abylight                                   0     0     0     0     0
##   Acclaim Entertainment                      0     0     0     0     0
##   Accolade                                   0     0     0     0     0
##   Ackkstudios                                0     0     0     0     0
##   Acquire                                    0     0     0     0     0
##   Activision                                 2     0     2     2     1
##   Activision Blizzard                        0     0     0     0     0
##   Activision Value                           0     0     0     0     0
##   Adeline Software                           0     0     0     0     0
##   Aerosoft                                   0     0     0     0     0
##   Agatsuma Entertainment                     0     0     0     0     0
##   Agetec                                     0     0     0     0     0
##   Aksys Games                                0     0     0     0     0
##   Alawar Entertainment                       0     0     0     0     0
##   Alchemist                                  0     0     0     0     0
##   Alternative Software                       0     0     0     0     0
##   Altron                                     0     0     0     0     0
##   Alvion                                     0     0     0     0     0
##   American Softworks                         0     0     0     0     0
##   Angel Studios                              0     0     0     0     0
##   Answer Software                            0     0     0     0     0
##   AQ Interactive                             0     0     0     0     0
##   Aqua Plus                                  0     0     0     0     0
##   Aques                                      0     0     0     0     0
##   Arc System Works                           0     0     0     0     0
##   Arena Entertainment                        0     0     0     0     0
##   Aria                                       0     0     0     0     0
##   Arika                                      0     0     0     0     0
##   ArtDink                                    0     0     0     0     0
##   Aruze Corp                                 0     0     0     0     0
##   ASC Games                                  0     0     0     0     0
##   Ascaron Entertainment                      0     0     0     0     0
##   Ascaron Entertainment GmbH                 0     0     0     0     0
##   ASCII Entertainment                        0     0     0     0     0
##   ASCII Media Works                          0     0     0     0     0
##   Asgard                                     0     0     0     0     0
##   ASK                                        0     0     0     0     0
##   Asmik Ace Entertainment                    0     0     0     0     0
##   Asmik Corp                                 0     0     0     0     0
##   Aspyr                                      0     0     0     0     0
##   Astragon                                   0     0     0     0     0
##   Asylum Entertainment                       0     0     0     0     0
##   Atari                                      0     2     4     0     1
##   Athena                                     0     0     0     0     0
##   Atlus                                      0     0     0     0     0
##   Avalon Interactive                         0     0     0     0     0
##   Avanquest                                  0     0     0     0     0
##   Avanquest Software                         0     0     0     0     0
##   Axela                                      0     0     0     0     0
##   BAM! Entertainment                         0     0     0     0     0
##   Banpresto                                  0     0     0     0     0
##   Benesse                                    0     0     0     0     0
##   Berkeley                                   0     0     0     0     0
##   Bethesda Softworks                         0     0     0     0     0
##   Big Ben Interactive                        0     0     0     0     0
##   Big Fish Games                             0     0     0     0     0
##   Bigben Interactive                         0     0     0     0     0
##   bitComposer Games                          0     0     0     0     0
##   Black Bean Games                           0     0     0     0     0
##   Black Label Games                          0     0     0     0     0
##   Blast! Entertainment Ltd                   0     0     0     0     0
##   Blue Byte                                  0     0     0     0     0
##   BMG Interactive Entertainment              0     0     0     0     0
##   Bohemia Interactive                        0     0     0     0     0
##   Bomb                                       0     0     0     0     0
##   Boost On                                   0     0     0     0     0
##   BPS                                        0     0     0     0     0
##   Brash Entertainment                        0     0     0     0     0
##   Broccoli                                   0     0     0     0     0
##   BushiRoad                                  0     0     0     0     0
##   Capcom                                     1     3     1     2     1
##   Cave                                       0     0     0     0     0
##   CBS Electronics                            0     0     0     0     0
##   CCP                                        0     0     0     0     0
##   CDV Software Entertainment                 0     0     0     0     0
##   ChunSoft                                   0     0     0     0     0
##   City Interactive                           0     0     0     0     0
##   Cloud Imperium Games Corporation           0     0     0     0     0
##   Coconuts Japan                             0     0     0     0     0
##   Codemasters                                0     0     0     0     0
##   Codemasters Online                         0     0     0     0     0
##   CokeM Interactive                          0     0     0     0     0
##   Coleco                                     0     0     0     0     0
##   Comfort                                    0     0     0     0     0
##   Commseed                                   0     0     0     0     0
##   Compile                                    0     0     0     0     0
##   Compile Heart                              0     0     0     0     0
##   Conspiracy Entertainment                   0     0     0     0     0
##   Core Design Ltd.                           0     0     0     0     0
##   CPG Products                               0     0     0     0     0
##   Crave Entertainment                        0     0     0     0     0
##   Creative Core                              0     0     0     0     0
##   Crimson Cow                                0     0     0     0     0
##   Crystal Dynamics                           0     0     0     0     0
##   CTO SpA                                    0     0     0     0     0
##   Culture Brain                              0     0     0     0     0
##   Culture Publishers                         0     0     0     0     0
##   CyberFront                                 0     0     0     0     0
##   Cygames                                    0     0     0     0     0
##   D3Publisher                                0     0     0     0     0
##   Daedalic                                   0     0     0     0     0
##   Daedalic Entertainment                     0     0     0     0     0
##   Daito                                      0     0     0     0     0
##   Data Age                                   0     0     0     0     0
##   Data Design Interactive                    0     0     0     0     0
##   Data East                                  0     0     0     0     0
##   Datam Polystar                             0     0     0     0     0
##   Deep Silver                                0     0     0     0     0
##   Destination Software, Inc                  0     0     0     0     0
##   Destineer                                  0     0     0     0     0
##   Detn8 Games                                0     0     0     0     0
##   Devolver Digital                           0     0     0     0     0
##   DHM Interactive                            0     0     0     0     0
##   DigiCube                                   0     0     0     0     0
##   Disney Interactive Studios                 0     0     0     0     0
##   Dorart                                     0     0     0     0     0
##   dramatic create                            0     0     0     0     0
##   DreamCatcher Interactive                   0     0     0     0     0
##   DreamWorks Interactive                     0     0     0     0     0
##   DSI Games                                  0     0     0     0     0
##   DTP Entertainment                          0     0     0     0     0
##   Dusenberry Martin Racing                   0     0     0     0     0
##   EA Games                                   0     0     0     0     0
##   Easy Interactive                           0     0     0     0     0
##   Ecole                                      0     0     0     0     0
##   Edia                                       0     0     0     0     0
##   Eidos Interactive                          0     0     0     0     0
##   Electronic Arts                            0     0     0     0     0
##   Electronic Arts Victor                     0     0     0     0     0
##   Elf                                        0     0     0     0     0
##   Elite                                      0     0     0     0     0
##   Empire Interactive                         0     0     0     0     0
##   Encore                                     0     0     0     0     0
##   Enix Corporation                           0     0     1     1     0
##   Enjoy Gaming ltd.                          0     0     0     0     0
##   Enterbrain                                 0     0     0     0     0
##   EON Digital Entertainment                  0     0     0     0     0
##   Epic Games                                 0     0     0     0     0
##   Epoch                                      0     0     0     0     0
##   Ertain                                     0     0     0     0     0
##   ESP                                        0     0     0     0     0
##   Essential Games                            0     0     0     0     0
##   Evolution Games                            0     0     0     0     0
##   Evolved Games                              0     0     0     0     0
##   Excalibur Publishing                       0     0     0     0     0
##   Experience Inc.                            0     0     0     0     0
##   Extreme Entertainment Group                0     0     0     0     0
##   Falcom Corporation                         0     0     0     0     0
##   Fields                                     0     0     0     0     0
##   Flashpoint Games                           0     0     0     0     0
##   Flight-Plan                                0     0     0     0     0
##   Focus Home Interactive                     0     0     0     0     0
##   Focus Multimedia                           0     0     0     0     0
##   fonfun                                     0     0     0     0     0
##   Foreign Media Games                        0     0     0     0     0
##   Fortyfive                                  0     0     0     0     0
##   Fox Interactive                            0     0     0     0     0
##   From Software                              0     0     0     0     0
##   Fuji                                       0     0     0     0     0
##   Funbox Media                               0     0     0     0     0
##   Funcom                                     0     0     0     0     0
##   FunSoft                                    0     0     0     0     0
##   Funsta                                     0     0     0     0     0
##   FuRyu                                      0     0     0     0     0
##   FuRyu Corporation                          0     0     0     0     0
##   G.Rev                                      0     0     0     0     0
##   Gaga                                       0     0     0     0     0
##   Gainax Network Systems                     0     0     0     0     0
##   Gakken                                     0     0     0     0     0
##   Game Arts                                  0     0     0     0     0
##   Game Factory                               0     0     0     0     0
##   Game Life                                  0     0     0     0     0
##   Gamebridge                                 0     0     0     0     0
##   Gamecock                                   0     0     0     0     0
##   Gameloft                                   0     0     0     0     0
##   GameMill Entertainment                     0     0     0     0     0
##   GameTek                                    0     0     0     0     0
##   Gathering of Developers                    0     0     0     0     0
##   General Entertainment                      0     0     0     0     0
##   Genki                                      0     0     0     0     0
##   Genterprise                                0     0     0     0     0
##   Ghostlight                                 0     0     0     0     0
##   Giga                                       0     0     0     0     0
##   Giza10                                     0     0     0     0     0
##   Glams                                      0     0     0     0     0
##   Global A Entertainment                     0     0     0     0     0
##   Global Star                                0     0     0     0     0
##   GN Software                                0     0     0     0     0
##   GOA                                        0     0     0     0     0
##   Gotham Games                               0     0     0     0     0
##   Graffiti                                   0     0     0     0     0
##   Grand Prix Games                           0     0     0     0     0
##   Graphsim Entertainment                     0     0     0     0     0
##   Gremlin Interactive Ltd                    0     0     0     0     0
##   Griffin International                      0     0     0     0     0
##   Groove Games                               0     0     0     0     0
##   GSP                                        0     0     0     0     0
##   GT Interactive                             0     0     0     0     0
##   GungHo                                     0     0     0     0     0
##   Gust                                       0     0     0     0     0
##   Hackberry                                  0     0     0     0     0
##   HAL Laboratory                             0     0     0     0     1
##   Hamster Corporation                        0     0     0     0     0
##   Happinet                                   0     0     0     0     0
##   Harmonix Music Systems                     0     0     0     0     0
##   Hasbro Interactive                         0     0     0     0     0
##   Havas Interactive                          0     0     0     0     0
##   Headup Games                               0     0     0     0     0
##   Hearty Robin                               0     0     0     0     0
##   Hect                                       0     0     0     0     0
##   Hello Games                                0     0     0     0     0
##   Her Interactive                            0     0     0     0     0
##   Hip Interactive                            0     0     0     0     0
##   HMH Interactive                            0     0     0     0     0
##   Home Entertainment Suppliers               0     0     0     0     0
##   Hudson Entertainment                       0     0     0     0     0
##   Hudson Soft                                1     4     0     0     0
##   Human Entertainment                        0     0     0     0     0
##   HuneX                                      0     0     0     0     0
##   Iceberg Interactive                        0     0     0     0     0
##   id Software                                0     0     0     0     0
##   Idea Factory                               0     0     0     0     0
##   Idea Factory International                 0     0     0     0     0
##   IE Institute                               0     0     0     0     0
##   Ignition Entertainment                     0     0     0     0     0
##   Illusion Softworks                         0     0     0     0     0
##   Imadio                                     0     0     0     0     0
##   Image Epoch                                0     0     0     0     0
##   imageepoch Inc.                            0     0     0     0     0
##   Imageworks                                 0     0     0     0     0
##   Imagic                                     0     0     0     0     0
##   Imagineer                                  0     0     0     0     0
##   Imax                                       0     0     0     0     0
##   Indie Games                                0     0     0     0     0
##   Infogrames                                 0     0     0     0     0
##   Insomniac Games                            0     0     0     0     0
##   Interchannel                               0     0     0     0     0
##   Interchannel-Holon                         0     0     0     0     0
##   Intergrow                                  0     0     0     0     0
##   Interplay                                  0     0     0     0     0
##   Interplay Productions                      0     0     0     0     0
##   Interworks Unlimited, Inc.                 0     0     0     0     0
##   Inti Creates                               0     0     0     0     0
##   Introversion Software                      0     0     0     0     0
##   inXile Entertainment                       0     0     0     0     0
##   Irem Software Engineering                  0     0     0     0     0
##   ITT Family Games                           0     0     0     0     0
##   Ivolgamus                                  0     0     0     0     0
##   iWin                                       0     0     0     0     0
##   Jack of All Games                          0     0     0     0     0
##   Jaleco                                     0     0     0     0     0
##   Jester Interactive                         0     0     0     0     0
##   Jorudan                                    0     0     0     0     0
##   JoWood Productions                         0     0     0     0     0
##   Just Flight                                0     0     0     0     0
##   JVC                                        0     0     0     0     0
##   Kadokawa Games                             0     0     0     0     0
##   Kadokawa Shoten                            0     0     0     0     0
##   Kaga Create                                0     0     0     0     0
##   Kalypso Media                              0     0     0     0     0
##   Kamui                                      0     0     0     0     0
##   Kando Games                                0     0     0     0     0
##   Karin Entertainment                        0     0     0     0     0
##   Kemco                                      0     0     0     0     0
##   KID                                        0     0     0     0     0
##   Kids Station                               0     0     0     0     0
##   King Records                               0     0     0     0     0
##   Knowledge Adventure                        0     0     0     0     0
##   Koch Media                                 0     0     0     0     0
##   Kokopeli Digital Studios                   0     0     0     0     0
##   Konami Digital Entertainment               0     4     1     0     1
##   Kool Kizz                                  0     0     0     0     0
##   KSS                                        0     0     0     0     0
##   Laguna                                     0     0     0     0     0
##   Legacy Interactive                         0     0     0     0     0
##   LEGO Media                                 0     0     0     0     0
##   Level 5                                    0     0     0     0     0
##   Lexicon Entertainment                      0     0     0     0     0
##   Licensed 4U                                0     0     0     0     0
##   Lighthouse Interactive                     0     0     0     0     0
##   Liquid Games                               0     0     0     0     0
##   Little Orbit                               0     0     0     0     0
##   Locus                                      0     0     0     0     0
##   LSP Games                                  0     0     0     0     0
##   LucasArts                                  0     0     0     0     0
##   Mad Catz                                   0     0     0     0     0
##   Magical Company                            0     0     0     0     0
##   Magix                                      0     0     0     0     0
##   Majesco Entertainment                      0     0     0     0     0
##   Mamba Games                                0     0     0     0     0
##   Marvel Entertainment                       0     0     0     0     0
##   Marvelous Entertainment                    0     0     0     0     0
##   Marvelous Games                            0     0     0     0     0
##   Marvelous Interactive                      0     0     0     0     0
##   Masque Publishing                          0     0     0     0     0
##   Mastertronic                               0     0     0     0     0
##   Mastiff                                    0     0     0     0     0
##   Mattel Interactive                         0     0     0     0     0
##   Max Five                                   0     0     0     0     0
##   Maximum Family Games                       0     0     0     0     0
##   Maxis                                      0     0     0     1     0
##   MC2 Entertainment                          0     0     0     0     0
##   Media Entertainment                        0     0     0     0     0
##   Media Factory                              0     0     0     0     0
##   Media Rings                                0     0     0     0     0
##   Media Works                                0     0     0     0     0
##   MediaQuest                                 0     0     0     0     0
##   Men-A-Vision                               0     0     0     0     0
##   Mentor Interactive                         0     0     0     0     0
##   Mercury Games                              0     0     0     0     0
##   Merscom LLC                                0     0     0     0     0
##   Metro 3D                                   0     0     0     0     0
##   Michaelsoft                                0     0     0     0     0
##   Micro Cabin                                0     0     0     0     0
##   Microids                                   0     0     0     0     0
##   Microprose                                 0     0     0     0     0
##   Microsoft Game Studios                     0     0     0     0     0
##   Midas Interactive Entertainment            0     0     0     0     0
##   Midway Games                               0     0     0     0     0
##   Milestone                                  0     0     0     0     0
##   Milestone S.r.l                            0     0     0     0     0
##   Milestone S.r.l.                           0     0     0     0     0
##   Minato Station                             0     0     0     0     0
##   Mindscape                                  0     0     0     0     0
##   Mirai Shounen                              0     0     0     0     0
##   Misawa                                     0     0     0     0     0
##   Mitsui                                     0     0     0     0     0
##   mixi, Inc                                  0     0     0     0     0
##   MLB.com                                    0     0     0     0     0
##   Mojang                                     0     0     0     0     0
##   Monte Christo Multimedia                   0     0     0     0     0
##   Moss                                       0     0     0     0     0
##   MTO                                        0     0     0     0     0
##   MTV Games                                  0     0     0     0     0
##   Mud Duck Productions                       0     0     0     0     0
##   Mumbo Jumbo                                0     0     0     0     0
##   Mycom                                      1     0     0     0     0
##   Myelin Media                               0     0     0     0     0
##   Mystique                                   0     0     0     0     0
##   N/A                                        0     0     0     0     0
##   Namco Bandai Games                         2     2     2     2     1
##   Natsume                                    0     0     0     0     0
##   Navarre Corp                               0     0     0     0     0
##   Naxat Soft                                 0     0     0     0     0
##   NCS                                        0     0     0     0     0
##   NCSoft                                     0     0     0     0     0
##   NDA Productions                            0     0     0     0     0
##   NEC                                        0     0     0     0     0
##   NEC Interchannel                           0     0     0     0     0
##   Neko Entertainment                         0     0     0     0     0
##   NetRevo                                    0     0     0     0     0
##   New                                        0     0     0     0     0
##   New World Computing                        0     0     0     0     0
##   NewKidCo                                   0     0     0     0     0
##   Nexon                                      0     0     0     0     0
##   Nichibutsu                                 0     0     0     0     0
##   Nihon Falcom Corporation                   0     0     0     0     0
##   Nintendo                                   7     6     4     6     9
##   Nippon Amuse                               0     0     0     0     0
##   Nippon Columbia                            0     0     0     0     0
##   Nippon Ichi Software                       0     0     0     0     0
##   Nippon Telenet                             0     0     0     0     0
##   Nitroplus                                  0     0     0     0     0
##   Nobilis                                    0     0     0     0     0
##   Nordcurrent                                0     0     0     0     0
##   Nordic Games                               0     0     0     0     0
##   NovaLogic                                  0     0     0     0     0
##   Number None                                0     0     0     0     0
##   O-Games                                    0     0     0     0     0
##   O3 Entertainment                           0     0     0     0     0
##   Ocean                                      0     0     0     0     0
##   Office Create                              0     0     0     0     0
##   On Demand                                  0     0     0     0     0
##   Ongakukan                                  0     0     0     0     0
##   Origin Systems                             0     0     0     0     0
##   Otomate                                    0     0     0     0     0
##   Oxygen Interactive                         0     0     0     0     0
##   P2 Games                                   0     0     0     0     0
##   Pacific Century Cyber Works                0     0     0     0     0
##   Pack-In-Video                              0     0     0     0     0
##   Pack In Soft                               0     0     0     0     0
##   Palcom                                     0     0     0     0     1
##   Panther Software                           0     0     0     0     0
##   Paon                                       0     0     0     0     0
##   Paon Corporation                           0     0     0     0     0
##   Paradox Development                        0     0     0     0     0
##   Paradox Interactive                        0     0     0     0     0
##   Parker Bros.                               0     0     0     0     0
##   Performance Designed Products              0     0     0     0     0
##   Phantagram                                 0     0     0     0     0
##   Phantom EFX                                0     0     0     0     0
##   Phenomedia                                 0     0     0     0     0
##   Phoenix Games                              0     0     0     0     0
##   Piacci                                     0     0     0     0     0
##   Pinnacle                                   0     0     0     0     0
##   Pioneer LDC                                0     0     0     0     0
##   Play It                                    0     0     0     0     0
##   Playlogic Game Factory                     0     0     0     0     0
##   Playmates                                  0     0     0     0     0
##   Playmore                                   0     0     0     0     0
##   PlayV                                      0     0     0     0     0
##   Plenty                                     0     0     0     0     0
##   PM Studios                                 0     0     0     0     0
##   Pony Canyon                                0     0     0     0     0
##   PopCap Games                               0     0     0     0     0
##   Popcorn Arcade                             0     0     0     0     0
##   PopTop Software                            0     0     0     0     0
##   Pow                                        0     0     0     0     0
##   PQube                                      0     0     0     0     0
##   Princess Soft                              0     0     0     0     0
##   Prototype                                  0     0     0     0     0
##   Psygnosis                                  0     0     0     0     0
##   Quelle                                     0     0     0     0     0
##   Quest                                      0     0     0     0     0
##   Quinrose                                   0     0     0     0     0
##   Quintet                                    0     0     0     0     0
##   Rage Software                              0     0     0     0     0
##   Rain Games                                 0     0     0     0     0
##   Rebellion                                  0     0     0     0     0
##   Rebellion Developments                     0     0     0     0     0
##   RED Entertainment                          0     0     0     0     0
##   Red Orb                                    0     0     0     0     0
##   Red Storm Entertainment                    0     0     0     0     0
##   RedOctane                                  0     0     0     0     0
##   Reef Entertainment                         0     0     0     0     0
##   responDESIGN                               0     0     0     0     0
##   Revolution (Japan)                         0     0     0     0     0
##   Revolution Software                        0     0     0     0     0
##   Rising Star Games                          0     0     0     0     0
##   Riverhillsoft                              0     0     0     0     0
##   Rocket Company                             0     0     0     0     0
##   Rondomedia                                 0     0     0     0     0
##   RTL                                        0     0     0     0     0
##   Russel                                     0     0     0     0     0
##   Sammy Corporation                          0     0     0     0     0
##   Saurus                                     0     0     0     0     0
##   Scholastic Inc.                            0     0     0     0     0
##   SCi                                        0     0     0     0     0
##   Screenlife                                 0     0     0     0     0
##   SCS Software                               0     0     0     0     0
##   Sears                                      0     0     0     0     0
##   Sega                                       0     0     0     0     0
##   Seta Corporation                           0     0     0     0     0
##   Seventh Chord                              0     0     0     0     0
##   Shogakukan                                 0     0     0     0     0
##   Simon & Schuster Interactive               0     0     0     0     0
##   Slightly Mad Studios                       0     0     0     0     0
##   Slitherine Software                        0     0     0     0     0
##   SNK                                        0     0     0     0     0
##   SNK Playmore                               0     0     0     0     0
##   Societa                                    0     0     0     0     0
##   Sold Out                                   0     0     0     0     0
##   Sonnet                                     0     0     0     0     0
##   Sony Computer Entertainment                0     0     0     0     0
##   Sony Computer Entertainment America        0     0     0     0     0
##   Sony Computer Entertainment Europe         0     0     0     0     0
##   Sony Music Entertainment                   0     0     0     0     0
##   Sony Online Entertainment                  0     0     0     0     0
##   SouthPeak Games                            0     0     0     0     0
##   Spike                                      0     0     0     0     0
##   SPS                                        0     0     0     0     0
##   Square                                     0     0     0     0     0
##   Square EA                                  0     0     0     0     0
##   Square Enix                                0     0     0     0     0
##   SquareSoft                                 0     0     1     1     1
##   SSI                                        0     0     0     0     0
##   Stainless Games                            0     0     0     0     0
##   Starfish                                   0     0     0     0     0
##   Starpath Corp.                             0     0     0     0     0
##   Sting                                      0     0     0     0     0
##   Storm City Games                           0     0     0     0     0
##   Strategy First                             0     0     0     0     0
##   Success                                    0     0     0     0     0
##   Summitsoft                                 0     0     0     0     0
##   Sunflowers                                 0     0     0     0     0
##   Sunrise Interactive                        0     0     0     0     0
##   Sunsoft                                    0     0     0     0     0
##   Sweets                                     0     0     0     0     0
##   Swing! Entertainment                       0     0     0     0     0
##   Syscom                                     0     0     0     0     0
##   System 3                                   0     0     0     0     0
##   System 3 Arcade Software                   0     0     0     0     0
##   System Soft                                0     0     0     0     0
##   T&E Soft                                   0     0     0     0     0
##   Taito                                      0     0     0     0     0
##   Takara                                     0     0     0     0     0
##   Takara Tomy                                0     0     0     0     0
##   Take-Two Interactive                       0     0     0     0     0
##   Takuyo                                     0     0     0     0     0
##   TalonSoft                                  0     0     0     0     0
##   TDK Core                                   0     0     0     0     0
##   TDK Mediactive                             0     0     0     0     0
##   Team17 Software                            0     0     0     0     0
##   Technos Japan Corporation                  0     0     0     0     0
##   TechnoSoft                                 0     0     0     0     0
##   Tecmo Koei                                 0     0     0     0     0
##   Telegames                                  0     0     0     0     0
##   Telltale Games                             0     0     0     0     0
##   Telstar                                    0     0     0     0     0
##   Tetris Online                              0     0     0     0     0
##   TGL                                        0     0     0     0     0
##   The Adventure Company                      0     0     0     0     0
##   The Learning Company                       0     0     0     0     0
##   THQ                                        0     0     0     0     0
##   Tigervision                                0     0     0     0     0
##   Time Warner Interactive                    0     0     0     0     0
##   Titus                                      0     0     0     0     0
##   Tivola                                     0     0     0     0     0
##   TOHO                                       0     0     0     0     0
##   Tommo                                      0     0     0     0     0
##   Tomy Corporation                           0     0     0     0     0
##   TopWare Interactive                        0     0     0     0     0
##   Touchstone                                 0     0     0     0     0
##   Tradewest                                  0     0     0     0     0
##   Trion Worlds                               0     0     0     0     0
##   Tripwire Interactive                       0     0     0     0     0
##   Tru Blu Entertainment                      0     0     0     0     0
##   Tryfirst                                   0     0     0     0     0
##   TYO                                        0     0     0     0     0
##   Type-Moon                                  0     0     0     0     0
##   U.S. Gold                                  0     0     0     0     0
##   Ubisoft                                    0     0     0     0     0
##   Ubisoft Annecy                             0     0     0     0     0
##   UEP Systems                                0     0     0     0     0
##   UFO Interactive                            0     0     0     0     0
##   UIG Entertainment                          0     0     0     0     0
##   Ultravision                                0     0     0     0     0
##   Universal Gamex                            0     0     0     0     0
##   Universal Interactive                      0     0     0     0     0
##   Unknown                                    0     0     0     0     0
##   Valcon Games                               0     0     0     0     0
##   ValuSoft                                   0     0     0     0     0
##   Valve                                      0     0     0     0     0
##   Valve Software                             0     0     0     0     0
##   Vap                                        0     0     0     0     0
##   Vatical Entertainment                      0     0     0     0     0
##   Vic Tokai                                  0     0     0     0     0
##   Victor Interactive                         0     0     0     0     0
##   Video System                               0     0     0     0     0
##   Views                                      0     0     0     0     0
##   Vir2L Studios                              0     0     0     0     0
##   Virgin Interactive                         0     0     0     0     0
##   Virtual Play Games                         0     0     0     0     0
##   Visco                                      0     0     0     0     0
##   Vivendi Games                              0     0     0     0     0
##   Wanadoo                                    0     0     0     0     0
##   Warashi                                    0     0     0     0     0
##   Wargaming.net                              0     0     0     0     0
##   Warner Bros. Interactive Entertainment     0     0     0     0     0
##   Warp                                       0     0     0     0     0
##   WayForward Technologies                    0     0     0     0     0
##   Westwood Studios                           0     0     0     0     0
##   White Park Bay Software                    0     0     0     0     0
##   Wizard Video Games                         0     0     0     0     0
##   Xicat Interactive                          0     0     0     0     0
##   Xing Entertainment                         0     0     0     0     0
##   Xplosiv                                    0     0     0     0     0
##   XS Games                                   0     0     0     0     0
##   Xseed Games                                0     0     0     0     0
##   Yacht Club Games                           0     0     0     0     0
##   Yamasa Entertainment                       0     0     0     0     0
##   Yeti                                       0     0     0     0     0
##   Yuke's                                     0     0     0     0     0
##   Yumedia                                    0     0     0     0     0
##   Zenrin                                     0     0     0     0     0
##   Zoo Digital Publishing                     0     0     0     0     0
##   Zoo Games                                  0     0     0     0     0
##   Zushi Games                                0     0     0     0     0
##   Sum                                       14    21    16    15    17
##                                         Year
## Publisher                                 1990  1991  1992  1993  1994
##   10TACLE Studios                            0     0     0     0     0
##   1C Company                                 0     0     0     0     0
##   20th Century Fox Video Games               0     0     0     0     0
##   2D Boy                                     0     0     0     0     0
##   3DO                                        0     0     0     0     0
##   49Games                                    0     0     0     0     0
##   505 Games                                  0     0     0     0     0
##   5pb                                        0     0     0     0     0
##   7G//AMES                                   0     0     0     0     0
##   989 Sports                                 0     0     0     0     0
##   989 Studios                                0     0     0     0     0
##   Abylight                                   0     0     0     0     0
##   Acclaim Entertainment                      0     0     0     1     7
##   Accolade                                   0     0     0     0     0
##   Ackkstudios                                0     0     0     0     0
##   Acquire                                    0     0     0     0     0
##   Activision                                 0     0     0     0     1
##   Activision Blizzard                        0     0     0     0     0
##   Activision Value                           0     0     0     0     0
##   Adeline Software                           0     0     0     0     0
##   Aerosoft                                   0     0     0     0     0
##   Agatsuma Entertainment                     0     0     0     0     0
##   Agetec                                     0     0     0     0     0
##   Aksys Games                                0     0     0     0     0
##   Alawar Entertainment                       0     0     0     0     0
##   Alchemist                                  0     0     0     0     0
##   Alternative Software                       0     0     0     0     0
##   Altron                                     0     0     0     0     0
##   Alvion                                     0     0     0     0     0
##   American Softworks                         0     0     0     0     0
##   Angel Studios                              0     1     0     0     1
##   Answer Software                            0     0     0     0     0
##   AQ Interactive                             0     0     0     0     0
##   Aqua Plus                                  0     0     0     0     0
##   Aques                                      0     0     0     0     0
##   Arc System Works                           0     0     0     0     0
##   Arena Entertainment                        0     0     2     0     0
##   Aria                                       0     0     0     0     0
##   Arika                                      0     0     0     0     0
##   ArtDink                                    0     0     0     0     1
##   Aruze Corp                                 0     0     0     0     0
##   ASC Games                                  0     0     0     0     0
##   Ascaron Entertainment                      0     0     0     0     0
##   Ascaron Entertainment GmbH                 0     0     0     0     0
##   ASCII Entertainment                        0     0     0     0     1
##   ASCII Media Works                          0     0     0     0     0
##   Asgard                                     0     0     0     0     0
##   ASK                                        0     0     0     0     0
##   Asmik Ace Entertainment                    0     0     0     0     0
##   Asmik Corp                                 0     0     0     0     1
##   Aspyr                                      0     0     0     0     0
##   Astragon                                   0     0     0     0     0
##   Asylum Entertainment                       0     0     0     0     0
##   Atari                                      0     0     0     0     0
##   Athena                                     0     0     0     0     0
##   Atlus                                      0     0     0     0     2
##   Avalon Interactive                         0     0     0     0     0
##   Avanquest                                  0     0     0     0     0
##   Avanquest Software                         0     0     0     0     0
##   Axela                                      0     0     0     0     0
##   BAM! Entertainment                         0     0     0     0     0
##   Banpresto                                  0     2     1     1     5
##   Benesse                                    0     0     0     0     0
##   Berkeley                                   0     0     0     0     0
##   Bethesda Softworks                         0     0     0     0     0
##   Big Ben Interactive                        0     0     0     0     0
##   Big Fish Games                             0     0     0     0     0
##   Bigben Interactive                         0     0     0     0     0
##   bitComposer Games                          0     0     0     0     0
##   Black Bean Games                           0     0     0     0     0
##   Black Label Games                          0     0     0     0     0
##   Blast! Entertainment Ltd                   0     0     0     0     0
##   Blue Byte                                  0     0     0     0     0
##   BMG Interactive Entertainment              0     0     0     0     0
##   Bohemia Interactive                        0     0     0     0     0
##   Bomb                                       0     0     0     0     0
##   Boost On                                   0     0     0     0     0
##   BPS                                        0     1     0     0     1
##   Brash Entertainment                        0     0     0     0     0
##   Broccoli                                   0     0     0     0     0
##   BushiRoad                                  0     0     0     0     0
##   Capcom                                     3     3     4     7     1
##   Cave                                       0     0     0     0     0
##   CBS Electronics                            0     0     0     0     0
##   CCP                                        0     0     0     0     0
##   CDV Software Entertainment                 0     0     0     0     0
##   ChunSoft                                   0     0     1     1     1
##   City Interactive                           0     0     0     0     0
##   Cloud Imperium Games Corporation           0     0     0     0     0
##   Coconuts Japan                             0     0     0     1     0
##   Codemasters                                0     0     0     0     0
##   Codemasters Online                         0     0     0     0     0
##   CokeM Interactive                          0     0     0     0     0
##   Coleco                                     0     0     0     0     0
##   Comfort                                    0     0     0     0     0
##   Commseed                                   0     0     0     0     0
##   Compile                                    0     0     0     0     0
##   Compile Heart                              0     0     0     0     0
##   Conspiracy Entertainment                   0     0     0     0     0
##   Core Design Ltd.                           0     0     0     0     1
##   CPG Products                               0     0     0     0     0
##   Crave Entertainment                        0     0     0     0     0
##   Creative Core                              0     0     0     0     0
##   Crimson Cow                                0     0     0     0     0
##   Crystal Dynamics                           0     0     0     0     0
##   CTO SpA                                    0     0     0     0     0
##   Culture Brain                              0     1     0     0     1
##   Culture Publishers                         0     0     0     0     0
##   CyberFront                                 0     0     0     0     0
##   Cygames                                    0     0     0     0     0
##   D3Publisher                                0     0     0     0     0
##   Daedalic                                   0     0     0     0     0
##   Daedalic Entertainment                     0     0     0     0     0
##   Daito                                      0     0     0     0     0
##   Data Age                                   0     0     0     0     0
##   Data Design Interactive                    0     0     0     0     0
##   Data East                                  0     0     0     0     0
##   Datam Polystar                             0     0     0     0     0
##   Deep Silver                                0     0     0     0     0
##   Destination Software, Inc                  0     0     0     0     0
##   Destineer                                  0     0     0     0     0
##   Detn8 Games                                0     0     0     0     0
##   Devolver Digital                           0     0     0     0     0
##   DHM Interactive                            0     0     0     0     0
##   DigiCube                                   0     0     0     0     0
##   Disney Interactive Studios                 0     0     0     0     0
##   Dorart                                     0     0     0     0     0
##   dramatic create                            0     0     0     0     0
##   DreamCatcher Interactive                   0     0     0     0     0
##   DreamWorks Interactive                     0     0     0     0     0
##   DSI Games                                  0     0     0     0     0
##   DTP Entertainment                          0     0     0     0     0
##   Dusenberry Martin Racing                   0     0     0     0     0
##   EA Games                                   0     0     0     0     0
##   Easy Interactive                           0     0     0     0     0
##   Ecole                                      0     0     0     0     0
##   Edia                                       0     0     0     0     0
##   Eidos Interactive                          0     0     0     0     0
##   Electronic Arts                            0     0     1     0     2
##   Electronic Arts Victor                     0     0     0     0     0
##   Elf                                        0     0     0     0     0
##   Elite                                      0     0     0     0     0
##   Empire Interactive                         0     0     0     0     0
##   Encore                                     0     0     0     0     0
##   Enix Corporation                           1     0     1     1     2
##   Enjoy Gaming ltd.                          0     0     0     0     0
##   Enterbrain                                 0     0     0     0     0
##   EON Digital Entertainment                  0     0     0     0     0
##   Epic Games                                 0     0     0     0     0
##   Epoch                                      0     1     1     1     0
##   Ertain                                     0     0     0     0     0
##   ESP                                        0     0     0     0     0
##   Essential Games                            0     0     0     0     0
##   Evolution Games                            0     0     0     0     0
##   Evolved Games                              0     0     0     0     0
##   Excalibur Publishing                       0     0     0     0     0
##   Experience Inc.                            0     0     0     0     0
##   Extreme Entertainment Group                0     0     0     0     0
##   Falcom Corporation                         0     0     0     0     0
##   Fields                                     0     0     0     0     0
##   Flashpoint Games                           0     0     0     0     0
##   Flight-Plan                                0     0     0     0     0
##   Focus Home Interactive                     0     0     0     0     0
##   Focus Multimedia                           0     0     0     0     0
##   fonfun                                     0     0     0     0     0
##   Foreign Media Games                        0     0     0     0     0
##   Fortyfive                                  0     0     0     0     0
##   Fox Interactive                            0     0     0     0     0
##   From Software                              0     0     0     0     1
##   Fuji                                       0     0     0     0     0
##   Funbox Media                               0     0     0     0     0
##   Funcom                                     0     0     0     0     0
##   FunSoft                                    0     0     0     0     0
##   Funsta                                     0     0     0     0     0
##   FuRyu                                      0     0     0     0     0
##   FuRyu Corporation                          0     0     0     0     0
##   G.Rev                                      0     0     0     0     0
##   Gaga                                       0     0     0     0     0
##   Gainax Network Systems                     0     0     0     0     0
##   Gakken                                     0     0     0     0     0
##   Game Arts                                  0     0     0     0     1
##   Game Factory                               0     0     0     0     0
##   Game Life                                  0     0     0     0     0
##   Gamebridge                                 0     0     0     0     0
##   Gamecock                                   0     0     0     0     0
##   Gameloft                                   0     0     0     0     0
##   GameMill Entertainment                     0     0     0     0     0
##   GameTek                                    0     0     0     0     0
##   Gathering of Developers                    0     0     0     0     0
##   General Entertainment                      0     0     0     0     0
##   Genki                                      0     0     0     0     0
##   Genterprise                                0     0     0     0     0
##   Ghostlight                                 0     0     0     0     0
##   Giga                                       0     0     0     0     0
##   Giza10                                     0     0     0     0     0
##   Glams                                      0     0     0     0     0
##   Global A Entertainment                     0     0     0     0     0
##   Global Star                                0     0     0     0     0
##   GN Software                                0     0     0     0     0
##   GOA                                        0     0     0     0     0
##   Gotham Games                               0     0     0     0     0
##   Graffiti                                   0     0     0     0     0
##   Grand Prix Games                           0     0     0     0     0
##   Graphsim Entertainment                     0     0     0     0     0
##   Gremlin Interactive Ltd                    0     0     0     0     0
##   Griffin International                      0     0     0     0     0
##   Groove Games                               0     0     0     0     0
##   GSP                                        0     0     0     0     0
##   GT Interactive                             0     0     0     0     0
##   GungHo                                     0     0     0     0     0
##   Gust                                       0     0     0     0     0
##   Hackberry                                  0     0     0     0     0
##   HAL Laboratory                             0     0     0     0     0
##   Hamster Corporation                        0     0     0     0     0
##   Happinet                                   0     0     0     0     0
##   Harmonix Music Systems                     0     0     0     0     0
##   Hasbro Interactive                         0     0     0     0     1
##   Havas Interactive                          0     0     0     0     0
##   Headup Games                               0     0     0     0     0
##   Hearty Robin                               0     0     0     0     0
##   Hect                                       0     0     0     1     1
##   Hello Games                                0     0     0     0     0
##   Her Interactive                            0     0     0     0     0
##   Hip Interactive                            0     0     0     0     0
##   HMH Interactive                            0     0     0     0     0
##   Home Entertainment Suppliers               0     0     0     0     0
##   Hudson Entertainment                       0     0     0     0     0
##   Hudson Soft                                0     1     2     3     5
##   Human Entertainment                        0     1     0     0     2
##   HuneX                                      0     0     0     0     0
##   Iceberg Interactive                        0     0     0     0     0
##   id Software                                0     0     1     0     0
##   Idea Factory                               0     0     0     0     0
##   Idea Factory International                 0     0     0     0     0
##   IE Institute                               0     0     0     0     0
##   Ignition Entertainment                     0     0     0     0     0
##   Illusion Softworks                         0     0     0     0     0
##   Imadio                                     0     0     0     0     0
##   Image Epoch                                0     0     0     0     0
##   imageepoch Inc.                            0     0     0     0     0
##   Imageworks                                 0     0     0     0     0
##   Imagic                                     0     0     0     0     0
##   Imagineer                                  0     3     0     0     0
##   Imax                                       0     0     0     1     0
##   Indie Games                                0     0     0     0     0
##   Infogrames                                 0     0     0     0     1
##   Insomniac Games                            0     0     0     0     0
##   Interchannel                               0     0     0     0     0
##   Interchannel-Holon                         0     0     0     0     0
##   Intergrow                                  0     0     0     0     0
##   Interplay                                  0     0     0     1     0
##   Interplay Productions                      0     0     0     0     0
##   Interworks Unlimited, Inc.                 0     0     0     0     0
##   Inti Creates                               0     0     0     0     0
##   Introversion Software                      0     0     0     0     0
##   inXile Entertainment                       0     0     0     0     0
##   Irem Software Engineering                  0     0     0     0     0
##   ITT Family Games                           0     0     0     0     0
##   Ivolgamus                                  0     0     0     0     0
##   iWin                                       0     0     0     0     0
##   Jack of All Games                          0     0     0     0     0
##   Jaleco                                     0     0     0     0     0
##   Jester Interactive                         0     0     0     0     0
##   Jorudan                                    0     0     0     0     0
##   JoWood Productions                         0     0     0     0     0
##   Just Flight                                0     0     0     0     0
##   JVC                                        0     0     0     0     1
##   Kadokawa Games                             0     0     0     0     0
##   Kadokawa Shoten                            0     0     0     0     0
##   Kaga Create                                0     0     0     0     0
##   Kalypso Media                              0     0     0     0     0
##   Kamui                                      0     0     0     0     0
##   Kando Games                                0     0     0     0     0
##   Karin Entertainment                        0     0     0     0     0
##   Kemco                                      0     1     0     0     0
##   KID                                        0     0     0     0     0
##   Kids Station                               0     0     0     0     0
##   King Records                               0     0     0     0     0
##   Knowledge Adventure                        0     0     0     0     0
##   Koch Media                                 0     0     0     0     0
##   Kokopeli Digital Studios                   0     0     0     0     0
##   Konami Digital Entertainment               1     4     3     3     7
##   Kool Kizz                                  0     0     0     0     0
##   KSS                                        0     0     0     0     0
##   Laguna                                     0     0     0     1     1
##   Legacy Interactive                         0     0     0     0     0
##   LEGO Media                                 0     0     0     0     0
##   Level 5                                    0     0     0     0     0
##   Lexicon Entertainment                      0     0     0     0     0
##   Licensed 4U                                0     0     0     0     0
##   Lighthouse Interactive                     0     0     0     0     0
##   Liquid Games                               0     0     0     0     0
##   Little Orbit                               0     0     0     0     0
##   Locus                                      0     0     0     0     0
##   LSP Games                                  0     0     0     0     0
##   LucasArts                                  0     0     0     0     1
##   Mad Catz                                   0     0     0     0     0
##   Magical Company                            0     0     0     0     0
##   Magix                                      0     0     0     0     0
##   Majesco Entertainment                      0     0     0     0     0
##   Mamba Games                                0     0     0     0     0
##   Marvel Entertainment                       0     0     0     0     0
##   Marvelous Entertainment                    0     0     0     0     0
##   Marvelous Games                            0     0     0     0     0
##   Marvelous Interactive                      0     0     0     0     0
##   Masque Publishing                          0     0     0     0     0
##   Mastertronic                               0     0     0     0     0
##   Mastiff                                    0     0     0     0     0
##   Mattel Interactive                         0     0     0     0     0
##   Max Five                                   0     0     0     0     0
##   Maximum Family Games                       0     0     0     0     0
##   Maxis                                      0     0     1     0     0
##   MC2 Entertainment                          0     0     0     0     0
##   Media Entertainment                        0     0     0     0     0
##   Media Factory                              0     0     0     0     0
##   Media Rings                                0     0     0     0     1
##   Media Works                                0     0     0     0     0
##   MediaQuest                                 0     0     0     0     0
##   Men-A-Vision                               0     0     0     0     0
##   Mentor Interactive                         0     0     0     0     0
##   Mercury Games                              0     0     0     0     0
##   Merscom LLC                                0     0     0     0     0
##   Metro 3D                                   0     0     0     0     0
##   Michaelsoft                                0     0     0     0     0
##   Micro Cabin                                0     0     0     0     1
##   Microids                                   0     0     0     0     0
##   Microprose                                 0     0     0     0     0
##   Microsoft Game Studios                     0     0     0     0     0
##   Midas Interactive Entertainment            0     0     0     0     0
##   Midway Games                               0     0     0     0     0
##   Milestone                                  0     0     0     0     0
##   Milestone S.r.l                            0     0     0     0     0
##   Milestone S.r.l.                           0     0     0     0     0
##   Minato Station                             0     0     0     0     0
##   Mindscape                                  0     0     0     0     0
##   Mirai Shounen                              0     0     0     0     0
##   Misawa                                     0     0     0     1     1
##   Mitsui                                     0     0     0     0     0
##   mixi, Inc                                  0     0     0     0     0
##   MLB.com                                    0     0     0     0     0
##   Mojang                                     0     0     0     0     0
##   Monte Christo Multimedia                   0     0     0     0     0
##   Moss                                       0     0     0     0     0
##   MTO                                        0     0     0     0     0
##   MTV Games                                  0     0     0     0     0
##   Mud Duck Productions                       0     0     0     0     0
##   Mumbo Jumbo                                0     0     0     0     0
##   Mycom                                      0     0     0     0     0
##   Myelin Media                               0     0     0     0     0
##   Mystique                                   0     0     0     0     0
##   N/A                                        0     0     0     0     0
##   Namco Bandai Games                         2     3     2     8     6
##   Natsume                                    0     0     0     0     0
##   Navarre Corp                               0     0     0     0     0
##   Naxat Soft                                 0     0     0     0     0
##   NCS                                        0     0     0     0     0
##   NCSoft                                     0     0     0     0     0
##   NDA Productions                            0     0     0     0     0
##   NEC                                        0     0     0     0     0
##   NEC Interchannel                           0     0     0     0     0
##   Neko Entertainment                         0     0     0     0     0
##   NetRevo                                    0     0     0     0     0
##   New                                        0     0     0     0     0
##   New World Computing                        0     0     1     0     0
##   NewKidCo                                   0     0     0     0     0
##   Nexon                                      0     0     0     0     0
##   Nichibutsu                                 0     0     0     0     0
##   Nihon Falcom Corporation                   0     0     0     0     0
##   Nintendo                                   7    13    10     9     8
##   Nippon Amuse                               0     0     0     0     0
##   Nippon Columbia                            0     0     0     0     0
##   Nippon Ichi Software                       0     0     0     0     0
##   Nippon Telenet                             0     0     0     0     0
##   Nitroplus                                  0     0     0     0     0
##   Nobilis                                    0     0     0     0     0
##   Nordcurrent                                0     0     0     0     0
##   Nordic Games                               0     0     0     0     0
##   NovaLogic                                  0     0     0     0     0
##   Number None                                0     0     0     0     0
##   O-Games                                    0     0     0     0     0
##   O3 Entertainment                           0     0     0     0     0
##   Ocean                                      0     0     1     1     0
##   Office Create                              0     0     0     0     0
##   On Demand                                  0     0     0     0     0
##   Ongakukan                                  0     0     0     0     0
##   Origin Systems                             0     0     0     0     0
##   Otomate                                    0     0     0     0     0
##   Oxygen Interactive                         0     0     0     0     0
##   P2 Games                                   0     0     0     0     0
##   Pacific Century Cyber Works                0     0     0     0     0
##   Pack-In-Video                              0     0     0     0     0
##   Pack In Soft                               0     0     0     0     0
##   Palcom                                     0     0     0     0     0
##   Panther Software                           0     0     0     0     0
##   Paon                                       0     0     0     0     0
##   Paon Corporation                           0     0     0     0     0
##   Paradox Development                        0     0     0     0     0
##   Paradox Interactive                        0     0     0     0     0
##   Parker Bros.                               0     0     0     0     0
##   Performance Designed Products              0     0     0     0     0
##   Phantagram                                 0     0     0     0     0
##   Phantom EFX                                0     0     0     0     0
##   Phenomedia                                 0     0     0     0     0
##   Phoenix Games                              0     0     0     0     0
##   Piacci                                     0     0     0     0     0
##   Pinnacle                                   0     0     0     0     0
##   Pioneer LDC                                0     0     0     0     0
##   Play It                                    0     0     0     0     0
##   Playlogic Game Factory                     0     0     0     0     0
##   Playmates                                  0     0     0     0     0
##   Playmore                                   0     0     0     0     0
##   PlayV                                      0     0     0     0     0
##   Plenty                                     0     0     0     0     0
##   PM Studios                                 0     0     0     0     0
##   Pony Canyon                                0     0     0     0     0
##   PopCap Games                               0     0     0     0     0
##   Popcorn Arcade                             0     0     0     0     0
##   PopTop Software                            0     0     0     0     0
##   Pow                                        0     0     0     0     0
##   PQube                                      0     0     0     0     0
##   Princess Soft                              0     0     0     0     0
##   Prototype                                  0     0     0     0     0
##   Psygnosis                                  0     0     0     0     1
##   Quelle                                     0     0     0     0     0
##   Quest                                      0     0     0     0     0
##   Quinrose                                   0     0     0     0     0
##   Quintet                                    0     0     0     0     0
##   Rage Software                              0     0     0     0     0
##   Rain Games                                 0     0     0     0     0
##   Rebellion                                  0     0     0     0     0
##   Rebellion Developments                     0     0     0     0     0
##   RED Entertainment                          0     0     0     0     0
##   Red Orb                                    0     0     0     0     1
##   Red Storm Entertainment                    0     0     0     0     0
##   RedOctane                                  0     0     0     0     0
##   Reef Entertainment                         0     0     0     0     0
##   responDESIGN                               0     0     0     0     0
##   Revolution (Japan)                         0     0     0     0     0
##   Revolution Software                        0     0     0     0     0
##   Rising Star Games                          0     0     0     0     0
##   Riverhillsoft                              0     0     0     0     0
##   Rocket Company                             0     0     0     0     0
##   Rondomedia                                 0     0     0     0     0
##   RTL                                        0     0     0     0     0
##   Russel                                     0     0     0     0     0
##   Sammy Corporation                          0     0     0     1     0
##   Saurus                                     0     0     0     0     0
##   Scholastic Inc.                            0     0     0     0     0
##   SCi                                        0     0     0     0     0
##   Screenlife                                 0     0     0     0     0
##   SCS Software                               0     0     0     0     0
##   Sears                                      0     0     0     0     0
##   Sega                                       1     1     5     6    26
##   Seta Corporation                           0     0     0     0     0
##   Seventh Chord                              0     0     0     0     0
##   Shogakukan                                 0     0     0     0     0
##   Simon & Schuster Interactive               0     0     0     0     0
##   Slightly Mad Studios                       0     0     0     0     0
##   Slitherine Software                        0     0     0     0     0
##   SNK                                        0     0     0     2     4
##   SNK Playmore                               0     0     0     0     0
##   Societa                                    0     0     0     0     0
##   Sold Out                                   0     0     0     0     0
##   Sonnet                                     0     0     0     0     0
##   Sony Computer Entertainment                0     0     0     0     7
##   Sony Computer Entertainment America        0     0     0     0     0
##   Sony Computer Entertainment Europe         0     0     0     0     0
##   Sony Music Entertainment                   0     0     0     0     0
##   Sony Online Entertainment                  0     0     0     0     0
##   SouthPeak Games                            0     0     0     0     0
##   Spike                                      0     0     0     0     0
##   SPS                                        0     0     0     0     0
##   Square                                     0     1     0     0     1
##   Square EA                                  0     0     0     0     0
##   Square Enix                                0     0     0     0     0
##   SquareSoft                                 1     2     2     2     2
##   SSI                                        0     0     0     0     0
##   Stainless Games                            0     0     0     0     0
##   Starfish                                   0     0     0     0     0
##   Starpath Corp.                             0     0     0     0     0
##   Sting                                      0     0     0     0     0
##   Storm City Games                           0     0     0     0     0
##   Strategy First                             0     0     0     0     0
##   Success                                    0     0     0     0     0
##   Summitsoft                                 0     0     0     0     0
##   Sunflowers                                 0     0     0     0     0
##   Sunrise Interactive                        0     0     0     0     0
##   Sunsoft                                    0     0     0     0     3
##   Sweets                                     0     0     0     0     0
##   Swing! Entertainment                       0     0     0     0     0
##   Syscom                                     0     0     0     0     0
##   System 3                                   0     0     0     0     0
##   System 3 Arcade Software                   0     0     0     0     0
##   System Soft                                0     0     0     0     0
##   T&E Soft                                   0     0     0     1     0
##   Taito                                      0     0     0     0     1
##   Takara                                     0     0     1     1     2
##   Takara Tomy                                0     0     0     0     0
##   Take-Two Interactive                       0     0     0     0     0
##   Takuyo                                     0     0     0     0     0
##   TalonSoft                                  0     0     0     0     0
##   TDK Core                                   0     0     0     0     0
##   TDK Mediactive                             0     0     0     0     0
##   Team17 Software                            0     0     0     0     0
##   Technos Japan Corporation                  0     0     0     0     0
##   TechnoSoft                                 0     0     0     0     0
##   Tecmo Koei                                 0     2     1     2     1
##   Telegames                                  0     0     0     0     0
##   Telltale Games                             0     0     0     0     0
##   Telstar                                    0     0     0     0     0
##   Tetris Online                              0     0     0     0     0
##   TGL                                        0     0     0     0     0
##   The Adventure Company                      0     0     0     0     0
##   The Learning Company                       0     0     0     0     0
##   THQ                                        0     0     0     0     0
##   Tigervision                                0     0     0     0     0
##   Time Warner Interactive                    0     0     0     0     1
##   Titus                                      0     0     0     1     0
##   Tivola                                     0     0     0     0     0
##   TOHO                                       0     0     0     1     0
##   Tommo                                      0     0     0     0     0
##   Tomy Corporation                           0     0     0     0     0
##   TopWare Interactive                        0     0     0     0     0
##   Touchstone                                 0     0     0     0     0
##   Tradewest                                  0     0     0     0     0
##   Trion Worlds                               0     0     0     0     0
##   Tripwire Interactive                       0     0     0     0     0
##   Tru Blu Entertainment                      0     0     0     0     0
##   Tryfirst                                   0     0     0     0     0
##   TYO                                        0     0     0     0     0
##   Type-Moon                                  0     0     0     0     0
##   U.S. Gold                                  0     0     0     0     0
##   Ubisoft                                    0     0     0     0     0
##   Ubisoft Annecy                             0     0     0     0     0
##   UEP Systems                                0     0     0     0     0
##   UFO Interactive                            0     0     0     0     0
##   UIG Entertainment                          0     0     0     0     0
##   Ultravision                                0     0     0     0     0
##   Universal Gamex                            0     0     0     0     0
##   Universal Interactive                      0     0     0     0     0
##   Unknown                                    0     0     0     0     0
##   Valcon Games                               0     0     0     0     0
##   ValuSoft                                   0     0     0     0     0
##   Valve                                      0     0     0     0     0
##   Valve Software                             0     0     0     0     0
##   Vap                                        0     0     0     0     1
##   Vatical Entertainment                      0     0     0     0     0
##   Vic Tokai                                  0     0     0     0     0
##   Victor Interactive                         0     0     0     1     0
##   Video System                               0     0     1     0     0
##   Views                                      0     0     0     0     0
##   Vir2L Studios                              0     0     0     0     0
##   Virgin Interactive                         0     0     1     0     3
##   Virtual Play Games                         0     0     0     0     0
##   Visco                                      0     0     0     0     0
##   Vivendi Games                              0     0     0     0     0
##   Wanadoo                                    0     0     0     0     0
##   Warashi                                    0     0     0     0     0
##   Wargaming.net                              0     0     0     0     0
##   Warner Bros. Interactive Entertainment     0     0     0     0     0
##   Warp                                       0     0     0     0     0
##   WayForward Technologies                    0     0     0     0     0
##   Westwood Studios                           0     0     0     0     0
##   White Park Bay Software                    0     0     0     0     0
##   Wizard Video Games                         0     0     0     0     0
##   Xicat Interactive                          0     0     0     0     0
##   Xing Entertainment                         0     0     0     0     0
##   Xplosiv                                    0     0     0     0     0
##   XS Games                                   0     0     0     0     0
##   Xseed Games                                0     0     0     0     0
##   Yacht Club Games                           0     0     0     0     0
##   Yamasa Entertainment                       0     0     0     0     0
##   Yeti                                       0     0     0     0     0
##   Yuke's                                     0     0     0     0     0
##   Yumedia                                    0     0     0     0     0
##   Zenrin                                     0     0     0     0     0
##   Zoo Digital Publishing                     0     0     0     0     0
##   Zoo Games                                  0     0     0     0     0
##   Zushi Games                                0     0     0     0     0
##   Sum                                       16    41    43    60   121
##                                         Year
## Publisher                                 1995  1996  1997  1998  1999
##   10TACLE Studios                            0     0     0     0     0
##   1C Company                                 0     0     0     0     0
##   20th Century Fox Video Games               0     0     0     0     0
##   2D Boy                                     0     0     0     0     0
##   3DO                                        0     0     0     2     6
##   49Games                                    0     0     0     0     0
##   505 Games                                  0     0     0     0     0
##   5pb                                        0     0     0     0     0
##   7G//AMES                                   0     0     0     0     0
##   989 Sports                                 0     0     0     0     1
##   989 Studios                                0     0     2     6     6
##   Abylight                                   0     0     0     0     0
##   Acclaim Entertainment                     11    13    10    23    12
##   Accolade                                   0     1     1     0     1
##   Ackkstudios                                0     0     0     0     0
##   Acquire                                    0     0     0     0     0
##   Activision                                 1     3     3    14     8
##   Activision Blizzard                        0     0     0     0     0
##   Activision Value                           0     0     0     0     0
##   Adeline Software                           0     1     0     0     0
##   Aerosoft                                   0     0     0     0     0
##   Agatsuma Entertainment                     0     0     0     0     0
##   Agetec                                     0     0     1     2     0
##   Aksys Games                                0     0     0     0     0
##   Alawar Entertainment                       0     0     0     0     0
##   Alchemist                                  0     0     0     0     0
##   Alternative Software                       0     0     0     0     0
##   Altron                                     0     0     0     0     0
##   Alvion                                     0     0     0     0     0
##   American Softworks                         0     1     0     0     0
##   Angel Studios                              1     0     0     0     0
##   Answer Software                            0     0     0     0     0
##   AQ Interactive                             0     0     0     0     0
##   Aqua Plus                                  0     0     0     0     1
##   Aques                                      0     0     1     0     0
##   Arc System Works                           0     0     0     0     0
##   Arena Entertainment                        0     0     0     0     0
##   Aria                                       0     0     0     0     0
##   Arika                                      0     0     0     0     0
##   ArtDink                                    0     2     0     1     0
##   Aruze Corp                                 0     0     0     0     1
##   ASC Games                                  0     1     0     1     1
##   Ascaron Entertainment                      0     0     0     0     0
##   Ascaron Entertainment GmbH                 0     0     0     0     0
##   ASCII Entertainment                        2     5     6     2     3
##   ASCII Media Works                          0     0     0     0     0
##   Asgard                                     0     0     0     0     0
##   ASK                                        0     1     0     0     0
##   Asmik Ace Entertainment                    0     1     0     0     0
##   Asmik Corp                                 1     0     0     0     0
##   Aspyr                                      0     0     0     0     0
##   Astragon                                   0     0     0     0     0
##   Asylum Entertainment                       0     0     0     0     0
##   Atari                                      0     0     0     2     6
##   Athena                                     0     0     0     0     1
##   Atlus                                      5     2     2     2     2
##   Avalon Interactive                         0     0     0     0     1
##   Avanquest                                  0     0     0     0     0
##   Avanquest Software                         0     0     0     0     0
##   Axela                                      0     0     0     1     0
##   BAM! Entertainment                         0     0     0     0     0
##   Banpresto                                  5     2     2     3     3
##   Benesse                                    0     0     0     0     0
##   Berkeley                                   0     0     0     0     0
##   Bethesda Softworks                         0     0     0     0     0
##   Big Ben Interactive                        0     0     0     0     0
##   Big Fish Games                             0     0     0     0     0
##   Bigben Interactive                         0     0     0     0     0
##   bitComposer Games                          0     0     0     0     0
##   Black Bean Games                           0     0     0     0     0
##   Black Label Games                          0     0     0     0     0
##   Blast! Entertainment Ltd                   0     0     0     0     0
##   Blue Byte                                  0     0     0     0     0
##   BMG Interactive Entertainment              0     3     3     1     0
##   Bohemia Interactive                        0     0     0     0     0
##   Bomb                                       0     0     0     0     0
##   Boost On                                   0     0     0     0     0
##   BPS                                        0     0     0     0     0
##   Brash Entertainment                        0     0     0     0     0
##   Broccoli                                   0     0     0     0     0
##   BushiRoad                                  0     0     0     0     0
##   Capcom                                     0     3    12     7     2
##   Cave                                       0     0     0     0     0
##   CBS Electronics                            0     0     0     0     0
##   CCP                                        0     0     0     0     0
##   CDV Software Entertainment                 0     0     0     0     0
##   ChunSoft                                   1     1     0     1     1
##   City Interactive                           0     0     0     0     0
##   Cloud Imperium Games Corporation           0     0     0     0     0
##   Coconuts Japan                             0     1     0     0     0
##   Codemasters                                0     0     2     4     2
##   Codemasters Online                         0     0     0     0     0
##   CokeM Interactive                          0     0     0     0     0
##   Coleco                                     0     0     0     0     0
##   Comfort                                    0     0     0     0     0
##   Commseed                                   0     0     0     0     0
##   Compile                                    1     1     3     1     0
##   Compile Heart                              0     0     0     0     0
##   Conspiracy Entertainment                   0     0     0     0     0
##   Core Design Ltd.                           1     0     0     0     0
##   CPG Products                               0     0     0     0     0
##   Crave Entertainment                        0     0     0     2     6
##   Creative Core                              0     0     0     0     0
##   Crimson Cow                                0     0     0     0     0
##   Crystal Dynamics                           3     2     0     0     0
##   CTO SpA                                    0     1     1     0     0
##   Culture Brain                              0     0     0     0     0
##   Culture Publishers                         0     0     0     1     0
##   CyberFront                                 0     0     0     0     0
##   Cygames                                    0     0     0     0     0
##   D3Publisher                                0     0     0     1     0
##   Daedalic                                   0     0     0     0     0
##   Daedalic Entertainment                     0     0     0     0     0
##   Daito                                      0     0     0     0     0
##   Data Age                                   0     0     0     0     0
##   Data Design Interactive                    0     0     0     0     0
##   Data East                                  1     0     0     1     0
##   Datam Polystar                             0     0     0     0     0
##   Deep Silver                                0     0     0     0     0
##   Destination Software, Inc                  0     0     0     0     0
##   Destineer                                  0     0     0     0     0
##   Detn8 Games                                0     0     0     0     0
##   Devolver Digital                           0     0     0     0     0
##   DHM Interactive                            0     0     0     0     0
##   DigiCube                                   0     0     0     0     0
##   Disney Interactive Studios                 0     0     0     0     1
##   Dorart                                     0     0     0     0     0
##   dramatic create                            0     0     0     0     0
##   DreamCatcher Interactive                   0     0     0     0     0
##   DreamWorks Interactive                     0     0     0     1     0
##   DSI Games                                  0     0     0     0     0
##   DTP Entertainment                          0     0     0     0     0
##   Dusenberry Martin Racing                   0     0     0     0     0
##   EA Games                                   0     0     0     0     0
##   Easy Interactive                           0     0     0     0     0
##   Ecole                                      0     0     0     0     0
##   Edia                                       0     0     0     0     0
##   Eidos Interactive                          0     4     5    10     8
##   Electronic Arts                           11    13    25    30    26
##   Electronic Arts Victor                     0     2     0     0     0
##   Elf                                        0     1     1     0     0
##   Elite                                      0     1     0     0     0
##   Empire Interactive                         0     1     0     1     1
##   Encore                                     0     0     0     0     0
##   Enix Corporation                           2     4     0     0     4
##   Enjoy Gaming ltd.                          0     0     0     0     0
##   Enterbrain                                 0     0     0     0     0
##   EON Digital Entertainment                  0     0     0     0     1
##   Epic Games                                 0     0     0     0     0
##   Epoch                                      2     1     0     0     0
##   Ertain                                     0     0     0     0     0
##   ESP                                        0     0     1     3     0
##   Essential Games                            0     0     0     0     0
##   Evolution Games                            0     0     0     1     0
##   Evolved Games                              0     0     0     0     0
##   Excalibur Publishing                       0     0     0     0     0
##   Experience Inc.                            0     0     0     0     0
##   Extreme Entertainment Group                0     0     0     0     0
##   Falcom Corporation                         0     0     0     0     0
##   Fields                                     0     0     0     0     0
##   Flashpoint Games                           0     0     0     0     0
##   Flight-Plan                                0     0     0     0     0
##   Focus Home Interactive                     0     0     0     0     0
##   Focus Multimedia                           0     0     0     0     0
##   fonfun                                     0     0     0     0     0
##   Foreign Media Games                        0     0     0     0     0
##   Fortyfive                                  0     0     0     1     0
##   Fox Interactive                            0     1     2     2     2
##   From Software                              0     1     1     2     1
##   Fuji                                       1     0     0     0     0
##   Funbox Media                               0     0     0     0     0
##   Funcom                                     0     0     0     0     0
##   FunSoft                                    0     1     0     0     0
##   Funsta                                     0     0     0     0     0
##   FuRyu                                      0     0     0     0     0
##   FuRyu Corporation                          0     0     0     0     0
##   G.Rev                                      0     0     0     0     0
##   Gaga                                       0     1     0     0     0
##   Gainax Network Systems                     0     0     0     2     0
##   Gakken                                     0     0     0     0     0
##   Game Arts                                  0     0     0     0     0
##   Game Factory                               0     0     0     0     0
##   Game Life                                  0     0     0     0     0
##   Gamebridge                                 0     0     0     0     0
##   Gamecock                                   0     0     0     0     0
##   Gameloft                                   0     0     0     0     0
##   GameMill Entertainment                     0     0     0     0     0
##   GameTek                                    0     0     0     1     0
##   Gathering of Developers                    0     0     0     0     0
##   General Entertainment                      0     0     0     1     0
##   Genki                                      0     0     0     0     1
##   Genterprise                                0     0     0     0     0
##   Ghostlight                                 0     0     0     0     0
##   Giga                                       0     0     0     0     0
##   Giza10                                     0     0     0     0     0
##   Glams                                      1     0     0     0     0
##   Global A Entertainment                     0     0     0     0     0
##   Global Star                                0     0     0     0     0
##   GN Software                                0     0     0     0     0
##   GOA                                        0     0     0     0     0
##   Gotham Games                               0     0     0     0     0
##   Graffiti                                   0     0     0     0     0
##   Grand Prix Games                           0     0     0     0     0
##   Graphsim Entertainment                     0     0     0     0     0
##   Gremlin Interactive Ltd                    0     3     3     3     0
##   Griffin International                      0     0     0     0     0
##   Groove Games                               0     0     0     0     0
##   GSP                                        0     0     0     0     0
##   GT Interactive                             1     7    16    17     4
##   GungHo                                     0     0     0     0     0
##   Gust                                       0     1     1     0     0
##   Hackberry                                  0     0     0     0     0
##   HAL Laboratory                             0     0     0     0     0
##   Hamster Corporation                        0     0     0     0     0
##   Happinet                                   0     0     0     0     0
##   Harmonix Music Systems                     0     0     0     0     0
##   Hasbro Interactive                         0     0     3     3     3
##   Havas Interactive                          0     0     0     0     0
##   Headup Games                               0     0     0     0     0
##   Hearty Robin                               0     1     0     0     0
##   Hect                                       1     0     0     0     0
##   Hello Games                                0     0     0     0     0
##   Her Interactive                            0     0     0     0     0
##   Hip Interactive                            0     0     0     0     0
##   HMH Interactive                            0     0     0     0     0
##   Home Entertainment Suppliers               0     0     0     0     0
##   Hudson Entertainment                       0     0     1     1     1
##   Hudson Soft                                4     5     6     1     1
##   Human Entertainment                        2     1     2     3     2
##   HuneX                                      0     0     0     0     0
##   Iceberg Interactive                        0     0     0     0     0
##   id Software                                0     0     0     0     0
##   Idea Factory                               0     0     0     0     0
##   Idea Factory International                 0     0     0     0     0
##   IE Institute                               0     0     0     0     0
##   Ignition Entertainment                     0     0     0     0     0
##   Illusion Softworks                         0     0     0     0     0
##   Imadio                                     0     0     1     0     0
##   Image Epoch                                0     0     0     0     0
##   imageepoch Inc.                            0     0     0     0     0
##   Imageworks                                 1     0     0     0     0
##   Imagic                                     0     0     0     0     0
##   Imagineer                                  0     4     2     2     3
##   Imax                                       0     0     0     0     0
##   Indie Games                                0     0     0     0     0
##   Infogrames                                 0     1     1     7     6
##   Insomniac Games                            0     0     0     0     0
##   Interchannel                               0     0     0     0     0
##   Interchannel-Holon                         0     0     0     0     0
##   Intergrow                                  0     0     0     0     0
##   Interplay                                  3     2     4     6     3
##   Interplay Productions                      0     0     1     0     0
##   Interworks Unlimited, Inc.                 0     0     0     0     0
##   Inti Creates                               0     0     0     0     0
##   Introversion Software                      0     0     0     0     0
##   inXile Entertainment                       0     0     0     0     0
##   Irem Software Engineering                  0     0     0     1     0
##   ITT Family Games                           0     0     0     0     0
##   Ivolgamus                                  0     0     0     0     0
##   iWin                                       0     0     0     0     0
##   Jack of All Games                          0     0     0     0     0
##   Jaleco                                     2     1     0     2     2
##   Jester Interactive                         0     0     0     0     0
##   Jorudan                                    0     0     0     0     1
##   JoWood Productions                         0     0     0     0     0
##   Just Flight                                0     0     0     0     0
##   JVC                                        0     3     1     1     1
##   Kadokawa Games                             0     0     0     0     0
##   Kadokawa Shoten                            0     1     1     4     1
##   Kaga Create                                0     0     0     0     0
##   Kalypso Media                              0     0     0     0     0
##   Kamui                                      0     0     0     0     0
##   Kando Games                                0     0     0     0     0
##   Karin Entertainment                        0     0     0     0     0
##   Kemco                                      0     0     2     2     4
##   KID                                        0     0     0     1     0
##   Kids Station                               0     0     0     0     0
##   King Records                               0     0     0     0     0
##   Knowledge Adventure                        0     0     0     0     0
##   Koch Media                                 0     0     0     0     0
##   Kokopeli Digital Studios                   1     0     0     0     0
##   Konami Digital Entertainment              12    16    17    24    32
##   Kool Kizz                                  0     0     0     0     0
##   KSS                                        0     1     0     0     0
##   Laguna                                     2     0     0     0     0
##   Legacy Interactive                         0     0     0     0     0
##   LEGO Media                                 0     0     0     0     4
##   Level 5                                    0     0     0     0     0
##   Lexicon Entertainment                      0     0     0     0     0
##   Licensed 4U                                0     0     0     0     0
##   Lighthouse Interactive                     0     0     0     0     0
##   Liquid Games                               0     0     0     0     0
##   Little Orbit                               0     0     0     0     0
##   Locus                                      0     0     0     1     0
##   LSP Games                                  0     0     0     0     0
##   LucasArts                                  0     1     1     0     2
##   Mad Catz                                   0     0     0     0     0
##   Magical Company                            0     0     0     1     0
##   Magix                                      0     0     0     0     0
##   Majesco Entertainment                      0     0     0     0     0
##   Mamba Games                                0     0     0     0     0
##   Marvel Entertainment                       0     0     0     0     0
##   Marvelous Entertainment                    0     0     0     0     0
##   Marvelous Games                            0     0     0     0     0
##   Marvelous Interactive                      0     0     0     0     0
##   Masque Publishing                          0     0     0     0     0
##   Mastertronic                               0     0     0     0     0
##   Mastiff                                    0     0     0     0     0
##   Mattel Interactive                         0     0     0     0     2
##   Max Five                                   0     0     0     0     0
##   Maximum Family Games                       0     0     0     0     0
##   Maxis                                      0     1     0     0     0
##   MC2 Entertainment                          0     0     0     0     0
##   Media Entertainment                        0     0     0     0     0
##   Media Factory                              0     0     0     0     0
##   Media Rings                                1     0     0     0     0
##   Media Works                                0     1     0     2     0
##   MediaQuest                                 1     0     0     0     0
##   Men-A-Vision                               0     0     0     0     0
##   Mentor Interactive                         0     0     0     0     0
##   Mercury Games                              0     0     0     0     0
##   Merscom LLC                                0     0     0     0     0
##   Metro 3D                                   0     0     0     0     0
##   Michaelsoft                                0     0     0     0     0
##   Micro Cabin                                1     1     0     0     0
##   Microids                                   0     0     0     0     0
##   Microprose                                 1     2     1     0     1
##   Microsoft Game Studios                     0     1     0     0     1
##   Midas Interactive Entertainment            0     0     1     1     1
##   Midway Games                               0     2     4     6    10
##   Milestone                                  0     0     0     0     0
##   Milestone S.r.l                            0     0     0     0     0
##   Milestone S.r.l.                           0     0     0     0     0
##   Minato Station                             0     0     0     0     0
##   Mindscape                                  1     2     1     2     1
##   Mirai Shounen                              0     0     0     0     0
##   Misawa                                     0     0     0     0     0
##   Mitsui                                     0     0     0     1     0
##   mixi, Inc                                  0     0     0     0     0
##   MLB.com                                    0     0     0     0     0
##   Mojang                                     0     0     0     0     0
##   Monte Christo Multimedia                   0     0     0     0     0
##   Moss                                       0     0     0     0     0
##   MTO                                        0     0     0     1     0
##   MTV Games                                  0     0     0     0     0
##   Mud Duck Productions                       0     0     0     0     0
##   Mumbo Jumbo                                0     0     0     0     0
##   Mycom                                      0     0     0     0     0
##   Myelin Media                               0     0     0     0     0
##   Mystique                                   0     0     0     0     0
##   N/A                                        0     0     0     0     0
##   Namco Bandai Games                        11     8    13     9    14
##   Natsume                                    0     1     1     0     0
##   Navarre Corp                               0     0     0     0     0
##   Naxat Soft                                 0     0     0     0     0
##   NCS                                        0     1     1     1     0
##   NCSoft                                     0     0     0     0     0
##   NDA Productions                            0     0     0     0     0
##   NEC                                        1     2     0     0     0
##   NEC Interchannel                           0     1     2     2     0
##   Neko Entertainment                         0     0     0     0     0
##   NetRevo                                    0     0     0     0     0
##   New                                        1     0     0     0     0
##   New World Computing                        0     0     0     0     0
##   NewKidCo                                   0     0     0     2     2
##   Nexon                                      0     0     0     0     0
##   Nichibutsu                                 1     0     0     0     0
##   Nihon Falcom Corporation                   0     0     0     0     0
##   Nintendo                                  10    17    13    17    20
##   Nippon Amuse                               0     0     0     0     0
##   Nippon Columbia                            0     0     0     0     0
##   Nippon Ichi Software                       0     0     0     1     0
##   Nippon Telenet                             0     2     0     0     0
##   Nitroplus                                  0     0     0     0     0
##   Nobilis                                    0     0     0     0     0
##   Nordcurrent                                0     0     0     0     0
##   Nordic Games                               0     0     0     0     0
##   NovaLogic                                  0     0     0     0     0
##   Number None                                0     0     0     0     0
##   O-Games                                    0     0     0     0     0
##   O3 Entertainment                           0     0     0     0     0
##   Ocean                                      2     2     3     5     0
##   Office Create                              0     0     0     0     0
##   On Demand                                  0     0     1     0     0
##   Ongakukan                                  0     0     0     0     0
##   Origin Systems                             0     0     1     0     0
##   Otomate                                    0     0     0     0     0
##   Oxygen Interactive                         0     0     0     0     0
##   P2 Games                                   0     0     0     0     0
##   Pacific Century Cyber Works                0     0     0     0     0
##   Pack-In-Video                              2     0     0     0     0
##   Pack In Soft                               0     0     0     0     1
##   Palcom                                     0     0     0     0     0
##   Panther Software                           1     0     0     0     0
##   Paon                                       0     0     0     0     0
##   Paon Corporation                           0     0     0     0     0
##   Paradox Development                        0     0     0     0     0
##   Paradox Interactive                        0     0     0     0     0
##   Parker Bros.                               0     0     0     0     0
##   Performance Designed Products              0     0     0     0     0
##   Phantagram                                 0     0     0     0     0
##   Phantom EFX                                0     0     0     0     0
##   Phenomedia                                 0     0     0     0     0
##   Phoenix Games                              0     0     0     0     0
##   Piacci                                     0     0     0     0     0
##   Pinnacle                                   0     0     0     0     0
##   Pioneer LDC                                0     2     0     1     0
##   Play It                                    0     0     0     0     0
##   Playlogic Game Factory                     0     0     0     0     0
##   Playmates                                  0     0     1     0     0
##   Playmore                                   0     0     0     0     0
##   PlayV                                      0     0     0     0     0
##   Plenty                                     0     0     0     0     0
##   PM Studios                                 0     0     0     0     0
##   Pony Canyon                                0     0     0     0     0
##   PopCap Games                               0     0     0     0     0
##   Popcorn Arcade                             0     0     0     0     0
##   PopTop Software                            0     0     0     0     1
##   Pow                                        1     0     0     0     0
##   PQube                                      0     0     0     0     0
##   Princess Soft                              0     0     0     0     0
##   Prototype                                  0     0     0     0     0
##   Psygnosis                                  7     7     9     4     3
##   Quelle                                     0     0     0     0     0
##   Quest                                      1     0     0     0     0
##   Quinrose                                   0     0     0     0     0
##   Quintet                                    0     0     0     1     0
##   Rage Software                              0     0     0     0     0
##   Rain Games                                 0     0     0     0     0
##   Rebellion                                  0     0     0     0     0
##   Rebellion Developments                     0     0     0     0     0
##   RED Entertainment                          0     0     0     0     0
##   Red Orb                                    0     0     1     0     0
##   Red Storm Entertainment                    0     0     0     0     2
##   RedOctane                                  0     0     0     0     0
##   Reef Entertainment                         0     0     0     0     0
##   responDESIGN                               0     0     0     0     0
##   Revolution (Japan)                         0     0     0     0     0
##   Revolution Software                        0     0     0     0     0
##   Rising Star Games                          0     0     0     0     0
##   Riverhillsoft                              1     0     0     0     0
##   Rocket Company                             0     0     0     0     0
##   Rondomedia                                 0     0     0     0     0
##   RTL                                        0     0     0     0     0
##   Russel                                     0     0     0     0     0
##   Sammy Corporation                          0     0     0     0     0
##   Saurus                                     0     0     0     1     0
##   Scholastic Inc.                            0     0     0     0     0
##   SCi                                        0     0     0     0     0
##   Screenlife                                 0     0     0     0     0
##   SCS Software                               0     0     0     0     0
##   Sears                                      0     0     0     0     0
##   Sega                                      27    15    11    14     9
##   Seta Corporation                           4     2     0     0     0
##   Seventh Chord                              0     0     0     0     0
##   Shogakukan                                 2     0     0     0     0
##   Simon & Schuster Interactive               0     0     0     0     0
##   Slightly Mad Studios                       0     0     0     0     0
##   Slitherine Software                        0     0     0     0     0
##   SNK                                        2     5     1     3     2
##   SNK Playmore                               1     0     0     1     2
##   Societa                                    0     1     0     0     0
##   Sold Out                                   0     0     0     0     0
##   Sonnet                                     1     1     0     0     0
##   Sony Computer Entertainment               31    28    34    30    25
##   Sony Computer Entertainment America        0     0     0     0     0
##   Sony Computer Entertainment Europe         0     0     0     0     0
##   Sony Music Entertainment                   0     0     0     0     0
##   Sony Online Entertainment                  0     0     0     0     0
##   SouthPeak Games                            0     0     0     0     1
##   Spike                                      0     0     0     0     0
##   SPS                                        0     1     0     0     0
##   Square                                     0     0     1     0     2
##   Square EA                                  0     0     0     0     1
##   Square Enix                                0     0     0     0     0
##   SquareSoft                                 4     4     8     8     8
##   SSI                                        0     1     0     0     0
##   Stainless Games                            0     0     0     0     0
##   Starfish                                   0     0     1     0     1
##   Starpath Corp.                             0     0     0     0     0
##   Sting                                      0     0     0     0     0
##   Storm City Games                           0     0     0     0     0
##   Strategy First                             0     0     0     0     0
##   Success                                    0     0     0     1     1
##   Summitsoft                                 0     0     0     0     0
##   Sunflowers                                 0     0     0     0     0
##   Sunrise Interactive                        0     0     0     0     0
##   Sunsoft                                    1     1     1     1     1
##   Sweets                                     0     0     0     0     0
##   Swing! Entertainment                       0     0     0     1     0
##   Syscom                                     0     0     0     1     1
##   System 3                                   0     0     0     0     0
##   System 3 Arcade Software                   0     0     0     0     0
##   System Soft                                0     0     0     0     0
##   T&E Soft                                   0     0     0     0     0
##   Taito                                      2     0     1     0     2
##   Takara                                     1     1     2     2     1
##   Takara Tomy                                0     0     0     0     0
##   Take-Two Interactive                       0     0     3     6     4
##   Takuyo                                     0     0     0     0     0
##   TalonSoft                                  0     0     0     0     0
##   TDK Core                                   0     0     0     0     0
##   TDK Mediactive                             0     0     0     0     0
##   Team17 Software                            0     0     0     0     0
##   Technos Japan Corporation                  1     0     0     0     0
##   TechnoSoft                                 0     0     0     1     0
##   Tecmo Koei                                 3     4     4     4     5
##   Telegames                                  0     0     0     0     1
##   Telltale Games                             0     0     0     0     0
##   Telstar                                    1     0     0     2     0
##   Tetris Online                              0     0     0     0     0
##   TGL                                        0     0     0     0     0
##   The Adventure Company                      0     0     0     0     0
##   The Learning Company                       0     0     0     0     0
##   THQ                                        2     0     3    11     8
##   Tigervision                                0     0     0     0     0
##   Time Warner Interactive                    1     3     0     0     0
##   Titus                                      0     0     1     2     4
##   Tivola                                     0     0     0     0     0
##   TOHO                                       0     0     0     0     0
##   Tommo                                      0     0     0     0     0
##   Tomy Corporation                           1     2     0     1     0
##   TopWare Interactive                        0     0     0     0     0
##   Touchstone                                 0     0     0     0     0
##   Tradewest                                  0     0     0     0     0
##   Trion Worlds                               0     0     0     0     0
##   Tripwire Interactive                       0     0     0     0     0
##   Tru Blu Entertainment                      0     0     0     0     0
##   Tryfirst                                   0     0     0     0     0
##   TYO                                        0     0     0     1     0
##   Type-Moon                                  0     0     0     0     0
##   U.S. Gold                                  2     2     0     0     0
##   Ubisoft                                    1     1     1     3    13
##   Ubisoft Annecy                             0     0     0     0     0
##   UEP Systems                                0     0     1     0     0
##   UFO Interactive                            0     0     0     0     0
##   UIG Entertainment                          0     0     0     0     0
##   Ultravision                                0     0     0     0     0
##   Universal Gamex                            0     0     0     0     0
##   Universal Interactive                      0     0     0     0     0
##   Unknown                                    0     0     0     1     0
##   Valcon Games                               0     0     0     0     0
##   ValuSoft                                   0     0     0     0     0
##   Valve                                      0     0     0     0     0
##   Valve Software                             0     0     0     0     0
##   Vap                                        0     0     0     0     0
##   Vatical Entertainment                      0     0     0     0     0
##   Vic Tokai                                  0     1     1     0     0
##   Victor Interactive                         2     0     1     1     0
##   Video System                               0     0     1     1     0
##   Views                                      0     0     0     0     0
##   Vir2L Studios                              0     0     0     0     0
##   Virgin Interactive                         4    13     9    10     6
##   Virtual Play Games                         0     0     0     0     0
##   Visco                                      0     0     0     0     0
##   Vivendi Games                              1     0     2     3     1
##   Wanadoo                                    0     0     0     0     0
##   Warashi                                    0     0     0     0     0
##   Wargaming.net                              0     0     0     0     0
##   Warner Bros. Interactive Entertainment     0     0     0     0     0
##   Warp                                       0     0     1     0     0
##   WayForward Technologies                    0     0     0     0     0
##   Westwood Studios                           0     0     0     0     1
##   White Park Bay Software                    0     0     0     0     0
##   Wizard Video Games                         0     0     0     0     0
##   Xicat Interactive                          0     0     0     0     0
##   Xing Entertainment                         0     0     1     0     0
##   Xplosiv                                    0     0     0     0     0
##   XS Games                                   0     0     0     0     0
##   Xseed Games                                0     0     0     0     0
##   Yacht Club Games                           0     0     0     0     0
##   Yamasa Entertainment                       0     0     0     0     0
##   Yeti                                       0     0     0     0     0
##   Yuke's                                     0     0     0     0     0
##   Yumedia                                    1     0     0     0     0
##   Zenrin                                     0     0     0     0     0
##   Zoo Digital Publishing                     0     0     0     0     0
##   Zoo Games                                  0     0     0     0     0
##   Zushi Games                                0     0     0     0     0
##   Sum                                      219   263   289   379   338
##                                         Year
## Publisher                                 2000  2001  2002  2003  2004
##   10TACLE Studios                            0     0     0     0     0
##   1C Company                                 0     0     0     0     0
##   20th Century Fox Video Games               0     0     0     0     0
##   2D Boy                                     0     0     0     0     0
##   3DO                                       10    11     4     3     0
##   49Games                                    0     0     0     0     0
##   505 Games                                  0     0     1     1    10
##   5pb                                        0     0     0     0     0
##   7G//AMES                                   0     0     0     0     0
##   989 Sports                                 0     0     0     0     0
##   989 Studios                                0     0     0     0     0
##   Abylight                                   0     0     0     0     0
##   Acclaim Entertainment                     15    24    33    28     7
##   Accolade                                   0     0     0     0     0
##   Ackkstudios                                0     0     0     0     0
##   Acquire                                    0     0     0     0     0
##   Activision                                13    23    50    34    47
##   Activision Blizzard                        0     0     0     0     0
##   Activision Value                           0     1     1     2     1
##   Adeline Software                           0     0     0     0     0
##   Aerosoft                                   0     0     0     0     0
##   Agatsuma Entertainment                     0     0     0     0     1
##   Agetec                                     0     0     2     2     0
##   Aksys Games                                0     0     0     0     0
##   Alawar Entertainment                       0     0     0     0     0
##   Alchemist                                  0     0     0     0     0
##   Alternative Software                       0     0     0     0     0
##   Altron                                     0     1     0     0     0
##   Alvion                                     0     0     0     0     0
##   American Softworks                         0     0     0     0     0
##   Angel Studios                              0     0     0     0     0
##   Answer Software                            0     0     0     0     0
##   AQ Interactive                             0     0     0     0     0
##   Aqua Plus                                  0     0     0     0     0
##   Aques                                      0     0     0     0     0
##   Arc System Works                           0     0     0     0     0
##   Arena Entertainment                        0     0     0     0     0
##   Aria                                       0     0     0     0     0
##   Arika                                      0     0     1     0     1
##   ArtDink                                    0     2     0     0     0
##   Aruze Corp                                 2     0     0     0     0
##   ASC Games                                  0     0     0     0     0
##   Ascaron Entertainment                      0     0     0     0     0
##   Ascaron Entertainment GmbH                 0     0     0     0     1
##   ASCII Entertainment                        0     1     0     0     0
##   ASCII Media Works                          0     0     0     0     0
##   Asgard                                     0     0     0     0     0
##   ASK                                        0     0     0     0     0
##   Asmik Ace Entertainment                    1     0     0     0     0
##   Asmik Corp                                 0     0     0     0     0
##   Aspyr                                      0     0     0     1     0
##   Astragon                                   0     0     0     0     0
##   Asylum Entertainment                       0     0     0     0     0
##   Atari                                      2     9    47    40    39
##   Athena                                     0     1     0     0     0
##   Atlus                                      1     1     3     3     2
##   Avalon Interactive                         0     0     1     1     2
##   Avanquest                                  0     0     0     0     0
##   Avanquest Software                         0     0     0     0     0
##   Axela                                      0     0     0     0     0
##   BAM! Entertainment                         1     7    18     6     3
##   Banpresto                                  1     4     4     6     3
##   Benesse                                    0     0     0     0     0
##   Berkeley                                   0     1     0     0     0
##   Bethesda Softworks                         0     0     1     1     2
##   Big Ben Interactive                        0     0     1     0     1
##   Big Fish Games                             0     0     0     0     0
##   Bigben Interactive                         0     0     0     0     0
##   bitComposer Games                          0     0     0     0     0
##   Black Bean Games                           0     0     0     0     0
##   Black Label Games                          0     0     1     0     0
##   Blast! Entertainment Ltd                   0     0     0     0     0
##   Blue Byte                                  0     2     0     0     0
##   BMG Interactive Entertainment              0     0     0     0     0
##   Bohemia Interactive                        0     0     0     0     0
##   Bomb                                       0     0     0     0     0
##   Boost On                                   0     0     0     0     0
##   BPS                                        0     0     0     0     0
##   Brash Entertainment                        0     0     0     0     0
##   Broccoli                                   0     0     0     0     0
##   BushiRoad                                  0     0     0     0     0
##   Capcom                                     5    10    19    31    23
##   Cave                                       0     0     0     0     0
##   CBS Electronics                            0     0     0     0     0
##   CCP                                        0     0     0     1     0
##   CDV Software Entertainment                 0     0     0     0     0
##   ChunSoft                                   1     0     1     0     0
##   City Interactive                           0     0     0     0     0
##   Cloud Imperium Games Corporation           0     0     0     0     0
##   Coconuts Japan                             0     0     0     0     0
##   Codemasters                                2     4     5     7    13
##   Codemasters Online                         0     0     0     0     0
##   CokeM Interactive                          0     0     0     0     0
##   Coleco                                     0     0     0     0     0
##   Comfort                                    0     0     0     0     0
##   Commseed                                   0     0     0     0     0
##   Compile                                    0     0     0     0     0
##   Compile Heart                              0     0     0     0     0
##   Conspiracy Entertainment                   0     2     1     0     0
##   Core Design Ltd.                           0     0     0     0     0
##   CPG Products                               0     0     0     0     0
##   Crave Entertainment                        3     0     2     1    10
##   Creative Core                              0     0     0     0     0
##   Crimson Cow                                0     0     0     0     0
##   Crystal Dynamics                           0     0     0     0     0
##   CTO SpA                                    0     0     0     0     0
##   Culture Brain                              0     0     0     0     0
##   Culture Publishers                         0     0     0     0     0
##   CyberFront                                 0     0     0     0     0
##   Cygames                                    0     0     0     0     0
##   D3Publisher                                1     2     0     0     0
##   Daedalic                                   0     0     0     0     0
##   Daedalic Entertainment                     0     0     0     0     0
##   Daito                                      0     0     0     0     0
##   Data Age                                   0     0     0     0     0
##   Data Design Interactive                    0     0     0     0     0
##   Data East                                  0     0     0     0     0
##   Datam Polystar                             0     0     1     0     0
##   Deep Silver                                0     0     0     0     1
##   Destination Software, Inc                  0     1     1     1     2
##   Destineer                                  0     0     0     0     0
##   Detn8 Games                                0     0     0     0     0
##   Devolver Digital                           0     0     0     0     0
##   DHM Interactive                            0     0     0     0     0
##   DigiCube                                   0     0     1     0     0
##   Disney Interactive Studios                 0     0     1     2     8
##   Dorart                                     0     0     0     0     0
##   dramatic create                            0     0     0     0     0
##   DreamCatcher Interactive                   0     1     0     2     1
##   DreamWorks Interactive                     0     0     0     0     0
##   DSI Games                                  0     0     0     0     0
##   DTP Entertainment                          0     0     0     0     0
##   Dusenberry Martin Racing                   0     0     0     0     0
##   EA Games                                   0     0     0     0     0
##   Easy Interactive                           0     0     0     0     0
##   Ecole                                      0     0     0     0     0
##   Edia                                       0     0     0     0     0
##   Eidos Interactive                          9    10    15    17    10
##   Electronic Arts                           31    43    88    85    86
##   Electronic Arts Victor                     0     0     0     0     0
##   Elf                                        0     0     0     0     0
##   Elite                                      0     0     0     0     0
##   Empire Interactive                         4     2     8     6     5
##   Encore                                     0     1     0     2     0
##   Enix Corporation                           3     3     5     1     1
##   Enjoy Gaming ltd.                          0     0     0     0     0
##   Enterbrain                                 0     2     3     0     2
##   EON Digital Entertainment                  0     0     0     0     0
##   Epic Games                                 0     0     0     0     0
##   Epoch                                      1     0     0     0     0
##   Ertain                                     0     0     0     0     0
##   ESP                                        0     0     1     0     0
##   Essential Games                            0     0     0     0     0
##   Evolution Games                            0     0     0     0     0
##   Evolved Games                              0     0     0     0     4
##   Excalibur Publishing                       0     0     0     0     0
##   Experience Inc.                            0     0     0     0     0
##   Extreme Entertainment Group                0     0     0     0     0
##   Falcom Corporation                         0     0     0     0     0
##   Fields                                     0     0     0     0     0
##   Flashpoint Games                           0     0     0     0     0
##   Flight-Plan                                0     0     0     0     0
##   Focus Home Interactive                     0     0     0     0     0
##   Focus Multimedia                           0     0     0     0     0
##   fonfun                                     0     0     0     0     0
##   Foreign Media Games                        0     0     0     0     0
##   Fortyfive                                  0     0     0     0     0
##   Fox Interactive                            1     0     0     0     0
##   From Software                              0     1     1     0     0
##   Fuji                                       0     0     0     0     0
##   Funbox Media                               0     0     0     0     0
##   Funcom                                     0     0     0     0     0
##   FunSoft                                    0     0     0     0     0
##   Funsta                                     0     0     0     0     0
##   FuRyu                                      0     0     0     0     0
##   FuRyu Corporation                          0     0     0     0     0
##   G.Rev                                      0     0     0     0     0
##   Gaga                                       0     0     0     0     0
##   Gainax Network Systems                     0     0     0     0     0
##   Gakken                                     0     0     0     0     0
##   Game Arts                                  0     0     0     0     0
##   Game Factory                               0     0     0     1     1
##   Game Life                                  0     0     0     0     0
##   Gamebridge                                 0     0     0     0     0
##   Gamecock                                   0     0     0     0     0
##   Gameloft                                   0     0     0     0     0
##   GameMill Entertainment                     0     0     0     0     0
##   GameTek                                    0     0     0     0     0
##   Gathering of Developers                    0     3     0     2     4
##   General Entertainment                      0     0     0     0     0
##   Genki                                      0     1     0     2     0
##   Genterprise                                0     0     0     0     0
##   Ghostlight                                 0     0     0     1     1
##   Giga                                       0     0     0     0     0
##   Giza10                                     0     0     0     0     0
##   Glams                                      0     0     0     0     0
##   Global A Entertainment                     0     0     0     0     0
##   Global Star                                0     0     0     0    21
##   GN Software                                0     0     0     0     0
##   GOA                                        0     0     0     0     0
##   Gotham Games                               0     0     1     5     1
##   Graffiti                                   0     0     0     0     0
##   Grand Prix Games                           0     0     0     0     0
##   Graphsim Entertainment                     0     0     0     0     0
##   Gremlin Interactive Ltd                    0     0     0     0     0
##   Griffin International                      0     0     0     0     0
##   Groove Games                               0     0     0     0     0
##   GSP                                        0     0     0     0     0
##   GT Interactive                             0     0     0     0     0
##   GungHo                                     0     0     0     0     0
##   Gust                                       0     1     1     0     0
##   Hackberry                                  0     0     0     0     0
##   HAL Laboratory                             0     0     0     0     0
##   Hamster Corporation                        0     0     1     0     0
##   Happinet                                   0     0     0     0     0
##   Harmonix Music Systems                     0     0     0     0     0
##   Hasbro Interactive                         4     1     0     0     0
##   Havas Interactive                          1     0     0     0     0
##   Headup Games                               0     0     0     0     0
##   Hearty Robin                               0     0     0     0     0
##   Hect                                       0     0     0     0     0
##   Hello Games                                0     0     0     0     0
##   Her Interactive                            0     0     0     0     0
##   Hip Interactive                            0     0     0     0     2
##   HMH Interactive                            0     0     0     0     0
##   Home Entertainment Suppliers               0     0     0     0     0
##   Hudson Entertainment                       0     3     0     1     0
##   Hudson Soft                                1     1     4     3     1
##   Human Entertainment                        0     0     0     0     0
##   HuneX                                      0     0     0     0     0
##   Iceberg Interactive                        0     0     0     0     0
##   id Software                                0     0     0     0     0
##   Idea Factory                               0     0     1     0     0
##   Idea Factory International                 0     0     0     0     0
##   IE Institute                               0     0     0     0     0
##   Ignition Entertainment                     0     0     2     4    11
##   Illusion Softworks                         0     0     0     0     1
##   Imadio                                     0     0     0     0     0
##   Image Epoch                                0     0     0     0     0
##   imageepoch Inc.                            0     0     0     0     0
##   Imageworks                                 0     0     0     0     0
##   Imagic                                     0     0     0     0     0
##   Imagineer                                  1     1     0     0     0
##   Imax                                       0     0     0     0     0
##   Indie Games                                0     0     0     0     3
##   Infogrames                                11    10    22     2     0
##   Insomniac Games                            0     0     0     0     0
##   Interchannel                               0     0     0     0     0
##   Interchannel-Holon                         0     0     0     0     0
##   Intergrow                                  0     0     0     0     0
##   Interplay                                  3     3     2     2     1
##   Interplay Productions                      0     0     0     0     0
##   Interworks Unlimited, Inc.                 0     0     0     0     0
##   Inti Creates                               0     0     0     0     0
##   Introversion Software                      0     0     0     0     0
##   inXile Entertainment                       0     0     0     0     0
##   Irem Software Engineering                  0     0     0     0     0
##   ITT Family Games                           0     0     0     0     0
##   Ivolgamus                                  0     0     0     0     0
##   iWin                                       0     0     0     0     0
##   Jack of All Games                          0     0     0     0     0
##   Jaleco                                     0     0     2     7     2
##   Jester Interactive                         0     0     1     1     0
##   Jorudan                                    0     0     1     1     0
##   JoWood Productions                         0     0     1     0     2
##   Just Flight                                0     0     0     0     0
##   JVC                                        1     0     0     0     0
##   Kadokawa Games                             0     0     0     0     0
##   Kadokawa Shoten                            0     0     0     0     1
##   Kaga Create                                0     0     0     0     0
##   Kalypso Media                              0     0     0     0     0
##   Kamui                                      0     0     0     0     0
##   Kando Games                                0     0     0     0     0
##   Karin Entertainment                        0     0     0     0     0
##   Kemco                                      0     1     4     6     0
##   KID                                        0     0     0     0     0
##   Kids Station                               0     0     0     0     0
##   King Records                               0     0     1     0     0
##   Knowledge Adventure                        0     0     0     2     0
##   Koch Media                                 0     0     0     0     0
##   Kokopeli Digital Studios                   0     0     0     0     0
##   Konami Digital Entertainment              31    39    55    27    42
##   Kool Kizz                                  0     0     0     1     0
##   KSS                                        0     0     0     0     0
##   Laguna                                     0     0     0     0     0
##   Legacy Interactive                         0     0     0     0     0
##   LEGO Media                                 0     2     1     0     0
##   Level 5                                    0     0     0     0     0
##   Lexicon Entertainment                      0     0     0     0     0
##   Licensed 4U                                0     0     0     0     0
##   Lighthouse Interactive                     0     0     0     0     0
##   Liquid Games                               0     0     1     0     0
##   Little Orbit                               0     0     0     0     0
##   Locus                                      0     0     0     0     0
##   LSP Games                                  0     0     1     3     0
##   LucasArts                                  1     4     4     8     4
##   Mad Catz                                   0     0     0     0     1
##   Magical Company                            0     0     0     0     0
##   Magix                                      0     1     0     0     0
##   Majesco Entertainment                      0     3     1     2     8
##   Mamba Games                                0     0     0     0     0
##   Marvel Entertainment                       0     0     0     0     0
##   Marvelous Entertainment                    0     0     0     0     0
##   Marvelous Games                            0     0     0     0     0
##   Marvelous Interactive                      0     0     1     1     1
##   Masque Publishing                          0     0     0     0     0
##   Mastertronic                               0     0     0     0     0
##   Mastiff                                    0     0     0     0     1
##   Mattel Interactive                         2     0     0     0     0
##   Max Five                                   0     1     0     0     0
##   Maximum Family Games                       0     0     0     0     0
##   Maxis                                      0     0     0     0     0
##   MC2 Entertainment                          0     0     0     0     2
##   Media Entertainment                        0     0     1     0     0
##   Media Factory                              1     1     0     0     0
##   Media Rings                                0     0     1     0     0
##   Media Works                                0     0     0     0     0
##   MediaQuest                                 0     0     0     0     0
##   Men-A-Vision                               0     0     0     0     0
##   Mentor Interactive                         0     0     0     0     0
##   Mercury Games                              0     0     0     0     0
##   Merscom LLC                                0     0     0     0     0
##   Metro 3D                                   0     3     2     3     0
##   Michaelsoft                                0     0     0     0     0
##   Micro Cabin                                0     0     0     0     0
##   Microids                                   0     0     3     2     2
##   Microprose                                 0     0     0     0     0
##   Microsoft Game Studios                     1    10    20    28    13
##   Midas Interactive Entertainment            7     4     2     0     0
##   Midway Games                              12    11    33    24    15
##   Milestone                                  0     0     0     0     0
##   Milestone S.r.l                            0     0     0     0     0
##   Milestone S.r.l.                           0     0     0     0     0
##   Minato Station                             0     0     0     0     0
##   Mindscape                                  1     0     0     2     0
##   Mirai Shounen                              0     0     0     0     0
##   Misawa                                     0     0     0     0     0
##   Mitsui                                     0     0     0     0     0
##   mixi, Inc                                  0     0     0     0     0
##   MLB.com                                    0     0     0     0     0
##   Mojang                                     0     0     0     0     0
##   Monte Christo Multimedia                   0     0     0     0     0
##   Moss                                       0     0     0     0     0
##   MTO                                        0     0     0     0     0
##   MTV Games                                  0     0     0     0     0
##   Mud Duck Productions                       0     0     0     1     2
##   Mumbo Jumbo                                0     0     0     0     0
##   Mycom                                      0     0     0     0     0
##   Myelin Media                               0     0     0     0     0
##   Mystique                                   0     0     0     0     0
##   N/A                                        0     0     0     0    19
##   Namco Bandai Games                        14    12    25    23    25
##   Natsume                                    1     1     3     1     0
##   Navarre Corp                               0     0     0     0     0
##   Naxat Soft                                 0     0     0     0     0
##   NCS                                        0     0     0     0     0
##   NCSoft                                     0     0     0     0     0
##   NDA Productions                            0     0     1     0     0
##   NEC                                        0     0     0     0     0
##   NEC Interchannel                           2     0     0     0     0
##   Neko Entertainment                         0     0     0     0     0
##   NetRevo                                    0     0     0     0     0
##   New                                        0     0     0     0     0
##   New World Computing                        0     0     0     0     0
##   NewKidCo                                   0     1     1     3     0
##   Nexon                                      0     0     0     0     0
##   Nichibutsu                                 0     0     0     0     0
##   Nihon Falcom Corporation                   0     0     0     0     0
##   Nintendo                                  23    22    22    27    57
##   Nippon Amuse                               0     0     1     0     0
##   Nippon Columbia                            0     0     0     0     0
##   Nippon Ichi Software                       0     0     0     0     0
##   Nippon Telenet                             0     0     0     0     0
##   Nitroplus                                  0     0     0     0     0
##   Nobilis                                    0     0     0     0     0
##   Nordcurrent                                0     0     0     0     0
##   Nordic Games                               0     0     0     0     0
##   NovaLogic                                  0     0     0     0     0
##   Number None                                0     0     0     0     0
##   O-Games                                    0     0     0     0     0
##   O3 Entertainment                           0     0     0     0     1
##   Ocean                                      0     0     0     0     0
##   Office Create                              0     0     0     0     0
##   On Demand                                  0     0     0     0     0
##   Ongakukan                                  0     0     0     0     0
##   Origin Systems                             0     0     0     0     0
##   Otomate                                    0     0     0     0     0
##   Oxygen Interactive                         0     0     0     0     0
##   P2 Games                                   0     0     0     0     0
##   Pacific Century Cyber Works                0     0     1     0     0
##   Pack-In-Video                              0     0     0     0     0
##   Pack In Soft                               0     0     0     0     0
##   Palcom                                     0     0     0     0     0
##   Panther Software                           0     0     0     0     0
##   Paon                                       0     0     0     0     0
##   Paon Corporation                           0     0     0     0     0
##   Paradox Development                        0     0     0     0     0
##   Paradox Interactive                        0     0     0     0     0
##   Parker Bros.                               0     0     0     0     0
##   Performance Designed Products              0     0     0     0     0
##   Phantagram                                 0     0     1     0     0
##   Phantom EFX                                0     0     0     0     0
##   Phenomedia                                 0     0     0     0     0
##   Phoenix Games                              0     0     0     0     0
##   Piacci                                     0     0     0     0     0
##   Pinnacle                                   0     0     0     0     0
##   Pioneer LDC                                0     1     0     0     0
##   Play It                                    0     0     2     2     7
##   Playlogic Game Factory                     0     0     0     0     0
##   Playmates                                  0     0     0     0     0
##   Playmore                                   0     0     1     0     0
##   PlayV                                      0     0     0     0     0
##   Plenty                                     0     0     0     0     0
##   PM Studios                                 0     0     0     0     0
##   Pony Canyon                                1     0     0     0     0
##   PopCap Games                               0     0     0     0     0
##   Popcorn Arcade                             0     0     0     0     0
##   PopTop Software                            0     0     0     0     0
##   Pow                                        0     0     0     0     0
##   PQube                                      0     0     0     0     0
##   Princess Soft                              0     0     1     0     0
##   Prototype                                  0     0     0     0     0
##   Psygnosis                                  1     0     0     0     0
##   Quelle                                     0     0     0     0     0
##   Quest                                      0     0     0     0     0
##   Quinrose                                   0     0     0     0     0
##   Quintet                                    0     0     0     0     0
##   Rage Software                              0     2     5     0     0
##   Rain Games                                 0     0     0     0     0
##   Rebellion                                  0     1     1     0     0
##   Rebellion Developments                     0     0     0     0     0
##   RED Entertainment                          0     0     0     0     0
##   Red Orb                                    0     0     0     0     0
##   Red Storm Entertainment                    0     1     0     0     0
##   RedOctane                                  0     0     0     0     0
##   Reef Entertainment                         0     0     0     0     0
##   responDESIGN                               0     0     0     0     1
##   Revolution (Japan)                         0     0     0     0     0
##   Revolution Software                        0     0     0     0     0
##   Rising Star Games                          0     0     0     0     0
##   Riverhillsoft                              0     0     0     0     0
##   Rocket Company                             0     0     0     0     0
##   Rondomedia                                 0     0     0     0     0
##   RTL                                        0     0     0     0     0
##   Russel                                     0     0     0     0     0
##   Sammy Corporation                          0     2     5     1     1
##   Saurus                                     0     0     0     0     0
##   Scholastic Inc.                            0     0     0     0     0
##   SCi                                        0     0     1     8     5
##   Screenlife                                 0     0     0     0     0
##   SCS Software                               0     0     0     0     0
##   Sears                                      0     0     0     0     0
##   Sega                                      11     9    39    32    28
##   Seta Corporation                           0     0     0     0     0
##   Seventh Chord                              0     0     0     0     0
##   Shogakukan                                 0     0     0     0     0
##   Simon & Schuster Interactive               0     0     1     0     0
##   Slightly Mad Studios                       0     0     0     0     0
##   Slitherine Software                        0     0     0     0     0
##   SNK                                        2     0     0     0     0
##   SNK Playmore                               0     0     0     0     0
##   Societa                                    0     0     0     0     0
##   Sold Out                                   0     0     0     0     0
##   Sonnet                                     0     0     0     0     0
##   Sony Computer Entertainment               32    38    30    32    30
##   Sony Computer Entertainment America        0     0     0     0     0
##   Sony Computer Entertainment Europe         0     1     0     0     1
##   Sony Music Entertainment                   0     1     0     0     0
##   Sony Online Entertainment                  0     0     0     2     1
##   SouthPeak Games                            0     0     0     0     1
##   Spike                                      0     1     1     0     1
##   SPS                                        0     0     0     0     0
##   Square                                     0     1     0     0     0
##   Square EA                                  0     0     0     0     0
##   Square Enix                                0     0     0     6     6
##   SquareSoft                                 4     1     2     1     0
##   SSI                                        0     0     0     0     0
##   Stainless Games                            0     0     0     0     0
##   Starfish                                   0     1     0     0     0
##   Starpath Corp.                             0     0     0     0     0
##   Sting                                      0     0     0     0     1
##   Storm City Games                           0     0     0     0     0
##   Strategy First                             0     1     0     0     0
##   Success                                    1     1     1     0     0
##   Summitsoft                                 0     0     0     0     1
##   Sunflowers                                 0     0     0     0     1
##   Sunrise Interactive                        2     0     0     0     0
##   Sunsoft                                    1     0     0     0     0
##   Sweets                                     0     0     0     0     0
##   Swing! Entertainment                       2     2     1     0     0
##   Syscom                                     0     0     0     0     0
##   System 3                                   0     0     0     0     0
##   System 3 Arcade Software                   0     0     0     0     0
##   System Soft                                0     0     0     0     0
##   T&E Soft                                   0     0     0     0     0
##   Taito                                      0     1     3     1     0
##   Takara                                     0     2     2     1     0
##   Takara Tomy                                0     0     0     0     0
##   Take-Two Interactive                       6    12     8    14    12
##   Takuyo                                     0     0     0     0     0
##   TalonSoft                                  0     1     0     0     0
##   TDK Core                                   1     0     1     0     0
##   TDK Mediactive                             0     5    16    14     1
##   Team17 Software                            0     0     0     0     0
##   Technos Japan Corporation                  0     0     0     0     0
##   TechnoSoft                                 0     0     0     0     0
##   Tecmo Koei                                10     4    11     9    13
##   Telegames                                  0     0     0     2     0
##   Telltale Games                             0     0     0     0     0
##   Telstar                                    0     0     0     0     0
##   Tetris Online                              0     0     0     0     0
##   TGL                                        0     0     0     0     0
##   The Adventure Company                      0     0     0     0     0
##   The Learning Company                       1     0     0     0     0
##   THQ                                       15    36    55    64    49
##   Tigervision                                0     0     0     0     0
##   Time Warner Interactive                    0     0     0     0     0
##   Titus                                      2     4     4     1     0
##   Tivola                                     0     0     0     0     0
##   TOHO                                       0     0     0     0     0
##   Tommo                                      0     0     0     0     0
##   Tomy Corporation                           0     0     0     5     1
##   TopWare Interactive                        0     0     0     0     0
##   Touchstone                                 0     0     0     0     0
##   Tradewest                                  0     0     0     0     0
##   Trion Worlds                               0     0     0     0     0
##   Tripwire Interactive                       0     0     0     0     0
##   Tru Blu Entertainment                      0     0     0     0     0
##   Tryfirst                                   0     0     0     0     0
##   TYO                                        0     0     0     0     0
##   Type-Moon                                  0     0     0     0     0
##   U.S. Gold                                  0     0     0     0     0
##   Ubisoft                                   21    25    44    47    32
##   Ubisoft Annecy                             0     0     0     0     0
##   UEP Systems                                0     0     0     0     0
##   UFO Interactive                            0     0     0     0     0
##   UIG Entertainment                          0     0     0     0     0
##   Ultravision                                0     0     0     0     0
##   Universal Gamex                            0     0     0     0     0
##   Universal Interactive                      0     2    14     6     0
##   Unknown                                    0     3     3     1     1
##   Valcon Games                               0     0     0     0     0
##   ValuSoft                                   0     0     0     0     0
##   Valve                                      0     0     0     0     0
##   Valve Software                             0     0     0     0     0
##   Vap                                        0     0     0     0     0
##   Vatical Entertainment                      2     0     0     0     0
##   Vic Tokai                                  0     0     0     0     0
##   Victor Interactive                         1     2     1     0     0
##   Video System                               1     0     0     0     0
##   Views                                      0     0     0     0     0
##   Vir2L Studios                              0     0     0     0     0
##   Virgin Interactive                         6     6     4     0     0
##   Virtual Play Games                         0     0     0     0     0
##   Visco                                      0     0     0     0     0
##   Vivendi Games                              1     4    16    32    18
##   Wanadoo                                    0     1     1     2     0
##   Warashi                                    0     0     0     0     0
##   Wargaming.net                              0     0     0     0     0
##   Warner Bros. Interactive Entertainment     0     0     0     2     0
##   Warp                                       0     0     0     0     0
##   WayForward Technologies                    0     0     0     0     0
##   Westwood Studios                           0     0     0     0     0
##   White Park Bay Software                    0     0     0     0     0
##   Wizard Video Games                         0     0     0     0     0
##   Xicat Interactive                          0     0     2     1     0
##   Xing Entertainment                         0     0     0     0     0
##   Xplosiv                                    0     0     0     0     0
##   XS Games                                   0     0     1     0     3
##   Xseed Games                                0     0     0     0     0
##   Yacht Club Games                           0     0     0     0     0
##   Yamasa Entertainment                       0     0     0     0     0
##   Yeti                                       0     0     0     0     0
##   Yuke's                                     0     0     0     0     0
##   Yumedia                                    0     0     0     0     0
##   Zenrin                                     0     0     0     0     0
##   Zoo Digital Publishing                     0     0     6     9    17
##   Zoo Games                                  0     0     0     0     0
##   Zushi Games                                0     0     0     0     0
##   Sum                                      349   482   829   775   763
##                                         Year
## Publisher                                 2005  2006  2007  2008  2009
##   10TACLE Studios                            0     1     2     0     0
##   1C Company                                 0     0     0     0     1
##   20th Century Fox Video Games               0     0     0     0     0
##   2D Boy                                     0     0     0     1     0
##   3DO                                        0     0     0     0     0
##   49Games                                    0     0     0     0     1
##   505 Games                                 13    22    28    13    30
##   5pb                                        0     0     0     5     7
##   7G//AMES                                   0     0     0     0     0
##   989 Sports                                 0     0     0     0     0
##   989 Studios                                0     0     0     0     0
##   Abylight                                   0     0     0     0     0
##   Acclaim Entertainment                      0     0     0     0     0
##   Accolade                                   0     0     0     0     0
##   Ackkstudios                                0     0     0     0     1
##   Acquire                                    0     1     0     1     1
##   Activision                                70    50    75    88   121
##   Activision Blizzard                        0     0     0     0     0
##   Activision Value                           1     3     4     9     7
##   Adeline Software                           0     0     0     0     0
##   Aerosoft                                   0     0     0     0     0
##   Agatsuma Entertainment                     0     0     0     0     0
##   Agetec                                     0     0     0     0     1
##   Aksys Games                                0     0     0     1     0
##   Alawar Entertainment                       0     0     0     0     1
##   Alchemist                                  0     2     3     7     4
##   Alternative Software                       0     0     0     0     0
##   Altron                                     0     0     0     0     0
##   Alvion                                     0     0     0     0     1
##   American Softworks                         0     0     0     0     0
##   Angel Studios                              0     0     0     0     0
##   Answer Software                            0     0     0     0     0
##   AQ Interactive                             0     0     1     1     3
##   Aqua Plus                                  0     1     1     1     3
##   Aques                                      0     0     0     0     0
##   Arc System Works                           0     0     0     4     3
##   Arena Entertainment                        0     0     0     0     0
##   Aria                                       0     1     0     0     0
##   Arika                                      0     0     0     1     0
##   ArtDink                                    0     0     0     0     1
##   Aruze Corp                                 0     0     0     0     0
##   ASC Games                                  0     0     0     0     0
##   Ascaron Entertainment                      0     0     0     0     0
##   Ascaron Entertainment GmbH                 0     0     0     2     0
##   ASCII Entertainment                        0     0     0     0     0
##   ASCII Media Works                          0     0     0     2     2
##   Asgard                                     0     0     0     0     0
##   ASK                                        0     0     0     0     0
##   Asmik Ace Entertainment                    0     1     0     0     0
##   Asmik Corp                                 0     0     0     0     0
##   Aspyr                                      0     0     1     2     4
##   Astragon                                   0     0     0     0     1
##   Asylum Entertainment                       0     0     0     0     0
##   Atari                                     36    23    31    32    20
##   Athena                                     0     0     0     0     0
##   Atlus                                      0     2     2     5     5
##   Avalon Interactive                         0     0     0     0     0
##   Avanquest                                  0     0     3     2     7
##   Avanquest Software                         0     0     0     0     0
##   Axela                                      0     0     0     0     0
##   BAM! Entertainment                         0     0     0     0     0
##   Banpresto                                  6     7     9     4     2
##   Benesse                                    0     0     2     4     0
##   Berkeley                                   0     0     0     0     0
##   Bethesda Softworks                         2     2     2     7     6
##   Big Ben Interactive                        0     0     0     1     2
##   Big Fish Games                             0     0     0     1     0
##   Bigben Interactive                         0     0     0     0     0
##   bitComposer Games                          0     0     0     0     1
##   Black Bean Games                           1     0     2     5     5
##   Black Label Games                          0     0     0     0     0
##   Blast! Entertainment Ltd                   0     0     1     1     4
##   Blue Byte                                  0     0     0     0     0
##   BMG Interactive Entertainment              0     0     0     0     0
##   Bohemia Interactive                        0     0     0     0     0
##   Bomb                                       0     0     0     0     0
##   Boost On                                   0     0     0     0     0
##   BPS                                        0     0     0     0     0
##   Brash Entertainment                        0     0     2     8     0
##   Broccoli                                   0     1     3     1     3
##   BushiRoad                                  0     0     0     0     0
##   Capcom                                    24    27    17    26    15
##   Cave                                       0     0     0     1     1
##   CBS Electronics                            0     0     0     0     0
##   CCP                                        0     0     0     0     0
##   CDV Software Entertainment                 1     0     0     2     2
##   ChunSoft                                   0     2     0     0     1
##   City Interactive                           0     0     0     1     4
##   Cloud Imperium Games Corporation           0     0     0     0     0
##   Coconuts Japan                             0     0     0     0     0
##   Codemasters                                7     8    12    12    26
##   Codemasters Online                         0     0     0     1     0
##   CokeM Interactive                          0     0     1     0     0
##   Coleco                                     0     0     0     0     0
##   Comfort                                    0     0     0     0     0
##   Commseed                                   0     0     0     1     0
##   Compile                                    0     0     0     0     0
##   Compile Heart                              0     0     0     1     1
##   Conspiracy Entertainment                   0     0     2     3     2
##   Core Design Ltd.                           0     0     0     0     0
##   CPG Products                               0     0     0     0     0
##   Crave Entertainment                        9     5     4     3     5
##   Creative Core                              0     0     0     2     1
##   Crimson Cow                                0     0     0     1     0
##   Crystal Dynamics                           0     0     0     0     0
##   CTO SpA                                    0     0     0     0     0
##   Culture Brain                              0     0     0     1     0
##   Culture Publishers                         0     0     0     0     0
##   CyberFront                                 0     0     1     1     2
##   Cygames                                    0     0     0     0     0
##   D3Publisher                                4    13    22    21    31
##   Daedalic                                   0     0     0     0     1
##   Daedalic Entertainment                     0     0     0     0     0
##   Daito                                      0     4     0     0     0
##   Data Age                                   0     0     0     0     0
##   Data Design Interactive                    0     0     1     1     1
##   Data East                                  0     0     0     0     0
##   Datam Polystar                             0     0     1     0     0
##   Deep Silver                                3     3     1    13    24
##   Destination Software, Inc                  1     2     2     2     0
##   Destineer                                  0     0     4    15    12
##   Detn8 Games                                0     0     1     0     0
##   Devolver Digital                           0     0     0     0     0
##   DHM Interactive                            0     0     2     0     1
##   DigiCube                                   0     0     0     0     0
##   Disney Interactive Studios                14    13    28    33    24
##   Dorart                                     0     0     0     1     0
##   dramatic create                            0     0     0     0     0
##   DreamCatcher Interactive                   1     2     0     2     6
##   DreamWorks Interactive                     0     0     0     0     0
##   DSI Games                                  1     1     3     1     0
##   DTP Entertainment                          2     0     1     9    11
##   Dusenberry Martin Racing                   0     0     0     0     0
##   EA Games                                   0     0     0     0     0
##   Easy Interactive                           0     0     0     0     0
##   Ecole                                      0     0     0     0     1
##   Edia                                       0     1     0     0     1
##   Eidos Interactive                         12    29    22    25    20
##   Electronic Arts                          117   102   107   120   112
##   Electronic Arts Victor                     0     0     0     0     0
##   Elf                                        0     0     0     0     0
##   Elite                                      0     0     0     0     0
##   Empire Interactive                         7     4     4     8     0
##   Encore                                     1     0     0     0     0
##   Enix Corporation                           0     0     0     0     0
##   Enjoy Gaming ltd.                          0     0     0     0     1
##   Enterbrain                                 0     2     1     2     1
##   EON Digital Entertainment                  0     0     0     0     0
##   Epic Games                                 0     0     0     0     0
##   Epoch                                      0     0     0     0     0
##   Ertain                                     0     0     1     0     0
##   ESP                                        0     0     0     0     0
##   Essential Games                            1     2     0     0     0
##   Evolution Games                            0     0     0     0     0
##   Evolved Games                              0     0     0     0     2
##   Excalibur Publishing                       0     0     0     0     0
##   Experience Inc.                            0     0     0     0     0
##   Extreme Entertainment Group                0     0     0     0     0
##   Falcom Corporation                         0     0     2     3     3
##   Fields                                     0     0     0     0     0
##   Flashpoint Games                           1     0     0     0     0
##   Flight-Plan                                0     0     1     0     1
##   Focus Home Interactive                     0     2     1     1     7
##   Focus Multimedia                           0     0     0     0     0
##   fonfun                                     0     0     0     1     0
##   Foreign Media Games                        0     0     0     0     0
##   Fortyfive                                  0     0     0     0     0
##   Fox Interactive                            0     0     0     0     0
##   From Software                              0     1     0     0     4
##   Fuji                                       0     0     0     0     0
##   Funbox Media                               0     0     0     0     0
##   Funcom                                     0     0     0     0     0
##   FunSoft                                    0     0     0     0     0
##   Funsta                                     0     1     2     0     0
##   FuRyu                                      0     0     0     0     0
##   FuRyu Corporation                          0     0     0     0     0
##   G.Rev                                      0     0     0     0     1
##   Gaga                                       0     0     0     0     0
##   Gainax Network Systems                     0     0     0     0     0
##   Gakken                                     0     0     2     0     0
##   Game Arts                                  0     0     0     0     0
##   Game Factory                               2     7     9    11     0
##   Game Life                                  0     0     1     0     1
##   Gamebridge                                 0     0     0     1     1
##   Gamecock                                   0     0     0     4     0
##   Gameloft                                   0     0     1     0     0
##   GameMill Entertainment                     0     0     0     0     0
##   GameTek                                    0     0     0     0     0
##   Gathering of Developers                    0     0     0     0     0
##   General Entertainment                      0     0     0     0     0
##   Genki                                      0     0     3     0     0
##   Genterprise                                0     0     0     0     1
##   Ghostlight                                 2     1     2     2     1
##   Giga                                       0     0     0     0     0
##   Giza10                                     0     0     0     0     0
##   Glams                                      0     0     0     0     0
##   Global A Entertainment                     0     1     1     2     0
##   Global Star                               15     3     0     0     0
##   GN Software                                0     1     0     1     0
##   GOA                                        0     0     0     1     0
##   Gotham Games                               0     0     0     0     0
##   Graffiti                                   0     0     0     1     3
##   Grand Prix Games                           0     0     1     0     0
##   Graphsim Entertainment                     1     0     0     0     0
##   Gremlin Interactive Ltd                    0     0     0     0     0
##   Griffin International                      0     0     0     0     0
##   Groove Games                               1     1     0     0     0
##   GSP                                        0     0     0     3     6
##   GT Interactive                             0     0     0     0     0
##   GungHo                                     0     0     0     4     2
##   Gust                                       0     0     1     1     2
##   Hackberry                                  0     0     4     2     0
##   HAL Laboratory                             0     0     0     0     0
##   Hamster Corporation                        0     1     0     0     0
##   Happinet                                   0     0     0     0     0
##   Harmonix Music Systems                     0     0     0     0     0
##   Hasbro Interactive                         0     1     0     0     0
##   Havas Interactive                          0     0     0     0     0
##   Headup Games                               0     0     0     0     0
##   Hearty Robin                               0     0     0     0     0
##   Hect                                       0     0     0     0     0
##   Hello Games                                0     0     0     0     0
##   Her Interactive                            0     0     0     0     0
##   Hip Interactive                            3     0     0     0     0
##   HMH Interactive                            0     0     0     1     1
##   Home Entertainment Suppliers               0     0     0     0     0
##   Hudson Entertainment                       0     1     1     1     1
##   Hudson Soft                                1     3     3     8     8
##   Human Entertainment                        0     0     0     0     0
##   HuneX                                      0     0     0     0     0
##   Iceberg Interactive                        0     0     0     0     0
##   id Software                                0     0     0     0     0
##   Idea Factory                               1     4     2     6     7
##   Idea Factory International                 0     0     0     0     0
##   IE Institute                               0     2     1     1     0
##   Ignition Entertainment                     7     9     7    15     2
##   Illusion Softworks                         0     0     0     0     0
##   Imadio                                     0     0     0     0     0
##   Image Epoch                                0     0     0     0     0
##   imageepoch Inc.                            0     0     0     0     0
##   Imageworks                                 0     0     0     0     0
##   Imagic                                     0     0     0     0     0
##   Imagineer                                  0     0     0     0     0
##   Imax                                       0     0     0     0     0
##   Indie Games                                0     0     0     0     0
##   Infogrames                                 0     0     0     0     0
##   Insomniac Games                            0     0     0     0     0
##   Interchannel                               0     3     0     1     0
##   Interchannel-Holon                         0     0     1     0     0
##   Intergrow                                  0     0     0     0     0
##   Interplay                                  0     0     0     0     0
##   Interplay Productions                      0     0     0     0     0
##   Interworks Unlimited, Inc.                 0     0     0     0     0
##   Inti Creates                               0     0     0     0     0
##   Introversion Software                      0     0     0     0     0
##   inXile Entertainment                       0     0     0     0     0
##   Irem Software Engineering                  0     1     1     3     1
##   ITT Family Games                           0     0     0     0     0
##   Ivolgamus                                  0     0     0     1     0
##   iWin                                       0     0     0     0     0
##   Jack of All Games                          1     0     0     0     0
##   Jaleco                                     0     0     3     2     0
##   Jester Interactive                         1     0     0     0     0
##   Jorudan                                    0     0     0     0     0
##   JoWood Productions                         4     1     1     5     4
##   Just Flight                                0     0     0     0     0
##   JVC                                        0     0     0     0     0
##   Kadokawa Games                             0     0     0     0     0
##   Kadokawa Shoten                            1     1     3     6     3
##   Kaga Create                                0     0     0     0     0
##   Kalypso Media                              0     0     1     2     5
##   Kamui                                      0     0     0     0     0
##   Kando Games                                0     1     0     0     0
##   Karin Entertainment                        0     0     0     0     0
##   Kemco                                      1     0     0     0     0
##   KID                                        0     3     0     0     0
##   Kids Station                               0     0     1     0     0
##   King Records                               0     0     0     0     0
##   Knowledge Adventure                        0     0     0     0     2
##   Koch Media                                 0     0     0     6     0
##   Kokopeli Digital Studios                   0     0     0     0     0
##   Konami Digital Entertainment              56    66    61    64    59
##   Kool Kizz                                  0     0     0     0     0
##   KSS                                        0     0     0     0     0
##   Laguna                                     0     0     0     0     0
##   Legacy Interactive                         0     0     0     1     0
##   LEGO Media                                 0     0     0     0     0
##   Level 5                                    0     0     0     0     4
##   Lexicon Entertainment                      0     0     1     1     0
##   Licensed 4U                                0     0     0     0     0
##   Lighthouse Interactive                     0     0     1     0     0
##   Liquid Games                               0     1     0     0     0
##   Little Orbit                               0     0     0     0     0
##   Locus                                      0     0     0     0     0
##   LSP Games                                  0     0     0     0     0
##   LucasArts                                  8     9    11    13     9
##   Mad Catz                                   0     1     0     0     0
##   Magical Company                            0     0     0     0     0
##   Magix                                      0     0     0     0     1
##   Majesco Entertainment                     10     6     6    12    24
##   Mamba Games                                0     0     0     1     0
##   Marvel Entertainment                       0     0     0     0     0
##   Marvelous Entertainment                    0     0     0     0     0
##   Marvelous Games                            0     0     0     0     0
##   Marvelous Interactive                      3     2    11    13     5
##   Masque Publishing                          0     0     0     0     0
##   Mastertronic                               0     1     0     0     1
##   Mastiff                                    2     0     0     0     3
##   Mattel Interactive                         0     0     0     0     0
##   Max Five                                   0     0     0     0     0
##   Maximum Family Games                       0     0     0     0     0
##   Maxis                                      0     0     0     0     0
##   MC2 Entertainment                          1     0     0     0     0
##   Media Entertainment                        0     0     0     0     0
##   Media Factory                              0     0     0     0     0
##   Media Rings                                0     0     0     0     0
##   Media Works                                0     1     1     0     0
##   MediaQuest                                 0     0     0     0     0
##   Men-A-Vision                               0     0     0     0     0
##   Mentor Interactive                         0     0     0     0     3
##   Mercury Games                              0     0     2     2     0
##   Merscom LLC                                0     0     0     0     1
##   Metro 3D                                   0     0     2     2     0
##   Michaelsoft                                0     1     0     0     0
##   Micro Cabin                                0     0     0     0     0
##   Microids                                   1     0     0     0     0
##   Microprose                                 0     0     0     0     0
##   Microsoft Game Studios                    14     9    19    10     7
##   Midas Interactive Entertainment            1     1     1     1     4
##   Midway Games                              21    25    17    16     0
##   Milestone                                  0     0     0     1     0
##   Milestone S.r.l                            0     0     0     0     0
##   Milestone S.r.l.                           0     0     0     0     0
##   Minato Station                             0     0     0     1     0
##   Mindscape                                  0     0     2     2    13
##   Mirai Shounen                              0     0     0     1     0
##   Misawa                                     0     0     0     0     0
##   Mitsui                                     0     0     0     0     0
##   mixi, Inc                                  0     0     0     0     0
##   MLB.com                                    0     0     0     0     0
##   Mojang                                     0     0     0     0     0
##   Monte Christo Multimedia                   0     0     1     0     0
##   Moss                                       0     0     0     1     0
##   MTO                                        0     2     3     1     0
##   MTV Games                                  0     0     0    13    16
##   Mud Duck Productions                       0     0     0     0     0
##   Mumbo Jumbo                                0     1     2     3     0
##   Mycom                                      0     0     0     0     0
##   Myelin Media                               0     3     0     0     0
##   Mystique                                   0     0     0     0     0
##   N/A                                        5     0     1     0     0
##   Namco Bandai Games                        41    66    49    52    62
##   Natsume                                    0     3     1     0     1
##   Navarre Corp                               0     0     0     1     0
##   Naxat Soft                                 0     0     0     1     0
##   NCS                                        0     0     0     0     0
##   NCSoft                                     2     2     0     0     0
##   NDA Productions                            0     0     0     0     0
##   NEC                                        0     0     0     0     0
##   NEC Interchannel                           0     0     0     1     0
##   Neko Entertainment                         0     0     2     2     1
##   NetRevo                                    0     0     0     0     0
##   New                                        0     0     0     0     0
##   New World Computing                        0     0     0     0     0
##   NewKidCo                                   0     0     0     0     0
##   Nexon                                      0     0     0     0     0
##   Nichibutsu                                 0     0     0     0     0
##   Nihon Falcom Corporation                   0     0     0     0     0
##   Nintendo                                  45    53    42    32    32
##   Nippon Amuse                               0     0     0     0     0
##   Nippon Columbia                            0     0     0     0     0
##   Nippon Ichi Software                       0     0     6     5     9
##   Nippon Telenet                             0     0     0     0     0
##   Nitroplus                                  0     0     0     0     0
##   Nobilis                                    0     0     2     7     3
##   Nordcurrent                                0     0     1     1     1
##   Nordic Games                               0     0     0     1     4
##   NovaLogic                                  2     0     0     0     1
##   Number None                                0     0     0     0     1
##   O-Games                                    0     0     0     0     1
##   O3 Entertainment                           0     1     1     0     0
##   Ocean                                      0     0     0     0     0
##   Office Create                              0     0     0     0     0
##   On Demand                                  0     0     0     0     0
##   Ongakukan                                  0     1     0     0     0
##   Origin Systems                             0     0     0     0     0
##   Otomate                                    0     0     0     0     0
##   Oxygen Interactive                         1     3     1     7     9
##   P2 Games                                   0     0     0     0     2
##   Pacific Century Cyber Works                0     0     0     0     0
##   Pack-In-Video                              0     0     0     0     0
##   Pack In Soft                               0     0     0     0     0
##   Palcom                                     0     0     0     0     0
##   Panther Software                           0     0     0     0     0
##   Paon                                       0     0     2     2     0
##   Paon Corporation                           0     0     0     0     0
##   Paradox Development                        0     0     0     0     0
##   Paradox Interactive                        0     0     1     2     4
##   Parker Bros.                               0     0     0     0     0
##   Performance Designed Products              0     0     0     0     2
##   Phantagram                                 0     0     0     0     0
##   Phantom EFX                                0     0     0     0     1
##   Phenomedia                                 0     0     2     1     1
##   Phoenix Games                              0     0     1     0     0
##   Piacci                                     0     0     0     0     0
##   Pinnacle                                   0     0     0     4     1
##   Pioneer LDC                                0     0     0     0     0
##   Play It                                    3     0     0     0     0
##   Playlogic Game Factory                     1     0     0     2    11
##   Playmates                                  0     0     0     0     0
##   Playmore                                   0     0     0     0     0
##   PlayV                                      0     0     0     0     1
##   Plenty                                     0     0     0     0     0
##   PM Studios                                 0     0     0     0     1
##   Pony Canyon                                0     0     0     0     0
##   PopCap Games                               0     1     1     3     4
##   Popcorn Arcade                             0     0     7     3     0
##   PopTop Software                            0     0     0     0     0
##   Pow                                        0     0     0     0     0
##   PQube                                      0     0     2     2     4
##   Princess Soft                              0     1     0     1     0
##   Prototype                                  0     0     5     3     5
##   Psygnosis                                  0     0     0     0     0
##   Quelle                                     0     0     0     0     0
##   Quest                                      0     0     0     0     0
##   Quinrose                                   0     0     0     0     0
##   Quintet                                    0     0     0     0     0
##   Rage Software                              0     0     0     0     0
##   Rain Games                                 0     0     0     0     0
##   Rebellion                                  0     0     0     0     0
##   Rebellion Developments                     0     0     0     0     0
##   RED Entertainment                          0     0     0     0     0
##   Red Orb                                    0     0     0     0     0
##   Red Storm Entertainment                    0     0     0     0     0
##   RedOctane                                  2     1     1     0     0
##   Reef Entertainment                         0     0     0     0     2
##   responDESIGN                               1     0     0     0     0
##   Revolution (Japan)                         0     0     0     0     1
##   Revolution Software                        0     0     0     0     0
##   Rising Star Games                          7     9    19    17    12
##   Riverhillsoft                              0     0     0     0     0
##   Rocket Company                             0     2     3     1     1
##   Rondomedia                                 0     0     0     3     5
##   RTL                                        0     0     1     5     2
##   Russel                                     0     0     1     1     1
##   Sammy Corporation                          0     1     0     0     0
##   Saurus                                     0     0     0     0     0
##   Scholastic Inc.                            0     0     1     4     0
##   SCi                                        3     0     0     0     0
##   Screenlife                                 0     0     0     0     0
##   SCS Software                               0     0     0     0     0
##   Sears                                      0     0     0     0     0
##   Sega                                      31    47    50    67    43
##   Seta Corporation                           0     0     0     0     0
##   Seventh Chord                              0     0     0     0     0
##   Shogakukan                                 0     1     1     0     0
##   Simon & Schuster Interactive               0     0     0     0     0
##   Slightly Mad Studios                       0     0     0     0     0
##   Slitherine Software                        0     0     0     0     2
##   SNK                                        1     0     0     0     0
##   SNK Playmore                               3     1     4     2     2
##   Societa                                    0     0     0     0     0
##   Sold Out                                   0     0     0     0     0
##   Sonnet                                     0     0     0     0     0
##   Sony Computer Entertainment               48    51    41    37    45
##   Sony Computer Entertainment America        0     0     0     0     0
##   Sony Computer Entertainment Europe         0     0     0     0     0
##   Sony Music Entertainment                   0     0     0     0     0
##   Sony Online Entertainment                  1     1     0     0     0
##   SouthPeak Games                            1     2     4     8    13
##   Spike                                      0     4     8     4     8
##   SPS                                        0     0     0     0     0
##   Square                                     0     0     0     0     0
##   Square EA                                  0     0     0     0     0
##   Square Enix                                6    12    23    24    18
##   SquareSoft                                 0     0     0     0     0
##   SSI                                        0     0     0     0     0
##   Stainless Games                            0     0     0     0     0
##   Starfish                                   0     0     2     0     1
##   Starpath Corp.                             0     0     0     0     0
##   Sting                                      0     1     1     5     0
##   Storm City Games                           0     0     0     0     3
##   Strategy First                             0     0     0     0     0
##   Success                                    2     1     5     3     1
##   Summitsoft                                 0     0     0     0     0
##   Sunflowers                                 0     0     0     0     0
##   Sunrise Interactive                        0     1     1     0     0
##   Sunsoft                                    0     0     0     0     0
##   Sweets                                     0     1     0     0     1
##   Swing! Entertainment                       0     0     0     0     0
##   Syscom                                     0     0     0     0     0
##   System 3                                   0     0     0     0     0
##   System 3 Arcade Software                   0     3     2     6     2
##   System Soft                                0     0     0     1     0
##   T&E Soft                                   0     0     0     0     0
##   Taito                                      0     2     3     0     0
##   Takara                                     0     0     0     0     0
##   Takara Tomy                                0     3     8    13     5
##   Take-Two Interactive                      41    33    37    41    41
##   Takuyo                                     0     0     0     0     0
##   TalonSoft                                  0     0     0     0     0
##   TDK Core                                   0     2     1     0     0
##   TDK Mediactive                             0     0     0     0     0
##   Team17 Software                            0     0     0     0     0
##   Technos Japan Corporation                  0     0     0     0     0
##   TechnoSoft                                 0     0     0     0     0
##   Tecmo Koei                                13    26    31    30    21
##   Telegames                                  1     0     2     1     0
##   Telltale Games                             0     0     0     0     0
##   Telstar                                    0     0     0     0     0
##   Tetris Online                              0     0     0     0     0
##   TGL                                        0     0     0     0     1
##   The Adventure Company                      0     0     0     3     2
##   The Learning Company                       0     0     0     0     0
##   THQ                                       63    57    74    61    72
##   Tigervision                                0     0     0     0     0
##   Time Warner Interactive                    0     0     0     0     0
##   Titus                                      0     0     0     0     0
##   Tivola                                     0     0     0     1     2
##   TOHO                                       0     0     0     0     0
##   Tommo                                      0     0     3     0     1
##   Tomy Corporation                           3     1     1     1     1
##   TopWare Interactive                        0     0     0     0     0
##   Touchstone                                 0     0     1     3     0
##   Tradewest                                  0     0     0     0     0
##   Trion Worlds                               0     0     0     0     0
##   Tripwire Interactive                       0     0     0     0     0
##   Tru Blu Entertainment                      0     0     0     0     0
##   Tryfirst                                   0     0     0     1     0
##   TYO                                        0     0     0     0     0
##   Type-Moon                                  0     0     0     0     0
##   U.S. Gold                                  0     0     0     0     0
##   Ubisoft                                   57    61    88   112   102
##   Ubisoft Annecy                             0     0     0     0     3
##   UEP Systems                                0     0     0     0     0
##   UFO Interactive                            0     0     1     4     3
##   UIG Entertainment                          0     0     0     0     0
##   Ultravision                                0     0     0     0     0
##   Universal Gamex                            0     0     0     0     0
##   Universal Interactive                      0     0     0     0     0
##   Unknown                                    1     2     3     2     1
##   Valcon Games                               1     1     0     2     3
##   ValuSoft                                   1     0     0     1     1
##   Valve                                      0     0     0     0     0
##   Valve Software                             0     0     0     0     1
##   Vap                                        0     0     0     0     0
##   Vatical Entertainment                      0     0     0     0     0
##   Vic Tokai                                  0     0     0     0     0
##   Victor Interactive                         0     0     0     0     0
##   Video System                               0     0     0     0     0
##   Views                                      0     0     0     0     0
##   Vir2L Studios                              0     0     0     2     1
##   Virgin Interactive                         0     0     0     0     0
##   Virtual Play Games                         0     0     0     0     0
##   Visco                                      0     0     0     0     0
##   Vivendi Games                             25    19    21    16     2
##   Wanadoo                                    1     0     0     0     0
##   Warashi                                    0     0     1     0     0
##   Wargaming.net                              0     0     0     0     0
##   Warner Bros. Interactive Entertainment     1     1     5    10    29
##   Warp                                       0     0     0     0     0
##   WayForward Technologies                    0     0     0     0     0
##   Westwood Studios                           0     0     0     0     0
##   White Park Bay Software                    0     0     1     0     0
##   Wizard Video Games                         0     0     0     0     0
##   Xicat Interactive                          0     0     0     0     0
##   Xing Entertainment                         0     0     0     0     0
##   Xplosiv                                    1     4     2     3     0
##   XS Games                                   1     0     1     2     3
##   Xseed Games                                0     0     0     0     0
##   Yacht Club Games                           0     0     0     0     0
##   Yamasa Entertainment                       0     2     0     0     0
##   Yeti                                       0     1     1     1     2
##   Yuke's                                     1     1     1     0     0
##   Yumedia                                    0     0     0     0     0
##   Zenrin                                     0     1     1     0     0
##   Zoo Digital Publishing                    31     6    12    12    11
##   Zoo Games                                  0     0     0     8    11
##   Zushi Games                                0     0     1     4    13
##   Sum                                      941  1008  1202  1428  1431
##                                         Year
## Publisher                                 2010  2011  2012  2013  2014
##   10TACLE Studios                            0     0     0     0     0
##   1C Company                                 0     2     0     0     0
##   20th Century Fox Video Games               0     0     0     0     0
##   2D Boy                                     0     0     0     0     0
##   3DO                                        0     0     0     0     0
##   49Games                                    0     0     0     0     0
##   505 Games                                 22    21     8     6     6
##   5pb                                       10     8     8     5     7
##   7G//AMES                                   1     3     0     0     0
##   989 Sports                                 0     0     0     0     0
##   989 Studios                                0     0     0     0     0
##   Abylight                                   1     0     0     0     0
##   Acclaim Entertainment                      0     0     0     0     0
##   Accolade                                   0     0     0     0     0
##   Ackkstudios                                1     2     6     0     0
##   Acquire                                    3     4     2     0     1
##   Activision                                89    75    42    38    42
##   Activision Blizzard                        0     0     0     0     1
##   Activision Value                           0     0     0     0     0
##   Adeline Software                           0     0     0     0     0
##   Aerosoft                                   1     0     0     1     0
##   Agatsuma Entertainment                     0     0     1     1     0
##   Agetec                                     0     0     0     0     0
##   Aksys Games                                0     0     0     0     2
##   Alawar Entertainment                       0     0     0     0     0
##   Alchemist                                 10     7     4     4     0
##   Alternative Software                       1     0     0     0     0
##   Altron                                     0     0     0     0     0
##   Alvion                                     1     0     0     0     0
##   American Softworks                         0     0     0     0     0
##   Angel Studios                              0     0     0     0     0
##   Answer Software                            0     0     0     0     0
##   AQ Interactive                             0     0     0     0     0
##   Aqua Plus                                  2     3     2     2     0
##   Aques                                      0     0     0     0     0
##   Arc System Works                           3     0     2     6     4
##   Arena Entertainment                        0     0     0     0     0
##   Aria                                       0     0     0     0     0
##   Arika                                      0     0     0     0     0
##   ArtDink                                    1     0     0     0     1
##   Aruze Corp                                 0     0     0     0     0
##   ASC Games                                  0     0     0     0     0
##   Ascaron Entertainment                      0     0     1     0     0
##   Ascaron Entertainment GmbH                 0     0     0     0     0
##   ASCII Entertainment                        0     0     0     0     0
##   ASCII Media Works                          3     1     0     0     1
##   Asgard                                     3     1     1     2     0
##   ASK                                        0     0     0     0     0
##   Asmik Ace Entertainment                    0     0     0     0     0
##   Asmik Corp                                 0     0     0     0     0
##   Aspyr                                      0     0     0     0     0
##   Astragon                                   3     1     0     0     0
##   Asylum Entertainment                       5     1     0     0     0
##   Atari                                     11     5     1     0     0
##   Athena                                     0     0     0     0     0
##   Atlus                                      4     5     7     2     5
##   Avalon Interactive                         0     0     0     0     0
##   Avanquest                                  4     7     0     0     0
##   Avanquest Software                         0     0     6     1     0
##   Axela                                      0     0     0     0     0
##   BAM! Entertainment                         0     0     0     0     0
##   Banpresto                                  0     3     0     0     0
##   Benesse                                    0     0     0     0     0
##   Berkeley                                   0     0     0     0     0
##   Bethesda Softworks                         3    12     6     0    11
##   Big Ben Interactive                        0     1     0     1     0
##   Big Fish Games                             0     0     0     0     1
##   Bigben Interactive                         0     0     0     0     0
##   bitComposer Games                          0     4     0     0     0
##   Black Bean Games                           8     9     0     0     0
##   Black Label Games                          0     0     0     0     0
##   Blast! Entertainment Ltd                   0     0     0     0     0
##   Blue Byte                                  0     0     0     0     0
##   BMG Interactive Entertainment              0     0     0     0     0
##   Bohemia Interactive                        0     0     0     1     0
##   Bomb                                       0     0     0     0     0
##   Boost On                                   0     0     0     1     0
##   BPS                                        0     0     0     0     0
##   Brash Entertainment                        0     0     0     0     0
##   Broccoli                                   1     3     2     4     0
##   BushiRoad                                  0     0     1     0     0
##   Capcom                                    22    24    24    21     4
##   Cave                                       2     4     1     1     0
##   CBS Electronics                            0     0     0     0     0
##   CCP                                        0     0     0     0     0
##   CDV Software Entertainment                 0     1     0     0     0
##   ChunSoft                                   1     3     2     0     0
##   City Interactive                           5     4     0     3     1
##   Cloud Imperium Games Corporation           0     0     2     0     0
##   Coconuts Japan                             0     0     0     0     0
##   Codemasters                                5    13     8     5     6
##   Codemasters Online                         0     0     0     0     0
##   CokeM Interactive                          0     0     0     0     0
##   Coleco                                     0     0     0     0     0
##   Comfort                                    2     2     1     1     0
##   Commseed                                   0     0     0     0     0
##   Compile                                    0     0     0     0     0
##   Compile Heart                              3     1     3     2     5
##   Conspiracy Entertainment                   4     0     0     0     0
##   Core Design Ltd.                           0     0     0     0     0
##   CPG Products                               0     0     0     0     0
##   Crave Entertainment                        7    14     0     0     0
##   Creative Core                              0     0     0     0     0
##   Crimson Cow                                0     1     0     0     0
##   Crystal Dynamics                           0     0     0     0     0
##   CTO SpA                                    0     0     0     0     0
##   Culture Brain                              1     0     0     0     0
##   Culture Publishers                         0     0     0     0     0
##   CyberFront                                 6     1     2     1     0
##   Cygames                                    0     0     0     0     0
##   D3Publisher                               31    18     9    20     2
##   Daedalic                                   1     0     1     0     0
##   Daedalic Entertainment                     0     0     1     2     0
##   Daito                                      0     0     0     0     0
##   Data Age                                   0     0     0     0     0
##   Data Design Interactive                    0     0     0     0     0
##   Data East                                  0     0     0     0     0
##   Datam Polystar                             0     0     0     0     0
##   Deep Silver                               17    13     4    12    12
##   Destination Software, Inc                  0     0     0     0     0
##   Destineer                                 12     2     0     0     0
##   Detn8 Games                                0     0     0     0     0
##   Devolver Digital                           1     0     0     0     0
##   DHM Interactive                            0     0     0     0     0
##   DigiCube                                   0     0     0     0     0
##   Disney Interactive Studios                35    20     7    12    10
##   Dorart                                     1     0     0     0     0
##   dramatic create                            0     0     0     0     0
##   DreamCatcher Interactive                   2     0     0     0     0
##   DreamWorks Interactive                     0     0     0     0     0
##   DSI Games                                  0     0     0     0     0
##   DTP Entertainment                          7    13     1     0     0
##   Dusenberry Martin Racing                   0     0     0     0     0
##   EA Games                                   0     0     1     0     0
##   Easy Interactive                           0     0     2     0     0
##   Ecole                                      0     0     0     0     0
##   Edia                                       0     0     0     0     0
##   Eidos Interactive                          0     0     0     0     0
##   Electronic Arts                           88    76    46    42    36
##   Electronic Arts Victor                     0     0     0     0     0
##   Elf                                        0     0     0     0     0
##   Elite                                      0     0     0     0     0
##   Empire Interactive                         0     0     0     0     0
##   Encore                                     0     0     0     0     0
##   Enix Corporation                           0     0     0     0     0
##   Enjoy Gaming ltd.                          0     0     0     0     0
##   Enterbrain                                 2     0     0     0     0
##   EON Digital Entertainment                  0     0     0     0     0
##   Epic Games                                 0     0     0     0     0
##   Epoch                                      0     0     0     0     0
##   Ertain                                     0     0     0     0     0
##   ESP                                        0     0     0     0     0
##   Essential Games                            0     0     0     0     0
##   Evolution Games                            0     0     0     0     0
##   Evolved Games                              0     2     0     0     0
##   Excalibur Publishing                       0     3     1     0     0
##   Experience Inc.                            0     0     0     0     1
##   Extreme Entertainment Group                0     0     0     0     0
##   Falcom Corporation                         3     1     2     2     0
##   Fields                                     0     0     1     0     0
##   Flashpoint Games                           1     0     0     0     0
##   Flight-Plan                                0     0     0     0     0
##   Focus Home Interactive                     6     9     7     3    11
##   Focus Multimedia                           0     0     2     0     0
##   fonfun                                     0     0     0     0     0
##   Foreign Media Games                        9     0     0     0     0
##   Fortyfive                                  0     0     0     0     0
##   Fox Interactive                            0     0     0     0     0
##   From Software                              1     0     0     1     0
##   Fuji                                       0     0     0     0     0
##   Funbox Media                               0     4     1     0     0
##   Funcom                                     1     0     1     0     0
##   FunSoft                                    0     0     0     0     0
##   Funsta                                     0     0     0     0     0
##   FuRyu                                      1     4     4     5     3
##   FuRyu Corporation                          0     0     0     0     0
##   G.Rev                                      1     0     0     0     0
##   Gaga                                       0     0     0     0     0
##   Gainax Network Systems                     0     0     0     0     0
##   Gakken                                     0     0     0     0     0
##   Game Arts                                  0     0     0     0     0
##   Game Factory                               1     0     0     0     0
##   Game Life                                  0     0     0     0     0
##   Gamebridge                                 0     0     0     0     0
##   Gamecock                                   0     0     0     0     0
##   Gameloft                                   0     0     0     0     0
##   GameMill Entertainment                     1     5     2     0     0
##   GameTek                                    0     0     0     0     0
##   Gathering of Developers                    0     0     0     0     0
##   General Entertainment                      0     0     0     0     0
##   Genki                                      0     0     1     0     0
##   Genterprise                                0     0     0     0     0
##   Ghostlight                                 2     2     0     0     0
##   Giga                                       0     0     0     0     1
##   Giza10                                     0     0     1     0     0
##   Glams                                      0     0     0     0     0
##   Global A Entertainment                     0     0     0     0     0
##   Global Star                                0     0     0     0     0
##   GN Software                                1     0     0     0     0
##   GOA                                        0     0     0     0     0
##   Gotham Games                               0     0     0     0     0
##   Graffiti                                   2     0     0     0     0
##   Grand Prix Games                           0     0     0     0     0
##   Graphsim Entertainment                     0     0     0     0     0
##   Gremlin Interactive Ltd                    0     0     0     0     0
##   Griffin International                      1     0     0     0     0
##   Groove Games                               0     0     0     0     0
##   GSP                                        3     4     0     0     0
##   GT Interactive                             0     0     0     0     0
##   GungHo                                     0     1     2     2     1
##   Gust                                       1     1     2     1     0
##   Hackberry                                  1     0     0     0     0
##   HAL Laboratory                             0     0     0     0     0
##   Hamster Corporation                        0     0     0     0     0
##   Happinet                                   0     0     0     0     2
##   Harmonix Music Systems                     0     0     0     0     0
##   Hasbro Interactive                         0     0     0     0     0
##   Havas Interactive                          0     0     0     0     0
##   Headup Games                               0     0     0     1     0
##   Hearty Robin                               0     0     0     0     0
##   Hect                                       0     0     0     0     0
##   Hello Games                                0     0     0     0     0
##   Her Interactive                            0     1     0     0     0
##   Hip Interactive                            0     0     0     0     0
##   HMH Interactive                            0     0     0     0     0
##   Home Entertainment Suppliers               2     2     0     0     0
##   Hudson Entertainment                       0     0     0     0     0
##   Hudson Soft                               11     3     0     0     0
##   Human Entertainment                        0     0     0     0     0
##   HuneX                                      0     0     0     0     0
##   Iceberg Interactive                        0     2     1     0     0
##   id Software                                0     0     0     0     0
##   Idea Factory                              23    19    19    11    13
##   Idea Factory International                 0     0     0     0     3
##   IE Institute                               0     0     1     0     0
##   Ignition Entertainment                     0     2     0     0     0
##   Illusion Softworks                         0     0     0     0     0
##   Imadio                                     0     0     0     0     0
##   Image Epoch                                0     0     1     0     0
##   imageepoch Inc.                            0     0     0     0     2
##   Imageworks                                 0     0     0     0     0
##   Imagic                                     0     0     0     0     0
##   Imagineer                                  0     0     0     0     0
##   Imax                                       0     0     0     0     0
##   Indie Games                                0     0     0     0     0
##   Infogrames                                 0     0     0     0     0
##   Insomniac Games                            0     0     0     0     0
##   Interchannel                               0     0     0     0     0
##   Interchannel-Holon                         0     0     0     0     0
##   Intergrow                                  0     0     0     0     0
##   Interplay                                  0     0     0     0     0
##   Interplay Productions                      0     0     0     0     0
##   Interworks Unlimited, Inc.                 0     0     1     0     0
##   Inti Creates                               0     0     0     0     0
##   Introversion Software                      0     0     0     0     0
##   inXile Entertainment                       0     0     0     0     0
##   Irem Software Engineering                  2     2     1     0     0
##   ITT Family Games                           0     0     0     0     0
##   Ivolgamus                                  0     0     0     0     0
##   iWin                                       0     1     0     0     0
##   Jack of All Games                          0     2     0     0     0
##   Jaleco                                     0     0     0     0     0
##   Jester Interactive                         0     0     0     0     0
##   Jorudan                                    0     0     0     0     0
##   JoWood Productions                         4     0     0     0     0
##   Just Flight                                1     0     0     0     0
##   JVC                                        0     0     0     0     0
##   Kadokawa Games                             0     0     1     3     5
##   Kadokawa Shoten                            9     9     4     4     1
##   Kaga Create                                0     0     0     1     0
##   Kalypso Media                              5     7     1     0     2
##   Kamui                                      1     0     0     0     0
##   Kando Games                                0     0     0     0     0
##   Karin Entertainment                        1     0     0     0     0
##   Kemco                                      0     0     0     0     0
##   KID                                        0     0     0     0     0
##   Kids Station                               0     0     0     0     0
##   King Records                               0     0     0     0     0
##   Knowledge Adventure                        0     0     0     0     0
##   Koch Media                                 0     2     0     1     0
##   Kokopeli Digital Studios                   0     0     0     0     0
##   Konami Digital Entertainment              68    44    32    16    18
##   Kool Kizz                                  0     0     0     0     0
##   KSS                                        0     0     0     0     0
##   Laguna                                     0     0     0     0     0
##   Legacy Interactive                         0     0     0     0     0
##   LEGO Media                                 0     0     0     0     0
##   Level 5                                    3     3     9     3     1
##   Lexicon Entertainment                      0     0     0     0     0
##   Licensed 4U                                0     0     3     0     0
##   Lighthouse Interactive                     0     0     0     0     0
##   Liquid Games                               0     0     0     0     0
##   Little Orbit                               2     0     0     2     9
##   Locus                                      0     0     0     0     0
##   LSP Games                                  0     0     0     0     0
##   LucasArts                                  5     8     0     0     0
##   Mad Catz                                   0     0     1     0     0
##   Magical Company                            0     0     0     0     0
##   Magix                                      0     0     0     0     0
##   Majesco Entertainment                     10     6     0     2     0
##   Mamba Games                                1     0     0     0     0
##   Marvel Entertainment                       0     0     0     0     0
##   Marvelous Entertainment                    0     0     2     3     4
##   Marvelous Games                            0     0     0     0     0
##   Marvelous Interactive                      6     6     0     0     3
##   Masque Publishing                          0     1     0     0     0
##   Mastertronic                               2     8     1     0     0
##   Mastiff                                    4     6     0     0     0
##   Mattel Interactive                         0     0     0     0     0
##   Max Five                                   0     0     0     0     0
##   Maximum Family Games                       0     0     1     0     0
##   Maxis                                      0     0     0     0     0
##   MC2 Entertainment                          0     0     0     0     0
##   Media Entertainment                        0     0     0     0     0
##   Media Factory                              0     0     0     0     0
##   Media Rings                                0     0     0     0     0
##   Media Works                                0     0     0     0     0
##   MediaQuest                                 0     0     0     0     0
##   Men-A-Vision                               0     0     0     0     0
##   Mentor Interactive                         1     1     0     0     0
##   Mercury Games                              0     0     0     0     0
##   Merscom LLC                                0     0     0     0     0
##   Metro 3D                                   0     0     0     0     0
##   Michaelsoft                                0     0     0     0     0
##   Micro Cabin                                0     0     0     0     0
##   Microids                                   0     0     0     0     0
##   Microprose                                 0     0     0     0     0
##   Microsoft Game Studios                    12    11     7     8     9
##   Midas Interactive Entertainment            0     0     0     0     0
##   Midway Games                               0     0     0     0     0
##   Milestone                                  0     0     0     0     0
##   Milestone S.r.l                            0     0     0     0     0
##   Milestone S.r.l.                           0     0     0     0     4
##   Minato Station                             0     0     1     0     0
##   Mindscape                                  5     0     0     0     0
##   Mirai Shounen                              0     0     0     0     0
##   Misawa                                     0     0     0     0     0
##   Mitsui                                     0     0     0     0     0
##   mixi, Inc                                  0     0     0     0     0
##   MLB.com                                    0     0     0     0     0
##   Mojang                                     0     0     0     0     0
##   Monte Christo Multimedia                   0     0     0     0     0
##   Moss                                       0     0     0     1     0
##   MTO                                        1     0     0     0     0
##   MTV Games                                  8     3     0     0     0
##   Mud Duck Productions                       0     0     0     0     0
##   Mumbo Jumbo                                0     0     0     0     0
##   Mycom                                      0     0     0     0     0
##   Myelin Media                               0     0     0     0     0
##   Mystique                                   0     0     0     0     0
##   N/A                                        2     3     2     0     2
##   Namco Bandai Games                        70    76    85    63    69
##   Natsume                                    3     0     0     0     1
##   Navarre Corp                               0     0     0     0     0
##   Naxat Soft                                 0     0     0     0     0
##   NCS                                        0     0     0     0     0
##   NCSoft                                     0     0     1     0     1
##   NDA Productions                            0     0     0     0     0
##   NEC                                        0     0     0     0     0
##   NEC Interchannel                           0     0     0     0     0
##   Neko Entertainment                         2     0     0     0     0
##   NetRevo                                    1     0     1     0     0
##   New                                        0     0     0     0     0
##   New World Computing                        0     0     0     0     0
##   NewKidCo                                   0     0     0     0     0
##   Nexon                                      1     0     0     0     0
##   Nichibutsu                                 0     0     0     0     0
##   Nihon Falcom Corporation                   0     0     2     0     1
##   Nintendo                                  28    26    31    23    20
##   Nippon Amuse                               0     0     0     0     0
##   Nippon Columbia                            0     0     1     2     2
##   Nippon Ichi Software                       9     9     5    18    19
##   Nippon Telenet                             0     0     0     0     0
##   Nitroplus                                  0     0     0     0     1
##   Nobilis                                    1     0     0     0     0
##   Nordcurrent                                2     0     0     0     0
##   Nordic Games                               5     4     4     2     2
##   NovaLogic                                  0     0     0     0     0
##   Number None                                0     0     0     0     0
##   O-Games                                   12     4     0     0     0
##   O3 Entertainment                           0     0     0     0     0
##   Ocean                                      0     0     0     0     0
##   Office Create                              0     0     0     1     1
##   On Demand                                  0     0     0     0     0
##   Ongakukan                                  0     0     0     0     0
##   Origin Systems                             0     0     0     0     0
##   Otomate                                    0     0     0     1     0
##   Oxygen Interactive                         0     0     0     0     0
##   P2 Games                                   0     1     0     0     0
##   Pacific Century Cyber Works                0     0     0     0     0
##   Pack-In-Video                              0     0     0     0     0
##   Pack In Soft                               0     0     0     0     0
##   Palcom                                     0     0     0     0     0
##   Panther Software                           0     0     0     0     0
##   Paon                                       1     1     0     0     0
##   Paon Corporation                           0     0     0     1     0
##   Paradox Development                        0     0     0     0     0
##   Paradox Interactive                        5     6     1     0     1
##   Parker Bros.                               0     0     0     0     0
##   Performance Designed Products              0     0     0     0     0
##   Phantagram                                 0     0     0     0     0
##   Phantom EFX                                0     0     0     0     0
##   Phenomedia                                 0     0     0     0     0
##   Phoenix Games                              0     0     0     0     0
##   Piacci                                     1     0     0     0     0
##   Pinnacle                                   0     0     0     0     0
##   Pioneer LDC                                0     0     0     0     0
##   Play It                                    0     0     0     0     0
##   Playlogic Game Factory                     0     0     0     0     0
##   Playmates                                  0     0     0     0     0
##   Playmore                                   0     0     0     0     0
##   PlayV                                      3     0     0     0     0
##   Plenty                                     0     1     0     0     0
##   PM Studios                                 0     0     0     0     0
##   Pony Canyon                                0     0     0     0     0
##   PopCap Games                               3     3     0     0     0
##   Popcorn Arcade                             0     0     0     0     0
##   PopTop Software                            0     0     0     0     0
##   Pow                                        0     0     0     0     0
##   PQube                                      6    10     1     1     0
##   Princess Soft                              0     0     0     0     0
##   Prototype                                  4     2     2     1     3
##   Psygnosis                                  0     0     0     0     0
##   Quelle                                     0     0     0     0     0
##   Quest                                      0     0     0     0     0
##   Quinrose                                   0     6     4     2     2
##   Quintet                                    0     0     0     0     0
##   Rage Software                              0     0     0     0     0
##   Rain Games                                 0     0     0     0     0
##   Rebellion                                  0     0     0     0     0
##   Rebellion Developments                     0     0     0     0     0
##   RED Entertainment                          1     0     0     0     0
##   Red Orb                                    0     0     0     0     0
##   Red Storm Entertainment                    0     0     0     0     0
##   RedOctane                                  0     0     0     0     0
##   Reef Entertainment                         1     0     4     0     0
##   responDESIGN                               0     0     0     0     0
##   Revolution (Japan)                         0     0     0     0     0
##   Revolution Software                        0     0     0     0     0
##   Rising Star Games                          6     9     2     3     0
##   Riverhillsoft                              0     0     0     0     0
##   Rocket Company                             2     1     1     1     1
##   Rondomedia                                 2     3     0     0     0
##   RTL                                        0     0     0     0     0
##   Russel                                     3     0     0     0     0
##   Sammy Corporation                          0     0     0     0     0
##   Saurus                                     0     0     0     0     0
##   Scholastic Inc.                            3     2     0     0     0
##   SCi                                        0     0     0     0     0
##   Screenlife                                 0     0     0     4     0
##   SCS Software                               0     0     1     0     0
##   Sears                                      0     0     0     0     0
##   Sega                                      39    35    25    17    23
##   Seta Corporation                           0     0     0     0     0
##   Seventh Chord                              0     0     0     1     0
##   Shogakukan                                 0     0     0     0     0
##   Simon & Schuster Interactive               0     0     0     0     0
##   Slightly Mad Studios                       0     0     0     0     0
##   Slitherine Software                        1     0     0     0     0
##   SNK                                        0     0     0     0     0
##   SNK Playmore                               2     0     0     0     0
##   Societa                                    0     0     0     0     0
##   Sold Out                                   0     0     0     0     0
##   Sonnet                                     0     0     0     0     0
##   Sony Computer Entertainment               43    36    24    12    13
##   Sony Computer Entertainment America        0     0     0     0     3
##   Sony Computer Entertainment Europe         0     0     1     7     4
##   Sony Music Entertainment                   0     0     0     0     0
##   Sony Online Entertainment                  0     3     0     0     0
##   SouthPeak Games                            7     0     0     0     0
##   Spike                                      4     2     4     0     0
##   SPS                                        0     0     0     0     0
##   Square                                     0     0     0     0     0
##   Square EA                                  0     0     0     0     0
##   Square Enix                               25    22    11    16    26
##   SquareSoft                                 0     0     0     0     0
##   SSI                                        0     0     0     0     0
##   Stainless Games                            0     0     0     0     0
##   Starfish                                   1     2     1     0     0
##   Starpath Corp.                             0     0     0     0     0
##   Sting                                      1     0     0     0     0
##   Storm City Games                          13     3     0     0     0
##   Strategy First                             0     0     0     0     0
##   Success                                    0     0     0     1     1
##   Summitsoft                                 0     0     0     0     0
##   Sunflowers                                 0     0     0     0     0
##   Sunrise Interactive                        0     0     0     0     0
##   Sunsoft                                    0     1     0     0     0
##   Sweets                                     0     0     0     0     0
##   Swing! Entertainment                       0     0     0     0     0
##   Syscom                                     0     0     0     0     0
##   System 3                                   0     0     0     3     0
##   System 3 Arcade Software                   0     0     0     0     0
##   System Soft                                2     1     0     0     0
##   T&E Soft                                   0     0     0     0     0
##   Taito                                      2     0     0     0     0
##   Takara                                     0     0     0     0     0
##   Takara Tomy                                4     1     0     2     0
##   Take-Two Interactive                      35    31    28    16    15
##   Takuyo                                     0     1     0     0     0
##   TalonSoft                                  0     0     0     0     0
##   TDK Core                                   0     0     0     0     0
##   TDK Mediactive                             0     0     0     0     0
##   Team17 Software                            1     0     0     0     0
##   Technos Japan Corporation                  0     0     0     0     0
##   TechnoSoft                                 0     0     0     0     0
##   Tecmo Koei                                19    17    10    19    27
##   Telegames                                  1     0     0     0     0
##   Telltale Games                             0     3     0     0    11
##   Telstar                                    0     0     0     0     0
##   Tetris Online                              0     1     0     0     0
##   TGL                                        0     0     0     0     0
##   The Adventure Company                      0     0     0     0     0
##   The Learning Company                       0     0     0     0     0
##   THQ                                       57    76     8     1     0
##   Tigervision                                0     0     0     0     0
##   Time Warner Interactive                    0     0     0     0     0
##   Titus                                      0     0     0     0     0
##   Tivola                                     0     0     0     0     0
##   TOHO                                       0     0     0     0     0
##   Tommo                                      0     1     0     0     0
##   Tomy Corporation                           1     0     0     0     0
##   TopWare Interactive                        0     1     0     0     0
##   Touchstone                                 0     0     0     0     0
##   Tradewest                                  3     0     0     0     0
##   Trion Worlds                               0     0     1     3     0
##   Tripwire Interactive                       0     1     0     0     0
##   Tru Blu Entertainment                      0     0     0     0     2
##   Tryfirst                                   0     0     0     0     0
##   TYO                                        0     0     0     0     0
##   Type-Moon                                  0     0     0     0     1
##   U.S. Gold                                  0     0     0     0     0
##   Ubisoft                                   72    87    32    29    44
##   Ubisoft Annecy                             4     3     4     0     0
##   UEP Systems                                0     0     0     0     0
##   UFO Interactive                            5     2     1     0     0
##   UIG Entertainment                          0     0     0     0     0
##   Ultravision                                0     0     0     0     0
##   Universal Gamex                            0     0     0     0     0
##   Universal Interactive                      0     0     0     0     0
##   Unknown                                   18    42     6     2     3
##   Valcon Games                               1     0     0     0     0
##   ValuSoft                                   0     1     0     0     0
##   Valve                                      0     1     0     0     0
##   Valve Software                             0     2     0     0     0
##   Vap                                        0     0     0     0     0
##   Vatical Entertainment                      0     0     0     0     0
##   Vic Tokai                                  0     0     0     0     0
##   Victor Interactive                         0     0     0     0     0
##   Video System                               0     0     0     0     0
##   Views                                      0     0     1     0     1
##   Vir2L Studios                              0     0     0     0     0
##   Virgin Interactive                         0     0     0     0     0
##   Virtual Play Games                         2     0     0     0     0
##   Visco                                      0     1     0     0     0
##   Vivendi Games                              0     0     0     0     0
##   Wanadoo                                    0     0     0     0     0
##   Warashi                                    0     0     0     0     0
##   Wargaming.net                              0     1     0     0     0
##   Warner Bros. Interactive Entertainment    33    19    21    26    30
##   Warp                                       0     0     0     0     0
##   WayForward Technologies                    0     0     0     0     0
##   Westwood Studios                           0     0     0     0     0
##   White Park Bay Software                    0     0     0     0     0
##   Wizard Video Games                         0     0     0     0     0
##   Xicat Interactive                          0     0     0     0     0
##   Xing Entertainment                         0     0     0     0     0
##   Xplosiv                                    0     0     0     0     0
##   XS Games                                   1     0     0     0     0
##   Xseed Games                                0     0     1     1     1
##   Yacht Club Games                           0     0     0     0     0
##   Yamasa Entertainment                       0     0     0     0     0
##   Yeti                                       4     0     1     0     0
##   Yuke's                                     0     0     0     0     0
##   Yumedia                                    0     0     0     0     0
##   Zenrin                                     0     0     0     0     0
##   Zoo Digital Publishing                     0     0     0     0     0
##   Zoo Games                                 12     2     0     0     0
##   Zushi Games                                0     0     0     0     0
##   Sum                                     1259  1139   657   546   582
##                                         Year
## Publisher                                 2015  2016  2017  2020   N/A
##   10TACLE Studios                            0     0     0     0     0
##   1C Company                                 0     0     0     0     0
##   20th Century Fox Video Games               0     0     0     0     0
##   2D Boy                                     0     0     0     0     0
##   3DO                                        0     0     0     0     0
##   49Games                                    0     0     0     0     0
##   505 Games                                  4     7     0     0     0
##   5pb                                        9     2     0     0     0
##   7G//AMES                                   0     0     0     0     0
##   989 Sports                                 0     0     0     0     0
##   989 Studios                                0     0     0     0     0
##   Abylight                                   0     0     0     0     0
##   Acclaim Entertainment                      0     0     0     0     0
##   Accolade                                   0     0     0     0     0
##   Ackkstudios                                0     0     0     0     0
##   Acquire                                    0     0     0     0     0
##   Activision                                39    14     0     0     9
##   Activision Blizzard                        0     0     0     0     0
##   Activision Value                           0     0     0     0     0
##   Adeline Software                           0     0     0     0     0
##   Aerosoft                                   0     0     0     0     0
##   Agatsuma Entertainment                     0     0     0     0     0
##   Agetec                                     0     0     0     0     0
##   Aksys Games                                3     2     0     0     0
##   Alawar Entertainment                       1     0     0     0     0
##   Alchemist                                  2     0     0     0     0
##   Alternative Software                       1     4     0     0     0
##   Altron                                     0     0     0     0     0
##   Alvion                                     0     0     0     0     0
##   American Softworks                         0     0     0     0     0
##   Angel Studios                              0     0     0     0     0
##   Answer Software                            0     0     0     0     0
##   AQ Interactive                             0     0     0     0     0
##   Aqua Plus                                  4     3     0     0     0
##   Aques                                      0     0     0     0     0
##   Arc System Works                           4     0     0     0     0
##   Arena Entertainment                        0     0     0     0     0
##   Aria                                       0     0     0     0     0
##   Arika                                      0     0     0     0     0
##   ArtDink                                    0     0     0     0     0
##   Aruze Corp                                 0     0     0     0     0
##   ASC Games                                  0     0     0     0     0
##   Ascaron Entertainment                      0     0     0     0     0
##   Ascaron Entertainment GmbH                 0     0     0     0     0
##   ASCII Entertainment                        0     0     0     0     0
##   ASCII Media Works                          0     0     0     0     0
##   Asgard                                     1     0     0     0     0
##   ASK                                        0     0     0     0     0
##   Asmik Ace Entertainment                    0     0     0     0     0
##   Asmik Corp                                 0     0     0     0     0
##   Aspyr                                      0     0     0     0     0
##   Astragon                                   0     1     0     0     0
##   Asylum Entertainment                       0     0     0     0     0
##   Atari                                      0     1     0     0    16
##   Athena                                     0     0     0     0     0
##   Atlus                                      3     2     0     0     0
##   Avalon Interactive                         0     0     0     0     0
##   Avanquest                                  0     2     0     0     1
##   Avanquest Software                         2     0     0     0     0
##   Axela                                      0     0     0     0     0
##   BAM! Entertainment                         0     0     0     0     0
##   Banpresto                                  0     0     0     0     0
##   Benesse                                    0     0     0     0     0
##   Berkeley                                   0     0     0     0     0
##   Bethesda Softworks                        11     3     0     0     2
##   Big Ben Interactive                        0     0     0     0     0
##   Big Fish Games                             0     0     0     0     0
##   Bigben Interactive                        13     0     0     0     0
##   bitComposer Games                          0     0     0     0     0
##   Black Bean Games                           0     0     0     0     4
##   Black Label Games                          0     0     0     0     0
##   Blast! Entertainment Ltd                   0     0     0     0     0
##   Blue Byte                                  0     0     0     0     0
##   BMG Interactive Entertainment              0     0     0     0     0
##   Bohemia Interactive                        0     0     0     0     0
##   Bomb                                       0     0     0     0     0
##   Boost On                                   0     0     0     0     0
##   BPS                                        0     0     0     0     0
##   Brash Entertainment                        0     0     0     0     0
##   Broccoli                                   2     2     0     0     0
##   BushiRoad                                  0     0     0     0     0
##   Capcom                                    16    18     0     0     5
##   Cave                                       0     0     0     0     0
##   CBS Electronics                            0     0     0     0     0
##   CCP                                        0     0     0     0     0
##   CDV Software Entertainment                 0     0     0     0     0
##   ChunSoft                                   0     0     0     0     0
##   City Interactive                           0     0     0     0     1
##   Cloud Imperium Games Corporation           0     0     0     0     0
##   Coconuts Japan                             0     0     0     0     0
##   Codemasters                                3     6     0     0     2
##   Codemasters Online                         0     0     0     0     0
##   CokeM Interactive                          0     0     0     0     0
##   Coleco                                     0     0     0     0     0
##   Comfort                                    0     0     0     0     0
##   Commseed                                   0     0     0     0     0
##   Compile                                    0     0     0     0     0
##   Compile Heart                              3     1     0     0     0
##   Conspiracy Entertainment                   0     0     0     0     0
##   Core Design Ltd.                           0     0     0     0     0
##   CPG Products                               0     0     0     0     0
##   Crave Entertainment                        0     0     0     0     0
##   Creative Core                              0     0     0     0     0
##   Crimson Cow                                0     0     0     0     0
##   Crystal Dynamics                           0     0     0     0     0
##   CTO SpA                                    0     0     0     0     0
##   Culture Brain                              0     0     0     0     0
##   Culture Publishers                         0     0     0     0     0
##   CyberFront                                 0     0     0     0     0
##   Cygames                                    1     0     0     0     0
##   D3Publisher                                5     3     0     0     1
##   Daedalic                                   0     0     0     0     0
##   Daedalic Entertainment                     0     0     0     0     0
##   Daito                                      0     0     0     0     0
##   Data Age                                   0     0     0     0     0
##   Data Design Interactive                    0     0     0     0     0
##   Data East                                  0     0     0     0     0
##   Datam Polystar                             0     0     0     0     0
##   Deep Silver                                7    11     0     0     1
##   Destination Software, Inc                  0     0     0     0     0
##   Destineer                                  0     0     0     0     0
##   Detn8 Games                                0     0     0     0     0
##   Devolver Digital                           1     0     0     0     0
##   DHM Interactive                            0     0     0     0     0
##   DigiCube                                   0     0     0     0     0
##   Disney Interactive Studios                 6     0     0     0     4
##   Dorart                                     0     0     0     0     0
##   dramatic create                            3     2     0     0     0
##   DreamCatcher Interactive                   0     0     0     0     0
##   DreamWorks Interactive                     0     0     0     0     0
##   DSI Games                                  0     0     0     0     0
##   DTP Entertainment                          0     0     0     0     1
##   Dusenberry Martin Racing                   0     2     0     0     0
##   EA Games                                   0     0     0     0     0
##   Easy Interactive                           0     0     0     0     0
##   Ecole                                      0     0     0     0     0
##   Edia                                       0     0     0     0     0
##   Eidos Interactive                          0     0     0     0     2
##   Electronic Arts                           32    20     0     0    12
##   Electronic Arts Victor                     0     0     0     0     0
##   Elf                                        0     0     0     0     0
##   Elite                                      0     0     0     0     0
##   Empire Interactive                         0     0     0     0     1
##   Encore                                     0     0     0     0     0
##   Enix Corporation                           0     0     0     0     0
##   Enjoy Gaming ltd.                          0     0     0     0     0
##   Enterbrain                                 0     0     0     0     0
##   EON Digital Entertainment                  0     0     0     0     0
##   Epic Games                                 0     1     0     0     0
##   Epoch                                      0     0     0     0     0
##   Ertain                                     0     0     0     0     0
##   ESP                                        0     0     0     0     0
##   Essential Games                            0     0     0     0     0
##   Evolution Games                            0     0     0     0     0
##   Evolved Games                              0     0     0     0     0
##   Excalibur Publishing                       0     0     0     0     0
##   Experience Inc.                            1     1     0     0     0
##   Extreme Entertainment Group                1     0     0     0     0
##   Falcom Corporation                         0     0     0     0     0
##   Fields                                     0     0     0     0     0
##   Flashpoint Games                           0     0     0     0     0
##   Flight-Plan                                0     0     0     0     0
##   Focus Home Interactive                     4     5     0     0     2
##   Focus Multimedia                           1     0     0     0     0
##   fonfun                                     0     0     0     0     0
##   Foreign Media Games                        0     0     0     0     0
##   Fortyfive                                  0     0     0     0     0
##   Fox Interactive                            0     0     0     0     0
##   From Software                              0     0     0     0     0
##   Fuji                                       0     0     0     0     0
##   Funbox Media                               1     0     0     0     0
##   Funcom                                     0     0     0     0     0
##   FunSoft                                    0     0     0     0     0
##   Funsta                                     0     0     0     0     1
##   FuRyu                                      7     3     0     0     0
##   FuRyu Corporation                          1     0     0     0     0
##   G.Rev                                      0     0     0     0     0
##   Gaga                                       0     0     0     0     0
##   Gainax Network Systems                     0     0     0     0     0
##   Gakken                                     0     0     0     0     0
##   Game Arts                                  0     0     0     0     0
##   Game Factory                               0     0     0     0     0
##   Game Life                                  0     0     0     0     0
##   Gamebridge                                 0     0     0     0     0
##   Gamecock                                   0     0     0     0     0
##   Gameloft                                   0     0     0     0     0
##   GameMill Entertainment                     0     0     0     0     0
##   GameTek                                    0     0     0     0     0
##   Gathering of Developers                    0     0     0     0     0
##   General Entertainment                      0     0     0     0     0
##   Genki                                      0     0     0     0     0
##   Genterprise                                0     0     0     0     0
##   Ghostlight                                 0     0     0     0     1
##   Giga                                       0     0     0     0     0
##   Giza10                                     0     0     0     0     0
##   Glams                                      0     0     0     0     0
##   Global A Entertainment                     0     0     0     0     0
##   Global Star                                0     0     0     0     0
##   GN Software                                0     0     0     0     0
##   GOA                                        0     0     0     0     0
##   Gotham Games                               0     0     0     0     0
##   Graffiti                                   0     0     0     0     0
##   Grand Prix Games                           0     0     0     0     0
##   Graphsim Entertainment                     0     0     0     0     0
##   Gremlin Interactive Ltd                    0     0     0     0     0
##   Griffin International                      0     0     0     0     0
##   Groove Games                               0     0     0     0     0
##   GSP                                        0     0     0     0     0
##   GT Interactive                             0     0     0     0     0
##   GungHo                                     0     1     0     0     0
##   Gust                                       0     0     0     0     0
##   Hackberry                                  0     0     0     0     0
##   HAL Laboratory                             0     0     0     0     0
##   Hamster Corporation                        0     0     0     0     0
##   Happinet                                   2     1     0     0     0
##   Harmonix Music Systems                     2     0     0     0     0
##   Hasbro Interactive                         0     0     0     0     0
##   Havas Interactive                          0     0     0     0     0
##   Headup Games                               0     0     0     0     0
##   Hearty Robin                               0     0     0     0     0
##   Hect                                       0     0     0     0     0
##   Hello Games                                0     1     0     0     0
##   Her Interactive                            0     0     0     0     0
##   Hip Interactive                            0     0     0     0     0
##   HMH Interactive                            0     0     0     0     0
##   Home Entertainment Suppliers               0     0     0     0     1
##   Hudson Entertainment                       0     0     0     0     0
##   Hudson Soft                                0     0     0     0     0
##   Human Entertainment                        0     0     0     0     0
##   HuneX                                      2     0     0     0     0
##   Iceberg Interactive                        0     0     0     0     0
##   id Software                                0     0     0     0     0
##   Idea Factory                              14     7     1     0     1
##   Idea Factory International                 3     0     0     0     0
##   IE Institute                               0     0     0     0     0
##   Ignition Entertainment                     0     0     0     0     2
##   Illusion Softworks                         0     0     0     0     0
##   Imadio                                     0     0     0     0     0
##   Image Epoch                                0     0     0     0     0
##   imageepoch Inc.                            0     0     0     0     0
##   Imageworks                                 0     0     0     0     0
##   Imagic                                     0     0     0     0     0
##   Imagineer                                  0     0     0     0     0
##   Imax                                       0     0     0     0     0
##   Indie Games                                0     0     0     0     0
##   Infogrames                                 0     0     0     0     1
##   Insomniac Games                            0     3     0     0     0
##   Interchannel                               0     0     0     0     0
##   Interchannel-Holon                         0     0     0     0     0
##   Intergrow                                  1     0     0     0     0
##   Interplay                                  0     0     0     0     0
##   Interplay Productions                      0     0     0     0     0
##   Interworks Unlimited, Inc.                 0     0     0     0     0
##   Inti Creates                               0     1     0     0     0
##   Introversion Software                      0     1     0     0     0
##   inXile Entertainment                       1     0     0     0     0
##   Irem Software Engineering                  0     0     0     0     0
##   ITT Family Games                           0     0     0     0     0
##   Ivolgamus                                  0     0     0     0     0
##   iWin                                       0     0     0     0     0
##   Jack of All Games                          0     0     0     0     0
##   Jaleco                                     0     0     0     0     0
##   Jester Interactive                         0     0     0     0     0
##   Jorudan                                    0     0     0     0     0
##   JoWood Productions                         0     0     0     0     0
##   Just Flight                                0     0     0     0     0
##   JVC                                        0     0     0     0     0
##   Kadokawa Games                             4     2     0     0     0
##   Kadokawa Shoten                            1     0     0     0     0
##   Kaga Create                                5     0     0     0     0
##   Kalypso Media                              3     0     0     0     3
##   Kamui                                      0     0     0     0     0
##   Kando Games                                0     0     0     0     0
##   Karin Entertainment                        0     0     0     0     0
##   Kemco                                      0     0     0     0     0
##   KID                                        0     0     0     0     0
##   Kids Station                               0     0     0     0     0
##   King Records                               0     0     0     0     0
##   Knowledge Adventure                        0     0     0     0     0
##   Koch Media                                 5     3     0     0     0
##   Kokopeli Digital Studios                   0     0     0     0     0
##   Konami Digital Entertainment              12     8     0     0     9
##   Kool Kizz                                  0     0     0     0     0
##   KSS                                        0     0     0     0     0
##   Laguna                                     0     0     0     0     0
##   Legacy Interactive                         0     0     0     0     0
##   LEGO Media                                 0     0     0     0     0
##   Level 5                                    2     2     0     0     0
##   Lexicon Entertainment                      0     0     0     0     0
##   Licensed 4U                                0     0     0     0     0
##   Lighthouse Interactive                     0     0     0     0     0
##   Liquid Games                               0     0     0     0     0
##   Little Orbit                              13     0     0     0     0
##   Locus                                      0     0     0     0     0
##   LSP Games                                  0     0     0     0     0
##   LucasArts                                  0     0     0     0     1
##   Mad Catz                                   0     0     0     0     0
##   Magical Company                            0     0     0     0     0
##   Magix                                      0     0     0     0     0
##   Majesco Entertainment                      0     0     0     0     2
##   Mamba Games                                0     0     0     0     0
##   Marvel Entertainment                       1     0     0     0     0
##   Marvelous Entertainment                    2     1     0     0     0
##   Marvelous Games                            1     0     0     0     0
##   Marvelous Interactive                      3     1     0     0     0
##   Masque Publishing                          0     0     0     0     0
##   Mastertronic                               0     0     0     0     0
##   Mastiff                                    0     0     0     0     0
##   Mattel Interactive                         0     0     0     0     0
##   Max Five                                   0     0     0     0     0
##   Maximum Family Games                       0     0     0     0     0
##   Maxis                                      0     0     0     0     0
##   MC2 Entertainment                          0     0     0     0     0
##   Media Entertainment                        0     0     0     0     0
##   Media Factory                              0     0     0     0     0
##   Media Rings                                0     0     0     0     0
##   Media Works                                0     0     0     0     0
##   MediaQuest                                 0     0     0     0     0
##   Men-A-Vision                               0     0     0     0     0
##   Mentor Interactive                         0     0     0     0     0
##   Mercury Games                              0     0     0     0     0
##   Merscom LLC                                0     0     0     0     0
##   Metro 3D                                   0     0     0     0     0
##   Michaelsoft                                0     0     0     0     0
##   Micro Cabin                                0     0     0     0     0
##   Microids                                   0     2     0     0     0
##   Microprose                                 0     0     0     0     1
##   Microsoft Game Studios                     5     4     0     0     0
##   Midas Interactive Entertainment            0     0     0     0     0
##   Midway Games                               0     0     0     0     2
##   Milestone                                  0     0     0     0     0
##   Milestone S.r.l                            0     2     0     0     0
##   Milestone S.r.l.                           9     3     0     0     0
##   Minato Station                             1     0     0     0     0
##   Mindscape                                  0     0     0     0     0
##   Mirai Shounen                              0     0     0     0     0
##   Misawa                                     0     0     0     0     0
##   Mitsui                                     0     0     0     0     0
##   mixi, Inc                                  1     0     0     0     0
##   MLB.com                                    0     1     0     0     0
##   Mojang                                     5     0     0     0     0
##   Monte Christo Multimedia                   0     0     0     0     0
##   Moss                                       0     0     0     0     0
##   MTO                                        0     0     0     0     0
##   MTV Games                                  0     0     0     0     1
##   Mud Duck Productions                       0     0     0     0     0
##   Mumbo Jumbo                                0     0     0     0     0
##   Mycom                                      0     0     0     0     0
##   Myelin Media                               0     0     0     0     0
##   Mystique                                   0     0     0     0     0
##   N/A                                        0     2     0     0    22
##   Namco Bandai Games                        68    40     0     0     4
##   Natsume                                    0     0     0     0     0
##   Navarre Corp                               0     0     0     0     0
##   Naxat Soft                                 0     0     0     0     0
##   NCS                                        0     0     0     0     0
##   NCSoft                                     0     0     0     0     0
##   NDA Productions                            0     0     0     0     0
##   NEC                                        0     0     0     0     0
##   NEC Interchannel                           0     0     0     0     0
##   Neko Entertainment                         0     0     0     0     0
##   NetRevo                                    0     0     0     0     0
##   New                                        0     0     0     0     0
##   New World Computing                        0     0     0     0     0
##   NewKidCo                                   0     0     0     0     0
##   Nexon                                      0     0     0     0     0
##   Nichibutsu                                 0     0     0     0     0
##   Nihon Falcom Corporation                   1     3     0     0     0
##   Nintendo                                  32    10     0     0     7
##   Nippon Amuse                               0     0     0     0     0
##   Nippon Columbia                            1     1     0     0     0
##   Nippon Ichi Software                      11    12     0     0     1
##   Nippon Telenet                             0     0     0     0     0
##   Nitroplus                                  1     0     0     0     0
##   Nobilis                                    0     0     0     0     0
##   Nordcurrent                                0     0     0     0     0
##   Nordic Games                              10     3     0     0     0
##   NovaLogic                                  0     0     0     0     0
##   Number None                                0     0     0     0     0
##   O-Games                                    0     0     0     0     0
##   O3 Entertainment                           0     0     0     0     0
##   Ocean                                      0     0     0     0     0
##   Office Create                              0     0     0     0     0
##   On Demand                                  0     0     0     0     0
##   Ongakukan                                  0     0     0     0     0
##   Origin Systems                             0     0     0     0     0
##   Otomate                                    0     0     0     0     0
##   Oxygen Interactive                         0     0     0     0     1
##   P2 Games                                   0     0     0     0     0
##   Pacific Century Cyber Works                0     0     0     0     0
##   Pack-In-Video                              0     0     0     0     0
##   Pack In Soft                               0     0     0     0     0
##   Palcom                                     0     0     0     0     0
##   Panther Software                           0     0     0     0     0
##   Paon                                       0     0     0     0     0
##   Paon Corporation                           0     0     0     0     0
##   Paradox Development                        0     1     0     0     0
##   Paradox Interactive                        1     2     0     0     0
##   Parker Bros.                               0     0     0     0     0
##   Performance Designed Products              0     0     0     0     0
##   Phantagram                                 0     0     0     0     0
##   Phantom EFX                                0     0     0     0     0
##   Phenomedia                                 0     0     0     0     0
##   Phoenix Games                              0     0     0     0     0
##   Piacci                                     0     0     0     0     0
##   Pinnacle                                   0     0     0     0     0
##   Pioneer LDC                                0     0     0     0     0
##   Play It                                    0     0     0     0     0
##   Playlogic Game Factory                     0     0     0     0     0
##   Playmates                                  0     0     0     0     0
##   Playmore                                   0     0     0     0     0
##   PlayV                                      0     0     0     0     0
##   Plenty                                     0     0     0     0     0
##   PM Studios                                 0     0     0     0     0
##   Pony Canyon                                0     0     0     0     0
##   PopCap Games                               0     0     0     0     0
##   Popcorn Arcade                             0     0     0     0     0
##   PopTop Software                            0     0     0     0     0
##   Pow                                        0     0     0     0     0
##   PQube                                      8     5     0     0     0
##   Princess Soft                              0     0     0     0     0
##   Prototype                                  1     1     0     0     0
##   Psygnosis                                  0     0     0     0     0
##   Quelle                                     0     0     0     0     0
##   Quest                                      0     0     0     0     0
##   Quinrose                                   0     0     0     0     0
##   Quintet                                    0     0     0     0     0
##   Rage Software                              0     0     0     0     0
##   Rain Games                                 1     0     0     0     0
##   Rebellion                                  0     0     0     0     0
##   Rebellion Developments                     2     0     0     0     0
##   RED Entertainment                          0     0     0     0     0
##   Red Orb                                    0     0     0     0     0
##   Red Storm Entertainment                    0     0     0     0     0
##   RedOctane                                  0     0     0     0     0
##   Reef Entertainment                         0     0     0     0     0
##   responDESIGN                               0     0     0     0     0
##   Revolution (Japan)                         0     0     0     0     0
##   Revolution Software                        2     0     0     0     0
##   Rising Star Games                          0     1     0     0     1
##   Riverhillsoft                              0     0     0     0     0
##   Rocket Company                             3     1     0     0     0
##   Rondomedia                                 1     0     0     0     0
##   RTL                                        0     0     0     0     0
##   Russel                                     0     0     0     0     0
##   Sammy Corporation                          0     0     0     0     0
##   Saurus                                     0     0     0     0     0
##   Scholastic Inc.                            0     0     0     0     0
##   SCi                                        0     0     0     0     0
##   Screenlife                                 1     1     0     0     0
##   SCS Software                               0     0     0     0     0
##   Sears                                      0     0     0     0     1
##   Sega                                      10     8     2     0     7
##   Seta Corporation                           0     0     0     0     0
##   Seventh Chord                              0     0     0     0     0
##   Shogakukan                                 1     0     0     0     0
##   Simon & Schuster Interactive               0     0     0     0     0
##   Slightly Mad Studios                       3     0     0     0     0
##   Slitherine Software                        0     0     0     0     1
##   SNK                                        0     0     0     0     0
##   SNK Playmore                               0     0     0     0     0
##   Societa                                    0     0     0     0     0
##   Sold Out                                   0     1     0     0     0
##   Sonnet                                     0     0     0     0     0
##   Sony Computer Entertainment               10     5     0     0     1
##   Sony Computer Entertainment America        0     0     0     0     0
##   Sony Computer Entertainment Europe         1     0     0     0     0
##   Sony Music Entertainment                   0     0     0     0     0
##   Sony Online Entertainment                  0     0     0     0     0
##   SouthPeak Games                            0     0     0     0     0
##   Spike                                      0     0     0     0     0
##   SPS                                        0     0     0     0     0
##   Square                                     0     0     0     0     0
##   Square EA                                  0     0     0     0     0
##   Square Enix                               16    20     0     0     2
##   SquareSoft                                 0     0     0     0     0
##   SSI                                        0     0     0     0     0
##   Stainless Games                            0     1     0     0     0
##   Starfish                                   0     0     0     0     0
##   Starpath Corp.                             0     0     0     0     0
##   Sting                                      0     0     0     0     0
##   Storm City Games                           0     0     0     0     0
##   Strategy First                             0     0     0     0     0
##   Success                                    0     0     0     0     0
##   Summitsoft                                 0     0     0     0     0
##   Sunflowers                                 0     0     0     0     0
##   Sunrise Interactive                        0     0     0     0     0
##   Sunsoft                                    0     0     0     0     0
##   Sweets                                     0     0     0     0     0
##   Swing! Entertainment                       0     0     0     0     0
##   Syscom                                     0     0     0     0     0
##   System 3                                   0     0     0     0     0
##   System 3 Arcade Software                   0     0     0     0     1
##   System Soft                                0     0     0     0     0
##   T&E Soft                                   0     0     0     0     0
##   Taito                                      0     0     0     0     0
##   Takara                                     0     0     0     0     0
##   Takara Tomy                                1     0     0     0     0
##   Take-Two Interactive                      17    12     0     0     1
##   Takuyo                                     0     0     0     0     0
##   TalonSoft                                  0     0     0     0     0
##   TDK Core                                   0     0     0     0     0
##   TDK Mediactive                             0     0     0     0     0
##   Team17 Software                            0     0     0     0     0
##   Technos Japan Corporation                  0     0     0     0     0
##   TechnoSoft                                 0     0     0     0     0
##   Tecmo Koei                                35    17     0     0     0
##   Telegames                                  0     0     0     0     0
##   Telltale Games                             7     4     0     0     0
##   Telstar                                    0     0     0     0     0
##   Tetris Online                              0     0     0     0     0
##   TGL                                        3     0     0     0     0
##   The Adventure Company                      0     0     0     0     0
##   The Learning Company                       0     0     0     0     0
##   THQ                                        0     0     0     0     3
##   Tigervision                                0     0     0     0     0
##   Time Warner Interactive                    0     0     0     0     0
##   Titus                                      0     0     0     0     0
##   Tivola                                     0     0     0     0     0
##   TOHO                                       0     0     0     0     0
##   Tommo                                      0     0     0     0     0
##   Tomy Corporation                           0     0     0     0     0
##   TopWare Interactive                        1     0     0     0     2
##   Touchstone                                 0     0     0     0     0
##   Tradewest                                  0     0     0     0     0
##   Trion Worlds                               0     0     0     0     0
##   Tripwire Interactive                       0     0     0     0     0
##   Tru Blu Entertainment                      6     0     0     0     0
##   Tryfirst                                   0     0     0     0     0
##   TYO                                        0     0     0     0     0
##   Type-Moon                                  0     0     0     0     0
##   U.S. Gold                                  0     0     0     0     0
##   Ubisoft                                   32    13     0     1     3
##   Ubisoft Annecy                             0     0     0     0     0
##   UEP Systems                                0     0     0     0     0
##   UFO Interactive                            0     0     0     0     0
##   UIG Entertainment                          0     1     0     0     0
##   Ultravision                                0     0     0     0     1
##   Universal Gamex                            0     0     0     0     0
##   Universal Interactive                      0     0     0     0     1
##   Unknown                                    6     4     0     0   103
##   Valcon Games                               0     0     0     0     0
##   ValuSoft                                   0     0     0     0     0
##   Valve                                      0     0     0     0     0
##   Valve Software                             0     0     0     0     0
##   Vap                                        0     0     0     0     0
##   Vatical Entertainment                      0     0     0     0     0
##   Vic Tokai                                  0     0     0     0     0
##   Victor Interactive                         0     0     0     0     0
##   Video System                               0     0     0     0     0
##   Views                                      0     0     0     0     0
##   Vir2L Studios                              0     0     0     0     0
##   Virgin Interactive                         0     0     0     0     0
##   Virtual Play Games                         0     0     0     0     0
##   Visco                                      0     0     0     0     0
##   Vivendi Games                              0     0     0     0     3
##   Wanadoo                                    0     0     0     0     0
##   Warashi                                    0     0     0     0     0
##   Wargaming.net                              0     0     0     0     0
##   Warner Bros. Interactive Entertainment    26    14     0     0    15
##   Warp                                       0     0     0     0     0
##   WayForward Technologies                    1     0     0     0     0
##   Westwood Studios                           0     0     0     0     0
##   White Park Bay Software                    0     0     0     0     0
##   Wizard Video Games                         0     0     0     0     0
##   Xicat Interactive                          0     0     0     0     0
##   Xing Entertainment                         0     0     0     0     0
##   Xplosiv                                    0     0     0     0     0
##   XS Games                                   0     0     0     0     0
##   Xseed Games                                1     0     0     0     0
##   Yacht Club Games                           3     0     0     0     0
##   Yamasa Entertainment                       0     0     0     0     0
##   Yeti                                       0     1     0     0     0
##   Yuke's                                     0     0     0     0     0
##   Yumedia                                    0     0     0     0     0
##   Zenrin                                     0     0     0     0     0
##   Zoo Digital Publishing                     0     0     0     0     0
##   Zoo Games                                  0     0     0     0     0
##   Zushi Games                                0     0     0     0     0
##   Sum                                      614   344     3     1   271
##                                         Year
## Publisher                                  Sum
##   10TACLE Studios                            3
##   1C Company                                 3
##   20th Century Fox Video Games               5
##   2D Boy                                     1
##   3DO                                       36
##   49Games                                    1
##   505 Games                                192
##   5pb                                       61
##   7G//AMES                                   4
##   989 Sports                                 1
##   989 Studios                               14
##   Abylight                                   1
##   Acclaim Entertainment                    184
##   Accolade                                   3
##   Ackkstudios                               10
##   Acquire                                   13
##   Activision                               975
##   Activision Blizzard                        1
##   Activision Value                          29
##   Adeline Software                           1
##   Aerosoft                                   2
##   Agatsuma Entertainment                     3
##   Agetec                                     8
##   Aksys Games                                8
##   Alawar Entertainment                       2
##   Alchemist                                 43
##   Alternative Software                       6
##   Altron                                     1
##   Alvion                                     2
##   American Softworks                         1
##   Angel Studios                              3
##   Answer Software                            1
##   AQ Interactive                             5
##   Aqua Plus                                 23
##   Aques                                      1
##   Arc System Works                          26
##   Arena Entertainment                        2
##   Aria                                       1
##   Arika                                      3
##   ArtDink                                    9
##   Aruze Corp                                 3
##   ASC Games                                  3
##   Ascaron Entertainment                      1
##   Ascaron Entertainment GmbH                 3
##   ASCII Entertainment                       20
##   ASCII Media Works                          9
##   Asgard                                     8
##   ASK                                        1
##   Asmik Ace Entertainment                    3
##   Asmik Corp                                 2
##   Aspyr                                      8
##   Astragon                                   6
##   Asylum Entertainment                       6
##   Atari                                    363
##   Athena                                     2
##   Atlus                                     67
##   Avalon Interactive                         6
##   Avanquest                                 26
##   Avanquest Software                         9
##   Axela                                      1
##   BAM! Entertainment                        35
##   Banpresto                                 73
##   Benesse                                    6
##   Berkeley                                   1
##   Bethesda Softworks                        71
##   Big Ben Interactive                        7
##   Big Fish Games                             2
##   Bigben Interactive                        13
##   bitComposer Games                          5
##   Black Bean Games                          34
##   Black Label Games                          1
##   Blast! Entertainment Ltd                   6
##   Blue Byte                                  2
##   BMG Interactive Entertainment              7
##   Bohemia Interactive                        1
##   Bomb                                       1
##   Boost On                                   1
##   BPS                                        2
##   Brash Entertainment                       10
##   Broccoli                                  22
##   BushiRoad                                  1
##   Capcom                                   381
##   Cave                                      10
##   CBS Electronics                            1
##   CCP                                        1
##   CDV Software Entertainment                 6
##   ChunSoft                                  18
##   City Interactive                          19
##   Cloud Imperium Games Corporation           2
##   Coconuts Japan                             2
##   Codemasters                              152
##   Codemasters Online                         1
##   CokeM Interactive                          1
##   Coleco                                     5
##   Comfort                                    6
##   Commseed                                   1
##   Compile                                    6
##   Compile Heart                             20
##   Conspiracy Entertainment                  14
##   Core Design Ltd.                           2
##   CPG Products                               1
##   Crave Entertainment                       71
##   Creative Core                              3
##   Crimson Cow                                2
##   Crystal Dynamics                           5
##   CTO SpA                                    2
##   Culture Brain                              4
##   Culture Publishers                         1
##   CyberFront                                14
##   Cygames                                    1
##   D3Publisher                              184
##   Daedalic                                   3
##   Daedalic Entertainment                     3
##   Daito                                      4
##   Data Age                                   2
##   Data Design Interactive                    3
##   Data East                                  2
##   Datam Polystar                             2
##   Deep Silver                              122
##   Destination Software, Inc                 12
##   Destineer                                 45
##   Detn8 Games                                1
##   Devolver Digital                           2
##   DHM Interactive                            3
##   DigiCube                                   1
##   Disney Interactive Studios               218
##   Dorart                                     2
##   dramatic create                            5
##   DreamCatcher Interactive                  17
##   DreamWorks Interactive                     1
##   DSI Games                                  6
##   DTP Entertainment                         45
##   Dusenberry Martin Racing                   2
##   EA Games                                   1
##   Easy Interactive                           2
##   Ecole                                      1
##   Edia                                       2
##   Eidos Interactive                        198
##   Electronic Arts                         1351
##   Electronic Arts Victor                     2
##   Elf                                        2
##   Elite                                      1
##   Empire Interactive                        52
##   Encore                                     4
##   Enix Corporation                          30
##   Enjoy Gaming ltd.                          1
##   Enterbrain                                15
##   EON Digital Entertainment                  1
##   Epic Games                                 1
##   Epoch                                      7
##   Ertain                                     1
##   ESP                                        5
##   Essential Games                            3
##   Evolution Games                            1
##   Evolved Games                              8
##   Excalibur Publishing                       4
##   Experience Inc.                            3
##   Extreme Entertainment Group                1
##   Falcom Corporation                        16
##   Fields                                     1
##   Flashpoint Games                           2
##   Flight-Plan                                2
##   Focus Home Interactive                    58
##   Focus Multimedia                           3
##   fonfun                                     1
##   Foreign Media Games                        9
##   Fortyfive                                  1
##   Fox Interactive                            8
##   From Software                             15
##   Fuji                                       1
##   Funbox Media                               6
##   Funcom                                     2
##   FunSoft                                    1
##   Funsta                                     4
##   FuRyu                                     27
##   FuRyu Corporation                          1
##   G.Rev                                      2
##   Gaga                                       1
##   Gainax Network Systems                     2
##   Gakken                                     2
##   Game Arts                                  1
##   Game Factory                              32
##   Game Life                                  2
##   Gamebridge                                 2
##   Gamecock                                   4
##   Gameloft                                   1
##   GameMill Entertainment                     8
##   GameTek                                    1
##   Gathering of Developers                    9
##   General Entertainment                      1
##   Genki                                      8
##   Genterprise                                1
##   Ghostlight                                15
##   Giga                                       1
##   Giza10                                     1
##   Glams                                      1
##   Global A Entertainment                     4
##   Global Star                               39
##   GN Software                                3
##   GOA                                        1
##   Gotham Games                               7
##   Graffiti                                   6
##   Grand Prix Games                           1
##   Graphsim Entertainment                     1
##   Gremlin Interactive Ltd                    9
##   Griffin International                      1
##   Groove Games                               2
##   GSP                                       16
##   GT Interactive                            45
##   GungHo                                    13
##   Gust                                      13
##   Hackberry                                  7
##   HAL Laboratory                             1
##   Hamster Corporation                        2
##   Happinet                                   5
##   Harmonix Music Systems                     2
##   Hasbro Interactive                        16
##   Havas Interactive                          1
##   Headup Games                               1
##   Hearty Robin                               1
##   Hect                                       3
##   Hello Games                                1
##   Her Interactive                            1
##   Hip Interactive                            5
##   HMH Interactive                            2
##   Home Entertainment Suppliers               5
##   Hudson Entertainment                      11
##   Hudson Soft                               81
##   Human Entertainment                       13
##   HuneX                                      2
##   Iceberg Interactive                        3
##   id Software                                1
##   Idea Factory                             129
##   Idea Factory International                 6
##   IE Institute                               5
##   Ignition Entertainment                    61
##   Illusion Softworks                         1
##   Imadio                                     1
##   Image Epoch                                1
##   imageepoch Inc.                            2
##   Imageworks                                 1
##   Imagic                                     4
##   Imagineer                                 16
##   Imax                                       1
##   Indie Games                                3
##   Infogrames                                62
##   Insomniac Games                            3
##   Interchannel                               4
##   Interchannel-Holon                         1
##   Intergrow                                  1
##   Interplay                                 30
##   Interplay Productions                      1
##   Interworks Unlimited, Inc.                 1
##   Inti Creates                               1
##   Introversion Software                      1
##   inXile Entertainment                       1
##   Irem Software Engineering                 12
##   ITT Family Games                           1
##   Ivolgamus                                  1
##   iWin                                       1
##   Jack of All Games                          3
##   Jaleco                                    23
##   Jester Interactive                         3
##   Jorudan                                    3
##   JoWood Productions                        22
##   Just Flight                                1
##   JVC                                        8
##   Kadokawa Games                            15
##   Kadokawa Shoten                           50
##   Kaga Create                                6
##   Kalypso Media                             29
##   Kamui                                      1
##   Kando Games                                1
##   Karin Entertainment                        1
##   Kemco                                     21
##   KID                                        4
##   Kids Station                               1
##   King Records                               1
##   Knowledge Adventure                        4
##   Koch Media                                17
##   Kokopeli Digital Studios                   1
##   Konami Digital Entertainment             832
##   Kool Kizz                                  1
##   KSS                                        1
##   Laguna                                     4
##   Legacy Interactive                         1
##   LEGO Media                                 7
##   Level 5                                   27
##   Lexicon Entertainment                      2
##   Licensed 4U                                3
##   Lighthouse Interactive                     1
##   Liquid Games                               2
##   Little Orbit                              26
##   Locus                                      1
##   LSP Games                                  4
##   LucasArts                                 90
##   Mad Catz                                   3
##   Magical Company                            1
##   Magix                                      2
##   Majesco Entertainment                     92
##   Mamba Games                                2
##   Marvel Entertainment                       1
##   Marvelous Entertainment                   12
##   Marvelous Games                            1
##   Marvelous Interactive                     56
##   Masque Publishing                          1
##   Mastertronic                              13
##   Mastiff                                   16
##   Mattel Interactive                        12
##   Max Five                                   1
##   Maximum Family Games                       1
##   Maxis                                      3
##   MC2 Entertainment                          3
##   Media Entertainment                        1
##   Media Factory                              2
##   Media Rings                                3
##   Media Works                                5
##   MediaQuest                                 1
##   Men-A-Vision                               1
##   Mentor Interactive                         5
##   Mercury Games                              4
##   Merscom LLC                                1
##   Metro 3D                                  12
##   Michaelsoft                                1
##   Micro Cabin                                3
##   Microids                                  10
##   Microprose                                 6
##   Microsoft Game Studios                   189
##   Midas Interactive Entertainment           24
##   Midway Games                             198
##   Milestone                                  1
##   Milestone S.r.l                            2
##   Milestone S.r.l.                          16
##   Minato Station                             3
##   Mindscape                                 32
##   Mirai Shounen                              1
##   Misawa                                     2
##   Mitsui                                     1
##   mixi, Inc                                  1
##   MLB.com                                    1
##   Mojang                                     5
##   Monte Christo Multimedia                   1
##   Moss                                       2
##   MTO                                        8
##   MTV Games                                 41
##   Mud Duck Productions                       3
##   Mumbo Jumbo                                6
##   Mycom                                      1
##   Myelin Media                               3
##   Mystique                                   1
##   N/A                                       58
##   Namco Bandai Games                       932
##   Natsume                                   17
##   Navarre Corp                               1
##   Naxat Soft                                 1
##   NCS                                        3
##   NCSoft                                     6
##   NDA Productions                            1
##   NEC                                        3
##   NEC Interchannel                           8
##   Neko Entertainment                         7
##   NetRevo                                    2
##   New                                        1
##   New World Computing                        1
##   NewKidCo                                   9
##   Nexon                                      1
##   Nichibutsu                                 1
##   Nihon Falcom Corporation                   7
##   Nintendo                                 703
##   Nippon Amuse                               1
##   Nippon Columbia                            7
##   Nippon Ichi Software                     105
##   Nippon Telenet                             2
##   Nitroplus                                  2
##   Nobilis                                   13
##   Nordcurrent                                5
##   Nordic Games                              35
##   NovaLogic                                  3
##   Number None                                1
##   O-Games                                   17
##   O3 Entertainment                           3
##   Ocean                                     14
##   Office Create                              2
##   On Demand                                  1
##   Ongakukan                                  1
##   Origin Systems                             1
##   Otomate                                    1
##   Oxygen Interactive                        22
##   P2 Games                                   3
##   Pacific Century Cyber Works                1
##   Pack-In-Video                              2
##   Pack In Soft                               1
##   Palcom                                     1
##   Panther Software                           1
##   Paon                                       6
##   Paon Corporation                           1
##   Paradox Development                        1
##   Paradox Interactive                       23
##   Parker Bros.                               7
##   Performance Designed Products              2
##   Phantagram                                 1
##   Phantom EFX                                1
##   Phenomedia                                 4
##   Phoenix Games                              1
##   Piacci                                     1
##   Pinnacle                                   5
##   Pioneer LDC                                4
##   Play It                                   14
##   Playlogic Game Factory                    14
##   Playmates                                  1
##   Playmore                                   1
##   PlayV                                      4
##   Plenty                                     1
##   PM Studios                                 1
##   Pony Canyon                                1
##   PopCap Games                              15
##   Popcorn Arcade                            10
##   PopTop Software                            1
##   Pow                                        1
##   PQube                                     39
##   Princess Soft                              3
##   Prototype                                 27
##   Psygnosis                                 32
##   Quelle                                     1
##   Quest                                      1
##   Quinrose                                  14
##   Quintet                                    1
##   Rage Software                              7
##   Rain Games                                 1
##   Rebellion                                  2
##   Rebellion Developments                     2
##   RED Entertainment                          1
##   Red Orb                                    2
##   Red Storm Entertainment                    3
##   RedOctane                                  4
##   Reef Entertainment                         7
##   responDESIGN                               2
##   Revolution (Japan)                         1
##   Revolution Software                        2
##   Rising Star Games                         86
##   Riverhillsoft                              1
##   Rocket Company                            17
##   Rondomedia                                14
##   RTL                                        8
##   Russel                                     6
##   Sammy Corporation                         11
##   Saurus                                     1
##   Scholastic Inc.                           10
##   SCi                                       17
##   Screenlife                                 6
##   SCS Software                               1
##   Sears                                      1
##   Sega                                     639
##   Seta Corporation                           6
##   Seventh Chord                              1
##   Shogakukan                                 5
##   Simon & Schuster Interactive               1
##   Slightly Mad Studios                       3
##   Slitherine Software                        4
##   SNK                                       22
##   SNK Playmore                              18
##   Societa                                    1
##   Sold Out                                   1
##   Sonnet                                     2
##   Sony Computer Entertainment              683
##   Sony Computer Entertainment America        3
##   Sony Computer Entertainment Europe        15
##   Sony Music Entertainment                   1
##   Sony Online Entertainment                  8
##   SouthPeak Games                           37
##   Spike                                     37
##   SPS                                        1
##   Square                                     6
##   Square EA                                  1
##   Square Enix                              233
##   SquareSoft                                52
##   SSI                                        1
##   Stainless Games                            1
##   Starfish                                  10
##   Starpath Corp.                             1
##   Sting                                      9
##   Storm City Games                          19
##   Strategy First                             1
##   Success                                   19
##   Summitsoft                                 1
##   Sunflowers                                 1
##   Sunrise Interactive                        4
##   Sunsoft                                   10
##   Sweets                                     2
##   Swing! Entertainment                       6
##   Syscom                                     2
##   System 3                                   3
##   System 3 Arcade Software                  14
##   System Soft                                4
##   T&E Soft                                   1
##   Taito                                     19
##   Takara                                    16
##   Takara Tomy                               37
##   Take-Two Interactive                     413
##   Takuyo                                     1
##   TalonSoft                                  1
##   TDK Core                                   5
##   TDK Mediactive                            36
##   Team17 Software                            1
##   Technos Japan Corporation                  1
##   TechnoSoft                                 1
##   Tecmo Koei                               338
##   Telegames                                  8
##   Telltale Games                            25
##   Telstar                                    3
##   Tetris Online                              1
##   TGL                                        4
##   The Adventure Company                      5
##   The Learning Company                       1
##   THQ                                      715
##   Tigervision                                3
##   Time Warner Interactive                    5
##   Titus                                     19
##   Tivola                                     3
##   TOHO                                       1
##   Tommo                                      5
##   Tomy Corporation                          18
##   TopWare Interactive                        4
##   Touchstone                                 4
##   Tradewest                                  3
##   Trion Worlds                               4
##   Tripwire Interactive                       1
##   Tru Blu Entertainment                      8
##   Tryfirst                                   1
##   TYO                                        1
##   Type-Moon                                  1
##   U.S. Gold                                  4
##   Ubisoft                                  921
##   Ubisoft Annecy                            14
##   UEP Systems                                1
##   UFO Interactive                           16
##   UIG Entertainment                          1
##   Ultravision                                1
##   Universal Gamex                            1
##   Universal Interactive                     23
##   Unknown                                  203
##   Valcon Games                               8
##   ValuSoft                                   4
##   Valve                                      1
##   Valve Software                             3
##   Vap                                        1
##   Vatical Entertainment                      2
##   Vic Tokai                                  2
##   Victor Interactive                         9
##   Video System                               4
##   Views                                      2
##   Vir2L Studios                              3
##   Virgin Interactive                        62
##   Virtual Play Games                         2
##   Visco                                      1
##   Vivendi Games                            164
##   Wanadoo                                    5
##   Warashi                                    1
##   Wargaming.net                              1
##   Warner Bros. Interactive Entertainment   232
##   Warp                                       1
##   WayForward Technologies                    1
##   Westwood Studios                           1
##   White Park Bay Software                    1
##   Wizard Video Games                         1
##   Xicat Interactive                          3
##   Xing Entertainment                         1
##   Xplosiv                                   10
##   XS Games                                  12
##   Xseed Games                                4
##   Yacht Club Games                           3
##   Yamasa Entertainment                       2
##   Yeti                                      11
##   Yuke's                                     3
##   Yumedia                                    1
##   Zenrin                                     2
##   Zoo Digital Publishing                   104
##   Zoo Games                                 33
##   Zushi Games                               18
##   Sum                                    16598
myTable
##                                         Year
## Publisher                                1980 1981 1982 1983 1984 1985
##   10TACLE Studios                           0    0    0    0    0    0
##   1C Company                                0    0    0    0    0    0
##   20th Century Fox Video Games              0    3    2    0    0    0
##   2D Boy                                    0    0    0    0    0    0
##   3DO                                       0    0    0    0    0    0
##   49Games                                   0    0    0    0    0    0
##   505 Games                                 0    0    0    0    0    0
##   5pb                                       0    0    0    0    0    0
##   7G//AMES                                  0    0    0    0    0    0
##   989 Sports                                0    0    0    0    0    0
##   989 Studios                               0    0    0    0    0    0
##   Abylight                                  0    0    0    0    0    0
##   Acclaim Entertainment                     0    0    0    0    0    0
##   Accolade                                  0    0    0    0    0    0
##   Ackkstudios                               0    0    0    0    0    0
##   Acquire                                   0    0    0    0    0    0
##   Activision                                5    6    4    3    1    2
##   Activision Blizzard                       0    0    0    0    0    0
##   Activision Value                          0    0    0    0    0    0
##   Adeline Software                          0    0    0    0    0    0
##   Aerosoft                                  0    0    0    0    0    0
##   Agatsuma Entertainment                    0    0    0    0    0    0
##   Agetec                                    0    0    0    0    0    0
##   Aksys Games                               0    0    0    0    0    0
##   Alawar Entertainment                      0    0    0    0    0    0
##   Alchemist                                 0    0    0    0    0    0
##   Alternative Software                      0    0    0    0    0    0
##   Altron                                    0    0    0    0    0    0
##   Alvion                                    0    0    0    0    0    0
##   American Softworks                        0    0    0    0    0    0
##   Angel Studios                             0    0    0    0    0    0
##   Answer Software                           0    0    1    0    0    0
##   AQ Interactive                            0    0    0    0    0    0
##   Aqua Plus                                 0    0    0    0    0    0
##   Aques                                     0    0    0    0    0    0
##   Arc System Works                          0    0    0    0    0    0
##   Arena Entertainment                       0    0    0    0    0    0
##   Aria                                      0    0    0    0    0    0
##   Arika                                     0    0    0    0    0    0
##   ArtDink                                   0    0    0    0    0    0
##   Aruze Corp                                0    0    0    0    0    0
##   ASC Games                                 0    0    0    0    0    0
##   Ascaron Entertainment                     0    0    0    0    0    0
##   Ascaron Entertainment GmbH                0    0    0    0    0    0
##   ASCII Entertainment                       0    0    0    0    0    0
##   ASCII Media Works                         0    0    0    0    0    0
##   Asgard                                    0    0    0    0    0    0
##   ASK                                       0    0    0    0    0    0
##   Asmik Ace Entertainment                   0    0    0    0    0    0
##   Asmik Corp                                0    0    0    0    0    0
##   Aspyr                                     0    0    0    0    0    0
##   Astragon                                  0    0    0    0    0    0
##   Asylum Entertainment                      0    0    0    0    0    0
##   Atari                                     4   11   14    6    0    0
##   Athena                                    0    0    0    0    0    0
##   Atlus                                     0    0    0    0    0    0
##   Avalon Interactive                        0    0    1    0    0    0
##   Avanquest                                 0    0    0    0    0    0
##   Avanquest Software                        0    0    0    0    0    0
##   Axela                                     0    0    0    0    0    0
##   BAM! Entertainment                        0    0    0    0    0    0
##   Banpresto                                 0    0    0    0    0    0
##   Benesse                                   0    0    0    0    0    0
##   Berkeley                                  0    0    0    0    0    0
##   Bethesda Softworks                        0    0    0    0    0    0
##   Big Ben Interactive                       0    0    0    0    0    0
##   Big Fish Games                            0    0    0    0    0    0
##   Bigben Interactive                        0    0    0    0    0    0
##   bitComposer Games                         0    0    0    0    0    0
##   Black Bean Games                          0    0    0    0    0    0
##   Black Label Games                         0    0    0    0    0    0
##   Blast! Entertainment Ltd                  0    0    0    0    0    0
##   Blue Byte                                 0    0    0    0    0    0
##   BMG Interactive Entertainment             0    0    0    0    0    0
##   Bohemia Interactive                       0    0    0    0    0    0
##   Bomb                                      0    0    1    0    0    0
##   Boost On                                  0    0    0    0    0    0
##   BPS                                       0    0    0    0    0    0
##   Brash Entertainment                       0    0    0    0    0    0
##   Broccoli                                  0    0    0    0    0    0
##   BushiRoad                                 0    0    0    0    0    0
##   Capcom                                    0    0    0    0    0    1
##   Cave                                      0    0    0    0    0    0
##   CBS Electronics                           0    0    1    0    0    0
##   CCP                                       0    0    0    0    0    0
##   CDV Software Entertainment                0    0    0    0    0    0
##   ChunSoft                                  0    0    0    0    0    0
##   City Interactive                          0    0    0    0    0    0
##   Cloud Imperium Games Corporation          0    0    0    0    0    0
##   Coconuts Japan                            0    0    0    0    0    0
##   Codemasters                               0    0    0    0    0    0
##   Codemasters Online                        0    0    0    0    0    0
##   CokeM Interactive                         0    0    0    0    0    0
##   Coleco                                    0    4    1    0    0    0
##   Comfort                                   0    0    0    0    0    0
##   Commseed                                  0    0    0    0    0    0
##   Compile                                   0    0    0    0    0    0
##   Compile Heart                             0    0    0    0    0    0
##   Conspiracy Entertainment                  0    0    0    0    0    0
##   Core Design Ltd.                          0    0    0    0    0    0
##   CPG Products                              0    0    1    0    0    0
##   Crave Entertainment                       0    0    0    0    0    0
##   Creative Core                             0    0    0    0    0    0
##   Crimson Cow                               0    0    0    0    0    0
##   Crystal Dynamics                          0    0    0    0    0    0
##   CTO SpA                                   0    0    0    0    0    0
##   Culture Brain                             0    0    0    0    0    0
##   Culture Publishers                        0    0    0    0    0    0
##   CyberFront                                0    0    0    0    0    0
##   Cygames                                   0    0    0    0    0    0
##   D3Publisher                               0    0    0    0    0    0
##   Daedalic                                  0    0    0    0    0    0
##   Daedalic Entertainment                    0    0    0    0    0    0
##   Daito                                     0    0    0    0    0    0
##   Data Age                                  0    1    1    0    0    0
##   Data Design Interactive                   0    0    0    0    0    0
##   Data East                                 0    0    0    0    0    0
##   Datam Polystar                            0    0    0    0    0    0
##   Deep Silver                               0    0    0    0    0    0
##   Destination Software, Inc                 0    0    0    0    0    0
##   Destineer                                 0    0    0    0    0    0
##   Detn8 Games                               0    0    0    0    0    0
##   Devolver Digital                          0    0    0    0    0    0
##   DHM Interactive                           0    0    0    0    0    0
##   DigiCube                                  0    0    0    0    0    0
##   Disney Interactive Studios                0    0    0    0    0    0
##   Dorart                                    0    0    0    0    0    0
##   dramatic create                           0    0    0    0    0    0
##   DreamCatcher Interactive                  0    0    0    0    0    0
##   DreamWorks Interactive                    0    0    0    0    0    0
##   DSI Games                                 0    0    0    0    0    0
##   DTP Entertainment                         0    0    0    0    0    0
##   Dusenberry Martin Racing                  0    0    0    0    0    0
##   EA Games                                  0    0    0    0    0    0
##   Easy Interactive                          0    0    0    0    0    0
##   Ecole                                     0    0    0    0    0    0
##   Edia                                      0    0    0    0    0    0
##   Eidos Interactive                         0    0    0    0    0    0
##   Electronic Arts                           0    0    0    0    0    0
##   Electronic Arts Victor                    0    0    0    0    0    0
##   Elf                                       0    0    0    0    0    0
##   Elite                                     0    0    0    0    0    0
##   Empire Interactive                        0    0    0    0    0    0
##   Encore                                    0    0    0    0    0    0
##   Enix Corporation                          0    0    0    0    0    0
##   Enjoy Gaming ltd.                         0    0    0    0    0    0
##   Enterbrain                                0    0    0    0    0    0
##   EON Digital Entertainment                 0    0    0    0    0    0
##   Epic Games                                0    0    0    0    0    0
##   Epoch                                     0    0    0    0    0    0
##   Ertain                                    0    0    0    0    0    0
##   ESP                                       0    0    0    0    0    0
##   Essential Games                           0    0    0    0    0    0
##   Evolution Games                           0    0    0    0    0    0
##   Evolved Games                             0    0    0    0    0    0
##   Excalibur Publishing                      0    0    0    0    0    0
##   Experience Inc.                           0    0    0    0    0    0
##   Extreme Entertainment Group               0    0    0    0    0    0
##   Falcom Corporation                        0    0    0    0    0    0
##   Fields                                    0    0    0    0    0    0
##   Flashpoint Games                          0    0    0    0    0    0
##   Flight-Plan                               0    0    0    0    0    0
##   Focus Home Interactive                    0    0    0    0    0    0
##   Focus Multimedia                          0    0    0    0    0    0
##   fonfun                                    0    0    0    0    0    0
##   Foreign Media Games                       0    0    0    0    0    0
##   Fortyfive                                 0    0    0    0    0    0
##   Fox Interactive                           0    0    0    0    0    0
##   From Software                             0    0    0    0    0    0
##   Fuji                                      0    0    0    0    0    0
##   Funbox Media                              0    0    0    0    0    0
##   Funcom                                    0    0    0    0    0    0
##   FunSoft                                   0    0    0    0    0    0
##   Funsta                                    0    0    0    0    0    0
##   FuRyu                                     0    0    0    0    0    0
##   FuRyu Corporation                         0    0    0    0    0    0
##   G.Rev                                     0    0    0    0    0    0
##   Gaga                                      0    0    0    0    0    0
##   Gainax Network Systems                    0    0    0    0    0    0
##   Gakken                                    0    0    0    0    0    0
##   Game Arts                                 0    0    0    0    0    0
##   Game Factory                              0    0    0    0    0    0
##   Game Life                                 0    0    0    0    0    0
##   Gamebridge                                0    0    0    0    0    0
##   Gamecock                                  0    0    0    0    0    0
##   Gameloft                                  0    0    0    0    0    0
##   GameMill Entertainment                    0    0    0    0    0    0
##   GameTek                                   0    0    0    0    0    0
##   Gathering of Developers                   0    0    0    0    0    0
##   General Entertainment                     0    0    0    0    0    0
##   Genki                                     0    0    0    0    0    0
##   Genterprise                               0    0    0    0    0    0
##   Ghostlight                                0    0    0    0    0    0
##   Giga                                      0    0    0    0    0    0
##   Giza10                                    0    0    0    0    0    0
##   Glams                                     0    0    0    0    0    0
##   Global A Entertainment                    0    0    0    0    0    0
##   Global Star                               0    0    0    0    0    0
##   GN Software                               0    0    0    0    0    0
##   GOA                                       0    0    0    0    0    0
##   Gotham Games                              0    0    0    0    0    0
##   Graffiti                                  0    0    0    0    0    0
##   Grand Prix Games                          0    0    0    0    0    0
##   Graphsim Entertainment                    0    0    0    0    0    0
##   Gremlin Interactive Ltd                   0    0    0    0    0    0
##   Griffin International                     0    0    0    0    0    0
##   Groove Games                              0    0    0    0    0    0
##   GSP                                       0    0    0    0    0    0
##   GT Interactive                            0    0    0    0    0    0
##   GungHo                                    0    0    0    0    0    0
##   Gust                                      0    0    0    0    0    0
##   Hackberry                                 0    0    0    0    0    0
##   HAL Laboratory                            0    0    0    0    0    0
##   Hamster Corporation                       0    0    0    0    0    0
##   Happinet                                  0    0    0    0    0    0
##   Harmonix Music Systems                    0    0    0    0    0    0
##   Hasbro Interactive                        0    0    0    0    0    0
##   Havas Interactive                         0    0    0    0    0    0
##   Headup Games                              0    0    0    0    0    0
##   Hearty Robin                              0    0    0    0    0    0
##   Hect                                      0    0    0    0    0    0
##   Hello Games                               0    0    0    0    0    0
##   Her Interactive                           0    0    0    0    0    0
##   Hip Interactive                           0    0    0    0    0    0
##   HMH Interactive                           0    0    0    0    0    0
##   Home Entertainment Suppliers              0    0    0    0    0    0
##   Hudson Entertainment                      0    0    0    0    0    0
##   Hudson Soft                               0    0    0    0    1    1
##   Human Entertainment                       0    0    0    0    0    0
##   HuneX                                     0    0    0    0    0    0
##   Iceberg Interactive                       0    0    0    0    0    0
##   id Software                               0    0    0    0    0    0
##   Idea Factory                              0    0    0    0    0    0
##   Idea Factory International                0    0    0    0    0    0
##   IE Institute                              0    0    0    0    0    0
##   Ignition Entertainment                    0    0    0    0    0    0
##   Illusion Softworks                        0    0    0    0    0    0
##   Imadio                                    0    0    0    0    0    0
##   Image Epoch                               0    0    0    0    0    0
##   imageepoch Inc.                           0    0    0    0    0    0
##   Imageworks                                0    0    0    0    0    0
##   Imagic                                    0    4    0    0    0    0
##   Imagineer                                 0    0    0    0    0    0
##   Imax                                      0    0    0    0    0    0
##   Indie Games                               0    0    0    0    0    0
##   Infogrames                                0    0    0    0    0    0
##   Insomniac Games                           0    0    0    0    0    0
##   Interchannel                              0    0    0    0    0    0
##   Interchannel-Holon                        0    0    0    0    0    0
##   Intergrow                                 0    0    0    0    0    0
##   Interplay                                 0    0    0    0    0    0
##   Interplay Productions                     0    0    0    0    0    0
##   Interworks Unlimited, Inc.                0    0    0    0    0    0
##   Inti Creates                              0    0    0    0    0    0
##   Introversion Software                     0    0    0    0    0    0
##   inXile Entertainment                      0    0    0    0    0    0
##   Irem Software Engineering                 0    0    0    0    0    0
##   ITT Family Games                          0    0    1    0    0    0
##   Ivolgamus                                 0    0    0    0    0    0
##   iWin                                      0    0    0    0    0    0
##   Jack of All Games                         0    0    0    0    0    0
##   Jaleco                                    0    0    0    0    0    0
##   Jester Interactive                        0    0    0    0    0    0
##   Jorudan                                   0    0    0    0    0    0
##   JoWood Productions                        0    0    0    0    0    0
##   Just Flight                               0    0    0    0    0    0
##   JVC                                       0    0    0    0    0    0
##   Kadokawa Games                            0    0    0    0    0    0
##   Kadokawa Shoten                           0    0    0    0    0    0
##   Kaga Create                               0    0    0    0    0    0
##   Kalypso Media                             0    0    0    0    0    0
##   Kamui                                     0    0    0    0    0    0
##   Kando Games                               0    0    0    0    0    0
##   Karin Entertainment                       0    0    0    0    0    0
##   Kemco                                     0    0    0    0    0    0
##   KID                                       0    0    0    0    0    0
##   Kids Station                              0    0    0    0    0    0
##   King Records                              0    0    0    0    0    0
##   Knowledge Adventure                       0    0    0    0    0    0
##   Koch Media                                0    0    0    0    0    0
##   Kokopeli Digital Studios                  0    0    0    0    0    0
##   Konami Digital Entertainment              0    0    0    0    0    0
##   Kool Kizz                                 0    0    0    0    0    0
##   KSS                                       0    0    0    0    0    0
##   Laguna                                    0    0    0    0    0    0
##   Legacy Interactive                        0    0    0    0    0    0
##   LEGO Media                                0    0    0    0    0    0
##   Level 5                                   0    0    0    0    0    0
##   Lexicon Entertainment                     0    0    0    0    0    0
##   Licensed 4U                               0    0    0    0    0    0
##   Lighthouse Interactive                    0    0    0    0    0    0
##   Liquid Games                              0    0    0    0    0    0
##   Little Orbit                              0    0    0    0    0    0
##   Locus                                     0    0    0    0    0    0
##   LSP Games                                 0    0    0    0    0    0
##   LucasArts                                 0    0    0    0    0    0
##   Mad Catz                                  0    0    0    0    0    0
##   Magical Company                           0    0    0    0    0    0
##   Magix                                     0    0    0    0    0    0
##   Majesco Entertainment                     0    0    0    0    0    0
##   Mamba Games                               0    0    0    0    0    0
##   Marvel Entertainment                      0    0    0    0    0    0
##   Marvelous Entertainment                   0    0    0    0    0    0
##   Marvelous Games                           0    0    0    0    0    0
##   Marvelous Interactive                     0    0    0    0    0    0
##   Masque Publishing                         0    0    0    0    0    0
##   Mastertronic                              0    0    0    0    0    0
##   Mastiff                                   0    0    0    0    0    0
##   Mattel Interactive                        0    7    1    0    0    0
##   Max Five                                  0    0    0    0    0    0
##   Maximum Family Games                      0    0    0    0    0    0
##   Maxis                                     0    0    0    0    0    0
##   MC2 Entertainment                         0    0    0    0    0    0
##   Media Entertainment                       0    0    0    0    0    0
##   Media Factory                             0    0    0    0    0    0
##   Media Rings                               0    0    0    0    0    0
##   Media Works                               0    0    0    0    0    0
##   MediaQuest                                0    0    0    0    0    0
##   Men-A-Vision                              0    1    0    0    0    0
##   Mentor Interactive                        0    0    0    0    0    0
##   Mercury Games                             0    0    0    0    0    0
##   Merscom LLC                               0    0    0    0    0    0
##   Metro 3D                                  0    0    0    0    0    0
##   Michaelsoft                               0    0    0    0    0    0
##   Micro Cabin                               0    0    0    0    0    0
##   Microids                                  0    0    0    0    0    0
##   Microprose                                0    0    0    0    0    0
##   Microsoft Game Studios                    0    0    0    0    0    0
##   Midas Interactive Entertainment           0    0    0    0    0    0
##   Midway Games                              0    0    0    0    0    0
##   Milestone                                 0    0    0    0    0    0
##   Milestone S.r.l                           0    0    0    0    0    0
##   Milestone S.r.l.                          0    0    0    0    0    0
##   Minato Station                            0    0    0    0    0    0
##   Mindscape                                 0    0    0    0    0    0
##   Mirai Shounen                             0    0    0    0    0    0
##   Misawa                                    0    0    0    0    0    0
##   Mitsui                                    0    0    0    0    0    0
##   mixi, Inc                                 0    0    0    0    0    0
##   MLB.com                                   0    0    0    0    0    0
##   Mojang                                    0    0    0    0    0    0
##   Monte Christo Multimedia                  0    0    0    0    0    0
##   Moss                                      0    0    0    0    0    0
##   MTO                                       0    0    0    0    0    0
##   MTV Games                                 0    0    0    0    0    0
##   Mud Duck Productions                      0    0    0    0    0    0
##   Mumbo Jumbo                               0    0    0    0    0    0
##   Mycom                                     0    0    0    0    0    1
##   Myelin Media                              0    0    0    0    0    0
##   Mystique                                  0    1    0    0    0    0
##   N/A                                       0    0    0    0    0    0
##   Namco Bandai Games                        0    0    0    0    3    2
##   Natsume                                   0    0    0    0    0    0
##   Navarre Corp                              0    0    0    0    0    0
##   Naxat Soft                                0    0    0    0    0    0
##   NCS                                       0    0    0    0    0    0
##   NCSoft                                    0    0    0    0    0    0
##   NDA Productions                           0    0    0    0    0    0
##   NEC                                       0    0    0    0    0    0
##   NEC Interchannel                          0    0    0    0    0    0
##   Neko Entertainment                        0    0    0    0    0    0
##   NetRevo                                   0    0    0    0    0    0
##   New                                       0    0    0    0    0    0
##   New World Computing                       0    0    0    0    0    0
##   NewKidCo                                  0    0    0    0    0    0
##   Nexon                                     0    0    0    0    0    0
##   Nichibutsu                                0    0    0    0    0    0
##   Nihon Falcom Corporation                  0    0    0    0    0    0
##   Nintendo                                  0    0    0    6    9    7
##   Nippon Amuse                              0    0    0    0    0    0
##   Nippon Columbia                           0    0    0    0    0    0
##   Nippon Ichi Software                      0    0    0    0    0    0
##   Nippon Telenet                            0    0    0    0    0    0
##   Nitroplus                                 0    0    0    0    0    0
##   Nobilis                                   0    0    0    0    0    0
##   Nordcurrent                               0    0    0    0    0    0
##   Nordic Games                              0    0    0    0    0    0
##   NovaLogic                                 0    0    0    0    0    0
##   Number None                               0    0    0    0    0    0
##   O-Games                                   0    0    0    0    0    0
##   O3 Entertainment                          0    0    0    0    0    0
##   Ocean                                     0    0    0    0    0    0
##   Office Create                             0    0    0    0    0    0
##   On Demand                                 0    0    0    0    0    0
##   Ongakukan                                 0    0    0    0    0    0
##   Origin Systems                            0    0    0    0    0    0
##   Otomate                                   0    0    0    0    0    0
##   Oxygen Interactive                        0    0    0    0    0    0
##   P2 Games                                  0    0    0    0    0    0
##   Pacific Century Cyber Works               0    0    0    0    0    0
##   Pack-In-Video                             0    0    0    0    0    0
##   Pack In Soft                              0    0    0    0    0    0
##   Palcom                                    0    0    0    0    0    0
##   Panther Software                          0    0    0    0    0    0
##   Paon                                      0    0    0    0    0    0
##   Paon Corporation                          0    0    0    0    0    0
##   Paradox Development                       0    0    0    0    0    0
##   Paradox Interactive                       0    0    0    0    0    0
##   Parker Bros.                              0    3    2    2    0    0
##   Performance Designed Products             0    0    0    0    0    0
##   Phantagram                                0    0    0    0    0    0
##   Phantom EFX                               0    0    0    0    0    0
##   Phenomedia                                0    0    0    0    0    0
##   Phoenix Games                             0    0    0    0    0    0
##   Piacci                                    0    0    0    0    0    0
##   Pinnacle                                  0    0    0    0    0    0
##   Pioneer LDC                               0    0    0    0    0    0
##   Play It                                   0    0    0    0    0    0
##   Playlogic Game Factory                    0    0    0    0    0    0
##   Playmates                                 0    0    0    0    0    0
##   Playmore                                  0    0    0    0    0    0
##   PlayV                                     0    0    0    0    0    0
##   Plenty                                    0    0    0    0    0    0
##   PM Studios                                0    0    0    0    0    0
##   Pony Canyon                               0    0    0    0    0    0
##   PopCap Games                              0    0    0    0    0    0
##   Popcorn Arcade                            0    0    0    0    0    0
##   PopTop Software                           0    0    0    0    0    0
##   Pow                                       0    0    0    0    0    0
##   PQube                                     0    0    0    0    0    0
##   Princess Soft                             0    0    0    0    0    0
##   Prototype                                 0    0    0    0    0    0
##   Psygnosis                                 0    0    0    0    0    0
##   Quelle                                    0    0    1    0    0    0
##   Quest                                     0    0    0    0    0    0
##   Quinrose                                  0    0    0    0    0    0
##   Quintet                                   0    0    0    0    0    0
##   Rage Software                             0    0    0    0    0    0
##   Rain Games                                0    0    0    0    0    0
##   Rebellion                                 0    0    0    0    0    0
##   Rebellion Developments                    0    0    0    0    0    0
##   RED Entertainment                         0    0    0    0    0    0
##   Red Orb                                   0    0    0    0    0    0
##   Red Storm Entertainment                   0    0    0    0    0    0
##   RedOctane                                 0    0    0    0    0    0
##   Reef Entertainment                        0    0    0    0    0    0
##   responDESIGN                              0    0    0    0    0    0
##   Revolution (Japan)                        0    0    0    0    0    0
##   Revolution Software                       0    0    0    0    0    0
##   Rising Star Games                         0    0    0    0    0    0
##   Riverhillsoft                             0    0    0    0    0    0
##   Rocket Company                            0    0    0    0    0    0
##   Rondomedia                                0    0    0    0    0    0
##   RTL                                       0    0    0    0    0    0
##   Russel                                    0    0    0    0    0    0
##   Sammy Corporation                         0    0    0    0    0    0
##   Saurus                                    0    0    0    0    0    0
##   Scholastic Inc.                           0    0    0    0    0    0
##   SCi                                       0    0    0    0    0    0
##   Screenlife                                0    0    0    0    0    0
##   SCS Software                              0    0    0    0    0    0
##   Sears                                     0    0    0    0    0    0
##   Sega                                      0    0    1    0    0    0
##   Seta Corporation                          0    0    0    0    0    0
##   Seventh Chord                             0    0    0    0    0    0
##   Shogakukan                                0    0    0    0    0    0
##   Simon & Schuster Interactive              0    0    0    0    0    0
##   Slightly Mad Studios                      0    0    0    0    0    0
##   Slitherine Software                       0    0    0    0    0    0
##   SNK                                       0    0    0    0    0    0
##   SNK Playmore                              0    0    0    0    0    0
##   Societa                                   0    0    0    0    0    0
##   Sold Out                                  0    0    0    0    0    0
##   Sonnet                                    0    0    0    0    0    0
##   Sony Computer Entertainment               0    0    0    0    0    0
##   Sony Computer Entertainment America       0    0    0    0    0    0
##   Sony Computer Entertainment Europe        0    0    0    0    0    0
##   Sony Music Entertainment                  0    0    0    0    0    0
##   Sony Online Entertainment                 0    0    0    0    0    0
##   SouthPeak Games                           0    0    0    0    0    0
##   Spike                                     0    0    0    0    0    0
##   SPS                                       0    0    0    0    0    0
##   Square                                    0    0    0    0    0    0
##   Square EA                                 0    0    0    0    0    0
##   Square Enix                               0    0    0    0    0    0
##   SquareSoft                                0    0    0    0    0    0
##   SSI                                       0    0    0    0    0    0
##   Stainless Games                           0    0    0    0    0    0
##   Starfish                                  0    0    0    0    0    0
##   Starpath Corp.                            0    1    0    0    0    0
##   Sting                                     0    0    0    0    0    0
##   Storm City Games                          0    0    0    0    0    0
##   Strategy First                            0    0    0    0    0    0
##   Success                                   0    0    0    0    0    0
##   Summitsoft                                0    0    0    0    0    0
##   Sunflowers                                0    0    0    0    0    0
##   Sunrise Interactive                       0    0    0    0    0    0
##   Sunsoft                                   0    0    0    0    0    0
##   Sweets                                    0    0    0    0    0    0
##   Swing! Entertainment                      0    0    0    0    0    0
##   Syscom                                    0    0    0    0    0    0
##   System 3                                  0    0    0    0    0    0
##   System 3 Arcade Software                  0    0    0    0    0    0
##   System Soft                               0    0    0    0    0    0
##   T&E Soft                                  0    0    0    0    0    0
##   Taito                                     0    1    0    0    0    0
##   Takara                                    0    0    0    0    0    0
##   Takara Tomy                               0    0    0    0    0    0
##   Take-Two Interactive                      0    0    0    0    0    0
##   Takuyo                                    0    0    0    0    0    0
##   TalonSoft                                 0    0    0    0    0    0
##   TDK Core                                  0    0    0    0    0    0
##   TDK Mediactive                            0    0    0    0    0    0
##   Team17 Software                           0    0    0    0    0    0
##   Technos Japan Corporation                 0    0    0    0    0    0
##   TechnoSoft                                0    0    0    0    0    0
##   Tecmo Koei                                0    0    0    0    0    0
##   Telegames                                 0    0    0    0    0    0
##   Telltale Games                            0    0    0    0    0    0
##   Telstar                                   0    0    0    0    0    0
##   Tetris Online                             0    0    0    0    0    0
##   TGL                                       0    0    0    0    0    0
##   The Adventure Company                     0    0    0    0    0    0
##   The Learning Company                      0    0    0    0    0    0
##   THQ                                       0    0    0    0    0    0
##   Tigervision                               0    2    1    0    0    0
##   Time Warner Interactive                   0    0    0    0    0    0
##   Titus                                     0    0    0    0    0    0
##   Tivola                                    0    0    0    0    0    0
##   TOHO                                      0    0    0    0    0    0
##   Tommo                                     0    0    0    0    0    0
##   Tomy Corporation                          0    0    0    0    0    0
##   TopWare Interactive                       0    0    0    0    0    0
##   Touchstone                                0    0    0    0    0    0
##   Tradewest                                 0    0    0    0    0    0
##   Trion Worlds                              0    0    0    0    0    0
##   Tripwire Interactive                      0    0    0    0    0    0
##   Tru Blu Entertainment                     0    0    0    0    0    0
##   Tryfirst                                  0    0    0    0    0    0
##   TYO                                       0    0    0    0    0    0
##   Type-Moon                                 0    0    0    0    0    0
##   U.S. Gold                                 0    0    0    0    0    0
##   Ubisoft                                   0    0    0    0    0    0
##   Ubisoft Annecy                            0    0    0    0    0    0
##   UEP Systems                               0    0    0    0    0    0
##   UFO Interactive                           0    0    0    0    0    0
##   UIG Entertainment                         0    0    0    0    0    0
##   Ultravision                               0    0    0    0    0    0
##   Universal Gamex                           0    0    1    0    0    0
##   Universal Interactive                     0    0    0    0    0    0
##   Unknown                                   0    1    0    0    0    0
##   Valcon Games                              0    0    0    0    0    0
##   ValuSoft                                  0    0    0    0    0    0
##   Valve                                     0    0    0    0    0    0
##   Valve Software                            0    0    0    0    0    0
##   Vap                                       0    0    0    0    0    0
##   Vatical Entertainment                     0    0    0    0    0    0
##   Vic Tokai                                 0    0    0    0    0    0
##   Victor Interactive                        0    0    0    0    0    0
##   Video System                              0    0    0    0    0    0
##   Views                                     0    0    0    0    0    0
##   Vir2L Studios                             0    0    0    0    0    0
##   Virgin Interactive                        0    0    0    0    0    0
##   Virtual Play Games                        0    0    0    0    0    0
##   Visco                                     0    0    0    0    0    0
##   Vivendi Games                             0    0    0    0    0    0
##   Wanadoo                                   0    0    0    0    0    0
##   Warashi                                   0    0    0    0    0    0
##   Wargaming.net                             0    0    0    0    0    0
##   Warner Bros. Interactive Entertainment    0    0    0    0    0    0
##   Warp                                      0    0    0    0    0    0
##   WayForward Technologies                   0    0    0    0    0    0
##   Westwood Studios                          0    0    0    0    0    0
##   White Park Bay Software                   0    0    0    0    0    0
##   Wizard Video Games                        0    0    1    0    0    0
##   Xicat Interactive                         0    0    0    0    0    0
##   Xing Entertainment                        0    0    0    0    0    0
##   Xplosiv                                   0    0    0    0    0    0
##   XS Games                                  0    0    0    0    0    0
##   Xseed Games                               0    0    0    0    0    0
##   Yacht Club Games                          0    0    0    0    0    0
##   Yamasa Entertainment                      0    0    0    0    0    0
##   Yeti                                      0    0    0    0    0    0
##   Yuke's                                    0    0    0    0    0    0
##   Yumedia                                   0    0    0    0    0    0
##   Zenrin                                    0    0    0    0    0    0
##   Zoo Digital Publishing                    0    0    0    0    0    0
##   Zoo Games                                 0    0    0    0    0    0
##   Zushi Games                               0    0    0    0    0    0
##                                         Year
## Publisher                                1986 1987 1988 1989 1990 1991
##   10TACLE Studios                           0    0    0    0    0    0
##   1C Company                                0    0    0    0    0    0
##   20th Century Fox Video Games              0    0    0    0    0    0
##   2D Boy                                    0    0    0    0    0    0
##   3DO                                       0    0    0    0    0    0
##   49Games                                   0    0    0    0    0    0
##   505 Games                                 0    0    0    0    0    0
##   5pb                                       0    0    0    0    0    0
##   7G//AMES                                  0    0    0    0    0    0
##   989 Sports                                0    0    0    0    0    0
##   989 Studios                               0    0    0    0    0    0
##   Abylight                                  0    0    0    0    0    0
##   Acclaim Entertainment                     0    0    0    0    0    0
##   Accolade                                  0    0    0    0    0    0
##   Ackkstudios                               0    0    0    0    0    0
##   Acquire                                   0    0    0    0    0    0
##   Activision                                0    2    2    1    0    0
##   Activision Blizzard                       0    0    0    0    0    0
##   Activision Value                          0    0    0    0    0    0
##   Adeline Software                          0    0    0    0    0    0
##   Aerosoft                                  0    0    0    0    0    0
##   Agatsuma Entertainment                    0    0    0    0    0    0
##   Agetec                                    0    0    0    0    0    0
##   Aksys Games                               0    0    0    0    0    0
##   Alawar Entertainment                      0    0    0    0    0    0
##   Alchemist                                 0    0    0    0    0    0
##   Alternative Software                      0    0    0    0    0    0
##   Altron                                    0    0    0    0    0    0
##   Alvion                                    0    0    0    0    0    0
##   American Softworks                        0    0    0    0    0    0
##   Angel Studios                             0    0    0    0    0    1
##   Answer Software                           0    0    0    0    0    0
##   AQ Interactive                            0    0    0    0    0    0
##   Aqua Plus                                 0    0    0    0    0    0
##   Aques                                     0    0    0    0    0    0
##   Arc System Works                          0    0    0    0    0    0
##   Arena Entertainment                       0    0    0    0    0    0
##   Aria                                      0    0    0    0    0    0
##   Arika                                     0    0    0    0    0    0
##   ArtDink                                   0    0    0    0    0    0
##   Aruze Corp                                0    0    0    0    0    0
##   ASC Games                                 0    0    0    0    0    0
##   Ascaron Entertainment                     0    0    0    0    0    0
##   Ascaron Entertainment GmbH                0    0    0    0    0    0
##   ASCII Entertainment                       0    0    0    0    0    0
##   ASCII Media Works                         0    0    0    0    0    0
##   Asgard                                    0    0    0    0    0    0
##   ASK                                       0    0    0    0    0    0
##   Asmik Ace Entertainment                   0    0    0    0    0    0
##   Asmik Corp                                0    0    0    0    0    0
##   Aspyr                                     0    0    0    0    0    0
##   Astragon                                  0    0    0    0    0    0
##   Asylum Entertainment                      0    0    0    0    0    0
##   Atari                                     2    4    0    1    0    0
##   Athena                                    0    0    0    0    0    0
##   Atlus                                     0    0    0    0    0    0
##   Avalon Interactive                        0    0    0    0    0    0
##   Avanquest                                 0    0    0    0    0    0
##   Avanquest Software                        0    0    0    0    0    0
##   Axela                                     0    0    0    0    0    0
##   BAM! Entertainment                        0    0    0    0    0    0
##   Banpresto                                 0    0    0    0    0    2
##   Benesse                                   0    0    0    0    0    0
##   Berkeley                                  0    0    0    0    0    0
##   Bethesda Softworks                        0    0    0    0    0    0
##   Big Ben Interactive                       0    0    0    0    0    0
##   Big Fish Games                            0    0    0    0    0    0
##   Bigben Interactive                        0    0    0    0    0    0
##   bitComposer Games                         0    0    0    0    0    0
##   Black Bean Games                          0    0    0    0    0    0
##   Black Label Games                         0    0    0    0    0    0
##   Blast! Entertainment Ltd                  0    0    0    0    0    0
##   Blue Byte                                 0    0    0    0    0    0
##   BMG Interactive Entertainment             0    0    0    0    0    0
##   Bohemia Interactive                       0    0    0    0    0    0
##   Bomb                                      0    0    0    0    0    0
##   Boost On                                  0    0    0    0    0    0
##   BPS                                       0    0    0    0    0    1
##   Brash Entertainment                       0    0    0    0    0    0
##   Broccoli                                  0    0    0    0    0    0
##   BushiRoad                                 0    0    0    0    0    0
##   Capcom                                    3    1    2    1    3    3
##   Cave                                      0    0    0    0    0    0
##   CBS Electronics                           0    0    0    0    0    0
##   CCP                                       0    0    0    0    0    0
##   CDV Software Entertainment                0    0    0    0    0    0
##   ChunSoft                                  0    0    0    0    0    0
##   City Interactive                          0    0    0    0    0    0
##   Cloud Imperium Games Corporation          0    0    0    0    0    0
##   Coconuts Japan                            0    0    0    0    0    0
##   Codemasters                               0    0    0    0    0    0
##   Codemasters Online                        0    0    0    0    0    0
##   CokeM Interactive                         0    0    0    0    0    0
##   Coleco                                    0    0    0    0    0    0
##   Comfort                                   0    0    0    0    0    0
##   Commseed                                  0    0    0    0    0    0
##   Compile                                   0    0    0    0    0    0
##   Compile Heart                             0    0    0    0    0    0
##   Conspiracy Entertainment                  0    0    0    0    0    0
##   Core Design Ltd.                          0    0    0    0    0    0
##   CPG Products                              0    0    0    0    0    0
##   Crave Entertainment                       0    0    0    0    0    0
##   Creative Core                             0    0    0    0    0    0
##   Crimson Cow                               0    0    0    0    0    0
##   Crystal Dynamics                          0    0    0    0    0    0
##   CTO SpA                                   0    0    0    0    0    0
##   Culture Brain                             0    0    0    0    0    1
##   Culture Publishers                        0    0    0    0    0    0
##   CyberFront                                0    0    0    0    0    0
##   Cygames                                   0    0    0    0    0    0
##   D3Publisher                               0    0    0    0    0    0
##   Daedalic                                  0    0    0    0    0    0
##   Daedalic Entertainment                    0    0    0    0    0    0
##   Daito                                     0    0    0    0    0    0
##   Data Age                                  0    0    0    0    0    0
##   Data Design Interactive                   0    0    0    0    0    0
##   Data East                                 0    0    0    0    0    0
##   Datam Polystar                            0    0    0    0    0    0
##   Deep Silver                               0    0    0    0    0    0
##   Destination Software, Inc                 0    0    0    0    0    0
##   Destineer                                 0    0    0    0    0    0
##   Detn8 Games                               0    0    0    0    0    0
##   Devolver Digital                          0    0    0    0    0    0
##   DHM Interactive                           0    0    0    0    0    0
##   DigiCube                                  0    0    0    0    0    0
##   Disney Interactive Studios                0    0    0    0    0    0
##   Dorart                                    0    0    0    0    0    0
##   dramatic create                           0    0    0    0    0    0
##   DreamCatcher Interactive                  0    0    0    0    0    0
##   DreamWorks Interactive                    0    0    0    0    0    0
##   DSI Games                                 0    0    0    0    0    0
##   DTP Entertainment                         0    0    0    0    0    0
##   Dusenberry Martin Racing                  0    0    0    0    0    0
##   EA Games                                  0    0    0    0    0    0
##   Easy Interactive                          0    0    0    0    0    0
##   Ecole                                     0    0    0    0    0    0
##   Edia                                      0    0    0    0    0    0
##   Eidos Interactive                         0    0    0    0    0    0
##   Electronic Arts                           0    0    0    0    0    0
##   Electronic Arts Victor                    0    0    0    0    0    0
##   Elf                                       0    0    0    0    0    0
##   Elite                                     0    0    0    0    0    0
##   Empire Interactive                        0    0    0    0    0    0
##   Encore                                    0    0    0    0    0    0
##   Enix Corporation                          0    1    1    0    1    0
##   Enjoy Gaming ltd.                         0    0    0    0    0    0
##   Enterbrain                                0    0    0    0    0    0
##   EON Digital Entertainment                 0    0    0    0    0    0
##   Epic Games                                0    0    0    0    0    0
##   Epoch                                     0    0    0    0    0    1
##   Ertain                                    0    0    0    0    0    0
##   ESP                                       0    0    0    0    0    0
##   Essential Games                           0    0    0    0    0    0
##   Evolution Games                           0    0    0    0    0    0
##   Evolved Games                             0    0    0    0    0    0
##   Excalibur Publishing                      0    0    0    0    0    0
##   Experience Inc.                           0    0    0    0    0    0
##   Extreme Entertainment Group               0    0    0    0    0    0
##   Falcom Corporation                        0    0    0    0    0    0
##   Fields                                    0    0    0    0    0    0
##   Flashpoint Games                          0    0    0    0    0    0
##   Flight-Plan                               0    0    0    0    0    0
##   Focus Home Interactive                    0    0    0    0    0    0
##   Focus Multimedia                          0    0    0    0    0    0
##   fonfun                                    0    0    0    0    0    0
##   Foreign Media Games                       0    0    0    0    0    0
##   Fortyfive                                 0    0    0    0    0    0
##   Fox Interactive                           0    0    0    0    0    0
##   From Software                             0    0    0    0    0    0
##   Fuji                                      0    0    0    0    0    0
##   Funbox Media                              0    0    0    0    0    0
##   Funcom                                    0    0    0    0    0    0
##   FunSoft                                   0    0    0    0    0    0
##   Funsta                                    0    0    0    0    0    0
##   FuRyu                                     0    0    0    0    0    0
##   FuRyu Corporation                         0    0    0    0    0    0
##   G.Rev                                     0    0    0    0    0    0
##   Gaga                                      0    0    0    0    0    0
##   Gainax Network Systems                    0    0    0    0    0    0
##   Gakken                                    0    0    0    0    0    0
##   Game Arts                                 0    0    0    0    0    0
##   Game Factory                              0    0    0    0    0    0
##   Game Life                                 0    0    0    0    0    0
##   Gamebridge                                0    0    0    0    0    0
##   Gamecock                                  0    0    0    0    0    0
##   Gameloft                                  0    0    0    0    0    0
##   GameMill Entertainment                    0    0    0    0    0    0
##   GameTek                                   0    0    0    0    0    0
##   Gathering of Developers                   0    0    0    0    0    0
##   General Entertainment                     0    0    0    0    0    0
##   Genki                                     0    0    0    0    0    0
##   Genterprise                               0    0    0    0    0    0
##   Ghostlight                                0    0    0    0    0    0
##   Giga                                      0    0    0    0    0    0
##   Giza10                                    0    0    0    0    0    0
##   Glams                                     0    0    0    0    0    0
##   Global A Entertainment                    0    0    0    0    0    0
##   Global Star                               0    0    0    0    0    0
##   GN Software                               0    0    0    0    0    0
##   GOA                                       0    0    0    0    0    0
##   Gotham Games                              0    0    0    0    0    0
##   Graffiti                                  0    0    0    0    0    0
##   Grand Prix Games                          0    0    0    0    0    0
##   Graphsim Entertainment                    0    0    0    0    0    0
##   Gremlin Interactive Ltd                   0    0    0    0    0    0
##   Griffin International                     0    0    0    0    0    0
##   Groove Games                              0    0    0    0    0    0
##   GSP                                       0    0    0    0    0    0
##   GT Interactive                            0    0    0    0    0    0
##   GungHo                                    0    0    0    0    0    0
##   Gust                                      0    0    0    0    0    0
##   Hackberry                                 0    0    0    0    0    0
##   HAL Laboratory                            0    0    0    1    0    0
##   Hamster Corporation                       0    0    0    0    0    0
##   Happinet                                  0    0    0    0    0    0
##   Harmonix Music Systems                    0    0    0    0    0    0
##   Hasbro Interactive                        0    0    0    0    0    0
##   Havas Interactive                         0    0    0    0    0    0
##   Headup Games                              0    0    0    0    0    0
##   Hearty Robin                              0    0    0    0    0    0
##   Hect                                      0    0    0    0    0    0
##   Hello Games                               0    0    0    0    0    0
##   Her Interactive                           0    0    0    0    0    0
##   Hip Interactive                           0    0    0    0    0    0
##   HMH Interactive                           0    0    0    0    0    0
##   Home Entertainment Suppliers              0    0    0    0    0    0
##   Hudson Entertainment                      0    0    0    0    0    0
##   Hudson Soft                               4    0    0    0    0    1
##   Human Entertainment                       0    0    0    0    0    1
##   HuneX                                     0    0    0    0    0    0
##   Iceberg Interactive                       0    0    0    0    0    0
##   id Software                               0    0    0    0    0    0
##   Idea Factory                              0    0    0    0    0    0
##   Idea Factory International                0    0    0    0    0    0
##   IE Institute                              0    0    0    0    0    0
##   Ignition Entertainment                    0    0    0    0    0    0
##   Illusion Softworks                        0    0    0    0    0    0
##   Imadio                                    0    0    0    0    0    0
##   Image Epoch                               0    0    0    0    0    0
##   imageepoch Inc.                           0    0    0    0    0    0
##   Imageworks                                0    0    0    0    0    0
##   Imagic                                    0    0    0    0    0    0
##   Imagineer                                 0    0    0    0    0    3
##   Imax                                      0    0    0    0    0    0
##   Indie Games                               0    0    0    0    0    0
##   Infogrames                                0    0    0    0    0    0
##   Insomniac Games                           0    0    0    0    0    0
##   Interchannel                              0    0    0    0    0    0
##   Interchannel-Holon                        0    0    0    0    0    0
##   Intergrow                                 0    0    0    0    0    0
##   Interplay                                 0    0    0    0    0    0
##   Interplay Productions                     0    0    0    0    0    0
##   Interworks Unlimited, Inc.                0    0    0    0    0    0
##   Inti Creates                              0    0    0    0    0    0
##   Introversion Software                     0    0    0    0    0    0
##   inXile Entertainment                      0    0    0    0    0    0
##   Irem Software Engineering                 0    0    0    0    0    0
##   ITT Family Games                          0    0    0    0    0    0
##   Ivolgamus                                 0    0    0    0    0    0
##   iWin                                      0    0    0    0    0    0
##   Jack of All Games                         0    0    0    0    0    0
##   Jaleco                                    0    0    0    0    0    0
##   Jester Interactive                        0    0    0    0    0    0
##   Jorudan                                   0    0    0    0    0    0
##   JoWood Productions                        0    0    0    0    0    0
##   Just Flight                               0    0    0    0    0    0
##   JVC                                       0    0    0    0    0    0
##   Kadokawa Games                            0    0    0    0    0    0
##   Kadokawa Shoten                           0    0    0    0    0    0
##   Kaga Create                               0    0    0    0    0    0
##   Kalypso Media                             0    0    0    0    0    0
##   Kamui                                     0    0    0    0    0    0
##   Kando Games                               0    0    0    0    0    0
##   Karin Entertainment                       0    0    0    0    0    0
##   Kemco                                     0    0    0    0    0    1
##   KID                                       0    0    0    0    0    0
##   Kids Station                              0    0    0    0    0    0
##   King Records                              0    0    0    0    0    0
##   Knowledge Adventure                       0    0    0    0    0    0
##   Koch Media                                0    0    0    0    0    0
##   Kokopeli Digital Studios                  0    0    0    0    0    0
##   Konami Digital Entertainment              4    1    0    1    1    4
##   Kool Kizz                                 0    0    0    0    0    0
##   KSS                                       0    0    0    0    0    0
##   Laguna                                    0    0    0    0    0    0
##   Legacy Interactive                        0    0    0    0    0    0
##   LEGO Media                                0    0    0    0    0    0
##   Level 5                                   0    0    0    0    0    0
##   Lexicon Entertainment                     0    0    0    0    0    0
##   Licensed 4U                               0    0    0    0    0    0
##   Lighthouse Interactive                    0    0    0    0    0    0
##   Liquid Games                              0    0    0    0    0    0
##   Little Orbit                              0    0    0    0    0    0
##   Locus                                     0    0    0    0    0    0
##   LSP Games                                 0    0    0    0    0    0
##   LucasArts                                 0    0    0    0    0    0
##   Mad Catz                                  0    0    0    0    0    0
##   Magical Company                           0    0    0    0    0    0
##   Magix                                     0    0    0    0    0    0
##   Majesco Entertainment                     0    0    0    0    0    0
##   Mamba Games                               0    0    0    0    0    0
##   Marvel Entertainment                      0    0    0    0    0    0
##   Marvelous Entertainment                   0    0    0    0    0    0
##   Marvelous Games                           0    0    0    0    0    0
##   Marvelous Interactive                     0    0    0    0    0    0
##   Masque Publishing                         0    0    0    0    0    0
##   Mastertronic                              0    0    0    0    0    0
##   Mastiff                                   0    0    0    0    0    0
##   Mattel Interactive                        0    0    0    0    0    0
##   Max Five                                  0    0    0    0    0    0
##   Maximum Family Games                      0    0    0    0    0    0
##   Maxis                                     0    0    1    0    0    0
##   MC2 Entertainment                         0    0    0    0    0    0
##   Media Entertainment                       0    0    0    0    0    0
##   Media Factory                             0    0    0    0    0    0
##   Media Rings                               0    0    0    0    0    0
##   Media Works                               0    0    0    0    0    0
##   MediaQuest                                0    0    0    0    0    0
##   Men-A-Vision                              0    0    0    0    0    0
##   Mentor Interactive                        0    0    0    0    0    0
##   Mercury Games                             0    0    0    0    0    0
##   Merscom LLC                               0    0    0    0    0    0
##   Metro 3D                                  0    0    0    0    0    0
##   Michaelsoft                               0    0    0    0    0    0
##   Micro Cabin                               0    0    0    0    0    0
##   Microids                                  0    0    0    0    0    0
##   Microprose                                0    0    0    0    0    0
##   Microsoft Game Studios                    0    0    0    0    0    0
##   Midas Interactive Entertainment           0    0    0    0    0    0
##   Midway Games                              0    0    0    0    0    0
##   Milestone                                 0    0    0    0    0    0
##   Milestone S.r.l                           0    0    0    0    0    0
##   Milestone S.r.l.                          0    0    0    0    0    0
##   Minato Station                            0    0    0    0    0    0
##   Mindscape                                 0    0    0    0    0    0
##   Mirai Shounen                             0    0    0    0    0    0
##   Misawa                                    0    0    0    0    0    0
##   Mitsui                                    0    0    0    0    0    0
##   mixi, Inc                                 0    0    0    0    0    0
##   MLB.com                                   0    0    0    0    0    0
##   Mojang                                    0    0    0    0    0    0
##   Monte Christo Multimedia                  0    0    0    0    0    0
##   Moss                                      0    0    0    0    0    0
##   MTO                                       0    0    0    0    0    0
##   MTV Games                                 0    0    0    0    0    0
##   Mud Duck Productions                      0    0    0    0    0    0
##   Mumbo Jumbo                               0    0    0    0    0    0
##   Mycom                                     0    0    0    0    0    0
##   Myelin Media                              0    0    0    0    0    0
##   Mystique                                  0    0    0    0    0    0
##   N/A                                       0    0    0    0    0    0
##   Namco Bandai Games                        2    2    2    1    2    3
##   Natsume                                   0    0    0    0    0    0
##   Navarre Corp                              0    0    0    0    0    0
##   Naxat Soft                                0    0    0    0    0    0
##   NCS                                       0    0    0    0    0    0
##   NCSoft                                    0    0    0    0    0    0
##   NDA Productions                           0    0    0    0    0    0
##   NEC                                       0    0    0    0    0    0
##   NEC Interchannel                          0    0    0    0    0    0
##   Neko Entertainment                        0    0    0    0    0    0
##   NetRevo                                   0    0    0    0    0    0
##   New                                       0    0    0    0    0    0
##   New World Computing                       0    0    0    0    0    0
##   NewKidCo                                  0    0    0    0    0    0
##   Nexon                                     0    0    0    0    0    0
##   Nichibutsu                                0    0    0    0    0    0
##   Nihon Falcom Corporation                  0    0    0    0    0    0
##   Nintendo                                  6    4    6    9    7   13
##   Nippon Amuse                              0    0    0    0    0    0
##   Nippon Columbia                           0    0    0    0    0    0
##   Nippon Ichi Software                      0    0    0    0    0    0
##   Nippon Telenet                            0    0    0    0    0    0
##   Nitroplus                                 0    0    0    0    0    0
##   Nobilis                                   0    0    0    0    0    0
##   Nordcurrent                               0    0    0    0    0    0
##   Nordic Games                              0    0    0    0    0    0
##   NovaLogic                                 0    0    0    0    0    0
##   Number None                               0    0    0    0    0    0
##   O-Games                                   0    0    0    0    0    0
##   O3 Entertainment                          0    0    0    0    0    0
##   Ocean                                     0    0    0    0    0    0
##   Office Create                             0    0    0    0    0    0
##   On Demand                                 0    0    0    0    0    0
##   Ongakukan                                 0    0    0    0    0    0
##   Origin Systems                            0    0    0    0    0    0
##   Otomate                                   0    0    0    0    0    0
##   Oxygen Interactive                        0    0    0    0    0    0
##   P2 Games                                  0    0    0    0    0    0
##   Pacific Century Cyber Works               0    0    0    0    0    0
##   Pack-In-Video                             0    0    0    0    0    0
##   Pack In Soft                              0    0    0    0    0    0
##   Palcom                                    0    0    0    1    0    0
##   Panther Software                          0    0    0    0    0    0
##   Paon                                      0    0    0    0    0    0
##   Paon Corporation                          0    0    0    0    0    0
##   Paradox Development                       0    0    0    0    0    0
##   Paradox Interactive                       0    0    0    0    0    0
##   Parker Bros.                              0    0    0    0    0    0
##   Performance Designed Products             0    0    0    0    0    0
##   Phantagram                                0    0    0    0    0    0
##   Phantom EFX                               0    0    0    0    0    0
##   Phenomedia                                0    0    0    0    0    0
##   Phoenix Games                             0    0    0    0    0    0
##   Piacci                                    0    0    0    0    0    0
##   Pinnacle                                  0    0    0    0    0    0
##   Pioneer LDC                               0    0    0    0    0    0
##   Play It                                   0    0    0    0    0    0
##   Playlogic Game Factory                    0    0    0    0    0    0
##   Playmates                                 0    0    0    0    0    0
##   Playmore                                  0    0    0    0    0    0
##   PlayV                                     0    0    0    0    0    0
##   Plenty                                    0    0    0    0    0    0
##   PM Studios                                0    0    0    0    0    0
##   Pony Canyon                               0    0    0    0    0    0
##   PopCap Games                              0    0    0    0    0    0
##   Popcorn Arcade                            0    0    0    0    0    0
##   PopTop Software                           0    0    0    0    0    0
##   Pow                                       0    0    0    0    0    0
##   PQube                                     0    0    0    0    0    0
##   Princess Soft                             0    0    0    0    0    0
##   Prototype                                 0    0    0    0    0    0
##   Psygnosis                                 0    0    0    0    0    0
##   Quelle                                    0    0    0    0    0    0
##   Quest                                     0    0    0    0    0    0
##   Quinrose                                  0    0    0    0    0    0
##   Quintet                                   0    0    0    0    0    0
##   Rage Software                             0    0    0    0    0    0
##   Rain Games                                0    0    0    0    0    0
##   Rebellion                                 0    0    0    0    0    0
##   Rebellion Developments                    0    0    0    0    0    0
##   RED Entertainment                         0    0    0    0    0    0
##   Red Orb                                   0    0    0    0    0    0
##   Red Storm Entertainment                   0    0    0    0    0    0
##   RedOctane                                 0    0    0    0    0    0
##   Reef Entertainment                        0    0    0    0    0    0
##   responDESIGN                              0    0    0    0    0    0
##   Revolution (Japan)                        0    0    0    0    0    0
##   Revolution Software                       0    0    0    0    0    0
##   Rising Star Games                         0    0    0    0    0    0
##   Riverhillsoft                             0    0    0    0    0    0
##   Rocket Company                            0    0    0    0    0    0
##   Rondomedia                                0    0    0    0    0    0
##   RTL                                       0    0    0    0    0    0
##   Russel                                    0    0    0    0    0    0
##   Sammy Corporation                         0    0    0    0    0    0
##   Saurus                                    0    0    0    0    0    0
##   Scholastic Inc.                           0    0    0    0    0    0
##   SCi                                       0    0    0    0    0    0
##   Screenlife                                0    0    0    0    0    0
##   SCS Software                              0    0    0    0    0    0
##   Sears                                     0    0    0    0    0    0
##   Sega                                      0    0    0    0    1    1
##   Seta Corporation                          0    0    0    0    0    0
##   Seventh Chord                             0    0    0    0    0    0
##   Shogakukan                                0    0    0    0    0    0
##   Simon & Schuster Interactive              0    0    0    0    0    0
##   Slightly Mad Studios                      0    0    0    0    0    0
##   Slitherine Software                       0    0    0    0    0    0
##   SNK                                       0    0    0    0    0    0
##   SNK Playmore                              0    0    0    0    0    0
##   Societa                                   0    0    0    0    0    0
##   Sold Out                                  0    0    0    0    0    0
##   Sonnet                                    0    0    0    0    0    0
##   Sony Computer Entertainment               0    0    0    0    0    0
##   Sony Computer Entertainment America       0    0    0    0    0    0
##   Sony Computer Entertainment Europe        0    0    0    0    0    0
##   Sony Music Entertainment                  0    0    0    0    0    0
##   Sony Online Entertainment                 0    0    0    0    0    0
##   SouthPeak Games                           0    0    0    0    0    0
##   Spike                                     0    0    0    0    0    0
##   SPS                                       0    0    0    0    0    0
##   Square                                    0    0    0    0    0    1
##   Square EA                                 0    0    0    0    0    0
##   Square Enix                               0    0    0    0    0    0
##   SquareSoft                                0    1    1    1    1    2
##   SSI                                       0    0    0    0    0    0
##   Stainless Games                           0    0    0    0    0    0
##   Starfish                                  0    0    0    0    0    0
##   Starpath Corp.                            0    0    0    0    0    0
##   Sting                                     0    0    0    0    0    0
##   Storm City Games                          0    0    0    0    0    0
##   Strategy First                            0    0    0    0    0    0
##   Success                                   0    0    0    0    0    0
##   Summitsoft                                0    0    0    0    0    0
##   Sunflowers                                0    0    0    0    0    0
##   Sunrise Interactive                       0    0    0    0    0    0
##   Sunsoft                                   0    0    0    0    0    0
##   Sweets                                    0    0    0    0    0    0
##   Swing! Entertainment                      0    0    0    0    0    0
##   Syscom                                    0    0    0    0    0    0
##   System 3                                  0    0    0    0    0    0
##   System 3 Arcade Software                  0    0    0    0    0    0
##   System Soft                               0    0    0    0    0    0
##   T&E Soft                                  0    0    0    0    0    0
##   Taito                                     0    0    0    0    0    0
##   Takara                                    0    0    0    0    0    0
##   Takara Tomy                               0    0    0    0    0    0
##   Take-Two Interactive                      0    0    0    0    0    0
##   Takuyo                                    0    0    0    0    0    0
##   TalonSoft                                 0    0    0    0    0    0
##   TDK Core                                  0    0    0    0    0    0
##   TDK Mediactive                            0    0    0    0    0    0
##   Team17 Software                           0    0    0    0    0    0
##   Technos Japan Corporation                 0    0    0    0    0    0
##   TechnoSoft                                0    0    0    0    0    0
##   Tecmo Koei                                0    0    0    0    0    2
##   Telegames                                 0    0    0    0    0    0
##   Telltale Games                            0    0    0    0    0    0
##   Telstar                                   0    0    0    0    0    0
##   Tetris Online                             0    0    0    0    0    0
##   TGL                                       0    0    0    0    0    0
##   The Adventure Company                     0    0    0    0    0    0
##   The Learning Company                      0    0    0    0    0    0
##   THQ                                       0    0    0    0    0    0
##   Tigervision                               0    0    0    0    0    0
##   Time Warner Interactive                   0    0    0    0    0    0
##   Titus                                     0    0    0    0    0    0
##   Tivola                                    0    0    0    0    0    0
##   TOHO                                      0    0    0    0    0    0
##   Tommo                                     0    0    0    0    0    0
##   Tomy Corporation                          0    0    0    0    0    0
##   TopWare Interactive                       0    0    0    0    0    0
##   Touchstone                                0    0    0    0    0    0
##   Tradewest                                 0    0    0    0    0    0
##   Trion Worlds                              0    0    0    0    0    0
##   Tripwire Interactive                      0    0    0    0    0    0
##   Tru Blu Entertainment                     0    0    0    0    0    0
##   Tryfirst                                  0    0    0    0    0    0
##   TYO                                       0    0    0    0    0    0
##   Type-Moon                                 0    0    0    0    0    0
##   U.S. Gold                                 0    0    0    0    0    0
##   Ubisoft                                   0    0    0    0    0    0
##   Ubisoft Annecy                            0    0    0    0    0    0
##   UEP Systems                               0    0    0    0    0    0
##   UFO Interactive                           0    0    0    0    0    0
##   UIG Entertainment                         0    0    0    0    0    0
##   Ultravision                               0    0    0    0    0    0
##   Universal Gamex                           0    0    0    0    0    0
##   Universal Interactive                     0    0    0    0    0    0
##   Unknown                                   0    0    0    0    0    0
##   Valcon Games                              0    0    0    0    0    0
##   ValuSoft                                  0    0    0    0    0    0
##   Valve                                     0    0    0    0    0    0
##   Valve Software                            0    0    0    0    0    0
##   Vap                                       0    0    0    0    0    0
##   Vatical Entertainment                     0    0    0    0    0    0
##   Vic Tokai                                 0    0    0    0    0    0
##   Victor Interactive                        0    0    0    0    0    0
##   Video System                              0    0    0    0    0    0
##   Views                                     0    0    0    0    0    0
##   Vir2L Studios                             0    0    0    0    0    0
##   Virgin Interactive                        0    0    0    0    0    0
##   Virtual Play Games                        0    0    0    0    0    0
##   Visco                                     0    0    0    0    0    0
##   Vivendi Games                             0    0    0    0    0    0
##   Wanadoo                                   0    0    0    0    0    0
##   Warashi                                   0    0    0    0    0    0
##   Wargaming.net                             0    0    0    0    0    0
##   Warner Bros. Interactive Entertainment    0    0    0    0    0    0
##   Warp                                      0    0    0    0    0    0
##   WayForward Technologies                   0    0    0    0    0    0
##   Westwood Studios                          0    0    0    0    0    0
##   White Park Bay Software                   0    0    0    0    0    0
##   Wizard Video Games                        0    0    0    0    0    0
##   Xicat Interactive                         0    0    0    0    0    0
##   Xing Entertainment                        0    0    0    0    0    0
##   Xplosiv                                   0    0    0    0    0    0
##   XS Games                                  0    0    0    0    0    0
##   Xseed Games                               0    0    0    0    0    0
##   Yacht Club Games                          0    0    0    0    0    0
##   Yamasa Entertainment                      0    0    0    0    0    0
##   Yeti                                      0    0    0    0    0    0
##   Yuke's                                    0    0    0    0    0    0
##   Yumedia                                   0    0    0    0    0    0
##   Zenrin                                    0    0    0    0    0    0
##   Zoo Digital Publishing                    0    0    0    0    0    0
##   Zoo Games                                 0    0    0    0    0    0
##   Zushi Games                               0    0    0    0    0    0
##                                         Year
## Publisher                                1992 1993 1994 1995 1996 1997
##   10TACLE Studios                           0    0    0    0    0    0
##   1C Company                                0    0    0    0    0    0
##   20th Century Fox Video Games              0    0    0    0    0    0
##   2D Boy                                    0    0    0    0    0    0
##   3DO                                       0    0    0    0    0    0
##   49Games                                   0    0    0    0    0    0
##   505 Games                                 0    0    0    0    0    0
##   5pb                                       0    0    0    0    0    0
##   7G//AMES                                  0    0    0    0    0    0
##   989 Sports                                0    0    0    0    0    0
##   989 Studios                               0    0    0    0    0    2
##   Abylight                                  0    0    0    0    0    0
##   Acclaim Entertainment                     0    1    7   11   13   10
##   Accolade                                  0    0    0    0    1    1
##   Ackkstudios                               0    0    0    0    0    0
##   Acquire                                   0    0    0    0    0    0
##   Activision                                0    0    1    1    3    3
##   Activision Blizzard                       0    0    0    0    0    0
##   Activision Value                          0    0    0    0    0    0
##   Adeline Software                          0    0    0    0    1    0
##   Aerosoft                                  0    0    0    0    0    0
##   Agatsuma Entertainment                    0    0    0    0    0    0
##   Agetec                                    0    0    0    0    0    1
##   Aksys Games                               0    0    0    0    0    0
##   Alawar Entertainment                      0    0    0    0    0    0
##   Alchemist                                 0    0    0    0    0    0
##   Alternative Software                      0    0    0    0    0    0
##   Altron                                    0    0    0    0    0    0
##   Alvion                                    0    0    0    0    0    0
##   American Softworks                        0    0    0    0    1    0
##   Angel Studios                             0    0    1    1    0    0
##   Answer Software                           0    0    0    0    0    0
##   AQ Interactive                            0    0    0    0    0    0
##   Aqua Plus                                 0    0    0    0    0    0
##   Aques                                     0    0    0    0    0    1
##   Arc System Works                          0    0    0    0    0    0
##   Arena Entertainment                       2    0    0    0    0    0
##   Aria                                      0    0    0    0    0    0
##   Arika                                     0    0    0    0    0    0
##   ArtDink                                   0    0    1    0    2    0
##   Aruze Corp                                0    0    0    0    0    0
##   ASC Games                                 0    0    0    0    1    0
##   Ascaron Entertainment                     0    0    0    0    0    0
##   Ascaron Entertainment GmbH                0    0    0    0    0    0
##   ASCII Entertainment                       0    0    1    2    5    6
##   ASCII Media Works                         0    0    0    0    0    0
##   Asgard                                    0    0    0    0    0    0
##   ASK                                       0    0    0    0    1    0
##   Asmik Ace Entertainment                   0    0    0    0    1    0
##   Asmik Corp                                0    0    1    1    0    0
##   Aspyr                                     0    0    0    0    0    0
##   Astragon                                  0    0    0    0    0    0
##   Asylum Entertainment                      0    0    0    0    0    0
##   Atari                                     0    0    0    0    0    0
##   Athena                                    0    0    0    0    0    0
##   Atlus                                     0    0    2    5    2    2
##   Avalon Interactive                        0    0    0    0    0    0
##   Avanquest                                 0    0    0    0    0    0
##   Avanquest Software                        0    0    0    0    0    0
##   Axela                                     0    0    0    0    0    0
##   BAM! Entertainment                        0    0    0    0    0    0
##   Banpresto                                 1    1    5    5    2    2
##   Benesse                                   0    0    0    0    0    0
##   Berkeley                                  0    0    0    0    0    0
##   Bethesda Softworks                        0    0    0    0    0    0
##   Big Ben Interactive                       0    0    0    0    0    0
##   Big Fish Games                            0    0    0    0    0    0
##   Bigben Interactive                        0    0    0    0    0    0
##   bitComposer Games                         0    0    0    0    0    0
##   Black Bean Games                          0    0    0    0    0    0
##   Black Label Games                         0    0    0    0    0    0
##   Blast! Entertainment Ltd                  0    0    0    0    0    0
##   Blue Byte                                 0    0    0    0    0    0
##   BMG Interactive Entertainment             0    0    0    0    3    3
##   Bohemia Interactive                       0    0    0    0    0    0
##   Bomb                                      0    0    0    0    0    0
##   Boost On                                  0    0    0    0    0    0
##   BPS                                       0    0    1    0    0    0
##   Brash Entertainment                       0    0    0    0    0    0
##   Broccoli                                  0    0    0    0    0    0
##   BushiRoad                                 0    0    0    0    0    0
##   Capcom                                    4    7    1    0    3   12
##   Cave                                      0    0    0    0    0    0
##   CBS Electronics                           0    0    0    0    0    0
##   CCP                                       0    0    0    0    0    0
##   CDV Software Entertainment                0    0    0    0    0    0
##   ChunSoft                                  1    1    1    1    1    0
##   City Interactive                          0    0    0    0    0    0
##   Cloud Imperium Games Corporation          0    0    0    0    0    0
##   Coconuts Japan                            0    1    0    0    1    0
##   Codemasters                               0    0    0    0    0    2
##   Codemasters Online                        0    0    0    0    0    0
##   CokeM Interactive                         0    0    0    0    0    0
##   Coleco                                    0    0    0    0    0    0
##   Comfort                                   0    0    0    0    0    0
##   Commseed                                  0    0    0    0    0    0
##   Compile                                   0    0    0    1    1    3
##   Compile Heart                             0    0    0    0    0    0
##   Conspiracy Entertainment                  0    0    0    0    0    0
##   Core Design Ltd.                          0    0    1    1    0    0
##   CPG Products                              0    0    0    0    0    0
##   Crave Entertainment                       0    0    0    0    0    0
##   Creative Core                             0    0    0    0    0    0
##   Crimson Cow                               0    0    0    0    0    0
##   Crystal Dynamics                          0    0    0    3    2    0
##   CTO SpA                                   0    0    0    0    1    1
##   Culture Brain                             0    0    1    0    0    0
##   Culture Publishers                        0    0    0    0    0    0
##   CyberFront                                0    0    0    0    0    0
##   Cygames                                   0    0    0    0    0    0
##   D3Publisher                               0    0    0    0    0    0
##   Daedalic                                  0    0    0    0    0    0
##   Daedalic Entertainment                    0    0    0    0    0    0
##   Daito                                     0    0    0    0    0    0
##   Data Age                                  0    0    0    0    0    0
##   Data Design Interactive                   0    0    0    0    0    0
##   Data East                                 0    0    0    1    0    0
##   Datam Polystar                            0    0    0    0    0    0
##   Deep Silver                               0    0    0    0    0    0
##   Destination Software, Inc                 0    0    0    0    0    0
##   Destineer                                 0    0    0    0    0    0
##   Detn8 Games                               0    0    0    0    0    0
##   Devolver Digital                          0    0    0    0    0    0
##   DHM Interactive                           0    0    0    0    0    0
##   DigiCube                                  0    0    0    0    0    0
##   Disney Interactive Studios                0    0    0    0    0    0
##   Dorart                                    0    0    0    0    0    0
##   dramatic create                           0    0    0    0    0    0
##   DreamCatcher Interactive                  0    0    0    0    0    0
##   DreamWorks Interactive                    0    0    0    0    0    0
##   DSI Games                                 0    0    0    0    0    0
##   DTP Entertainment                         0    0    0    0    0    0
##   Dusenberry Martin Racing                  0    0    0    0    0    0
##   EA Games                                  0    0    0    0    0    0
##   Easy Interactive                          0    0    0    0    0    0
##   Ecole                                     0    0    0    0    0    0
##   Edia                                      0    0    0    0    0    0
##   Eidos Interactive                         0    0    0    0    4    5
##   Electronic Arts                           1    0    2   11   13   25
##   Electronic Arts Victor                    0    0    0    0    2    0
##   Elf                                       0    0    0    0    1    1
##   Elite                                     0    0    0    0    1    0
##   Empire Interactive                        0    0    0    0    1    0
##   Encore                                    0    0    0    0    0    0
##   Enix Corporation                          1    1    2    2    4    0
##   Enjoy Gaming ltd.                         0    0    0    0    0    0
##   Enterbrain                                0    0    0    0    0    0
##   EON Digital Entertainment                 0    0    0    0    0    0
##   Epic Games                                0    0    0    0    0    0
##   Epoch                                     1    1    0    2    1    0
##   Ertain                                    0    0    0    0    0    0
##   ESP                                       0    0    0    0    0    1
##   Essential Games                           0    0    0    0    0    0
##   Evolution Games                           0    0    0    0    0    0
##   Evolved Games                             0    0    0    0    0    0
##   Excalibur Publishing                      0    0    0    0    0    0
##   Experience Inc.                           0    0    0    0    0    0
##   Extreme Entertainment Group               0    0    0    0    0    0
##   Falcom Corporation                        0    0    0    0    0    0
##   Fields                                    0    0    0    0    0    0
##   Flashpoint Games                          0    0    0    0    0    0
##   Flight-Plan                               0    0    0    0    0    0
##   Focus Home Interactive                    0    0    0    0    0    0
##   Focus Multimedia                          0    0    0    0    0    0
##   fonfun                                    0    0    0    0    0    0
##   Foreign Media Games                       0    0    0    0    0    0
##   Fortyfive                                 0    0    0    0    0    0
##   Fox Interactive                           0    0    0    0    1    2
##   From Software                             0    0    1    0    1    1
##   Fuji                                      0    0    0    1    0    0
##   Funbox Media                              0    0    0    0    0    0
##   Funcom                                    0    0    0    0    0    0
##   FunSoft                                   0    0    0    0    1    0
##   Funsta                                    0    0    0    0    0    0
##   FuRyu                                     0    0    0    0    0    0
##   FuRyu Corporation                         0    0    0    0    0    0
##   G.Rev                                     0    0    0    0    0    0
##   Gaga                                      0    0    0    0    1    0
##   Gainax Network Systems                    0    0    0    0    0    0
##   Gakken                                    0    0    0    0    0    0
##   Game Arts                                 0    0    1    0    0    0
##   Game Factory                              0    0    0    0    0    0
##   Game Life                                 0    0    0    0    0    0
##   Gamebridge                                0    0    0    0    0    0
##   Gamecock                                  0    0    0    0    0    0
##   Gameloft                                  0    0    0    0    0    0
##   GameMill Entertainment                    0    0    0    0    0    0
##   GameTek                                   0    0    0    0    0    0
##   Gathering of Developers                   0    0    0    0    0    0
##   General Entertainment                     0    0    0    0    0    0
##   Genki                                     0    0    0    0    0    0
##   Genterprise                               0    0    0    0    0    0
##   Ghostlight                                0    0    0    0    0    0
##   Giga                                      0    0    0    0    0    0
##   Giza10                                    0    0    0    0    0    0
##   Glams                                     0    0    0    1    0    0
##   Global A Entertainment                    0    0    0    0    0    0
##   Global Star                               0    0    0    0    0    0
##   GN Software                               0    0    0    0    0    0
##   GOA                                       0    0    0    0    0    0
##   Gotham Games                              0    0    0    0    0    0
##   Graffiti                                  0    0    0    0    0    0
##   Grand Prix Games                          0    0    0    0    0    0
##   Graphsim Entertainment                    0    0    0    0    0    0
##   Gremlin Interactive Ltd                   0    0    0    0    3    3
##   Griffin International                     0    0    0    0    0    0
##   Groove Games                              0    0    0    0    0    0
##   GSP                                       0    0    0    0    0    0
##   GT Interactive                            0    0    0    1    7   16
##   GungHo                                    0    0    0    0    0    0
##   Gust                                      0    0    0    0    1    1
##   Hackberry                                 0    0    0    0    0    0
##   HAL Laboratory                            0    0    0    0    0    0
##   Hamster Corporation                       0    0    0    0    0    0
##   Happinet                                  0    0    0    0    0    0
##   Harmonix Music Systems                    0    0    0    0    0    0
##   Hasbro Interactive                        0    0    1    0    0    3
##   Havas Interactive                         0    0    0    0    0    0
##   Headup Games                              0    0    0    0    0    0
##   Hearty Robin                              0    0    0    0    1    0
##   Hect                                      0    1    1    1    0    0
##   Hello Games                               0    0    0    0    0    0
##   Her Interactive                           0    0    0    0    0    0
##   Hip Interactive                           0    0    0    0    0    0
##   HMH Interactive                           0    0    0    0    0    0
##   Home Entertainment Suppliers              0    0    0    0    0    0
##   Hudson Entertainment                      0    0    0    0    0    1
##   Hudson Soft                               2    3    5    4    5    6
##   Human Entertainment                       0    0    2    2    1    2
##   HuneX                                     0    0    0    0    0    0
##   Iceberg Interactive                       0    0    0    0    0    0
##   id Software                               1    0    0    0    0    0
##   Idea Factory                              0    0    0    0    0    0
##   Idea Factory International                0    0    0    0    0    0
##   IE Institute                              0    0    0    0    0    0
##   Ignition Entertainment                    0    0    0    0    0    0
##   Illusion Softworks                        0    0    0    0    0    0
##   Imadio                                    0    0    0    0    0    1
##   Image Epoch                               0    0    0    0    0    0
##   imageepoch Inc.                           0    0    0    0    0    0
##   Imageworks                                0    0    0    1    0    0
##   Imagic                                    0    0    0    0    0    0
##   Imagineer                                 0    0    0    0    4    2
##   Imax                                      0    1    0    0    0    0
##   Indie Games                               0    0    0    0    0    0
##   Infogrames                                0    0    1    0    1    1
##   Insomniac Games                           0    0    0    0    0    0
##   Interchannel                              0    0    0    0    0    0
##   Interchannel-Holon                        0    0    0    0    0    0
##   Intergrow                                 0    0    0    0    0    0
##   Interplay                                 0    1    0    3    2    4
##   Interplay Productions                     0    0    0    0    0    1
##   Interworks Unlimited, Inc.                0    0    0    0    0    0
##   Inti Creates                              0    0    0    0    0    0
##   Introversion Software                     0    0    0    0    0    0
##   inXile Entertainment                      0    0    0    0    0    0
##   Irem Software Engineering                 0    0    0    0    0    0
##   ITT Family Games                          0    0    0    0    0    0
##   Ivolgamus                                 0    0    0    0    0    0
##   iWin                                      0    0    0    0    0    0
##   Jack of All Games                         0    0    0    0    0    0
##   Jaleco                                    0    0    0    2    1    0
##   Jester Interactive                        0    0    0    0    0    0
##   Jorudan                                   0    0    0    0    0    0
##   JoWood Productions                        0    0    0    0    0    0
##   Just Flight                               0    0    0    0    0    0
##   JVC                                       0    0    1    0    3    1
##   Kadokawa Games                            0    0    0    0    0    0
##   Kadokawa Shoten                           0    0    0    0    1    1
##   Kaga Create                               0    0    0    0    0    0
##   Kalypso Media                             0    0    0    0    0    0
##   Kamui                                     0    0    0    0    0    0
##   Kando Games                               0    0    0    0    0    0
##   Karin Entertainment                       0    0    0    0    0    0
##   Kemco                                     0    0    0    0    0    2
##   KID                                       0    0    0    0    0    0
##   Kids Station                              0    0    0    0    0    0
##   King Records                              0    0    0    0    0    0
##   Knowledge Adventure                       0    0    0    0    0    0
##   Koch Media                                0    0    0    0    0    0
##   Kokopeli Digital Studios                  0    0    0    1    0    0
##   Konami Digital Entertainment              3    3    7   12   16   17
##   Kool Kizz                                 0    0    0    0    0    0
##   KSS                                       0    0    0    0    1    0
##   Laguna                                    0    1    1    2    0    0
##   Legacy Interactive                        0    0    0    0    0    0
##   LEGO Media                                0    0    0    0    0    0
##   Level 5                                   0    0    0    0    0    0
##   Lexicon Entertainment                     0    0    0    0    0    0
##   Licensed 4U                               0    0    0    0    0    0
##   Lighthouse Interactive                    0    0    0    0    0    0
##   Liquid Games                              0    0    0    0    0    0
##   Little Orbit                              0    0    0    0    0    0
##   Locus                                     0    0    0    0    0    0
##   LSP Games                                 0    0    0    0    0    0
##   LucasArts                                 0    0    1    0    1    1
##   Mad Catz                                  0    0    0    0    0    0
##   Magical Company                           0    0    0    0    0    0
##   Magix                                     0    0    0    0    0    0
##   Majesco Entertainment                     0    0    0    0    0    0
##   Mamba Games                               0    0    0    0    0    0
##   Marvel Entertainment                      0    0    0    0    0    0
##   Marvelous Entertainment                   0    0    0    0    0    0
##   Marvelous Games                           0    0    0    0    0    0
##   Marvelous Interactive                     0    0    0    0    0    0
##   Masque Publishing                         0    0    0    0    0    0
##   Mastertronic                              0    0    0    0    0    0
##   Mastiff                                   0    0    0    0    0    0
##   Mattel Interactive                        0    0    0    0    0    0
##   Max Five                                  0    0    0    0    0    0
##   Maximum Family Games                      0    0    0    0    0    0
##   Maxis                                     1    0    0    0    1    0
##   MC2 Entertainment                         0    0    0    0    0    0
##   Media Entertainment                       0    0    0    0    0    0
##   Media Factory                             0    0    0    0    0    0
##   Media Rings                               0    0    1    1    0    0
##   Media Works                               0    0    0    0    1    0
##   MediaQuest                                0    0    0    1    0    0
##   Men-A-Vision                              0    0    0    0    0    0
##   Mentor Interactive                        0    0    0    0    0    0
##   Mercury Games                             0    0    0    0    0    0
##   Merscom LLC                               0    0    0    0    0    0
##   Metro 3D                                  0    0    0    0    0    0
##   Michaelsoft                               0    0    0    0    0    0
##   Micro Cabin                               0    0    1    1    1    0
##   Microids                                  0    0    0    0    0    0
##   Microprose                                0    0    0    1    2    1
##   Microsoft Game Studios                    0    0    0    0    1    0
##   Midas Interactive Entertainment           0    0    0    0    0    1
##   Midway Games                              0    0    0    0    2    4
##   Milestone                                 0    0    0    0    0    0
##   Milestone S.r.l                           0    0    0    0    0    0
##   Milestone S.r.l.                          0    0    0    0    0    0
##   Minato Station                            0    0    0    0    0    0
##   Mindscape                                 0    0    0    1    2    1
##   Mirai Shounen                             0    0    0    0    0    0
##   Misawa                                    0    1    1    0    0    0
##   Mitsui                                    0    0    0    0    0    0
##   mixi, Inc                                 0    0    0    0    0    0
##   MLB.com                                   0    0    0    0    0    0
##   Mojang                                    0    0    0    0    0    0
##   Monte Christo Multimedia                  0    0    0    0    0    0
##   Moss                                      0    0    0    0    0    0
##   MTO                                       0    0    0    0    0    0
##   MTV Games                                 0    0    0    0    0    0
##   Mud Duck Productions                      0    0    0    0    0    0
##   Mumbo Jumbo                               0    0    0    0    0    0
##   Mycom                                     0    0    0    0    0    0
##   Myelin Media                              0    0    0    0    0    0
##   Mystique                                  0    0    0    0    0    0
##   N/A                                       0    0    0    0    0    0
##   Namco Bandai Games                        2    8    6   11    8   13
##   Natsume                                   0    0    0    0    1    1
##   Navarre Corp                              0    0    0    0    0    0
##   Naxat Soft                                0    0    0    0    0    0
##   NCS                                       0    0    0    0    1    1
##   NCSoft                                    0    0    0    0    0    0
##   NDA Productions                           0    0    0    0    0    0
##   NEC                                       0    0    0    1    2    0
##   NEC Interchannel                          0    0    0    0    1    2
##   Neko Entertainment                        0    0    0    0    0    0
##   NetRevo                                   0    0    0    0    0    0
##   New                                       0    0    0    1    0    0
##   New World Computing                       1    0    0    0    0    0
##   NewKidCo                                  0    0    0    0    0    0
##   Nexon                                     0    0    0    0    0    0
##   Nichibutsu                                0    0    0    1    0    0
##   Nihon Falcom Corporation                  0    0    0    0    0    0
##   Nintendo                                 10    9    8   10   17   13
##   Nippon Amuse                              0    0    0    0    0    0
##   Nippon Columbia                           0    0    0    0    0    0
##   Nippon Ichi Software                      0    0    0    0    0    0
##   Nippon Telenet                            0    0    0    0    2    0
##   Nitroplus                                 0    0    0    0    0    0
##   Nobilis                                   0    0    0    0    0    0
##   Nordcurrent                               0    0    0    0    0    0
##   Nordic Games                              0    0    0    0    0    0
##   NovaLogic                                 0    0    0    0    0    0
##   Number None                               0    0    0    0    0    0
##   O-Games                                   0    0    0    0    0    0
##   O3 Entertainment                          0    0    0    0    0    0
##   Ocean                                     1    1    0    2    2    3
##   Office Create                             0    0    0    0    0    0
##   On Demand                                 0    0    0    0    0    1
##   Ongakukan                                 0    0    0    0    0    0
##   Origin Systems                            0    0    0    0    0    1
##   Otomate                                   0    0    0    0    0    0
##   Oxygen Interactive                        0    0    0    0    0    0
##   P2 Games                                  0    0    0    0    0    0
##   Pacific Century Cyber Works               0    0    0    0    0    0
##   Pack-In-Video                             0    0    0    2    0    0
##   Pack In Soft                              0    0    0    0    0    0
##   Palcom                                    0    0    0    0    0    0
##   Panther Software                          0    0    0    1    0    0
##   Paon                                      0    0    0    0    0    0
##   Paon Corporation                          0    0    0    0    0    0
##   Paradox Development                       0    0    0    0    0    0
##   Paradox Interactive                       0    0    0    0    0    0
##   Parker Bros.                              0    0    0    0    0    0
##   Performance Designed Products             0    0    0    0    0    0
##   Phantagram                                0    0    0    0    0    0
##   Phantom EFX                               0    0    0    0    0    0
##   Phenomedia                                0    0    0    0    0    0
##   Phoenix Games                             0    0    0    0    0    0
##   Piacci                                    0    0    0    0    0    0
##   Pinnacle                                  0    0    0    0    0    0
##   Pioneer LDC                               0    0    0    0    2    0
##   Play It                                   0    0    0    0    0    0
##   Playlogic Game Factory                    0    0    0    0    0    0
##   Playmates                                 0    0    0    0    0    1
##   Playmore                                  0    0    0    0    0    0
##   PlayV                                     0    0    0    0    0    0
##   Plenty                                    0    0    0    0    0    0
##   PM Studios                                0    0    0    0    0    0
##   Pony Canyon                               0    0    0    0    0    0
##   PopCap Games                              0    0    0    0    0    0
##   Popcorn Arcade                            0    0    0    0    0    0
##   PopTop Software                           0    0    0    0    0    0
##   Pow                                       0    0    0    1    0    0
##   PQube                                     0    0    0    0    0    0
##   Princess Soft                             0    0    0    0    0    0
##   Prototype                                 0    0    0    0    0    0
##   Psygnosis                                 0    0    1    7    7    9
##   Quelle                                    0    0    0    0    0    0
##   Quest                                     0    0    0    1    0    0
##   Quinrose                                  0    0    0    0    0    0
##   Quintet                                   0    0    0    0    0    0
##   Rage Software                             0    0    0    0    0    0
##   Rain Games                                0    0    0    0    0    0
##   Rebellion                                 0    0    0    0    0    0
##   Rebellion Developments                    0    0    0    0    0    0
##   RED Entertainment                         0    0    0    0    0    0
##   Red Orb                                   0    0    1    0    0    1
##   Red Storm Entertainment                   0    0    0    0    0    0
##   RedOctane                                 0    0    0    0    0    0
##   Reef Entertainment                        0    0    0    0    0    0
##   responDESIGN                              0    0    0    0    0    0
##   Revolution (Japan)                        0    0    0    0    0    0
##   Revolution Software                       0    0    0    0    0    0
##   Rising Star Games                         0    0    0    0    0    0
##   Riverhillsoft                             0    0    0    1    0    0
##   Rocket Company                            0    0    0    0    0    0
##   Rondomedia                                0    0    0    0    0    0
##   RTL                                       0    0    0    0    0    0
##   Russel                                    0    0    0    0    0    0
##   Sammy Corporation                         0    1    0    0    0    0
##   Saurus                                    0    0    0    0    0    0
##   Scholastic Inc.                           0    0    0    0    0    0
##   SCi                                       0    0    0    0    0    0
##   Screenlife                                0    0    0    0    0    0
##   SCS Software                              0    0    0    0    0    0
##   Sears                                     0    0    0    0    0    0
##   Sega                                      5    6   26   27   15   11
##   Seta Corporation                          0    0    0    4    2    0
##   Seventh Chord                             0    0    0    0    0    0
##   Shogakukan                                0    0    0    2    0    0
##   Simon & Schuster Interactive              0    0    0    0    0    0
##   Slightly Mad Studios                      0    0    0    0    0    0
##   Slitherine Software                       0    0    0    0    0    0
##   SNK                                       0    2    4    2    5    1
##   SNK Playmore                              0    0    0    1    0    0
##   Societa                                   0    0    0    0    1    0
##   Sold Out                                  0    0    0    0    0    0
##   Sonnet                                    0    0    0    1    1    0
##   Sony Computer Entertainment               0    0    7   31   28   34
##   Sony Computer Entertainment America       0    0    0    0    0    0
##   Sony Computer Entertainment Europe        0    0    0    0    0    0
##   Sony Music Entertainment                  0    0    0    0    0    0
##   Sony Online Entertainment                 0    0    0    0    0    0
##   SouthPeak Games                           0    0    0    0    0    0
##   Spike                                     0    0    0    0    0    0
##   SPS                                       0    0    0    0    1    0
##   Square                                    0    0    1    0    0    1
##   Square EA                                 0    0    0    0    0    0
##   Square Enix                               0    0    0    0    0    0
##   SquareSoft                                2    2    2    4    4    8
##   SSI                                       0    0    0    0    1    0
##   Stainless Games                           0    0    0    0    0    0
##   Starfish                                  0    0    0    0    0    1
##   Starpath Corp.                            0    0    0    0    0    0
##   Sting                                     0    0    0    0    0    0
##   Storm City Games                          0    0    0    0    0    0
##   Strategy First                            0    0    0    0    0    0
##   Success                                   0    0    0    0    0    0
##   Summitsoft                                0    0    0    0    0    0
##   Sunflowers                                0    0    0    0    0    0
##   Sunrise Interactive                       0    0    0    0    0    0
##   Sunsoft                                   0    0    3    1    1    1
##   Sweets                                    0    0    0    0    0    0
##   Swing! Entertainment                      0    0    0    0    0    0
##   Syscom                                    0    0    0    0    0    0
##   System 3                                  0    0    0    0    0    0
##   System 3 Arcade Software                  0    0    0    0    0    0
##   System Soft                               0    0    0    0    0    0
##   T&E Soft                                  0    1    0    0    0    0
##   Taito                                     0    0    1    2    0    1
##   Takara                                    1    1    2    1    1    2
##   Takara Tomy                               0    0    0    0    0    0
##   Take-Two Interactive                      0    0    0    0    0    3
##   Takuyo                                    0    0    0    0    0    0
##   TalonSoft                                 0    0    0    0    0    0
##   TDK Core                                  0    0    0    0    0    0
##   TDK Mediactive                            0    0    0    0    0    0
##   Team17 Software                           0    0    0    0    0    0
##   Technos Japan Corporation                 0    0    0    1    0    0
##   TechnoSoft                                0    0    0    0    0    0
##   Tecmo Koei                                1    2    1    3    4    4
##   Telegames                                 0    0    0    0    0    0
##   Telltale Games                            0    0    0    0    0    0
##   Telstar                                   0    0    0    1    0    0
##   Tetris Online                             0    0    0    0    0    0
##   TGL                                       0    0    0    0    0    0
##   The Adventure Company                     0    0    0    0    0    0
##   The Learning Company                      0    0    0    0    0    0
##   THQ                                       0    0    0    2    0    3
##   Tigervision                               0    0    0    0    0    0
##   Time Warner Interactive                   0    0    1    1    3    0
##   Titus                                     0    1    0    0    0    1
##   Tivola                                    0    0    0    0    0    0
##   TOHO                                      0    1    0    0    0    0
##   Tommo                                     0    0    0    0    0    0
##   Tomy Corporation                          0    0    0    1    2    0
##   TopWare Interactive                       0    0    0    0    0    0
##   Touchstone                                0    0    0    0    0    0
##   Tradewest                                 0    0    0    0    0    0
##   Trion Worlds                              0    0    0    0    0    0
##   Tripwire Interactive                      0    0    0    0    0    0
##   Tru Blu Entertainment                     0    0    0    0    0    0
##   Tryfirst                                  0    0    0    0    0    0
##   TYO                                       0    0    0    0    0    0
##   Type-Moon                                 0    0    0    0    0    0
##   U.S. Gold                                 0    0    0    2    2    0
##   Ubisoft                                   0    0    0    1    1    1
##   Ubisoft Annecy                            0    0    0    0    0    0
##   UEP Systems                               0    0    0    0    0    1
##   UFO Interactive                           0    0    0    0    0    0
##   UIG Entertainment                         0    0    0    0    0    0
##   Ultravision                               0    0    0    0    0    0
##   Universal Gamex                           0    0    0    0    0    0
##   Universal Interactive                     0    0    0    0    0    0
##   Unknown                                   0    0    0    0    0    0
##   Valcon Games                              0    0    0    0    0    0
##   ValuSoft                                  0    0    0    0    0    0
##   Valve                                     0    0    0    0    0    0
##   Valve Software                            0    0    0    0    0    0
##   Vap                                       0    0    1    0    0    0
##   Vatical Entertainment                     0    0    0    0    0    0
##   Vic Tokai                                 0    0    0    0    1    1
##   Victor Interactive                        0    1    0    2    0    1
##   Video System                              1    0    0    0    0    1
##   Views                                     0    0    0    0    0    0
##   Vir2L Studios                             0    0    0    0    0    0
##   Virgin Interactive                        1    0    3    4   13    9
##   Virtual Play Games                        0    0    0    0    0    0
##   Visco                                     0    0    0    0    0    0
##   Vivendi Games                             0    0    0    1    0    2
##   Wanadoo                                   0    0    0    0    0    0
##   Warashi                                   0    0    0    0    0    0
##   Wargaming.net                             0    0    0    0    0    0
##   Warner Bros. Interactive Entertainment    0    0    0    0    0    0
##   Warp                                      0    0    0    0    0    1
##   WayForward Technologies                   0    0    0    0    0    0
##   Westwood Studios                          0    0    0    0    0    0
##   White Park Bay Software                   0    0    0    0    0    0
##   Wizard Video Games                        0    0    0    0    0    0
##   Xicat Interactive                         0    0    0    0    0    0
##   Xing Entertainment                        0    0    0    0    0    1
##   Xplosiv                                   0    0    0    0    0    0
##   XS Games                                  0    0    0    0    0    0
##   Xseed Games                               0    0    0    0    0    0
##   Yacht Club Games                          0    0    0    0    0    0
##   Yamasa Entertainment                      0    0    0    0    0    0
##   Yeti                                      0    0    0    0    0    0
##   Yuke's                                    0    0    0    0    0    0
##   Yumedia                                   0    0    0    1    0    0
##   Zenrin                                    0    0    0    0    0    0
##   Zoo Digital Publishing                    0    0    0    0    0    0
##   Zoo Games                                 0    0    0    0    0    0
##   Zushi Games                               0    0    0    0    0    0
##                                         Year
## Publisher                                1998 1999 2000 2001 2002 2003
##   10TACLE Studios                           0    0    0    0    0    0
##   1C Company                                0    0    0    0    0    0
##   20th Century Fox Video Games              0    0    0    0    0    0
##   2D Boy                                    0    0    0    0    0    0
##   3DO                                       2    6   10   11    4    3
##   49Games                                   0    0    0    0    0    0
##   505 Games                                 0    0    0    0    1    1
##   5pb                                       0    0    0    0    0    0
##   7G//AMES                                  0    0    0    0    0    0
##   989 Sports                                0    1    0    0    0    0
##   989 Studios                               6    6    0    0    0    0
##   Abylight                                  0    0    0    0    0    0
##   Acclaim Entertainment                    23   12   15   24   33   28
##   Accolade                                  0    1    0    0    0    0
##   Ackkstudios                               0    0    0    0    0    0
##   Acquire                                   0    0    0    0    0    0
##   Activision                               14    8   13   23   50   34
##   Activision Blizzard                       0    0    0    0    0    0
##   Activision Value                          0    0    0    1    1    2
##   Adeline Software                          0    0    0    0    0    0
##   Aerosoft                                  0    0    0    0    0    0
##   Agatsuma Entertainment                    0    0    0    0    0    0
##   Agetec                                    2    0    0    0    2    2
##   Aksys Games                               0    0    0    0    0    0
##   Alawar Entertainment                      0    0    0    0    0    0
##   Alchemist                                 0    0    0    0    0    0
##   Alternative Software                      0    0    0    0    0    0
##   Altron                                    0    0    0    1    0    0
##   Alvion                                    0    0    0    0    0    0
##   American Softworks                        0    0    0    0    0    0
##   Angel Studios                             0    0    0    0    0    0
##   Answer Software                           0    0    0    0    0    0
##   AQ Interactive                            0    0    0    0    0    0
##   Aqua Plus                                 0    1    0    0    0    0
##   Aques                                     0    0    0    0    0    0
##   Arc System Works                          0    0    0    0    0    0
##   Arena Entertainment                       0    0    0    0    0    0
##   Aria                                      0    0    0    0    0    0
##   Arika                                     0    0    0    0    1    0
##   ArtDink                                   1    0    0    2    0    0
##   Aruze Corp                                0    1    2    0    0    0
##   ASC Games                                 1    1    0    0    0    0
##   Ascaron Entertainment                     0    0    0    0    0    0
##   Ascaron Entertainment GmbH                0    0    0    0    0    0
##   ASCII Entertainment                       2    3    0    1    0    0
##   ASCII Media Works                         0    0    0    0    0    0
##   Asgard                                    0    0    0    0    0    0
##   ASK                                       0    0    0    0    0    0
##   Asmik Ace Entertainment                   0    0    1    0    0    0
##   Asmik Corp                                0    0    0    0    0    0
##   Aspyr                                     0    0    0    0    0    1
##   Astragon                                  0    0    0    0    0    0
##   Asylum Entertainment                      0    0    0    0    0    0
##   Atari                                     2    6    2    9   47   40
##   Athena                                    0    1    0    1    0    0
##   Atlus                                     2    2    1    1    3    3
##   Avalon Interactive                        0    1    0    0    1    1
##   Avanquest                                 0    0    0    0    0    0
##   Avanquest Software                        0    0    0    0    0    0
##   Axela                                     1    0    0    0    0    0
##   BAM! Entertainment                        0    0    1    7   18    6
##   Banpresto                                 3    3    1    4    4    6
##   Benesse                                   0    0    0    0    0    0
##   Berkeley                                  0    0    0    1    0    0
##   Bethesda Softworks                        0    0    0    0    1    1
##   Big Ben Interactive                       0    0    0    0    1    0
##   Big Fish Games                            0    0    0    0    0    0
##   Bigben Interactive                        0    0    0    0    0    0
##   bitComposer Games                         0    0    0    0    0    0
##   Black Bean Games                          0    0    0    0    0    0
##   Black Label Games                         0    0    0    0    1    0
##   Blast! Entertainment Ltd                  0    0    0    0    0    0
##   Blue Byte                                 0    0    0    2    0    0
##   BMG Interactive Entertainment             1    0    0    0    0    0
##   Bohemia Interactive                       0    0    0    0    0    0
##   Bomb                                      0    0    0    0    0    0
##   Boost On                                  0    0    0    0    0    0
##   BPS                                       0    0    0    0    0    0
##   Brash Entertainment                       0    0    0    0    0    0
##   Broccoli                                  0    0    0    0    0    0
##   BushiRoad                                 0    0    0    0    0    0
##   Capcom                                    7    2    5   10   19   31
##   Cave                                      0    0    0    0    0    0
##   CBS Electronics                           0    0    0    0    0    0
##   CCP                                       0    0    0    0    0    1
##   CDV Software Entertainment                0    0    0    0    0    0
##   ChunSoft                                  1    1    1    0    1    0
##   City Interactive                          0    0    0    0    0    0
##   Cloud Imperium Games Corporation          0    0    0    0    0    0
##   Coconuts Japan                            0    0    0    0    0    0
##   Codemasters                               4    2    2    4    5    7
##   Codemasters Online                        0    0    0    0    0    0
##   CokeM Interactive                         0    0    0    0    0    0
##   Coleco                                    0    0    0    0    0    0
##   Comfort                                   0    0    0    0    0    0
##   Commseed                                  0    0    0    0    0    0
##   Compile                                   1    0    0    0    0    0
##   Compile Heart                             0    0    0    0    0    0
##   Conspiracy Entertainment                  0    0    0    2    1    0
##   Core Design Ltd.                          0    0    0    0    0    0
##   CPG Products                              0    0    0    0    0    0
##   Crave Entertainment                       2    6    3    0    2    1
##   Creative Core                             0    0    0    0    0    0
##   Crimson Cow                               0    0    0    0    0    0
##   Crystal Dynamics                          0    0    0    0    0    0
##   CTO SpA                                   0    0    0    0    0    0
##   Culture Brain                             0    0    0    0    0    0
##   Culture Publishers                        1    0    0    0    0    0
##   CyberFront                                0    0    0    0    0    0
##   Cygames                                   0    0    0    0    0    0
##   D3Publisher                               1    0    1    2    0    0
##   Daedalic                                  0    0    0    0    0    0
##   Daedalic Entertainment                    0    0    0    0    0    0
##   Daito                                     0    0    0    0    0    0
##   Data Age                                  0    0    0    0    0    0
##   Data Design Interactive                   0    0    0    0    0    0
##   Data East                                 1    0    0    0    0    0
##   Datam Polystar                            0    0    0    0    1    0
##   Deep Silver                               0    0    0    0    0    0
##   Destination Software, Inc                 0    0    0    1    1    1
##   Destineer                                 0    0    0    0    0    0
##   Detn8 Games                               0    0    0    0    0    0
##   Devolver Digital                          0    0    0    0    0    0
##   DHM Interactive                           0    0    0    0    0    0
##   DigiCube                                  0    0    0    0    1    0
##   Disney Interactive Studios                0    1    0    0    1    2
##   Dorart                                    0    0    0    0    0    0
##   dramatic create                           0    0    0    0    0    0
##   DreamCatcher Interactive                  0    0    0    1    0    2
##   DreamWorks Interactive                    1    0    0    0    0    0
##   DSI Games                                 0    0    0    0    0    0
##   DTP Entertainment                         0    0    0    0    0    0
##   Dusenberry Martin Racing                  0    0    0    0    0    0
##   EA Games                                  0    0    0    0    0    0
##   Easy Interactive                          0    0    0    0    0    0
##   Ecole                                     0    0    0    0    0    0
##   Edia                                      0    0    0    0    0    0
##   Eidos Interactive                        10    8    9   10   15   17
##   Electronic Arts                          30   26   31   43   88   85
##   Electronic Arts Victor                    0    0    0    0    0    0
##   Elf                                       0    0    0    0    0    0
##   Elite                                     0    0    0    0    0    0
##   Empire Interactive                        1    1    4    2    8    6
##   Encore                                    0    0    0    1    0    2
##   Enix Corporation                          0    4    3    3    5    1
##   Enjoy Gaming ltd.                         0    0    0    0    0    0
##   Enterbrain                                0    0    0    2    3    0
##   EON Digital Entertainment                 0    1    0    0    0    0
##   Epic Games                                0    0    0    0    0    0
##   Epoch                                     0    0    1    0    0    0
##   Ertain                                    0    0    0    0    0    0
##   ESP                                       3    0    0    0    1    0
##   Essential Games                           0    0    0    0    0    0
##   Evolution Games                           1    0    0    0    0    0
##   Evolved Games                             0    0    0    0    0    0
##   Excalibur Publishing                      0    0    0    0    0    0
##   Experience Inc.                           0    0    0    0    0    0
##   Extreme Entertainment Group               0    0    0    0    0    0
##   Falcom Corporation                        0    0    0    0    0    0
##   Fields                                    0    0    0    0    0    0
##   Flashpoint Games                          0    0    0    0    0    0
##   Flight-Plan                               0    0    0    0    0    0
##   Focus Home Interactive                    0    0    0    0    0    0
##   Focus Multimedia                          0    0    0    0    0    0
##   fonfun                                    0    0    0    0    0    0
##   Foreign Media Games                       0    0    0    0    0    0
##   Fortyfive                                 1    0    0    0    0    0
##   Fox Interactive                           2    2    1    0    0    0
##   From Software                             2    1    0    1    1    0
##   Fuji                                      0    0    0    0    0    0
##   Funbox Media                              0    0    0    0    0    0
##   Funcom                                    0    0    0    0    0    0
##   FunSoft                                   0    0    0    0    0    0
##   Funsta                                    0    0    0    0    0    0
##   FuRyu                                     0    0    0    0    0    0
##   FuRyu Corporation                         0    0    0    0    0    0
##   G.Rev                                     0    0    0    0    0    0
##   Gaga                                      0    0    0    0    0    0
##   Gainax Network Systems                    2    0    0    0    0    0
##   Gakken                                    0    0    0    0    0    0
##   Game Arts                                 0    0    0    0    0    0
##   Game Factory                              0    0    0    0    0    1
##   Game Life                                 0    0    0    0    0    0
##   Gamebridge                                0    0    0    0    0    0
##   Gamecock                                  0    0    0    0    0    0
##   Gameloft                                  0    0    0    0    0    0
##   GameMill Entertainment                    0    0    0    0    0    0
##   GameTek                                   1    0    0    0    0    0
##   Gathering of Developers                   0    0    0    3    0    2
##   General Entertainment                     1    0    0    0    0    0
##   Genki                                     0    1    0    1    0    2
##   Genterprise                               0    0    0    0    0    0
##   Ghostlight                                0    0    0    0    0    1
##   Giga                                      0    0    0    0    0    0
##   Giza10                                    0    0    0    0    0    0
##   Glams                                     0    0    0    0    0    0
##   Global A Entertainment                    0    0    0    0    0    0
##   Global Star                               0    0    0    0    0    0
##   GN Software                               0    0    0    0    0    0
##   GOA                                       0    0    0    0    0    0
##   Gotham Games                              0    0    0    0    1    5
##   Graffiti                                  0    0    0    0    0    0
##   Grand Prix Games                          0    0    0    0    0    0
##   Graphsim Entertainment                    0    0    0    0    0    0
##   Gremlin Interactive Ltd                   3    0    0    0    0    0
##   Griffin International                     0    0    0    0    0    0
##   Groove Games                              0    0    0    0    0    0
##   GSP                                       0    0    0    0    0    0
##   GT Interactive                           17    4    0    0    0    0
##   GungHo                                    0    0    0    0    0    0
##   Gust                                      0    0    0    1    1    0
##   Hackberry                                 0    0    0    0    0    0
##   HAL Laboratory                            0    0    0    0    0    0
##   Hamster Corporation                       0    0    0    0    1    0
##   Happinet                                  0    0    0    0    0    0
##   Harmonix Music Systems                    0    0    0    0    0    0
##   Hasbro Interactive                        3    3    4    1    0    0
##   Havas Interactive                         0    0    1    0    0    0
##   Headup Games                              0    0    0    0    0    0
##   Hearty Robin                              0    0    0    0    0    0
##   Hect                                      0    0    0    0    0    0
##   Hello Games                               0    0    0    0    0    0
##   Her Interactive                           0    0    0    0    0    0
##   Hip Interactive                           0    0    0    0    0    0
##   HMH Interactive                           0    0    0    0    0    0
##   Home Entertainment Suppliers              0    0    0    0    0    0
##   Hudson Entertainment                      1    1    0    3    0    1
##   Hudson Soft                               1    1    1    1    4    3
##   Human Entertainment                       3    2    0    0    0    0
##   HuneX                                     0    0    0    0    0    0
##   Iceberg Interactive                       0    0    0    0    0    0
##   id Software                               0    0    0    0    0    0
##   Idea Factory                              0    0    0    0    1    0
##   Idea Factory International                0    0    0    0    0    0
##   IE Institute                              0    0    0    0    0    0
##   Ignition Entertainment                    0    0    0    0    2    4
##   Illusion Softworks                        0    0    0    0    0    0
##   Imadio                                    0    0    0    0    0    0
##   Image Epoch                               0    0    0    0    0    0
##   imageepoch Inc.                           0    0    0    0    0    0
##   Imageworks                                0    0    0    0    0    0
##   Imagic                                    0    0    0    0    0    0
##   Imagineer                                 2    3    1    1    0    0
##   Imax                                      0    0    0    0    0    0
##   Indie Games                               0    0    0    0    0    0
##   Infogrames                                7    6   11   10   22    2
##   Insomniac Games                           0    0    0    0    0    0
##   Interchannel                              0    0    0    0    0    0
##   Interchannel-Holon                        0    0    0    0    0    0
##   Intergrow                                 0    0    0    0    0    0
##   Interplay                                 6    3    3    3    2    2
##   Interplay Productions                     0    0    0    0    0    0
##   Interworks Unlimited, Inc.                0    0    0    0    0    0
##   Inti Creates                              0    0    0    0    0    0
##   Introversion Software                     0    0    0    0    0    0
##   inXile Entertainment                      0    0    0    0    0    0
##   Irem Software Engineering                 1    0    0    0    0    0
##   ITT Family Games                          0    0    0    0    0    0
##   Ivolgamus                                 0    0    0    0    0    0
##   iWin                                      0    0    0    0    0    0
##   Jack of All Games                         0    0    0    0    0    0
##   Jaleco                                    2    2    0    0    2    7
##   Jester Interactive                        0    0    0    0    1    1
##   Jorudan                                   0    1    0    0    1    1
##   JoWood Productions                        0    0    0    0    1    0
##   Just Flight                               0    0    0    0    0    0
##   JVC                                       1    1    1    0    0    0
##   Kadokawa Games                            0    0    0    0    0    0
##   Kadokawa Shoten                           4    1    0    0    0    0
##   Kaga Create                               0    0    0    0    0    0
##   Kalypso Media                             0    0    0    0    0    0
##   Kamui                                     0    0    0    0    0    0
##   Kando Games                               0    0    0    0    0    0
##   Karin Entertainment                       0    0    0    0    0    0
##   Kemco                                     2    4    0    1    4    6
##   KID                                       1    0    0    0    0    0
##   Kids Station                              0    0    0    0    0    0
##   King Records                              0    0    0    0    1    0
##   Knowledge Adventure                       0    0    0    0    0    2
##   Koch Media                                0    0    0    0    0    0
##   Kokopeli Digital Studios                  0    0    0    0    0    0
##   Konami Digital Entertainment             24   32   31   39   55   27
##   Kool Kizz                                 0    0    0    0    0    1
##   KSS                                       0    0    0    0    0    0
##   Laguna                                    0    0    0    0    0    0
##   Legacy Interactive                        0    0    0    0    0    0
##   LEGO Media                                0    4    0    2    1    0
##   Level 5                                   0    0    0    0    0    0
##   Lexicon Entertainment                     0    0    0    0    0    0
##   Licensed 4U                               0    0    0    0    0    0
##   Lighthouse Interactive                    0    0    0    0    0    0
##   Liquid Games                              0    0    0    0    1    0
##   Little Orbit                              0    0    0    0    0    0
##   Locus                                     1    0    0    0    0    0
##   LSP Games                                 0    0    0    0    1    3
##   LucasArts                                 0    2    1    4    4    8
##   Mad Catz                                  0    0    0    0    0    0
##   Magical Company                           1    0    0    0    0    0
##   Magix                                     0    0    0    1    0    0
##   Majesco Entertainment                     0    0    0    3    1    2
##   Mamba Games                               0    0    0    0    0    0
##   Marvel Entertainment                      0    0    0    0    0    0
##   Marvelous Entertainment                   0    0    0    0    0    0
##   Marvelous Games                           0    0    0    0    0    0
##   Marvelous Interactive                     0    0    0    0    1    1
##   Masque Publishing                         0    0    0    0    0    0
##   Mastertronic                              0    0    0    0    0    0
##   Mastiff                                   0    0    0    0    0    0
##   Mattel Interactive                        0    2    2    0    0    0
##   Max Five                                  0    0    0    1    0    0
##   Maximum Family Games                      0    0    0    0    0    0
##   Maxis                                     0    0    0    0    0    0
##   MC2 Entertainment                         0    0    0    0    0    0
##   Media Entertainment                       0    0    0    0    1    0
##   Media Factory                             0    0    1    1    0    0
##   Media Rings                               0    0    0    0    1    0
##   Media Works                               2    0    0    0    0    0
##   MediaQuest                                0    0    0    0    0    0
##   Men-A-Vision                              0    0    0    0    0    0
##   Mentor Interactive                        0    0    0    0    0    0
##   Mercury Games                             0    0    0    0    0    0
##   Merscom LLC                               0    0    0    0    0    0
##   Metro 3D                                  0    0    0    3    2    3
##   Michaelsoft                               0    0    0    0    0    0
##   Micro Cabin                               0    0    0    0    0    0
##   Microids                                  0    0    0    0    3    2
##   Microprose                                0    1    0    0    0    0
##   Microsoft Game Studios                    0    1    1   10   20   28
##   Midas Interactive Entertainment           1    1    7    4    2    0
##   Midway Games                              6   10   12   11   33   24
##   Milestone                                 0    0    0    0    0    0
##   Milestone S.r.l                           0    0    0    0    0    0
##   Milestone S.r.l.                          0    0    0    0    0    0
##   Minato Station                            0    0    0    0    0    0
##   Mindscape                                 2    1    1    0    0    2
##   Mirai Shounen                             0    0    0    0    0    0
##   Misawa                                    0    0    0    0    0    0
##   Mitsui                                    1    0    0    0    0    0
##   mixi, Inc                                 0    0    0    0    0    0
##   MLB.com                                   0    0    0    0    0    0
##   Mojang                                    0    0    0    0    0    0
##   Monte Christo Multimedia                  0    0    0    0    0    0
##   Moss                                      0    0    0    0    0    0
##   MTO                                       1    0    0    0    0    0
##   MTV Games                                 0    0    0    0    0    0
##   Mud Duck Productions                      0    0    0    0    0    1
##   Mumbo Jumbo                               0    0    0    0    0    0
##   Mycom                                     0    0    0    0    0    0
##   Myelin Media                              0    0    0    0    0    0
##   Mystique                                  0    0    0    0    0    0
##   N/A                                       0    0    0    0    0    0
##   Namco Bandai Games                        9   14   14   12   25   23
##   Natsume                                   0    0    1    1    3    1
##   Navarre Corp                              0    0    0    0    0    0
##   Naxat Soft                                0    0    0    0    0    0
##   NCS                                       1    0    0    0    0    0
##   NCSoft                                    0    0    0    0    0    0
##   NDA Productions                           0    0    0    0    1    0
##   NEC                                       0    0    0    0    0    0
##   NEC Interchannel                          2    0    2    0    0    0
##   Neko Entertainment                        0    0    0    0    0    0
##   NetRevo                                   0    0    0    0    0    0
##   New                                       0    0    0    0    0    0
##   New World Computing                       0    0    0    0    0    0
##   NewKidCo                                  2    2    0    1    1    3
##   Nexon                                     0    0    0    0    0    0
##   Nichibutsu                                0    0    0    0    0    0
##   Nihon Falcom Corporation                  0    0    0    0    0    0
##   Nintendo                                 17   20   23   22   22   27
##   Nippon Amuse                              0    0    0    0    1    0
##   Nippon Columbia                           0    0    0    0    0    0
##   Nippon Ichi Software                      1    0    0    0    0    0
##   Nippon Telenet                            0    0    0    0    0    0
##   Nitroplus                                 0    0    0    0    0    0
##   Nobilis                                   0    0    0    0    0    0
##   Nordcurrent                               0    0    0    0    0    0
##   Nordic Games                              0    0    0    0    0    0
##   NovaLogic                                 0    0    0    0    0    0
##   Number None                               0    0    0    0    0    0
##   O-Games                                   0    0    0    0    0    0
##   O3 Entertainment                          0    0    0    0    0    0
##   Ocean                                     5    0    0    0    0    0
##   Office Create                             0    0    0    0    0    0
##   On Demand                                 0    0    0    0    0    0
##   Ongakukan                                 0    0    0    0    0    0
##   Origin Systems                            0    0    0    0    0    0
##   Otomate                                   0    0    0    0    0    0
##   Oxygen Interactive                        0    0    0    0    0    0
##   P2 Games                                  0    0    0    0    0    0
##   Pacific Century Cyber Works               0    0    0    0    1    0
##   Pack-In-Video                             0    0    0    0    0    0
##   Pack In Soft                              0    1    0    0    0    0
##   Palcom                                    0    0    0    0    0    0
##   Panther Software                          0    0    0    0    0    0
##   Paon                                      0    0    0    0    0    0
##   Paon Corporation                          0    0    0    0    0    0
##   Paradox Development                       0    0    0    0    0    0
##   Paradox Interactive                       0    0    0    0    0    0
##   Parker Bros.                              0    0    0    0    0    0
##   Performance Designed Products             0    0    0    0    0    0
##   Phantagram                                0    0    0    0    1    0
##   Phantom EFX                               0    0    0    0    0    0
##   Phenomedia                                0    0    0    0    0    0
##   Phoenix Games                             0    0    0    0    0    0
##   Piacci                                    0    0    0    0    0    0
##   Pinnacle                                  0    0    0    0    0    0
##   Pioneer LDC                               1    0    0    1    0    0
##   Play It                                   0    0    0    0    2    2
##   Playlogic Game Factory                    0    0    0    0    0    0
##   Playmates                                 0    0    0    0    0    0
##   Playmore                                  0    0    0    0    1    0
##   PlayV                                     0    0    0    0    0    0
##   Plenty                                    0    0    0    0    0    0
##   PM Studios                                0    0    0    0    0    0
##   Pony Canyon                               0    0    1    0    0    0
##   PopCap Games                              0    0    0    0    0    0
##   Popcorn Arcade                            0    0    0    0    0    0
##   PopTop Software                           0    1    0    0    0    0
##   Pow                                       0    0    0    0    0    0
##   PQube                                     0    0    0    0    0    0
##   Princess Soft                             0    0    0    0    1    0
##   Prototype                                 0    0    0    0    0    0
##   Psygnosis                                 4    3    1    0    0    0
##   Quelle                                    0    0    0    0    0    0
##   Quest                                     0    0    0    0    0    0
##   Quinrose                                  0    0    0    0    0    0
##   Quintet                                   1    0    0    0    0    0
##   Rage Software                             0    0    0    2    5    0
##   Rain Games                                0    0    0    0    0    0
##   Rebellion                                 0    0    0    1    1    0
##   Rebellion Developments                    0    0    0    0    0    0
##   RED Entertainment                         0    0    0    0    0    0
##   Red Orb                                   0    0    0    0    0    0
##   Red Storm Entertainment                   0    2    0    1    0    0
##   RedOctane                                 0    0    0    0    0    0
##   Reef Entertainment                        0    0    0    0    0    0
##   responDESIGN                              0    0    0    0    0    0
##   Revolution (Japan)                        0    0    0    0    0    0
##   Revolution Software                       0    0    0    0    0    0
##   Rising Star Games                         0    0    0    0    0    0
##   Riverhillsoft                             0    0    0    0    0    0
##   Rocket Company                            0    0    0    0    0    0
##   Rondomedia                                0    0    0    0    0    0
##   RTL                                       0    0    0    0    0    0
##   Russel                                    0    0    0    0    0    0
##   Sammy Corporation                         0    0    0    2    5    1
##   Saurus                                    1    0    0    0    0    0
##   Scholastic Inc.                           0    0    0    0    0    0
##   SCi                                       0    0    0    0    1    8
##   Screenlife                                0    0    0    0    0    0
##   SCS Software                              0    0    0    0    0    0
##   Sears                                     0    0    0    0    0    0
##   Sega                                     14    9   11    9   39   32
##   Seta Corporation                          0    0    0    0    0    0
##   Seventh Chord                             0    0    0    0    0    0
##   Shogakukan                                0    0    0    0    0    0
##   Simon & Schuster Interactive              0    0    0    0    1    0
##   Slightly Mad Studios                      0    0    0    0    0    0
##   Slitherine Software                       0    0    0    0    0    0
##   SNK                                       3    2    2    0    0    0
##   SNK Playmore                              1    2    0    0    0    0
##   Societa                                   0    0    0    0    0    0
##   Sold Out                                  0    0    0    0    0    0
##   Sonnet                                    0    0    0    0    0    0
##   Sony Computer Entertainment              30   25   32   38   30   32
##   Sony Computer Entertainment America       0    0    0    0    0    0
##   Sony Computer Entertainment Europe        0    0    0    1    0    0
##   Sony Music Entertainment                  0    0    0    1    0    0
##   Sony Online Entertainment                 0    0    0    0    0    2
##   SouthPeak Games                           0    1    0    0    0    0
##   Spike                                     0    0    0    1    1    0
##   SPS                                       0    0    0    0    0    0
##   Square                                    0    2    0    1    0    0
##   Square EA                                 0    1    0    0    0    0
##   Square Enix                               0    0    0    0    0    6
##   SquareSoft                                8    8    4    1    2    1
##   SSI                                       0    0    0    0    0    0
##   Stainless Games                           0    0    0    0    0    0
##   Starfish                                  0    1    0    1    0    0
##   Starpath Corp.                            0    0    0    0    0    0
##   Sting                                     0    0    0    0    0    0
##   Storm City Games                          0    0    0    0    0    0
##   Strategy First                            0    0    0    1    0    0
##   Success                                   1    1    1    1    1    0
##   Summitsoft                                0    0    0    0    0    0
##   Sunflowers                                0    0    0    0    0    0
##   Sunrise Interactive                       0    0    2    0    0    0
##   Sunsoft                                   1    1    1    0    0    0
##   Sweets                                    0    0    0    0    0    0
##   Swing! Entertainment                      1    0    2    2    1    0
##   Syscom                                    1    1    0    0    0    0
##   System 3                                  0    0    0    0    0    0
##   System 3 Arcade Software                  0    0    0    0    0    0
##   System Soft                               0    0    0    0    0    0
##   T&E Soft                                  0    0    0    0    0    0
##   Taito                                     0    2    0    1    3    1
##   Takara                                    2    1    0    2    2    1
##   Takara Tomy                               0    0    0    0    0    0
##   Take-Two Interactive                      6    4    6   12    8   14
##   Takuyo                                    0    0    0    0    0    0
##   TalonSoft                                 0    0    0    1    0    0
##   TDK Core                                  0    0    1    0    1    0
##   TDK Mediactive                            0    0    0    5   16   14
##   Team17 Software                           0    0    0    0    0    0
##   Technos Japan Corporation                 0    0    0    0    0    0
##   TechnoSoft                                1    0    0    0    0    0
##   Tecmo Koei                                4    5   10    4   11    9
##   Telegames                                 0    1    0    0    0    2
##   Telltale Games                            0    0    0    0    0    0
##   Telstar                                   2    0    0    0    0    0
##   Tetris Online                             0    0    0    0    0    0
##   TGL                                       0    0    0    0    0    0
##   The Adventure Company                     0    0    0    0    0    0
##   The Learning Company                      0    0    1    0    0    0
##   THQ                                      11    8   15   36   55   64
##   Tigervision                               0    0    0    0    0    0
##   Time Warner Interactive                   0    0    0    0    0    0
##   Titus                                     2    4    2    4    4    1
##   Tivola                                    0    0    0    0    0    0
##   TOHO                                      0    0    0    0    0    0
##   Tommo                                     0    0    0    0    0    0
##   Tomy Corporation                          1    0    0    0    0    5
##   TopWare Interactive                       0    0    0    0    0    0
##   Touchstone                                0    0    0    0    0    0
##   Tradewest                                 0    0    0    0    0    0
##   Trion Worlds                              0    0    0    0    0    0
##   Tripwire Interactive                      0    0    0    0    0    0
##   Tru Blu Entertainment                     0    0    0    0    0    0
##   Tryfirst                                  0    0    0    0    0    0
##   TYO                                       1    0    0    0    0    0
##   Type-Moon                                 0    0    0    0    0    0
##   U.S. Gold                                 0    0    0    0    0    0
##   Ubisoft                                   3   13   21   25   44   47
##   Ubisoft Annecy                            0    0    0    0    0    0
##   UEP Systems                               0    0    0    0    0    0
##   UFO Interactive                           0    0    0    0    0    0
##   UIG Entertainment                         0    0    0    0    0    0
##   Ultravision                               0    0    0    0    0    0
##   Universal Gamex                           0    0    0    0    0    0
##   Universal Interactive                     0    0    0    2   14    6
##   Unknown                                   1    0    0    3    3    1
##   Valcon Games                              0    0    0    0    0    0
##   ValuSoft                                  0    0    0    0    0    0
##   Valve                                     0    0    0    0    0    0
##   Valve Software                            0    0    0    0    0    0
##   Vap                                       0    0    0    0    0    0
##   Vatical Entertainment                     0    0    2    0    0    0
##   Vic Tokai                                 0    0    0    0    0    0
##   Victor Interactive                        1    0    1    2    1    0
##   Video System                              1    0    1    0    0    0
##   Views                                     0    0    0    0    0    0
##   Vir2L Studios                             0    0    0    0    0    0
##   Virgin Interactive                       10    6    6    6    4    0
##   Virtual Play Games                        0    0    0    0    0    0
##   Visco                                     0    0    0    0    0    0
##   Vivendi Games                             3    1    1    4   16   32
##   Wanadoo                                   0    0    0    1    1    2
##   Warashi                                   0    0    0    0    0    0
##   Wargaming.net                             0    0    0    0    0    0
##   Warner Bros. Interactive Entertainment    0    0    0    0    0    2
##   Warp                                      0    0    0    0    0    0
##   WayForward Technologies                   0    0    0    0    0    0
##   Westwood Studios                          0    1    0    0    0    0
##   White Park Bay Software                   0    0    0    0    0    0
##   Wizard Video Games                        0    0    0    0    0    0
##   Xicat Interactive                         0    0    0    0    2    1
##   Xing Entertainment                        0    0    0    0    0    0
##   Xplosiv                                   0    0    0    0    0    0
##   XS Games                                  0    0    0    0    1    0
##   Xseed Games                               0    0    0    0    0    0
##   Yacht Club Games                          0    0    0    0    0    0
##   Yamasa Entertainment                      0    0    0    0    0    0
##   Yeti                                      0    0    0    0    0    0
##   Yuke's                                    0    0    0    0    0    0
##   Yumedia                                   0    0    0    0    0    0
##   Zenrin                                    0    0    0    0    0    0
##   Zoo Digital Publishing                    0    0    0    0    6    9
##   Zoo Games                                 0    0    0    0    0    0
##   Zushi Games                               0    0    0    0    0    0
##                                         Year
## Publisher                                2004 2005 2006 2007 2008 2009
##   10TACLE Studios                           0    0    1    2    0    0
##   1C Company                                0    0    0    0    0    1
##   20th Century Fox Video Games              0    0    0    0    0    0
##   2D Boy                                    0    0    0    0    1    0
##   3DO                                       0    0    0    0    0    0
##   49Games                                   0    0    0    0    0    1
##   505 Games                                10   13   22   28   13   30
##   5pb                                       0    0    0    0    5    7
##   7G//AMES                                  0    0    0    0    0    0
##   989 Sports                                0    0    0    0    0    0
##   989 Studios                               0    0    0    0    0    0
##   Abylight                                  0    0    0    0    0    0
##   Acclaim Entertainment                     7    0    0    0    0    0
##   Accolade                                  0    0    0    0    0    0
##   Ackkstudios                               0    0    0    0    0    1
##   Acquire                                   0    0    1    0    1    1
##   Activision                               47   70   50   75   88  121
##   Activision Blizzard                       0    0    0    0    0    0
##   Activision Value                          1    1    3    4    9    7
##   Adeline Software                          0    0    0    0    0    0
##   Aerosoft                                  0    0    0    0    0    0
##   Agatsuma Entertainment                    1    0    0    0    0    0
##   Agetec                                    0    0    0    0    0    1
##   Aksys Games                               0    0    0    0    1    0
##   Alawar Entertainment                      0    0    0    0    0    1
##   Alchemist                                 0    0    2    3    7    4
##   Alternative Software                      0    0    0    0    0    0
##   Altron                                    0    0    0    0    0    0
##   Alvion                                    0    0    0    0    0    1
##   American Softworks                        0    0    0    0    0    0
##   Angel Studios                             0    0    0    0    0    0
##   Answer Software                           0    0    0    0    0    0
##   AQ Interactive                            0    0    0    1    1    3
##   Aqua Plus                                 0    0    1    1    1    3
##   Aques                                     0    0    0    0    0    0
##   Arc System Works                          0    0    0    0    4    3
##   Arena Entertainment                       0    0    0    0    0    0
##   Aria                                      0    0    1    0    0    0
##   Arika                                     1    0    0    0    1    0
##   ArtDink                                   0    0    0    0    0    1
##   Aruze Corp                                0    0    0    0    0    0
##   ASC Games                                 0    0    0    0    0    0
##   Ascaron Entertainment                     0    0    0    0    0    0
##   Ascaron Entertainment GmbH                1    0    0    0    2    0
##   ASCII Entertainment                       0    0    0    0    0    0
##   ASCII Media Works                         0    0    0    0    2    2
##   Asgard                                    0    0    0    0    0    0
##   ASK                                       0    0    0    0    0    0
##   Asmik Ace Entertainment                   0    0    1    0    0    0
##   Asmik Corp                                0    0    0    0    0    0
##   Aspyr                                     0    0    0    1    2    4
##   Astragon                                  0    0    0    0    0    1
##   Asylum Entertainment                      0    0    0    0    0    0
##   Atari                                    39   36   23   31   32   20
##   Athena                                    0    0    0    0    0    0
##   Atlus                                     2    0    2    2    5    5
##   Avalon Interactive                        2    0    0    0    0    0
##   Avanquest                                 0    0    0    3    2    7
##   Avanquest Software                        0    0    0    0    0    0
##   Axela                                     0    0    0    0    0    0
##   BAM! Entertainment                        3    0    0    0    0    0
##   Banpresto                                 3    6    7    9    4    2
##   Benesse                                   0    0    0    2    4    0
##   Berkeley                                  0    0    0    0    0    0
##   Bethesda Softworks                        2    2    2    2    7    6
##   Big Ben Interactive                       1    0    0    0    1    2
##   Big Fish Games                            0    0    0    0    1    0
##   Bigben Interactive                        0    0    0    0    0    0
##   bitComposer Games                         0    0    0    0    0    1
##   Black Bean Games                          0    1    0    2    5    5
##   Black Label Games                         0    0    0    0    0    0
##   Blast! Entertainment Ltd                  0    0    0    1    1    4
##   Blue Byte                                 0    0    0    0    0    0
##   BMG Interactive Entertainment             0    0    0    0    0    0
##   Bohemia Interactive                       0    0    0    0    0    0
##   Bomb                                      0    0    0    0    0    0
##   Boost On                                  0    0    0    0    0    0
##   BPS                                       0    0    0    0    0    0
##   Brash Entertainment                       0    0    0    2    8    0
##   Broccoli                                  0    0    1    3    1    3
##   BushiRoad                                 0    0    0    0    0    0
##   Capcom                                   23   24   27   17   26   15
##   Cave                                      0    0    0    0    1    1
##   CBS Electronics                           0    0    0    0    0    0
##   CCP                                       0    0    0    0    0    0
##   CDV Software Entertainment                0    1    0    0    2    2
##   ChunSoft                                  0    0    2    0    0    1
##   City Interactive                          0    0    0    0    1    4
##   Cloud Imperium Games Corporation          0    0    0    0    0    0
##   Coconuts Japan                            0    0    0    0    0    0
##   Codemasters                              13    7    8   12   12   26
##   Codemasters Online                        0    0    0    0    1    0
##   CokeM Interactive                         0    0    0    1    0    0
##   Coleco                                    0    0    0    0    0    0
##   Comfort                                   0    0    0    0    0    0
##   Commseed                                  0    0    0    0    1    0
##   Compile                                   0    0    0    0    0    0
##   Compile Heart                             0    0    0    0    1    1
##   Conspiracy Entertainment                  0    0    0    2    3    2
##   Core Design Ltd.                          0    0    0    0    0    0
##   CPG Products                              0    0    0    0    0    0
##   Crave Entertainment                      10    9    5    4    3    5
##   Creative Core                             0    0    0    0    2    1
##   Crimson Cow                               0    0    0    0    1    0
##   Crystal Dynamics                          0    0    0    0    0    0
##   CTO SpA                                   0    0    0    0    0    0
##   Culture Brain                             0    0    0    0    1    0
##   Culture Publishers                        0    0    0    0    0    0
##   CyberFront                                0    0    0    1    1    2
##   Cygames                                   0    0    0    0    0    0
##   D3Publisher                               0    4   13   22   21   31
##   Daedalic                                  0    0    0    0    0    1
##   Daedalic Entertainment                    0    0    0    0    0    0
##   Daito                                     0    0    4    0    0    0
##   Data Age                                  0    0    0    0    0    0
##   Data Design Interactive                   0    0    0    1    1    1
##   Data East                                 0    0    0    0    0    0
##   Datam Polystar                            0    0    0    1    0    0
##   Deep Silver                               1    3    3    1   13   24
##   Destination Software, Inc                 2    1    2    2    2    0
##   Destineer                                 0    0    0    4   15   12
##   Detn8 Games                               0    0    0    1    0    0
##   Devolver Digital                          0    0    0    0    0    0
##   DHM Interactive                           0    0    0    2    0    1
##   DigiCube                                  0    0    0    0    0    0
##   Disney Interactive Studios                8   14   13   28   33   24
##   Dorart                                    0    0    0    0    1    0
##   dramatic create                           0    0    0    0    0    0
##   DreamCatcher Interactive                  1    1    2    0    2    6
##   DreamWorks Interactive                    0    0    0    0    0    0
##   DSI Games                                 0    1    1    3    1    0
##   DTP Entertainment                         0    2    0    1    9   11
##   Dusenberry Martin Racing                  0    0    0    0    0    0
##   EA Games                                  0    0    0    0    0    0
##   Easy Interactive                          0    0    0    0    0    0
##   Ecole                                     0    0    0    0    0    1
##   Edia                                      0    0    1    0    0    1
##   Eidos Interactive                        10   12   29   22   25   20
##   Electronic Arts                          86  117  102  107  120  112
##   Electronic Arts Victor                    0    0    0    0    0    0
##   Elf                                       0    0    0    0    0    0
##   Elite                                     0    0    0    0    0    0
##   Empire Interactive                        5    7    4    4    8    0
##   Encore                                    0    1    0    0    0    0
##   Enix Corporation                          1    0    0    0    0    0
##   Enjoy Gaming ltd.                         0    0    0    0    0    1
##   Enterbrain                                2    0    2    1    2    1
##   EON Digital Entertainment                 0    0    0    0    0    0
##   Epic Games                                0    0    0    0    0    0
##   Epoch                                     0    0    0    0    0    0
##   Ertain                                    0    0    0    1    0    0
##   ESP                                       0    0    0    0    0    0
##   Essential Games                           0    1    2    0    0    0
##   Evolution Games                           0    0    0    0    0    0
##   Evolved Games                             4    0    0    0    0    2
##   Excalibur Publishing                      0    0    0    0    0    0
##   Experience Inc.                           0    0    0    0    0    0
##   Extreme Entertainment Group               0    0    0    0    0    0
##   Falcom Corporation                        0    0    0    2    3    3
##   Fields                                    0    0    0    0    0    0
##   Flashpoint Games                          0    1    0    0    0    0
##   Flight-Plan                               0    0    0    1    0    1
##   Focus Home Interactive                    0    0    2    1    1    7
##   Focus Multimedia                          0    0    0    0    0    0
##   fonfun                                    0    0    0    0    1    0
##   Foreign Media Games                       0    0    0    0    0    0
##   Fortyfive                                 0    0    0    0    0    0
##   Fox Interactive                           0    0    0    0    0    0
##   From Software                             0    0    1    0    0    4
##   Fuji                                      0    0    0    0    0    0
##   Funbox Media                              0    0    0    0    0    0
##   Funcom                                    0    0    0    0    0    0
##   FunSoft                                   0    0    0    0    0    0
##   Funsta                                    0    0    1    2    0    0
##   FuRyu                                     0    0    0    0    0    0
##   FuRyu Corporation                         0    0    0    0    0    0
##   G.Rev                                     0    0    0    0    0    1
##   Gaga                                      0    0    0    0    0    0
##   Gainax Network Systems                    0    0    0    0    0    0
##   Gakken                                    0    0    0    2    0    0
##   Game Arts                                 0    0    0    0    0    0
##   Game Factory                              1    2    7    9   11    0
##   Game Life                                 0    0    0    1    0    1
##   Gamebridge                                0    0    0    0    1    1
##   Gamecock                                  0    0    0    0    4    0
##   Gameloft                                  0    0    0    1    0    0
##   GameMill Entertainment                    0    0    0    0    0    0
##   GameTek                                   0    0    0    0    0    0
##   Gathering of Developers                   4    0    0    0    0    0
##   General Entertainment                     0    0    0    0    0    0
##   Genki                                     0    0    0    3    0    0
##   Genterprise                               0    0    0    0    0    1
##   Ghostlight                                1    2    1    2    2    1
##   Giga                                      0    0    0    0    0    0
##   Giza10                                    0    0    0    0    0    0
##   Glams                                     0    0    0    0    0    0
##   Global A Entertainment                    0    0    1    1    2    0
##   Global Star                              21   15    3    0    0    0
##   GN Software                               0    0    1    0    1    0
##   GOA                                       0    0    0    0    1    0
##   Gotham Games                              1    0    0    0    0    0
##   Graffiti                                  0    0    0    0    1    3
##   Grand Prix Games                          0    0    0    1    0    0
##   Graphsim Entertainment                    0    1    0    0    0    0
##   Gremlin Interactive Ltd                   0    0    0    0    0    0
##   Griffin International                     0    0    0    0    0    0
##   Groove Games                              0    1    1    0    0    0
##   GSP                                       0    0    0    0    3    6
##   GT Interactive                            0    0    0    0    0    0
##   GungHo                                    0    0    0    0    4    2
##   Gust                                      0    0    0    1    1    2
##   Hackberry                                 0    0    0    4    2    0
##   HAL Laboratory                            0    0    0    0    0    0
##   Hamster Corporation                       0    0    1    0    0    0
##   Happinet                                  0    0    0    0    0    0
##   Harmonix Music Systems                    0    0    0    0    0    0
##   Hasbro Interactive                        0    0    1    0    0    0
##   Havas Interactive                         0    0    0    0    0    0
##   Headup Games                              0    0    0    0    0    0
##   Hearty Robin                              0    0    0    0    0    0
##   Hect                                      0    0    0    0    0    0
##   Hello Games                               0    0    0    0    0    0
##   Her Interactive                           0    0    0    0    0    0
##   Hip Interactive                           2    3    0    0    0    0
##   HMH Interactive                           0    0    0    0    1    1
##   Home Entertainment Suppliers              0    0    0    0    0    0
##   Hudson Entertainment                      0    0    1    1    1    1
##   Hudson Soft                               1    1    3    3    8    8
##   Human Entertainment                       0    0    0    0    0    0
##   HuneX                                     0    0    0    0    0    0
##   Iceberg Interactive                       0    0    0    0    0    0
##   id Software                               0    0    0    0    0    0
##   Idea Factory                              0    1    4    2    6    7
##   Idea Factory International                0    0    0    0    0    0
##   IE Institute                              0    0    2    1    1    0
##   Ignition Entertainment                   11    7    9    7   15    2
##   Illusion Softworks                        1    0    0    0    0    0
##   Imadio                                    0    0    0    0    0    0
##   Image Epoch                               0    0    0    0    0    0
##   imageepoch Inc.                           0    0    0    0    0    0
##   Imageworks                                0    0    0    0    0    0
##   Imagic                                    0    0    0    0    0    0
##   Imagineer                                 0    0    0    0    0    0
##   Imax                                      0    0    0    0    0    0
##   Indie Games                               3    0    0    0    0    0
##   Infogrames                                0    0    0    0    0    0
##   Insomniac Games                           0    0    0    0    0    0
##   Interchannel                              0    0    3    0    1    0
##   Interchannel-Holon                        0    0    0    1    0    0
##   Intergrow                                 0    0    0    0    0    0
##   Interplay                                 1    0    0    0    0    0
##   Interplay Productions                     0    0    0    0    0    0
##   Interworks Unlimited, Inc.                0    0    0    0    0    0
##   Inti Creates                              0    0    0    0    0    0
##   Introversion Software                     0    0    0    0    0    0
##   inXile Entertainment                      0    0    0    0    0    0
##   Irem Software Engineering                 0    0    1    1    3    1
##   ITT Family Games                          0    0    0    0    0    0
##   Ivolgamus                                 0    0    0    0    1    0
##   iWin                                      0    0    0    0    0    0
##   Jack of All Games                         0    1    0    0    0    0
##   Jaleco                                    2    0    0    3    2    0
##   Jester Interactive                        0    1    0    0    0    0
##   Jorudan                                   0    0    0    0    0    0
##   JoWood Productions                        2    4    1    1    5    4
##   Just Flight                               0    0    0    0    0    0
##   JVC                                       0    0    0    0    0    0
##   Kadokawa Games                            0    0    0    0    0    0
##   Kadokawa Shoten                           1    1    1    3    6    3
##   Kaga Create                               0    0    0    0    0    0
##   Kalypso Media                             0    0    0    1    2    5
##   Kamui                                     0    0    0    0    0    0
##   Kando Games                               0    0    1    0    0    0
##   Karin Entertainment                       0    0    0    0    0    0
##   Kemco                                     0    1    0    0    0    0
##   KID                                       0    0    3    0    0    0
##   Kids Station                              0    0    0    1    0    0
##   King Records                              0    0    0    0    0    0
##   Knowledge Adventure                       0    0    0    0    0    2
##   Koch Media                                0    0    0    0    6    0
##   Kokopeli Digital Studios                  0    0    0    0    0    0
##   Konami Digital Entertainment             42   56   66   61   64   59
##   Kool Kizz                                 0    0    0    0    0    0
##   KSS                                       0    0    0    0    0    0
##   Laguna                                    0    0    0    0    0    0
##   Legacy Interactive                        0    0    0    0    1    0
##   LEGO Media                                0    0    0    0    0    0
##   Level 5                                   0    0    0    0    0    4
##   Lexicon Entertainment                     0    0    0    1    1    0
##   Licensed 4U                               0    0    0    0    0    0
##   Lighthouse Interactive                    0    0    0    1    0    0
##   Liquid Games                              0    0    1    0    0    0
##   Little Orbit                              0    0    0    0    0    0
##   Locus                                     0    0    0    0    0    0
##   LSP Games                                 0    0    0    0    0    0
##   LucasArts                                 4    8    9   11   13    9
##   Mad Catz                                  1    0    1    0    0    0
##   Magical Company                           0    0    0    0    0    0
##   Magix                                     0    0    0    0    0    1
##   Majesco Entertainment                     8   10    6    6   12   24
##   Mamba Games                               0    0    0    0    1    0
##   Marvel Entertainment                      0    0    0    0    0    0
##   Marvelous Entertainment                   0    0    0    0    0    0
##   Marvelous Games                           0    0    0    0    0    0
##   Marvelous Interactive                     1    3    2   11   13    5
##   Masque Publishing                         0    0    0    0    0    0
##   Mastertronic                              0    0    1    0    0    1
##   Mastiff                                   1    2    0    0    0    3
##   Mattel Interactive                        0    0    0    0    0    0
##   Max Five                                  0    0    0    0    0    0
##   Maximum Family Games                      0    0    0    0    0    0
##   Maxis                                     0    0    0    0    0    0
##   MC2 Entertainment                         2    1    0    0    0    0
##   Media Entertainment                       0    0    0    0    0    0
##   Media Factory                             0    0    0    0    0    0
##   Media Rings                               0    0    0    0    0    0
##   Media Works                               0    0    1    1    0    0
##   MediaQuest                                0    0    0    0    0    0
##   Men-A-Vision                              0    0    0    0    0    0
##   Mentor Interactive                        0    0    0    0    0    3
##   Mercury Games                             0    0    0    2    2    0
##   Merscom LLC                               0    0    0    0    0    1
##   Metro 3D                                  0    0    0    2    2    0
##   Michaelsoft                               0    0    1    0    0    0
##   Micro Cabin                               0    0    0    0    0    0
##   Microids                                  2    1    0    0    0    0
##   Microprose                                0    0    0    0    0    0
##   Microsoft Game Studios                   13   14    9   19   10    7
##   Midas Interactive Entertainment           0    1    1    1    1    4
##   Midway Games                             15   21   25   17   16    0
##   Milestone                                 0    0    0    0    1    0
##   Milestone S.r.l                           0    0    0    0    0    0
##   Milestone S.r.l.                          0    0    0    0    0    0
##   Minato Station                            0    0    0    0    1    0
##   Mindscape                                 0    0    0    2    2   13
##   Mirai Shounen                             0    0    0    0    1    0
##   Misawa                                    0    0    0    0    0    0
##   Mitsui                                    0    0    0    0    0    0
##   mixi, Inc                                 0    0    0    0    0    0
##   MLB.com                                   0    0    0    0    0    0
##   Mojang                                    0    0    0    0    0    0
##   Monte Christo Multimedia                  0    0    0    1    0    0
##   Moss                                      0    0    0    0    1    0
##   MTO                                       0    0    2    3    1    0
##   MTV Games                                 0    0    0    0   13   16
##   Mud Duck Productions                      2    0    0    0    0    0
##   Mumbo Jumbo                               0    0    1    2    3    0
##   Mycom                                     0    0    0    0    0    0
##   Myelin Media                              0    0    3    0    0    0
##   Mystique                                  0    0    0    0    0    0
##   N/A                                      19    5    0    1    0    0
##   Namco Bandai Games                       25   41   66   49   52   62
##   Natsume                                   0    0    3    1    0    1
##   Navarre Corp                              0    0    0    0    1    0
##   Naxat Soft                                0    0    0    0    1    0
##   NCS                                       0    0    0    0    0    0
##   NCSoft                                    0    2    2    0    0    0
##   NDA Productions                           0    0    0    0    0    0
##   NEC                                       0    0    0    0    0    0
##   NEC Interchannel                          0    0    0    0    1    0
##   Neko Entertainment                        0    0    0    2    2    1
##   NetRevo                                   0    0    0    0    0    0
##   New                                       0    0    0    0    0    0
##   New World Computing                       0    0    0    0    0    0
##   NewKidCo                                  0    0    0    0    0    0
##   Nexon                                     0    0    0    0    0    0
##   Nichibutsu                                0    0    0    0    0    0
##   Nihon Falcom Corporation                  0    0    0    0    0    0
##   Nintendo                                 57   45   53   42   32   32
##   Nippon Amuse                              0    0    0    0    0    0
##   Nippon Columbia                           0    0    0    0    0    0
##   Nippon Ichi Software                      0    0    0    6    5    9
##   Nippon Telenet                            0    0    0    0    0    0
##   Nitroplus                                 0    0    0    0    0    0
##   Nobilis                                   0    0    0    2    7    3
##   Nordcurrent                               0    0    0    1    1    1
##   Nordic Games                              0    0    0    0    1    4
##   NovaLogic                                 0    2    0    0    0    1
##   Number None                               0    0    0    0    0    1
##   O-Games                                   0    0    0    0    0    1
##   O3 Entertainment                          1    0    1    1    0    0
##   Ocean                                     0    0    0    0    0    0
##   Office Create                             0    0    0    0    0    0
##   On Demand                                 0    0    0    0    0    0
##   Ongakukan                                 0    0    1    0    0    0
##   Origin Systems                            0    0    0    0    0    0
##   Otomate                                   0    0    0    0    0    0
##   Oxygen Interactive                        0    1    3    1    7    9
##   P2 Games                                  0    0    0    0    0    2
##   Pacific Century Cyber Works               0    0    0    0    0    0
##   Pack-In-Video                             0    0    0    0    0    0
##   Pack In Soft                              0    0    0    0    0    0
##   Palcom                                    0    0    0    0    0    0
##   Panther Software                          0    0    0    0    0    0
##   Paon                                      0    0    0    2    2    0
##   Paon Corporation                          0    0    0    0    0    0
##   Paradox Development                       0    0    0    0    0    0
##   Paradox Interactive                       0    0    0    1    2    4
##   Parker Bros.                              0    0    0    0    0    0
##   Performance Designed Products             0    0    0    0    0    2
##   Phantagram                                0    0    0    0    0    0
##   Phantom EFX                               0    0    0    0    0    1
##   Phenomedia                                0    0    0    2    1    1
##   Phoenix Games                             0    0    0    1    0    0
##   Piacci                                    0    0    0    0    0    0
##   Pinnacle                                  0    0    0    0    4    1
##   Pioneer LDC                               0    0    0    0    0    0
##   Play It                                   7    3    0    0    0    0
##   Playlogic Game Factory                    0    1    0    0    2   11
##   Playmates                                 0    0    0    0    0    0
##   Playmore                                  0    0    0    0    0    0
##   PlayV                                     0    0    0    0    0    1
##   Plenty                                    0    0    0    0    0    0
##   PM Studios                                0    0    0    0    0    1
##   Pony Canyon                               0    0    0    0    0    0
##   PopCap Games                              0    0    1    1    3    4
##   Popcorn Arcade                            0    0    0    7    3    0
##   PopTop Software                           0    0    0    0    0    0
##   Pow                                       0    0    0    0    0    0
##   PQube                                     0    0    0    2    2    4
##   Princess Soft                             0    0    1    0    1    0
##   Prototype                                 0    0    0    5    3    5
##   Psygnosis                                 0    0    0    0    0    0
##   Quelle                                    0    0    0    0    0    0
##   Quest                                     0    0    0    0    0    0
##   Quinrose                                  0    0    0    0    0    0
##   Quintet                                   0    0    0    0    0    0
##   Rage Software                             0    0    0    0    0    0
##   Rain Games                                0    0    0    0    0    0
##   Rebellion                                 0    0    0    0    0    0
##   Rebellion Developments                    0    0    0    0    0    0
##   RED Entertainment                         0    0    0    0    0    0
##   Red Orb                                   0    0    0    0    0    0
##   Red Storm Entertainment                   0    0    0    0    0    0
##   RedOctane                                 0    2    1    1    0    0
##   Reef Entertainment                        0    0    0    0    0    2
##   responDESIGN                              1    1    0    0    0    0
##   Revolution (Japan)                        0    0    0    0    0    1
##   Revolution Software                       0    0    0    0    0    0
##   Rising Star Games                         0    7    9   19   17   12
##   Riverhillsoft                             0    0    0    0    0    0
##   Rocket Company                            0    0    2    3    1    1
##   Rondomedia                                0    0    0    0    3    5
##   RTL                                       0    0    0    1    5    2
##   Russel                                    0    0    0    1    1    1
##   Sammy Corporation                         1    0    1    0    0    0
##   Saurus                                    0    0    0    0    0    0
##   Scholastic Inc.                           0    0    0    1    4    0
##   SCi                                       5    3    0    0    0    0
##   Screenlife                                0    0    0    0    0    0
##   SCS Software                              0    0    0    0    0    0
##   Sears                                     0    0    0    0    0    0
##   Sega                                     28   31   47   50   67   43
##   Seta Corporation                          0    0    0    0    0    0
##   Seventh Chord                             0    0    0    0    0    0
##   Shogakukan                                0    0    1    1    0    0
##   Simon & Schuster Interactive              0    0    0    0    0    0
##   Slightly Mad Studios                      0    0    0    0    0    0
##   Slitherine Software                       0    0    0    0    0    2
##   SNK                                       0    1    0    0    0    0
##   SNK Playmore                              0    3    1    4    2    2
##   Societa                                   0    0    0    0    0    0
##   Sold Out                                  0    0    0    0    0    0
##   Sonnet                                    0    0    0    0    0    0
##   Sony Computer Entertainment              30   48   51   41   37   45
##   Sony Computer Entertainment America       0    0    0    0    0    0
##   Sony Computer Entertainment Europe        1    0    0    0    0    0
##   Sony Music Entertainment                  0    0    0    0    0    0
##   Sony Online Entertainment                 1    1    1    0    0    0
##   SouthPeak Games                           1    1    2    4    8   13
##   Spike                                     1    0    4    8    4    8
##   SPS                                       0    0    0    0    0    0
##   Square                                    0    0    0    0    0    0
##   Square EA                                 0    0    0    0    0    0
##   Square Enix                               6    6   12   23   24   18
##   SquareSoft                                0    0    0    0    0    0
##   SSI                                       0    0    0    0    0    0
##   Stainless Games                           0    0    0    0    0    0
##   Starfish                                  0    0    0    2    0    1
##   Starpath Corp.                            0    0    0    0    0    0
##   Sting                                     1    0    1    1    5    0
##   Storm City Games                          0    0    0    0    0    3
##   Strategy First                            0    0    0    0    0    0
##   Success                                   0    2    1    5    3    1
##   Summitsoft                                1    0    0    0    0    0
##   Sunflowers                                1    0    0    0    0    0
##   Sunrise Interactive                       0    0    1    1    0    0
##   Sunsoft                                   0    0    0    0    0    0
##   Sweets                                    0    0    1    0    0    1
##   Swing! Entertainment                      0    0    0    0    0    0
##   Syscom                                    0    0    0    0    0    0
##   System 3                                  0    0    0    0    0    0
##   System 3 Arcade Software                  0    0    3    2    6    2
##   System Soft                               0    0    0    0    1    0
##   T&E Soft                                  0    0    0    0    0    0
##   Taito                                     0    0    2    3    0    0
##   Takara                                    0    0    0    0    0    0
##   Takara Tomy                               0    0    3    8   13    5
##   Take-Two Interactive                     12   41   33   37   41   41
##   Takuyo                                    0    0    0    0    0    0
##   TalonSoft                                 0    0    0    0    0    0
##   TDK Core                                  0    0    2    1    0    0
##   TDK Mediactive                            1    0    0    0    0    0
##   Team17 Software                           0    0    0    0    0    0
##   Technos Japan Corporation                 0    0    0    0    0    0
##   TechnoSoft                                0    0    0    0    0    0
##   Tecmo Koei                               13   13   26   31   30   21
##   Telegames                                 0    1    0    2    1    0
##   Telltale Games                            0    0    0    0    0    0
##   Telstar                                   0    0    0    0    0    0
##   Tetris Online                             0    0    0    0    0    0
##   TGL                                       0    0    0    0    0    1
##   The Adventure Company                     0    0    0    0    3    2
##   The Learning Company                      0    0    0    0    0    0
##   THQ                                      49   63   57   74   61   72
##   Tigervision                               0    0    0    0    0    0
##   Time Warner Interactive                   0    0    0    0    0    0
##   Titus                                     0    0    0    0    0    0
##   Tivola                                    0    0    0    0    1    2
##   TOHO                                      0    0    0    0    0    0
##   Tommo                                     0    0    0    3    0    1
##   Tomy Corporation                          1    3    1    1    1    1
##   TopWare Interactive                       0    0    0    0    0    0
##   Touchstone                                0    0    0    1    3    0
##   Tradewest                                 0    0    0    0    0    0
##   Trion Worlds                              0    0    0    0    0    0
##   Tripwire Interactive                      0    0    0    0    0    0
##   Tru Blu Entertainment                     0    0    0    0    0    0
##   Tryfirst                                  0    0    0    0    1    0
##   TYO                                       0    0    0    0    0    0
##   Type-Moon                                 0    0    0    0    0    0
##   U.S. Gold                                 0    0    0    0    0    0
##   Ubisoft                                  32   57   61   88  112  102
##   Ubisoft Annecy                            0    0    0    0    0    3
##   UEP Systems                               0    0    0    0    0    0
##   UFO Interactive                           0    0    0    1    4    3
##   UIG Entertainment                         0    0    0    0    0    0
##   Ultravision                               0    0    0    0    0    0
##   Universal Gamex                           0    0    0    0    0    0
##   Universal Interactive                     0    0    0    0    0    0
##   Unknown                                   1    1    2    3    2    1
##   Valcon Games                              0    1    1    0    2    3
##   ValuSoft                                  0    1    0    0    1    1
##   Valve                                     0    0    0    0    0    0
##   Valve Software                            0    0    0    0    0    1
##   Vap                                       0    0    0    0    0    0
##   Vatical Entertainment                     0    0    0    0    0    0
##   Vic Tokai                                 0    0    0    0    0    0
##   Victor Interactive                        0    0    0    0    0    0
##   Video System                              0    0    0    0    0    0
##   Views                                     0    0    0    0    0    0
##   Vir2L Studios                             0    0    0    0    2    1
##   Virgin Interactive                        0    0    0    0    0    0
##   Virtual Play Games                        0    0    0    0    0    0
##   Visco                                     0    0    0    0    0    0
##   Vivendi Games                            18   25   19   21   16    2
##   Wanadoo                                   0    1    0    0    0    0
##   Warashi                                   0    0    0    1    0    0
##   Wargaming.net                             0    0    0    0    0    0
##   Warner Bros. Interactive Entertainment    0    1    1    5   10   29
##   Warp                                      0    0    0    0    0    0
##   WayForward Technologies                   0    0    0    0    0    0
##   Westwood Studios                          0    0    0    0    0    0
##   White Park Bay Software                   0    0    0    1    0    0
##   Wizard Video Games                        0    0    0    0    0    0
##   Xicat Interactive                         0    0    0    0    0    0
##   Xing Entertainment                        0    0    0    0    0    0
##   Xplosiv                                   0    1    4    2    3    0
##   XS Games                                  3    1    0    1    2    3
##   Xseed Games                               0    0    0    0    0    0
##   Yacht Club Games                          0    0    0    0    0    0
##   Yamasa Entertainment                      0    0    2    0    0    0
##   Yeti                                      0    0    1    1    1    2
##   Yuke's                                    0    1    1    1    0    0
##   Yumedia                                   0    0    0    0    0    0
##   Zenrin                                    0    0    1    1    0    0
##   Zoo Digital Publishing                   17   31    6   12   12   11
##   Zoo Games                                 0    0    0    0    8   11
##   Zushi Games                               0    0    0    1    4   13
##                                         Year
## Publisher                                2010 2011 2012 2013 2014 2015
##   10TACLE Studios                           0    0    0    0    0    0
##   1C Company                                0    2    0    0    0    0
##   20th Century Fox Video Games              0    0    0    0    0    0
##   2D Boy                                    0    0    0    0    0    0
##   3DO                                       0    0    0    0    0    0
##   49Games                                   0    0    0    0    0    0
##   505 Games                                22   21    8    6    6    4
##   5pb                                      10    8    8    5    7    9
##   7G//AMES                                  1    3    0    0    0    0
##   989 Sports                                0    0    0    0    0    0
##   989 Studios                               0    0    0    0    0    0
##   Abylight                                  1    0    0    0    0    0
##   Acclaim Entertainment                     0    0    0    0    0    0
##   Accolade                                  0    0    0    0    0    0
##   Ackkstudios                               1    2    6    0    0    0
##   Acquire                                   3    4    2    0    1    0
##   Activision                               89   75   42   38   42   39
##   Activision Blizzard                       0    0    0    0    1    0
##   Activision Value                          0    0    0    0    0    0
##   Adeline Software                          0    0    0    0    0    0
##   Aerosoft                                  1    0    0    1    0    0
##   Agatsuma Entertainment                    0    0    1    1    0    0
##   Agetec                                    0    0    0    0    0    0
##   Aksys Games                               0    0    0    0    2    3
##   Alawar Entertainment                      0    0    0    0    0    1
##   Alchemist                                10    7    4    4    0    2
##   Alternative Software                      1    0    0    0    0    1
##   Altron                                    0    0    0    0    0    0
##   Alvion                                    1    0    0    0    0    0
##   American Softworks                        0    0    0    0    0    0
##   Angel Studios                             0    0    0    0    0    0
##   Answer Software                           0    0    0    0    0    0
##   AQ Interactive                            0    0    0    0    0    0
##   Aqua Plus                                 2    3    2    2    0    4
##   Aques                                     0    0    0    0    0    0
##   Arc System Works                          3    0    2    6    4    4
##   Arena Entertainment                       0    0    0    0    0    0
##   Aria                                      0    0    0    0    0    0
##   Arika                                     0    0    0    0    0    0
##   ArtDink                                   1    0    0    0    1    0
##   Aruze Corp                                0    0    0    0    0    0
##   ASC Games                                 0    0    0    0    0    0
##   Ascaron Entertainment                     0    0    1    0    0    0
##   Ascaron Entertainment GmbH                0    0    0    0    0    0
##   ASCII Entertainment                       0    0    0    0    0    0
##   ASCII Media Works                         3    1    0    0    1    0
##   Asgard                                    3    1    1    2    0    1
##   ASK                                       0    0    0    0    0    0
##   Asmik Ace Entertainment                   0    0    0    0    0    0
##   Asmik Corp                                0    0    0    0    0    0
##   Aspyr                                     0    0    0    0    0    0
##   Astragon                                  3    1    0    0    0    0
##   Asylum Entertainment                      5    1    0    0    0    0
##   Atari                                    11    5    1    0    0    0
##   Athena                                    0    0    0    0    0    0
##   Atlus                                     4    5    7    2    5    3
##   Avalon Interactive                        0    0    0    0    0    0
##   Avanquest                                 4    7    0    0    0    0
##   Avanquest Software                        0    0    6    1    0    2
##   Axela                                     0    0    0    0    0    0
##   BAM! Entertainment                        0    0    0    0    0    0
##   Banpresto                                 0    3    0    0    0    0
##   Benesse                                   0    0    0    0    0    0
##   Berkeley                                  0    0    0    0    0    0
##   Bethesda Softworks                        3   12    6    0   11   11
##   Big Ben Interactive                       0    1    0    1    0    0
##   Big Fish Games                            0    0    0    0    1    0
##   Bigben Interactive                        0    0    0    0    0   13
##   bitComposer Games                         0    4    0    0    0    0
##   Black Bean Games                          8    9    0    0    0    0
##   Black Label Games                         0    0    0    0    0    0
##   Blast! Entertainment Ltd                  0    0    0    0    0    0
##   Blue Byte                                 0    0    0    0    0    0
##   BMG Interactive Entertainment             0    0    0    0    0    0
##   Bohemia Interactive                       0    0    0    1    0    0
##   Bomb                                      0    0    0    0    0    0
##   Boost On                                  0    0    0    1    0    0
##   BPS                                       0    0    0    0    0    0
##   Brash Entertainment                       0    0    0    0    0    0
##   Broccoli                                  1    3    2    4    0    2
##   BushiRoad                                 0    0    1    0    0    0
##   Capcom                                   22   24   24   21    4   16
##   Cave                                      2    4    1    1    0    0
##   CBS Electronics                           0    0    0    0    0    0
##   CCP                                       0    0    0    0    0    0
##   CDV Software Entertainment                0    1    0    0    0    0
##   ChunSoft                                  1    3    2    0    0    0
##   City Interactive                          5    4    0    3    1    0
##   Cloud Imperium Games Corporation          0    0    2    0    0    0
##   Coconuts Japan                            0    0    0    0    0    0
##   Codemasters                               5   13    8    5    6    3
##   Codemasters Online                        0    0    0    0    0    0
##   CokeM Interactive                         0    0    0    0    0    0
##   Coleco                                    0    0    0    0    0    0
##   Comfort                                   2    2    1    1    0    0
##   Commseed                                  0    0    0    0    0    0
##   Compile                                   0    0    0    0    0    0
##   Compile Heart                             3    1    3    2    5    3
##   Conspiracy Entertainment                  4    0    0    0    0    0
##   Core Design Ltd.                          0    0    0    0    0    0
##   CPG Products                              0    0    0    0    0    0
##   Crave Entertainment                       7   14    0    0    0    0
##   Creative Core                             0    0    0    0    0    0
##   Crimson Cow                               0    1    0    0    0    0
##   Crystal Dynamics                          0    0    0    0    0    0
##   CTO SpA                                   0    0    0    0    0    0
##   Culture Brain                             1    0    0    0    0    0
##   Culture Publishers                        0    0    0    0    0    0
##   CyberFront                                6    1    2    1    0    0
##   Cygames                                   0    0    0    0    0    1
##   D3Publisher                              31   18    9   20    2    5
##   Daedalic                                  1    0    1    0    0    0
##   Daedalic Entertainment                    0    0    1    2    0    0
##   Daito                                     0    0    0    0    0    0
##   Data Age                                  0    0    0    0    0    0
##   Data Design Interactive                   0    0    0    0    0    0
##   Data East                                 0    0    0    0    0    0
##   Datam Polystar                            0    0    0    0    0    0
##   Deep Silver                              17   13    4   12   12    7
##   Destination Software, Inc                 0    0    0    0    0    0
##   Destineer                                12    2    0    0    0    0
##   Detn8 Games                               0    0    0    0    0    0
##   Devolver Digital                          1    0    0    0    0    1
##   DHM Interactive                           0    0    0    0    0    0
##   DigiCube                                  0    0    0    0    0    0
##   Disney Interactive Studios               35   20    7   12   10    6
##   Dorart                                    1    0    0    0    0    0
##   dramatic create                           0    0    0    0    0    3
##   DreamCatcher Interactive                  2    0    0    0    0    0
##   DreamWorks Interactive                    0    0    0    0    0    0
##   DSI Games                                 0    0    0    0    0    0
##   DTP Entertainment                         7   13    1    0    0    0
##   Dusenberry Martin Racing                  0    0    0    0    0    0
##   EA Games                                  0    0    1    0    0    0
##   Easy Interactive                          0    0    2    0    0    0
##   Ecole                                     0    0    0    0    0    0
##   Edia                                      0    0    0    0    0    0
##   Eidos Interactive                         0    0    0    0    0    0
##   Electronic Arts                          88   76   46   42   36   32
##   Electronic Arts Victor                    0    0    0    0    0    0
##   Elf                                       0    0    0    0    0    0
##   Elite                                     0    0    0    0    0    0
##   Empire Interactive                        0    0    0    0    0    0
##   Encore                                    0    0    0    0    0    0
##   Enix Corporation                          0    0    0    0    0    0
##   Enjoy Gaming ltd.                         0    0    0    0    0    0
##   Enterbrain                                2    0    0    0    0    0
##   EON Digital Entertainment                 0    0    0    0    0    0
##   Epic Games                                0    0    0    0    0    0
##   Epoch                                     0    0    0    0    0    0
##   Ertain                                    0    0    0    0    0    0
##   ESP                                       0    0    0    0    0    0
##   Essential Games                           0    0    0    0    0    0
##   Evolution Games                           0    0    0    0    0    0
##   Evolved Games                             0    2    0    0    0    0
##   Excalibur Publishing                      0    3    1    0    0    0
##   Experience Inc.                           0    0    0    0    1    1
##   Extreme Entertainment Group               0    0    0    0    0    1
##   Falcom Corporation                        3    1    2    2    0    0
##   Fields                                    0    0    1    0    0    0
##   Flashpoint Games                          1    0    0    0    0    0
##   Flight-Plan                               0    0    0    0    0    0
##   Focus Home Interactive                    6    9    7    3   11    4
##   Focus Multimedia                          0    0    2    0    0    1
##   fonfun                                    0    0    0    0    0    0
##   Foreign Media Games                       9    0    0    0    0    0
##   Fortyfive                                 0    0    0    0    0    0
##   Fox Interactive                           0    0    0    0    0    0
##   From Software                             1    0    0    1    0    0
##   Fuji                                      0    0    0    0    0    0
##   Funbox Media                              0    4    1    0    0    1
##   Funcom                                    1    0    1    0    0    0
##   FunSoft                                   0    0    0    0    0    0
##   Funsta                                    0    0    0    0    0    0
##   FuRyu                                     1    4    4    5    3    7
##   FuRyu Corporation                         0    0    0    0    0    1
##   G.Rev                                     1    0    0    0    0    0
##   Gaga                                      0    0    0    0    0    0
##   Gainax Network Systems                    0    0    0    0    0    0
##   Gakken                                    0    0    0    0    0    0
##   Game Arts                                 0    0    0    0    0    0
##   Game Factory                              1    0    0    0    0    0
##   Game Life                                 0    0    0    0    0    0
##   Gamebridge                                0    0    0    0    0    0
##   Gamecock                                  0    0    0    0    0    0
##   Gameloft                                  0    0    0    0    0    0
##   GameMill Entertainment                    1    5    2    0    0    0
##   GameTek                                   0    0    0    0    0    0
##   Gathering of Developers                   0    0    0    0    0    0
##   General Entertainment                     0    0    0    0    0    0
##   Genki                                     0    0    1    0    0    0
##   Genterprise                               0    0    0    0    0    0
##   Ghostlight                                2    2    0    0    0    0
##   Giga                                      0    0    0    0    1    0
##   Giza10                                    0    0    1    0    0    0
##   Glams                                     0    0    0    0    0    0
##   Global A Entertainment                    0    0    0    0    0    0
##   Global Star                               0    0    0    0    0    0
##   GN Software                               1    0    0    0    0    0
##   GOA                                       0    0    0    0    0    0
##   Gotham Games                              0    0    0    0    0    0
##   Graffiti                                  2    0    0    0    0    0
##   Grand Prix Games                          0    0    0    0    0    0
##   Graphsim Entertainment                    0    0    0    0    0    0
##   Gremlin Interactive Ltd                   0    0    0    0    0    0
##   Griffin International                     1    0    0    0    0    0
##   Groove Games                              0    0    0    0    0    0
##   GSP                                       3    4    0    0    0    0
##   GT Interactive                            0    0    0    0    0    0
##   GungHo                                    0    1    2    2    1    0
##   Gust                                      1    1    2    1    0    0
##   Hackberry                                 1    0    0    0    0    0
##   HAL Laboratory                            0    0    0    0    0    0
##   Hamster Corporation                       0    0    0    0    0    0
##   Happinet                                  0    0    0    0    2    2
##   Harmonix Music Systems                    0    0    0    0    0    2
##   Hasbro Interactive                        0    0    0    0    0    0
##   Havas Interactive                         0    0    0    0    0    0
##   Headup Games                              0    0    0    1    0    0
##   Hearty Robin                              0    0    0    0    0    0
##   Hect                                      0    0    0    0    0    0
##   Hello Games                               0    0    0    0    0    0
##   Her Interactive                           0    1    0    0    0    0
##   Hip Interactive                           0    0    0    0    0    0
##   HMH Interactive                           0    0    0    0    0    0
##   Home Entertainment Suppliers              2    2    0    0    0    0
##   Hudson Entertainment                      0    0    0    0    0    0
##   Hudson Soft                              11    3    0    0    0    0
##   Human Entertainment                       0    0    0    0    0    0
##   HuneX                                     0    0    0    0    0    2
##   Iceberg Interactive                       0    2    1    0    0    0
##   id Software                               0    0    0    0    0    0
##   Idea Factory                             23   19   19   11   13   14
##   Idea Factory International                0    0    0    0    3    3
##   IE Institute                              0    0    1    0    0    0
##   Ignition Entertainment                    0    2    0    0    0    0
##   Illusion Softworks                        0    0    0    0    0    0
##   Imadio                                    0    0    0    0    0    0
##   Image Epoch                               0    0    1    0    0    0
##   imageepoch Inc.                           0    0    0    0    2    0
##   Imageworks                                0    0    0    0    0    0
##   Imagic                                    0    0    0    0    0    0
##   Imagineer                                 0    0    0    0    0    0
##   Imax                                      0    0    0    0    0    0
##   Indie Games                               0    0    0    0    0    0
##   Infogrames                                0    0    0    0    0    0
##   Insomniac Games                           0    0    0    0    0    0
##   Interchannel                              0    0    0    0    0    0
##   Interchannel-Holon                        0    0    0    0    0    0
##   Intergrow                                 0    0    0    0    0    1
##   Interplay                                 0    0    0    0    0    0
##   Interplay Productions                     0    0    0    0    0    0
##   Interworks Unlimited, Inc.                0    0    1    0    0    0
##   Inti Creates                              0    0    0    0    0    0
##   Introversion Software                     0    0    0    0    0    0
##   inXile Entertainment                      0    0    0    0    0    1
##   Irem Software Engineering                 2    2    1    0    0    0
##   ITT Family Games                          0    0    0    0    0    0
##   Ivolgamus                                 0    0    0    0    0    0
##   iWin                                      0    1    0    0    0    0
##   Jack of All Games                         0    2    0    0    0    0
##   Jaleco                                    0    0    0    0    0    0
##   Jester Interactive                        0    0    0    0    0    0
##   Jorudan                                   0    0    0    0    0    0
##   JoWood Productions                        4    0    0    0    0    0
##   Just Flight                               1    0    0    0    0    0
##   JVC                                       0    0    0    0    0    0
##   Kadokawa Games                            0    0    1    3    5    4
##   Kadokawa Shoten                           9    9    4    4    1    1
##   Kaga Create                               0    0    0    1    0    5
##   Kalypso Media                             5    7    1    0    2    3
##   Kamui                                     1    0    0    0    0    0
##   Kando Games                               0    0    0    0    0    0
##   Karin Entertainment                       1    0    0    0    0    0
##   Kemco                                     0    0    0    0    0    0
##   KID                                       0    0    0    0    0    0
##   Kids Station                              0    0    0    0    0    0
##   King Records                              0    0    0    0    0    0
##   Knowledge Adventure                       0    0    0    0    0    0
##   Koch Media                                0    2    0    1    0    5
##   Kokopeli Digital Studios                  0    0    0    0    0    0
##   Konami Digital Entertainment             68   44   32   16   18   12
##   Kool Kizz                                 0    0    0    0    0    0
##   KSS                                       0    0    0    0    0    0
##   Laguna                                    0    0    0    0    0    0
##   Legacy Interactive                        0    0    0    0    0    0
##   LEGO Media                                0    0    0    0    0    0
##   Level 5                                   3    3    9    3    1    2
##   Lexicon Entertainment                     0    0    0    0    0    0
##   Licensed 4U                               0    0    3    0    0    0
##   Lighthouse Interactive                    0    0    0    0    0    0
##   Liquid Games                              0    0    0    0    0    0
##   Little Orbit                              2    0    0    2    9   13
##   Locus                                     0    0    0    0    0    0
##   LSP Games                                 0    0    0    0    0    0
##   LucasArts                                 5    8    0    0    0    0
##   Mad Catz                                  0    0    1    0    0    0
##   Magical Company                           0    0    0    0    0    0
##   Magix                                     0    0    0    0    0    0
##   Majesco Entertainment                    10    6    0    2    0    0
##   Mamba Games                               1    0    0    0    0    0
##   Marvel Entertainment                      0    0    0    0    0    1
##   Marvelous Entertainment                   0    0    2    3    4    2
##   Marvelous Games                           0    0    0    0    0    1
##   Marvelous Interactive                     6    6    0    0    3    3
##   Masque Publishing                         0    1    0    0    0    0
##   Mastertronic                              2    8    1    0    0    0
##   Mastiff                                   4    6    0    0    0    0
##   Mattel Interactive                        0    0    0    0    0    0
##   Max Five                                  0    0    0    0    0    0
##   Maximum Family Games                      0    0    1    0    0    0
##   Maxis                                     0    0    0    0    0    0
##   MC2 Entertainment                         0    0    0    0    0    0
##   Media Entertainment                       0    0    0    0    0    0
##   Media Factory                             0    0    0    0    0    0
##   Media Rings                               0    0    0    0    0    0
##   Media Works                               0    0    0    0    0    0
##   MediaQuest                                0    0    0    0    0    0
##   Men-A-Vision                              0    0    0    0    0    0
##   Mentor Interactive                        1    1    0    0    0    0
##   Mercury Games                             0    0    0    0    0    0
##   Merscom LLC                               0    0    0    0    0    0
##   Metro 3D                                  0    0    0    0    0    0
##   Michaelsoft                               0    0    0    0    0    0
##   Micro Cabin                               0    0    0    0    0    0
##   Microids                                  0    0    0    0    0    0
##   Microprose                                0    0    0    0    0    0
##   Microsoft Game Studios                   12   11    7    8    9    5
##   Midas Interactive Entertainment           0    0    0    0    0    0
##   Midway Games                              0    0    0    0    0    0
##   Milestone                                 0    0    0    0    0    0
##   Milestone S.r.l                           0    0    0    0    0    0
##   Milestone S.r.l.                          0    0    0    0    4    9
##   Minato Station                            0    0    1    0    0    1
##   Mindscape                                 5    0    0    0    0    0
##   Mirai Shounen                             0    0    0    0    0    0
##   Misawa                                    0    0    0    0    0    0
##   Mitsui                                    0    0    0    0    0    0
##   mixi, Inc                                 0    0    0    0    0    1
##   MLB.com                                   0    0    0    0    0    0
##   Mojang                                    0    0    0    0    0    5
##   Monte Christo Multimedia                  0    0    0    0    0    0
##   Moss                                      0    0    0    1    0    0
##   MTO                                       1    0    0    0    0    0
##   MTV Games                                 8    3    0    0    0    0
##   Mud Duck Productions                      0    0    0    0    0    0
##   Mumbo Jumbo                               0    0    0    0    0    0
##   Mycom                                     0    0    0    0    0    0
##   Myelin Media                              0    0    0    0    0    0
##   Mystique                                  0    0    0    0    0    0
##   N/A                                       2    3    2    0    2    0
##   Namco Bandai Games                       70   76   85   63   69   68
##   Natsume                                   3    0    0    0    1    0
##   Navarre Corp                              0    0    0    0    0    0
##   Naxat Soft                                0    0    0    0    0    0
##   NCS                                       0    0    0    0    0    0
##   NCSoft                                    0    0    1    0    1    0
##   NDA Productions                           0    0    0    0    0    0
##   NEC                                       0    0    0    0    0    0
##   NEC Interchannel                          0    0    0    0    0    0
##   Neko Entertainment                        2    0    0    0    0    0
##   NetRevo                                   1    0    1    0    0    0
##   New                                       0    0    0    0    0    0
##   New World Computing                       0    0    0    0    0    0
##   NewKidCo                                  0    0    0    0    0    0
##   Nexon                                     1    0    0    0    0    0
##   Nichibutsu                                0    0    0    0    0    0
##   Nihon Falcom Corporation                  0    0    2    0    1    1
##   Nintendo                                 28   26   31   23   20   32
##   Nippon Amuse                              0    0    0    0    0    0
##   Nippon Columbia                           0    0    1    2    2    1
##   Nippon Ichi Software                      9    9    5   18   19   11
##   Nippon Telenet                            0    0    0    0    0    0
##   Nitroplus                                 0    0    0    0    1    1
##   Nobilis                                   1    0    0    0    0    0
##   Nordcurrent                               2    0    0    0    0    0
##   Nordic Games                              5    4    4    2    2   10
##   NovaLogic                                 0    0    0    0    0    0
##   Number None                               0    0    0    0    0    0
##   O-Games                                  12    4    0    0    0    0
##   O3 Entertainment                          0    0    0    0    0    0
##   Ocean                                     0    0    0    0    0    0
##   Office Create                             0    0    0    1    1    0
##   On Demand                                 0    0    0    0    0    0
##   Ongakukan                                 0    0    0    0    0    0
##   Origin Systems                            0    0    0    0    0    0
##   Otomate                                   0    0    0    1    0    0
##   Oxygen Interactive                        0    0    0    0    0    0
##   P2 Games                                  0    1    0    0    0    0
##   Pacific Century Cyber Works               0    0    0    0    0    0
##   Pack-In-Video                             0    0    0    0    0    0
##   Pack In Soft                              0    0    0    0    0    0
##   Palcom                                    0    0    0    0    0    0
##   Panther Software                          0    0    0    0    0    0
##   Paon                                      1    1    0    0    0    0
##   Paon Corporation                          0    0    0    1    0    0
##   Paradox Development                       0    0    0    0    0    0
##   Paradox Interactive                       5    6    1    0    1    1
##   Parker Bros.                              0    0    0    0    0    0
##   Performance Designed Products             0    0    0    0    0    0
##   Phantagram                                0    0    0    0    0    0
##   Phantom EFX                               0    0    0    0    0    0
##   Phenomedia                                0    0    0    0    0    0
##   Phoenix Games                             0    0    0    0    0    0
##   Piacci                                    1    0    0    0    0    0
##   Pinnacle                                  0    0    0    0    0    0
##   Pioneer LDC                               0    0    0    0    0    0
##   Play It                                   0    0    0    0    0    0
##   Playlogic Game Factory                    0    0    0    0    0    0
##   Playmates                                 0    0    0    0    0    0
##   Playmore                                  0    0    0    0    0    0
##   PlayV                                     3    0    0    0    0    0
##   Plenty                                    0    1    0    0    0    0
##   PM Studios                                0    0    0    0    0    0
##   Pony Canyon                               0    0    0    0    0    0
##   PopCap Games                              3    3    0    0    0    0
##   Popcorn Arcade                            0    0    0    0    0    0
##   PopTop Software                           0    0    0    0    0    0
##   Pow                                       0    0    0    0    0    0
##   PQube                                     6   10    1    1    0    8
##   Princess Soft                             0    0    0    0    0    0
##   Prototype                                 4    2    2    1    3    1
##   Psygnosis                                 0    0    0    0    0    0
##   Quelle                                    0    0    0    0    0    0
##   Quest                                     0    0    0    0    0    0
##   Quinrose                                  0    6    4    2    2    0
##   Quintet                                   0    0    0    0    0    0
##   Rage Software                             0    0    0    0    0    0
##   Rain Games                                0    0    0    0    0    1
##   Rebellion                                 0    0    0    0    0    0
##   Rebellion Developments                    0    0    0    0    0    2
##   RED Entertainment                         1    0    0    0    0    0
##   Red Orb                                   0    0    0    0    0    0
##   Red Storm Entertainment                   0    0    0    0    0    0
##   RedOctane                                 0    0    0    0    0    0
##   Reef Entertainment                        1    0    4    0    0    0
##   responDESIGN                              0    0    0    0    0    0
##   Revolution (Japan)                        0    0    0    0    0    0
##   Revolution Software                       0    0    0    0    0    2
##   Rising Star Games                         6    9    2    3    0    0
##   Riverhillsoft                             0    0    0    0    0    0
##   Rocket Company                            2    1    1    1    1    3
##   Rondomedia                                2    3    0    0    0    1
##   RTL                                       0    0    0    0    0    0
##   Russel                                    3    0    0    0    0    0
##   Sammy Corporation                         0    0    0    0    0    0
##   Saurus                                    0    0    0    0    0    0
##   Scholastic Inc.                           3    2    0    0    0    0
##   SCi                                       0    0    0    0    0    0
##   Screenlife                                0    0    0    4    0    1
##   SCS Software                              0    0    1    0    0    0
##   Sears                                     0    0    0    0    0    0
##   Sega                                     39   35   25   17   23   10
##   Seta Corporation                          0    0    0    0    0    0
##   Seventh Chord                             0    0    0    1    0    0
##   Shogakukan                                0    0    0    0    0    1
##   Simon & Schuster Interactive              0    0    0    0    0    0
##   Slightly Mad Studios                      0    0    0    0    0    3
##   Slitherine Software                       1    0    0    0    0    0
##   SNK                                       0    0    0    0    0    0
##   SNK Playmore                              2    0    0    0    0    0
##   Societa                                   0    0    0    0    0    0
##   Sold Out                                  0    0    0    0    0    0
##   Sonnet                                    0    0    0    0    0    0
##   Sony Computer Entertainment              43   36   24   12   13   10
##   Sony Computer Entertainment America       0    0    0    0    3    0
##   Sony Computer Entertainment Europe        0    0    1    7    4    1
##   Sony Music Entertainment                  0    0    0    0    0    0
##   Sony Online Entertainment                 0    3    0    0    0    0
##   SouthPeak Games                           7    0    0    0    0    0
##   Spike                                     4    2    4    0    0    0
##   SPS                                       0    0    0    0    0    0
##   Square                                    0    0    0    0    0    0
##   Square EA                                 0    0    0    0    0    0
##   Square Enix                              25   22   11   16   26   16
##   SquareSoft                                0    0    0    0    0    0
##   SSI                                       0    0    0    0    0    0
##   Stainless Games                           0    0    0    0    0    0
##   Starfish                                  1    2    1    0    0    0
##   Starpath Corp.                            0    0    0    0    0    0
##   Sting                                     1    0    0    0    0    0
##   Storm City Games                         13    3    0    0    0    0
##   Strategy First                            0    0    0    0    0    0
##   Success                                   0    0    0    1    1    0
##   Summitsoft                                0    0    0    0    0    0
##   Sunflowers                                0    0    0    0    0    0
##   Sunrise Interactive                       0    0    0    0    0    0
##   Sunsoft                                   0    1    0    0    0    0
##   Sweets                                    0    0    0    0    0    0
##   Swing! Entertainment                      0    0    0    0    0    0
##   Syscom                                    0    0    0    0    0    0
##   System 3                                  0    0    0    3    0    0
##   System 3 Arcade Software                  0    0    0    0    0    0
##   System Soft                               2    1    0    0    0    0
##   T&E Soft                                  0    0    0    0    0    0
##   Taito                                     2    0    0    0    0    0
##   Takara                                    0    0    0    0    0    0
##   Takara Tomy                               4    1    0    2    0    1
##   Take-Two Interactive                     35   31   28   16   15   17
##   Takuyo                                    0    1    0    0    0    0
##   TalonSoft                                 0    0    0    0    0    0
##   TDK Core                                  0    0    0    0    0    0
##   TDK Mediactive                            0    0    0    0    0    0
##   Team17 Software                           1    0    0    0    0    0
##   Technos Japan Corporation                 0    0    0    0    0    0
##   TechnoSoft                                0    0    0    0    0    0
##   Tecmo Koei                               19   17   10   19   27   35
##   Telegames                                 1    0    0    0    0    0
##   Telltale Games                            0    3    0    0   11    7
##   Telstar                                   0    0    0    0    0    0
##   Tetris Online                             0    1    0    0    0    0
##   TGL                                       0    0    0    0    0    3
##   The Adventure Company                     0    0    0    0    0    0
##   The Learning Company                      0    0    0    0    0    0
##   THQ                                      57   76    8    1    0    0
##   Tigervision                               0    0    0    0    0    0
##   Time Warner Interactive                   0    0    0    0    0    0
##   Titus                                     0    0    0    0    0    0
##   Tivola                                    0    0    0    0    0    0
##   TOHO                                      0    0    0    0    0    0
##   Tommo                                     0    1    0    0    0    0
##   Tomy Corporation                          1    0    0    0    0    0
##   TopWare Interactive                       0    1    0    0    0    1
##   Touchstone                                0    0    0    0    0    0
##   Tradewest                                 3    0    0    0    0    0
##   Trion Worlds                              0    0    1    3    0    0
##   Tripwire Interactive                      0    1    0    0    0    0
##   Tru Blu Entertainment                     0    0    0    0    2    6
##   Tryfirst                                  0    0    0    0    0    0
##   TYO                                       0    0    0    0    0    0
##   Type-Moon                                 0    0    0    0    1    0
##   U.S. Gold                                 0    0    0    0    0    0
##   Ubisoft                                  72   87   32   29   44   32
##   Ubisoft Annecy                            4    3    4    0    0    0
##   UEP Systems                               0    0    0    0    0    0
##   UFO Interactive                           5    2    1    0    0    0
##   UIG Entertainment                         0    0    0    0    0    0
##   Ultravision                               0    0    0    0    0    0
##   Universal Gamex                           0    0    0    0    0    0
##   Universal Interactive                     0    0    0    0    0    0
##   Unknown                                  18   42    6    2    3    6
##   Valcon Games                              1    0    0    0    0    0
##   ValuSoft                                  0    1    0    0    0    0
##   Valve                                     0    1    0    0    0    0
##   Valve Software                            0    2    0    0    0    0
##   Vap                                       0    0    0    0    0    0
##   Vatical Entertainment                     0    0    0    0    0    0
##   Vic Tokai                                 0    0    0    0    0    0
##   Victor Interactive                        0    0    0    0    0    0
##   Video System                              0    0    0    0    0    0
##   Views                                     0    0    1    0    1    0
##   Vir2L Studios                             0    0    0    0    0    0
##   Virgin Interactive                        0    0    0    0    0    0
##   Virtual Play Games                        2    0    0    0    0    0
##   Visco                                     0    1    0    0    0    0
##   Vivendi Games                             0    0    0    0    0    0
##   Wanadoo                                   0    0    0    0    0    0
##   Warashi                                   0    0    0    0    0    0
##   Wargaming.net                             0    1    0    0    0    0
##   Warner Bros. Interactive Entertainment   33   19   21   26   30   26
##   Warp                                      0    0    0    0    0    0
##   WayForward Technologies                   0    0    0    0    0    1
##   Westwood Studios                          0    0    0    0    0    0
##   White Park Bay Software                   0    0    0    0    0    0
##   Wizard Video Games                        0    0    0    0    0    0
##   Xicat Interactive                         0    0    0    0    0    0
##   Xing Entertainment                        0    0    0    0    0    0
##   Xplosiv                                   0    0    0    0    0    0
##   XS Games                                  1    0    0    0    0    0
##   Xseed Games                               0    0    1    1    1    1
##   Yacht Club Games                          0    0    0    0    0    3
##   Yamasa Entertainment                      0    0    0    0    0    0
##   Yeti                                      4    0    1    0    0    0
##   Yuke's                                    0    0    0    0    0    0
##   Yumedia                                   0    0    0    0    0    0
##   Zenrin                                    0    0    0    0    0    0
##   Zoo Digital Publishing                    0    0    0    0    0    0
##   Zoo Games                                12    2    0    0    0    0
##   Zushi Games                               0    0    0    0    0    0
##                                         Year
## Publisher                                2016 2017 2020 N/A
##   10TACLE Studios                           0    0    0   0
##   1C Company                                0    0    0   0
##   20th Century Fox Video Games              0    0    0   0
##   2D Boy                                    0    0    0   0
##   3DO                                       0    0    0   0
##   49Games                                   0    0    0   0
##   505 Games                                 7    0    0   0
##   5pb                                       2    0    0   0
##   7G//AMES                                  0    0    0   0
##   989 Sports                                0    0    0   0
##   989 Studios                               0    0    0   0
##   Abylight                                  0    0    0   0
##   Acclaim Entertainment                     0    0    0   0
##   Accolade                                  0    0    0   0
##   Ackkstudios                               0    0    0   0
##   Acquire                                   0    0    0   0
##   Activision                               14    0    0   9
##   Activision Blizzard                       0    0    0   0
##   Activision Value                          0    0    0   0
##   Adeline Software                          0    0    0   0
##   Aerosoft                                  0    0    0   0
##   Agatsuma Entertainment                    0    0    0   0
##   Agetec                                    0    0    0   0
##   Aksys Games                               2    0    0   0
##   Alawar Entertainment                      0    0    0   0
##   Alchemist                                 0    0    0   0
##   Alternative Software                      4    0    0   0
##   Altron                                    0    0    0   0
##   Alvion                                    0    0    0   0
##   American Softworks                        0    0    0   0
##   Angel Studios                             0    0    0   0
##   Answer Software                           0    0    0   0
##   AQ Interactive                            0    0    0   0
##   Aqua Plus                                 3    0    0   0
##   Aques                                     0    0    0   0
##   Arc System Works                          0    0    0   0
##   Arena Entertainment                       0    0    0   0
##   Aria                                      0    0    0   0
##   Arika                                     0    0    0   0
##   ArtDink                                   0    0    0   0
##   Aruze Corp                                0    0    0   0
##   ASC Games                                 0    0    0   0
##   Ascaron Entertainment                     0    0    0   0
##   Ascaron Entertainment GmbH                0    0    0   0
##   ASCII Entertainment                       0    0    0   0
##   ASCII Media Works                         0    0    0   0
##   Asgard                                    0    0    0   0
##   ASK                                       0    0    0   0
##   Asmik Ace Entertainment                   0    0    0   0
##   Asmik Corp                                0    0    0   0
##   Aspyr                                     0    0    0   0
##   Astragon                                  1    0    0   0
##   Asylum Entertainment                      0    0    0   0
##   Atari                                     1    0    0  16
##   Athena                                    0    0    0   0
##   Atlus                                     2    0    0   0
##   Avalon Interactive                        0    0    0   0
##   Avanquest                                 2    0    0   1
##   Avanquest Software                        0    0    0   0
##   Axela                                     0    0    0   0
##   BAM! Entertainment                        0    0    0   0
##   Banpresto                                 0    0    0   0
##   Benesse                                   0    0    0   0
##   Berkeley                                  0    0    0   0
##   Bethesda Softworks                        3    0    0   2
##   Big Ben Interactive                       0    0    0   0
##   Big Fish Games                            0    0    0   0
##   Bigben Interactive                        0    0    0   0
##   bitComposer Games                         0    0    0   0
##   Black Bean Games                          0    0    0   4
##   Black Label Games                         0    0    0   0
##   Blast! Entertainment Ltd                  0    0    0   0
##   Blue Byte                                 0    0    0   0
##   BMG Interactive Entertainment             0    0    0   0
##   Bohemia Interactive                       0    0    0   0
##   Bomb                                      0    0    0   0
##   Boost On                                  0    0    0   0
##   BPS                                       0    0    0   0
##   Brash Entertainment                       0    0    0   0
##   Broccoli                                  2    0    0   0
##   BushiRoad                                 0    0    0   0
##   Capcom                                   18    0    0   5
##   Cave                                      0    0    0   0
##   CBS Electronics                           0    0    0   0
##   CCP                                       0    0    0   0
##   CDV Software Entertainment                0    0    0   0
##   ChunSoft                                  0    0    0   0
##   City Interactive                          0    0    0   1
##   Cloud Imperium Games Corporation          0    0    0   0
##   Coconuts Japan                            0    0    0   0
##   Codemasters                               6    0    0   2
##   Codemasters Online                        0    0    0   0
##   CokeM Interactive                         0    0    0   0
##   Coleco                                    0    0    0   0
##   Comfort                                   0    0    0   0
##   Commseed                                  0    0    0   0
##   Compile                                   0    0    0   0
##   Compile Heart                             1    0    0   0
##   Conspiracy Entertainment                  0    0    0   0
##   Core Design Ltd.                          0    0    0   0
##   CPG Products                              0    0    0   0
##   Crave Entertainment                       0    0    0   0
##   Creative Core                             0    0    0   0
##   Crimson Cow                               0    0    0   0
##   Crystal Dynamics                          0    0    0   0
##   CTO SpA                                   0    0    0   0
##   Culture Brain                             0    0    0   0
##   Culture Publishers                        0    0    0   0
##   CyberFront                                0    0    0   0
##   Cygames                                   0    0    0   0
##   D3Publisher                               3    0    0   1
##   Daedalic                                  0    0    0   0
##   Daedalic Entertainment                    0    0    0   0
##   Daito                                     0    0    0   0
##   Data Age                                  0    0    0   0
##   Data Design Interactive                   0    0    0   0
##   Data East                                 0    0    0   0
##   Datam Polystar                            0    0    0   0
##   Deep Silver                              11    0    0   1
##   Destination Software, Inc                 0    0    0   0
##   Destineer                                 0    0    0   0
##   Detn8 Games                               0    0    0   0
##   Devolver Digital                          0    0    0   0
##   DHM Interactive                           0    0    0   0
##   DigiCube                                  0    0    0   0
##   Disney Interactive Studios                0    0    0   4
##   Dorart                                    0    0    0   0
##   dramatic create                           2    0    0   0
##   DreamCatcher Interactive                  0    0    0   0
##   DreamWorks Interactive                    0    0    0   0
##   DSI Games                                 0    0    0   0
##   DTP Entertainment                         0    0    0   1
##   Dusenberry Martin Racing                  2    0    0   0
##   EA Games                                  0    0    0   0
##   Easy Interactive                          0    0    0   0
##   Ecole                                     0    0    0   0
##   Edia                                      0    0    0   0
##   Eidos Interactive                         0    0    0   2
##   Electronic Arts                          20    0    0  12
##   Electronic Arts Victor                    0    0    0   0
##   Elf                                       0    0    0   0
##   Elite                                     0    0    0   0
##   Empire Interactive                        0    0    0   1
##   Encore                                    0    0    0   0
##   Enix Corporation                          0    0    0   0
##   Enjoy Gaming ltd.                         0    0    0   0
##   Enterbrain                                0    0    0   0
##   EON Digital Entertainment                 0    0    0   0
##   Epic Games                                1    0    0   0
##   Epoch                                     0    0    0   0
##   Ertain                                    0    0    0   0
##   ESP                                       0    0    0   0
##   Essential Games                           0    0    0   0
##   Evolution Games                           0    0    0   0
##   Evolved Games                             0    0    0   0
##   Excalibur Publishing                      0    0    0   0
##   Experience Inc.                           1    0    0   0
##   Extreme Entertainment Group               0    0    0   0
##   Falcom Corporation                        0    0    0   0
##   Fields                                    0    0    0   0
##   Flashpoint Games                          0    0    0   0
##   Flight-Plan                               0    0    0   0
##   Focus Home Interactive                    5    0    0   2
##   Focus Multimedia                          0    0    0   0
##   fonfun                                    0    0    0   0
##   Foreign Media Games                       0    0    0   0
##   Fortyfive                                 0    0    0   0
##   Fox Interactive                           0    0    0   0
##   From Software                             0    0    0   0
##   Fuji                                      0    0    0   0
##   Funbox Media                              0    0    0   0
##   Funcom                                    0    0    0   0
##   FunSoft                                   0    0    0   0
##   Funsta                                    0    0    0   1
##   FuRyu                                     3    0    0   0
##   FuRyu Corporation                         0    0    0   0
##   G.Rev                                     0    0    0   0
##   Gaga                                      0    0    0   0
##   Gainax Network Systems                    0    0    0   0
##   Gakken                                    0    0    0   0
##   Game Arts                                 0    0    0   0
##   Game Factory                              0    0    0   0
##   Game Life                                 0    0    0   0
##   Gamebridge                                0    0    0   0
##   Gamecock                                  0    0    0   0
##   Gameloft                                  0    0    0   0
##   GameMill Entertainment                    0    0    0   0
##   GameTek                                   0    0    0   0
##   Gathering of Developers                   0    0    0   0
##   General Entertainment                     0    0    0   0
##   Genki                                     0    0    0   0
##   Genterprise                               0    0    0   0
##   Ghostlight                                0    0    0   1
##   Giga                                      0    0    0   0
##   Giza10                                    0    0    0   0
##   Glams                                     0    0    0   0
##   Global A Entertainment                    0    0    0   0
##   Global Star                               0    0    0   0
##   GN Software                               0    0    0   0
##   GOA                                       0    0    0   0
##   Gotham Games                              0    0    0   0
##   Graffiti                                  0    0    0   0
##   Grand Prix Games                          0    0    0   0
##   Graphsim Entertainment                    0    0    0   0
##   Gremlin Interactive Ltd                   0    0    0   0
##   Griffin International                     0    0    0   0
##   Groove Games                              0    0    0   0
##   GSP                                       0    0    0   0
##   GT Interactive                            0    0    0   0
##   GungHo                                    1    0    0   0
##   Gust                                      0    0    0   0
##   Hackberry                                 0    0    0   0
##   HAL Laboratory                            0    0    0   0
##   Hamster Corporation                       0    0    0   0
##   Happinet                                  1    0    0   0
##   Harmonix Music Systems                    0    0    0   0
##   Hasbro Interactive                        0    0    0   0
##   Havas Interactive                         0    0    0   0
##   Headup Games                              0    0    0   0
##   Hearty Robin                              0    0    0   0
##   Hect                                      0    0    0   0
##   Hello Games                               1    0    0   0
##   Her Interactive                           0    0    0   0
##   Hip Interactive                           0    0    0   0
##   HMH Interactive                           0    0    0   0
##   Home Entertainment Suppliers              0    0    0   1
##   Hudson Entertainment                      0    0    0   0
##   Hudson Soft                               0    0    0   0
##   Human Entertainment                       0    0    0   0
##   HuneX                                     0    0    0   0
##   Iceberg Interactive                       0    0    0   0
##   id Software                               0    0    0   0
##   Idea Factory                              7    1    0   1
##   Idea Factory International                0    0    0   0
##   IE Institute                              0    0    0   0
##   Ignition Entertainment                    0    0    0   2
##   Illusion Softworks                        0    0    0   0
##   Imadio                                    0    0    0   0
##   Image Epoch                               0    0    0   0
##   imageepoch Inc.                           0    0    0   0
##   Imageworks                                0    0    0   0
##   Imagic                                    0    0    0   0
##   Imagineer                                 0    0    0   0
##   Imax                                      0    0    0   0
##   Indie Games                               0    0    0   0
##   Infogrames                                0    0    0   1
##   Insomniac Games                           3    0    0   0
##   Interchannel                              0    0    0   0
##   Interchannel-Holon                        0    0    0   0
##   Intergrow                                 0    0    0   0
##   Interplay                                 0    0    0   0
##   Interplay Productions                     0    0    0   0
##   Interworks Unlimited, Inc.                0    0    0   0
##   Inti Creates                              1    0    0   0
##   Introversion Software                     1    0    0   0
##   inXile Entertainment                      0    0    0   0
##   Irem Software Engineering                 0    0    0   0
##   ITT Family Games                          0    0    0   0
##   Ivolgamus                                 0    0    0   0
##   iWin                                      0    0    0   0
##   Jack of All Games                         0    0    0   0
##   Jaleco                                    0    0    0   0
##   Jester Interactive                        0    0    0   0
##   Jorudan                                   0    0    0   0
##   JoWood Productions                        0    0    0   0
##   Just Flight                               0    0    0   0
##   JVC                                       0    0    0   0
##   Kadokawa Games                            2    0    0   0
##   Kadokawa Shoten                           0    0    0   0
##   Kaga Create                               0    0    0   0
##   Kalypso Media                             0    0    0   3
##   Kamui                                     0    0    0   0
##   Kando Games                               0    0    0   0
##   Karin Entertainment                       0    0    0   0
##   Kemco                                     0    0    0   0
##   KID                                       0    0    0   0
##   Kids Station                              0    0    0   0
##   King Records                              0    0    0   0
##   Knowledge Adventure                       0    0    0   0
##   Koch Media                                3    0    0   0
##   Kokopeli Digital Studios                  0    0    0   0
##   Konami Digital Entertainment              8    0    0   9
##   Kool Kizz                                 0    0    0   0
##   KSS                                       0    0    0   0
##   Laguna                                    0    0    0   0
##   Legacy Interactive                        0    0    0   0
##   LEGO Media                                0    0    0   0
##   Level 5                                   2    0    0   0
##   Lexicon Entertainment                     0    0    0   0
##   Licensed 4U                               0    0    0   0
##   Lighthouse Interactive                    0    0    0   0
##   Liquid Games                              0    0    0   0
##   Little Orbit                              0    0    0   0
##   Locus                                     0    0    0   0
##   LSP Games                                 0    0    0   0
##   LucasArts                                 0    0    0   1
##   Mad Catz                                  0    0    0   0
##   Magical Company                           0    0    0   0
##   Magix                                     0    0    0   0
##   Majesco Entertainment                     0    0    0   2
##   Mamba Games                               0    0    0   0
##   Marvel Entertainment                      0    0    0   0
##   Marvelous Entertainment                   1    0    0   0
##   Marvelous Games                           0    0    0   0
##   Marvelous Interactive                     1    0    0   0
##   Masque Publishing                         0    0    0   0
##   Mastertronic                              0    0    0   0
##   Mastiff                                   0    0    0   0
##   Mattel Interactive                        0    0    0   0
##   Max Five                                  0    0    0   0
##   Maximum Family Games                      0    0    0   0
##   Maxis                                     0    0    0   0
##   MC2 Entertainment                         0    0    0   0
##   Media Entertainment                       0    0    0   0
##   Media Factory                             0    0    0   0
##   Media Rings                               0    0    0   0
##   Media Works                               0    0    0   0
##   MediaQuest                                0    0    0   0
##   Men-A-Vision                              0    0    0   0
##   Mentor Interactive                        0    0    0   0
##   Mercury Games                             0    0    0   0
##   Merscom LLC                               0    0    0   0
##   Metro 3D                                  0    0    0   0
##   Michaelsoft                               0    0    0   0
##   Micro Cabin                               0    0    0   0
##   Microids                                  2    0    0   0
##   Microprose                                0    0    0   1
##   Microsoft Game Studios                    4    0    0   0
##   Midas Interactive Entertainment           0    0    0   0
##   Midway Games                              0    0    0   2
##   Milestone                                 0    0    0   0
##   Milestone S.r.l                           2    0    0   0
##   Milestone S.r.l.                          3    0    0   0
##   Minato Station                            0    0    0   0
##   Mindscape                                 0    0    0   0
##   Mirai Shounen                             0    0    0   0
##   Misawa                                    0    0    0   0
##   Mitsui                                    0    0    0   0
##   mixi, Inc                                 0    0    0   0
##   MLB.com                                   1    0    0   0
##   Mojang                                    0    0    0   0
##   Monte Christo Multimedia                  0    0    0   0
##   Moss                                      0    0    0   0
##   MTO                                       0    0    0   0
##   MTV Games                                 0    0    0   1
##   Mud Duck Productions                      0    0    0   0
##   Mumbo Jumbo                               0    0    0   0
##   Mycom                                     0    0    0   0
##   Myelin Media                              0    0    0   0
##   Mystique                                  0    0    0   0
##   N/A                                       2    0    0  22
##   Namco Bandai Games                       40    0    0   4
##   Natsume                                   0    0    0   0
##   Navarre Corp                              0    0    0   0
##   Naxat Soft                                0    0    0   0
##   NCS                                       0    0    0   0
##   NCSoft                                    0    0    0   0
##   NDA Productions                           0    0    0   0
##   NEC                                       0    0    0   0
##   NEC Interchannel                          0    0    0   0
##   Neko Entertainment                        0    0    0   0
##   NetRevo                                   0    0    0   0
##   New                                       0    0    0   0
##   New World Computing                       0    0    0   0
##   NewKidCo                                  0    0    0   0
##   Nexon                                     0    0    0   0
##   Nichibutsu                                0    0    0   0
##   Nihon Falcom Corporation                  3    0    0   0
##   Nintendo                                 10    0    0   7
##   Nippon Amuse                              0    0    0   0
##   Nippon Columbia                           1    0    0   0
##   Nippon Ichi Software                     12    0    0   1
##   Nippon Telenet                            0    0    0   0
##   Nitroplus                                 0    0    0   0
##   Nobilis                                   0    0    0   0
##   Nordcurrent                               0    0    0   0
##   Nordic Games                              3    0    0   0
##   NovaLogic                                 0    0    0   0
##   Number None                               0    0    0   0
##   O-Games                                   0    0    0   0
##   O3 Entertainment                          0    0    0   0
##   Ocean                                     0    0    0   0
##   Office Create                             0    0    0   0
##   On Demand                                 0    0    0   0
##   Ongakukan                                 0    0    0   0
##   Origin Systems                            0    0    0   0
##   Otomate                                   0    0    0   0
##   Oxygen Interactive                        0    0    0   1
##   P2 Games                                  0    0    0   0
##   Pacific Century Cyber Works               0    0    0   0
##   Pack-In-Video                             0    0    0   0
##   Pack In Soft                              0    0    0   0
##   Palcom                                    0    0    0   0
##   Panther Software                          0    0    0   0
##   Paon                                      0    0    0   0
##   Paon Corporation                          0    0    0   0
##   Paradox Development                       1    0    0   0
##   Paradox Interactive                       2    0    0   0
##   Parker Bros.                              0    0    0   0
##   Performance Designed Products             0    0    0   0
##   Phantagram                                0    0    0   0
##   Phantom EFX                               0    0    0   0
##   Phenomedia                                0    0    0   0
##   Phoenix Games                             0    0    0   0
##   Piacci                                    0    0    0   0
##   Pinnacle                                  0    0    0   0
##   Pioneer LDC                               0    0    0   0
##   Play It                                   0    0    0   0
##   Playlogic Game Factory                    0    0    0   0
##   Playmates                                 0    0    0   0
##   Playmore                                  0    0    0   0
##   PlayV                                     0    0    0   0
##   Plenty                                    0    0    0   0
##   PM Studios                                0    0    0   0
##   Pony Canyon                               0    0    0   0
##   PopCap Games                              0    0    0   0
##   Popcorn Arcade                            0    0    0   0
##   PopTop Software                           0    0    0   0
##   Pow                                       0    0    0   0
##   PQube                                     5    0    0   0
##   Princess Soft                             0    0    0   0
##   Prototype                                 1    0    0   0
##   Psygnosis                                 0    0    0   0
##   Quelle                                    0    0    0   0
##   Quest                                     0    0    0   0
##   Quinrose                                  0    0    0   0
##   Quintet                                   0    0    0   0
##   Rage Software                             0    0    0   0
##   Rain Games                                0    0    0   0
##   Rebellion                                 0    0    0   0
##   Rebellion Developments                    0    0    0   0
##   RED Entertainment                         0    0    0   0
##   Red Orb                                   0    0    0   0
##   Red Storm Entertainment                   0    0    0   0
##   RedOctane                                 0    0    0   0
##   Reef Entertainment                        0    0    0   0
##   responDESIGN                              0    0    0   0
##   Revolution (Japan)                        0    0    0   0
##   Revolution Software                       0    0    0   0
##   Rising Star Games                         1    0    0   1
##   Riverhillsoft                             0    0    0   0
##   Rocket Company                            1    0    0   0
##   Rondomedia                                0    0    0   0
##   RTL                                       0    0    0   0
##   Russel                                    0    0    0   0
##   Sammy Corporation                         0    0    0   0
##   Saurus                                    0    0    0   0
##   Scholastic Inc.                           0    0    0   0
##   SCi                                       0    0    0   0
##   Screenlife                                1    0    0   0
##   SCS Software                              0    0    0   0
##   Sears                                     0    0    0   1
##   Sega                                      8    2    0   7
##   Seta Corporation                          0    0    0   0
##   Seventh Chord                             0    0    0   0
##   Shogakukan                                0    0    0   0
##   Simon & Schuster Interactive              0    0    0   0
##   Slightly Mad Studios                      0    0    0   0
##   Slitherine Software                       0    0    0   1
##   SNK                                       0    0    0   0
##   SNK Playmore                              0    0    0   0
##   Societa                                   0    0    0   0
##   Sold Out                                  1    0    0   0
##   Sonnet                                    0    0    0   0
##   Sony Computer Entertainment               5    0    0   1
##   Sony Computer Entertainment America       0    0    0   0
##   Sony Computer Entertainment Europe        0    0    0   0
##   Sony Music Entertainment                  0    0    0   0
##   Sony Online Entertainment                 0    0    0   0
##   SouthPeak Games                           0    0    0   0
##   Spike                                     0    0    0   0
##   SPS                                       0    0    0   0
##   Square                                    0    0    0   0
##   Square EA                                 0    0    0   0
##   Square Enix                              20    0    0   2
##   SquareSoft                                0    0    0   0
##   SSI                                       0    0    0   0
##   Stainless Games                           1    0    0   0
##   Starfish                                  0    0    0   0
##   Starpath Corp.                            0    0    0   0
##   Sting                                     0    0    0   0
##   Storm City Games                          0    0    0   0
##   Strategy First                            0    0    0   0
##   Success                                   0    0    0   0
##   Summitsoft                                0    0    0   0
##   Sunflowers                                0    0    0   0
##   Sunrise Interactive                       0    0    0   0
##   Sunsoft                                   0    0    0   0
##   Sweets                                    0    0    0   0
##   Swing! Entertainment                      0    0    0   0
##   Syscom                                    0    0    0   0
##   System 3                                  0    0    0   0
##   System 3 Arcade Software                  0    0    0   1
##   System Soft                               0    0    0   0
##   T&E Soft                                  0    0    0   0
##   Taito                                     0    0    0   0
##   Takara                                    0    0    0   0
##   Takara Tomy                               0    0    0   0
##   Take-Two Interactive                     12    0    0   1
##   Takuyo                                    0    0    0   0
##   TalonSoft                                 0    0    0   0
##   TDK Core                                  0    0    0   0
##   TDK Mediactive                            0    0    0   0
##   Team17 Software                           0    0    0   0
##   Technos Japan Corporation                 0    0    0   0
##   TechnoSoft                                0    0    0   0
##   Tecmo Koei                               17    0    0   0
##   Telegames                                 0    0    0   0
##   Telltale Games                            4    0    0   0
##   Telstar                                   0    0    0   0
##   Tetris Online                             0    0    0   0
##   TGL                                       0    0    0   0
##   The Adventure Company                     0    0    0   0
##   The Learning Company                      0    0    0   0
##   THQ                                       0    0    0   3
##   Tigervision                               0    0    0   0
##   Time Warner Interactive                   0    0    0   0
##   Titus                                     0    0    0   0
##   Tivola                                    0    0    0   0
##   TOHO                                      0    0    0   0
##   Tommo                                     0    0    0   0
##   Tomy Corporation                          0    0    0   0
##   TopWare Interactive                       0    0    0   2
##   Touchstone                                0    0    0   0
##   Tradewest                                 0    0    0   0
##   Trion Worlds                              0    0    0   0
##   Tripwire Interactive                      0    0    0   0
##   Tru Blu Entertainment                     0    0    0   0
##   Tryfirst                                  0    0    0   0
##   TYO                                       0    0    0   0
##   Type-Moon                                 0    0    0   0
##   U.S. Gold                                 0    0    0   0
##   Ubisoft                                  13    0    1   3
##   Ubisoft Annecy                            0    0    0   0
##   UEP Systems                               0    0    0   0
##   UFO Interactive                           0    0    0   0
##   UIG Entertainment                         1    0    0   0
##   Ultravision                               0    0    0   1
##   Universal Gamex                           0    0    0   0
##   Universal Interactive                     0    0    0   1
##   Unknown                                   4    0    0 103
##   Valcon Games                              0    0    0   0
##   ValuSoft                                  0    0    0   0
##   Valve                                     0    0    0   0
##   Valve Software                            0    0    0   0
##   Vap                                       0    0    0   0
##   Vatical Entertainment                     0    0    0   0
##   Vic Tokai                                 0    0    0   0
##   Victor Interactive                        0    0    0   0
##   Video System                              0    0    0   0
##   Views                                     0    0    0   0
##   Vir2L Studios                             0    0    0   0
##   Virgin Interactive                        0    0    0   0
##   Virtual Play Games                        0    0    0   0
##   Visco                                     0    0    0   0
##   Vivendi Games                             0    0    0   3
##   Wanadoo                                   0    0    0   0
##   Warashi                                   0    0    0   0
##   Wargaming.net                             0    0    0   0
##   Warner Bros. Interactive Entertainment   14    0    0  15
##   Warp                                      0    0    0   0
##   WayForward Technologies                   0    0    0   0
##   Westwood Studios                          0    0    0   0
##   White Park Bay Software                   0    0    0   0
##   Wizard Video Games                        0    0    0   0
##   Xicat Interactive                         0    0    0   0
##   Xing Entertainment                        0    0    0   0
##   Xplosiv                                   0    0    0   0
##   XS Games                                  0    0    0   0
##   Xseed Games                               0    0    0   0
##   Yacht Club Games                          0    0    0   0
##   Yamasa Entertainment                      0    0    0   0
##   Yeti                                      1    0    0   0
##   Yuke's                                    0    0    0   0
##   Yumedia                                   0    0    0   0
##   Zenrin                                    0    0    0   0
##   Zoo Digital Publishing                    0    0    0   0
##   Zoo Games                                 0    0    0   0
##   Zushi Games                               0    0    0   0
prop.table(myTable,1)
##                                         Year
## Publisher                                        1980         1981
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.6000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0051282051 0.0061538462
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0110192837 0.0303030303
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.8000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.5000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 1.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.5833333333
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 1.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 1.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0000000000 0.0000000000
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0000000000 0.0000000000
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.4285714286
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 1.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0526315789
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.6666666667
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0049261084
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1982         1983
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.4000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0041025641 0.0030769231
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        1.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0385674931 0.0165289256
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.1666666667 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   1.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        1.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.2000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           1.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.5000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       1.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0833333333 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0000000000 0.0000000000
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0000000000 0.0085348506
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.2857142857 0.2857142857
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 1.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0015649452 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.3333333333 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        1.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     1.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1984         1985
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0010256410 0.0020512821
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0026246719
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0123456790 0.0123456790
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 1.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0032188841 0.0021459227
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0128022760 0.0099573257
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1986         1987
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.0020512821
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0055096419 0.0110192837
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0078740157 0.0026246719
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0333333333
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0493827160 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0048076923 0.0012019231
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0021459227 0.0021459227
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0085348506 0.0056899004
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0192307692
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1988         1989
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0020512821 0.0010256410
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0027548209
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0052493438 0.0026246719
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0333333333 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 1.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0012019231
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.3333333333 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0021459227 0.0010729614
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0085348506 0.0128022760
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 1.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0192307692 0.0192307692
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1990         1991
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.0000000000
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.3333333333
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0273972603
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.5000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0078740157 0.0078740157
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.2500000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0333333333 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.1428571429
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0123456790
##   Human Entertainment                    0.0000000000 0.0769230769
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.1875000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0476190476
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0012019231 0.0048076923
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0021459227 0.0032188841
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0099573257 0.0184921764
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0015649452 0.0015649452
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.1666666667
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0192307692 0.0384615385
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0059171598
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1992         1993
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0054347826
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.0000000000
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    1.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0136986301 0.0136986301
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0104986877 0.0183727034
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0555555556 0.0555555556
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.5000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0007401925 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0333333333 0.0333333333
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.1428571429 0.1428571429
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.3333333333
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0246913580 0.0370370370
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            1.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 1.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0333333333
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0036057692 0.0036057692
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.2500000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.3333333333 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.5000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0021459227 0.0085836910
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    1.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0142247511 0.0128022760
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0714285714 0.0714285714
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0909090909
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0078247261 0.0093896714
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0909090909
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0384615385 0.0384615385
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 1.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0625000000 0.0625000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0029585799 0.0059171598
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0526315789
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 1.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.1111111111
##   Video System                           0.2500000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0161290323 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1994         1995
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0380434783 0.0597826087
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0010256410 0.0010256410
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.3333333333 0.3333333333
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.1111111111 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0500000000 0.1000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.5000000000 0.5000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0298507463 0.0746268657
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0684931507 0.0684931507
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.5000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0026246719 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0555555556 0.0555555556
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.1666666667
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.5000000000 0.5000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.6000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.2500000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.5000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0014803849 0.0081421170
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0666666667 0.0666666667
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.2857142857
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0666666667 0.0000000000
##   Fuji                                   0.0000000000 1.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              1.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 1.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0222222222
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0625000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.3333333333 0.3333333333
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0617283951 0.0493827160
##   Human Entertainment                    0.1538461538 0.1538461538
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 1.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0161290323 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.1000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0869565217
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.1250000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 1.0000000000
##   Konami Digital Entertainment           0.0084134615 0.0144230769
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.2500000000 0.5000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0111111111 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.3333333333 0.3333333333
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 1.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.3333333333 0.3333333333
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.1666666667
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0312500000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.5000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0064377682 0.0118025751
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.3333333333
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 1.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 1.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0113798009 0.0142247511
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.1428571429
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 1.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 1.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 1.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0312500000 0.2187500000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 1.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.5000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 1.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0406885759 0.0422535211
##   Seta Corporation                       0.0000000000 0.6666666667
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.4000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.1818181818 0.0909090909
##   SNK Playmore                           0.0000000000 0.0555555556
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.5000000000
##   Sony Computer Entertainment            0.0102489019 0.0453879941
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.1666666667 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0384615385 0.0769230769
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.3000000000 0.1000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0526315789 0.1052631579
##   Takara                                 0.1250000000 0.0625000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 1.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0029585799 0.0088757396
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.3333333333
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0027972028
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.2000000000 0.2000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0555555556
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.5000000000
##   Ubisoft                                0.0000000000 0.0010857763
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    1.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.2222222222
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0483870968 0.0645161290
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0060975610
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 1.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1996         1997
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.1428571429
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0706521739 0.0543478261
##   Accolade                               0.3333333333 0.3333333333
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0030769231 0.0030769231
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       1.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.1250000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     1.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 1.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.2222222222 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.3333333333 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.2500000000 0.3000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    1.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.3333333333 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0298507463 0.0298507463
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0273972603 0.0273972603
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.4285714286 0.4285714286
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0078740157 0.0314960630
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0555555556 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.5000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0131578947
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.1666666667 0.5000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.4000000000 0.0000000000
##   CTO SpA                                0.5000000000 0.5000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0202020202 0.0252525253
##   Electronic Arts                        0.0096225019 0.0185048113
##   Electronic Arts Victor                 1.0000000000 0.0000000000
##   Elf                                    0.5000000000 0.5000000000
##   Elite                                  1.0000000000 0.0000000000
##   Empire Interactive                     0.0192307692 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.1333333333 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.1428571429 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.2000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.1250000000 0.2500000000
##   From Software                          0.0666666667 0.0666666667
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                1.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   1.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.3333333333 0.3333333333
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.1555555556 0.3555555556
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0769230769 0.0769230769
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.1875000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           1.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0909090909
##   Hudson Soft                            0.0617283951 0.0740740741
##   Human Entertainment                    0.0769230769 0.1538461538
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 1.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.2500000000 0.1250000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0161290323 0.0161290323
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0666666667 0.1333333333
##   Interplay Productions                  0.0000000000 1.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0434782609 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.3750000000 0.1250000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0200000000 0.0200000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0952380952
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0192307692 0.0204326923
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    1.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0111111111 0.0111111111
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.3333333333 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.2000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.3333333333 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.3333333333 0.1666666667
##   Microsoft Game Studios                 0.0052910053 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0416666667
##   Midway Games                           0.0101010101 0.0202020202
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0625000000 0.0312500000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0085836910 0.0139484979
##   Natsume                                0.0588235294 0.0588235294
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.3333333333 0.3333333333
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.6666666667 0.0000000000
##   NEC Interchannel                       0.1250000000 0.2500000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0241820768 0.0184921764
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         1.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.1428571429 0.2142857143
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 1.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 1.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.5000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 1.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.2187500000 0.2812500000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.5000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0234741784 0.0172143975
##   Seta Corporation                       0.3333333333 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.2272727273 0.0454545455
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                1.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.5000000000 0.0000000000
##   Sony Computer Entertainment            0.0409956076 0.0497803807
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    1.0000000000 0.0000000000
##   Square                                 0.0000000000 0.1666666667
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0769230769 0.1538461538
##   SSI                                    1.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.1000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.1000000000 0.1000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0526315789
##   Takara                                 0.0625000000 0.1250000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0072639225
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0118343195 0.0118343195
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0041958042
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.6000000000 0.0000000000
##   Titus                                  0.0000000000 0.0526315789
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.1111111111 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.5000000000 0.0000000000
##   Ubisoft                                0.0010857763 0.0010857763
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 1.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.5000000000 0.5000000000
##   Victor Interactive                     0.0000000000 0.1111111111
##   Video System                           0.0000000000 0.2500000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.2096774194 0.1451612903
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0121951220
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 1.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 1.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1998         1999
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0555555556 0.1666666667
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 1.0000000000
##   989 Studios                            0.4285714286 0.4285714286
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.1250000000 0.0652173913
##   Accolade                               0.0000000000 0.3333333333
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0143589744 0.0082051282
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.2500000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0434782609
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.1111111111 0.0000000000
##   Aruze Corp                             0.0000000000 0.3333333333
##   ASC Games                              0.3333333333 0.3333333333
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.1000000000 0.1500000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0055096419 0.0165289256
##   Athena                                 0.0000000000 0.5000000000
##   Atlus                                  0.0298507463 0.0298507463
##   Avalon Interactive                     0.0000000000 0.1666666667
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  1.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0410958904 0.0410958904
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.1428571429 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0183727034 0.0052493438
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0555555556 0.0555555556
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0263157895 0.0131578947
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.1666666667 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0281690141 0.0845070423
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     1.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0054347826 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.5000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0045871560
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 1.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0505050505 0.0404040404
##   Electronic Arts                        0.0222057735 0.0192450037
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0192307692 0.0192307692
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.1333333333
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 1.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.6000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        1.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              1.0000000000 0.0000000000
##   Fox Interactive                        0.2500000000 0.2500000000
##   From Software                          0.1333333333 0.0666666667
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 1.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                1.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  1.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.1250000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.3333333333 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.3777777778 0.0888888889
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.1875000000 0.1875000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0909090909 0.0909090909
##   Hudson Soft                            0.0123456790 0.0123456790
##   Human Entertainment                    0.2307692308 0.1538461538
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.1250000000 0.1875000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.1129032258 0.0967741935
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.2000000000 0.1000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0833333333 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0869565217 0.0869565217
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.3333333333
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.1250000000 0.1250000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0800000000 0.0200000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0952380952 0.1904761905
##   KID                                    0.2500000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0288461538 0.0384615385
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.5714285714
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  1.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0222222222
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        1.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.1666666667
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.4000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.1666666667
##   Microsoft Game Studios                 0.0000000000 0.0052910053
##   Midas Interactive Entertainment        0.0416666667 0.0416666667
##   Midway Games                           0.0303030303 0.0505050505
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0625000000 0.0312500000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 1.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.1250000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0096566524 0.0150214592
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.3333333333 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.2500000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.2222222222 0.2222222222
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0241820768 0.0284495021
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0095238095 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.3571428571 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 1.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.2500000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 1.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.1250000000 0.0937500000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                1.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.6666666667
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 1.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0219092332 0.0140845070
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.1363636364 0.0909090909
##   SNK Playmore                           0.0555555556 0.1111111111
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0439238653 0.0366032211
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0270270270
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.3333333333
##   Square EA                              0.0000000000 1.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.1538461538 0.1538461538
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.1000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0526315789 0.0526315789
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.1000000000 0.1000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.1666666667 0.0000000000
##   Syscom                                 0.5000000000 0.5000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.1052631579
##   Takara                                 0.1250000000 0.0625000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0145278450 0.0096852300
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             1.0000000000 0.0000000000
##   Tecmo Koei                             0.0118343195 0.0147928994
##   Telegames                              0.0000000000 0.1250000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.6666666667 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0153846154 0.0111888112
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.1052631579 0.2105263158
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0555555556 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    1.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0032573290 0.0141150923
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0049261084 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.1111111111 0.0000000000
##   Video System                           0.2500000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.1612903226 0.0967741935
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0182926829 0.0060975610
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 1.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2000         2001
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.2777777778 0.3055555556
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0815217391 0.1304347826
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0133333333 0.0235897436
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0344827586
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 1.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.2222222222
##   Aruze Corp                             0.6666666667 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0500000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.3333333333 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0055096419 0.0247933884
##   Athena                                 0.0000000000 0.5000000000
##   Atlus                                  0.0149253731 0.0149253731
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0285714286 0.2000000000
##   Banpresto                              0.0136986301 0.0547945205
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 1.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 1.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0131233596 0.0262467192
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0555555556 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0131578947 0.0263157895
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.1428571429
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0422535211 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0054347826 0.0108695652
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0833333333
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0588235294
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0454545455 0.0505050505
##   Electronic Arts                        0.0229459660 0.0318282754
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0769230769 0.0384615385
##   Encore                                 0.0000000000 0.2500000000
##   Enix Corporation                       0.1000000000 0.1000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.1333333333
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.1428571429 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.1250000000 0.0000000000
##   From Software                          0.0000000000 0.0666666667
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.3333333333
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.1250000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0769230769
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.2500000000 0.0625000000
##   Havas Interactive                      1.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.2727272727
##   Hudson Soft                            0.0123456790 0.0123456790
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0625000000 0.0625000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.1774193548 0.1612903226
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.1000000000 0.1000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.1250000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0476190476
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0372596154 0.0468750000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.2857142857
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0111111111 0.0444444444
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.5000000000
##   Majesco Entertainment                  0.0000000000 0.0326086957
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.1666666667 0.0000000000
##   Max Five                               0.0000000000 1.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.5000000000 0.5000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.2500000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0052910053 0.0529100529
##   Midas Interactive Entertainment        0.2916666667 0.1666666667
##   Midway Games                           0.0606060606 0.0555555556
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0312500000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0150214592 0.0128755365
##   Natsume                                0.0588235294 0.0588235294
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.2500000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.1111111111
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0327169275 0.0312944523
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.2500000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            1.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0312500000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.2857142857
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.5000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.3333333333
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.1818181818
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0172143975 0.0140845070
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0909090909 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0468521230 0.0556368960
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0666666667
##   Sony Music Entertainment               0.0000000000 1.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0270270270
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.1666666667
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0769230769 0.0192307692
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.1000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 1.0000000000
##   Success                                0.0526315789 0.0526315789
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.5000000000 0.0000000000
##   Sunsoft                                0.1000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.3333333333 0.3333333333
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0526315789
##   Takara                                 0.0000000000 0.1250000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0145278450 0.0290556901
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 1.0000000000
##   TDK Core                               0.2000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.1388888889
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0295857988 0.0118343195
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   1.0000000000 0.0000000000
##   THQ                                    0.0209790210 0.0503496503
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.1052631579 0.2105263158
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0228013029 0.0271444083
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0869565217
##   Unknown                                0.0000000000 0.0147783251
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  1.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.1111111111 0.2222222222
##   Video System                           0.2500000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0967741935 0.0967741935
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0060975610 0.0243902439
##   Wanadoo                                0.0000000000 0.2000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2002         2003
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.1111111111 0.0833333333
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0052083333 0.0052083333
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.1793478261 0.1521739130
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0512820513 0.0348717949
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0344827586 0.0689655172
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.2500000000 0.2500000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.3333333333 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.1250000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.1294765840 0.1101928375
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0447761194 0.0447761194
##   Avalon Interactive                     0.1666666667 0.1666666667
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.5142857143 0.1714285714
##   Banpresto                              0.0547945205 0.0821917808
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0140845070 0.0140845070
##   Big Ben Interactive                    0.1428571429 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      1.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0498687664 0.0813648294
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 1.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0555555556 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0328947368 0.0460526316
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0714285714 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0281690141 0.0140845070
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.5000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0833333333 0.0833333333
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               1.0000000000 0.0000000000
##   Disney Interactive Studios             0.0045871560 0.0091743119
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.1176470588
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0757575758 0.0858585859
##   Electronic Arts                        0.0651369356 0.0629163583
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.1538461538 0.1153846154
##   Encore                                 0.0000000000 0.5000000000
##   Enix Corporation                       0.1666666667 0.0333333333
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.2000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.2000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0666666667 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0312500000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.2222222222
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.2500000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0666666667
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.1428571429 0.7142857143
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0769230769 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.5000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0909090909
##   Hudson Soft                            0.0493827160 0.0370370370
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0077519380 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0327868852 0.0655737705
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.3548387097 0.0322580645
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0666666667 0.0666666667
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0869565217 0.3043478261
##   Jester Interactive                     0.3333333333 0.3333333333
##   Jorudan                                0.3333333333 0.3333333333
##   JoWood Productions                     0.0454545455 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.1904761905 0.2857142857
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           1.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.5000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0661057692 0.0324519231
##   Kool Kizz                              0.0000000000 1.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.1428571429 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.5000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.2500000000 0.7500000000
##   LucasArts                              0.0444444444 0.0888888889
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0108695652 0.0217391304
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0178571429 0.0178571429
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    1.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.3333333333 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.1666666667 0.2500000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.3000000000 0.2000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.1058201058 0.1481481481
##   Midas Interactive Entertainment        0.0833333333 0.0000000000
##   Midway Games                           0.1666666667 0.1212121212
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0625000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.3333333333
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0268240343 0.0246781116
##   Natsume                                0.1764705882 0.0588235294
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        1.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.1111111111 0.3333333333
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0312944523 0.0384068279
##   Nippon Amuse                           1.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            1.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             1.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.1428571429 0.1428571429
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               1.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.3333333333 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.7142857143 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.5000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.4545454545 0.0909090909
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0588235294 0.4705882353
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0610328638 0.0500782473
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           1.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0439238653 0.0468521230
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.2500000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0270270270 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0257510730
##   SquareSoft                             0.0384615385 0.0192307692
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0526315789 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.1666666667 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.1578947368 0.0526315789
##   Takara                                 0.1250000000 0.0625000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0193704600 0.0338983051
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.2000000000 0.0000000000
##   TDK Mediactive                         0.4444444444 0.3888888889
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0325443787 0.0266272189
##   Telegames                              0.0000000000 0.2500000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0769230769 0.0895104895
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.2105263158 0.0526315789
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.2777777778
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0477741585 0.0510314875
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.6086956522 0.2608695652
##   Unknown                                0.0147783251 0.0049261084
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.1111111111 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0645161290 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0975609756 0.1951219512
##   Wanadoo                                0.2000000000 0.4000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0086206897
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.6666666667 0.3333333333
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0833333333 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0576923077 0.0865384615
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2004         2005
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0520833333 0.0677083333
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0380434783 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0482051282 0.0717948718
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0344827586 0.0344827586
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.3333333333 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.3333333333 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.3333333333 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.1074380165 0.0991735537
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0298507463 0.0000000000
##   Avalon Interactive                     0.3333333333 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0857142857 0.0000000000
##   Banpresto                              0.0410958904 0.0821917808
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0281690141 0.0281690141
##   Big Ben Interactive                    0.1428571429 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0294117647
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0603674541 0.0629921260
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.1666666667
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0855263158 0.0460526316
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.1408450704 0.1267605634
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0217391304
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0081967213 0.0245901639
##   Destination Software, Inc              0.1666666667 0.0833333333
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0366972477 0.0642201835
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0588235294 0.0588235294
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.1666666667
##   DTP Entertainment                      0.0000000000 0.0444444444
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0505050505 0.0606060606
##   Electronic Arts                        0.0636565507 0.0866025167
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0961538462 0.1346153846
##   Encore                                 0.0000000000 0.2500000000
##   Enix Corporation                       0.0333333333 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.1333333333 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.3333333333
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.5000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.5000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0312500000 0.0625000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.4444444444 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0666666667 0.1333333333
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.5384615385 0.3846153846
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.1428571429 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 1.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.5000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.4000000000 0.6000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0123456790 0.0123456790
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0077519380
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.1803278689 0.1147540984
##   Illusion Softworks                     1.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            1.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0333333333 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.3333333333
##   Jaleco                                 0.0869565217 0.0000000000
##   Jester Interactive                     0.0000000000 0.3333333333
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0909090909 0.1818181818
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0200000000 0.0200000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0476190476
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0504807692 0.0673076923
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0444444444 0.0888888889
##   Mad Catz                               0.3333333333 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0869565217 0.1086956522
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0178571429 0.0535714286
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0625000000 0.1250000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.6666666667 0.3333333333
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.2000000000 0.1000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0687830688 0.0740740741
##   Midas Interactive Entertainment        0.0000000000 0.0416666667
##   Midway Games                           0.0757575758 0.1060606061
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.6666666667 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.3275862069 0.0862068966
##   Namco Bandai Games                     0.0268240343 0.0439914163
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.3333333333
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0810810811 0.0640113798
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.6666666667
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.3333333333 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0454545455
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.5000000000 0.2142857143
##   Playlogic Game Factory                 0.0000000000 0.0714285714
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.5000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.5000000000 0.5000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0813953488
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0909090909 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.2941176471 0.1764705882
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0438184664 0.0485133020
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0454545455
##   SNK Playmore                           0.0000000000 0.1666666667
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0439238653 0.0702781845
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0666666667 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.1250000000 0.1250000000
##   SouthPeak Games                        0.0270270270 0.0270270270
##   Spike                                  0.0270270270 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0257510730 0.0257510730
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.1111111111 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.1052631579
##   Summitsoft                             1.0000000000 0.0000000000
##   Sunflowers                             1.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0290556901 0.0992736077
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0277777778 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0384615385 0.0384615385
##   Telegames                              0.0000000000 0.1250000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0685314685 0.0881118881
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0555555556 0.1666666667
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0347448426 0.0618892508
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0049261084 0.0049261084
##   Valcon Games                           0.0000000000 0.1250000000
##   ValuSoft                               0.0000000000 0.2500000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.1097560976 0.1524390244
##   Wanadoo                                0.0000000000 0.2000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0043103448
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.1000000000
##   XS Games                               0.2500000000 0.0833333333
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.3333333333
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.1634615385 0.2980769231
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2006         2007
##   10TACLE Studios                        0.3333333333 0.6666666667
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.1145833333 0.1458333333
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0769230769 0.0000000000
##   Activision                             0.0512820513 0.0769230769
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.1034482759 0.1379310345
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0465116279 0.0697674419
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.2000000000
##   Aqua Plus                              0.0434782609 0.0434782609
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   1.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.3333333333 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.1250000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0633608815 0.0853994490
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0298507463 0.0298507463
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.1153846154
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0958904110 0.1232876712
##   Benesse                                0.0000000000 0.3333333333
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0281690141 0.0281690141
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0588235294
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.1666666667
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.2000000000
##   Broccoli                               0.0454545455 0.1363636364
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0708661417 0.0446194226
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.1111111111 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0526315789 0.0789473684
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 1.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.1428571429
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0704225352 0.0563380282
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0714285714
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0706521739 0.1195652174
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  1.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.3333333333
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.5000000000
##   Deep Silver                            0.0245901639 0.0081967213
##   Destination Software, Inc              0.1666666667 0.1666666667
##   Destineer                              0.0000000000 0.0888888889
##   Detn8 Games                            0.0000000000 1.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.6666666667
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0596330275 0.1284403670
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.1176470588 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.1666666667 0.5000000000
##   DTP Entertainment                      0.0000000000 0.0222222222
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.5000000000 0.0000000000
##   Eidos Interactive                      0.1464646465 0.1111111111
##   Electronic Arts                        0.0754996299 0.0792005922
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0769230769 0.0769230769
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.1333333333 0.0666666667
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 1.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.6666666667 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.1250000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.5000000000
##   Focus Home Interactive                 0.0344827586 0.0172413793
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0666666667 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.2500000000 0.5000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 1.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.2187500000 0.2812500000
##   Game Life                              0.0000000000 0.5000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 1.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.3750000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0666666667 0.1333333333
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.2500000000 0.2500000000
##   Global Star                            0.0769230769 0.0000000000
##   GN Software                            0.3333333333 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 1.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.5000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0769230769
##   Hackberry                              0.0000000000 0.5714285714
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.5000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0625000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0909090909 0.0909090909
##   Hudson Soft                            0.0370370370 0.0370370370
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0310077519 0.0155038760
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.4000000000 0.2000000000
##   Ignition Entertainment                 0.1475409836 0.1147540984
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.7500000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 1.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0833333333 0.0833333333
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.1304347826
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0454545455 0.0454545455
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0200000000 0.0600000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0344827586
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            1.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.7500000000 0.0000000000
##   Kids Station                           0.0000000000 1.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0793269231 0.0733173077
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.5000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 1.0000000000
##   Liquid Games                           0.5000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.1000000000 0.1222222222
##   Mad Catz                               0.3333333333 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0652173913 0.0652173913
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0357142857 0.1964285714
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0769230769 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.2000000000 0.2000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.5000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.1666666667
##   Michaelsoft                            1.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0476190476 0.1005291005
##   Midas Interactive Entertainment        0.0416666667 0.0416666667
##   Midway Games                           0.1262626263 0.0858585859
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0625000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 1.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.2500000000 0.3750000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.1666666667 0.3333333333
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           1.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0172413793
##   Namco Bandai Games                     0.0708154506 0.0525751073
##   Natsume                                0.1764705882 0.0588235294
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.3333333333 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.2857142857
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0753911807 0.0597439545
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0571428571
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.1538461538
##   Nordcurrent                            0.0000000000 0.2000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.3333333333 0.3333333333
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              1.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.1363636364 0.0454545455
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.3333333333
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0434782609
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.5000000000
##   Phoenix Games                          0.0000000000 1.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0666666667 0.0666666667
##   Popcorn Arcade                         0.0000000000 0.7000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0512820513
##   Princess Soft                          0.3333333333 0.0000000000
##   Prototype                              0.0000000000 0.1851851852
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.2500000000 0.2500000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.1046511628 0.2209302326
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.1176470588 0.1764705882
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.1250000000
##   Russel                                 0.0000000000 0.1666666667
##   Sammy Corporation                      0.0909090909 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.1000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0735524257 0.0782472613
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.2000000000 0.2000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0555555556 0.2222222222
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0746705710 0.0600292826
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.1250000000 0.0000000000
##   SouthPeak Games                        0.0540540541 0.1081081081
##   Spike                                  0.1081081081 0.2162162162
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0515021459 0.0987124464
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.2000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.1111111111 0.1111111111
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0526315789 0.2631578947
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.2500000000 0.2500000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.5000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.2142857143 0.1428571429
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.1052631579 0.1578947368
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0810810811 0.2162162162
##   Take-Two Interactive                   0.0799031477 0.0895883777
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.4000000000 0.2000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0769230769 0.0917159763
##   Telegames                              0.0000000000 0.2500000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0797202797 0.1034965035
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.6000000000
##   Tomy Corporation                       0.0555555556 0.0555555556
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.2500000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0662323561 0.0955483170
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0625000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0098522167 0.0147783251
##   Valcon Games                           0.1250000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.1158536585 0.1280487805
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 1.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0043103448 0.0215517241
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 1.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.4000000000 0.2000000000
##   XS Games                               0.0000000000 0.0833333333
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   1.0000000000 0.0000000000
##   Yeti                                   0.0909090909 0.0909090909
##   Yuke's                                 0.3333333333 0.3333333333
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.5000000000 0.5000000000
##   Zoo Digital Publishing                 0.0576923077 0.1153846154
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0555555556
##                                         Year
## Publisher                                        2008         2009
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.3333333333
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 1.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 1.0000000000
##   505 Games                              0.0677083333 0.1562500000
##   5pb                                    0.0819672131 0.1147540984
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.1000000000
##   Acquire                                0.0769230769 0.0769230769
##   Activision                             0.0902564103 0.1241025641
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.3103448276 0.2413793103
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.1250000000
##   Aksys Games                            0.1250000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.5000000000
##   Alchemist                              0.1627906977 0.0930232558
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.5000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.2000000000 0.6000000000
##   Aqua Plus                              0.0434782609 0.1304347826
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.1538461538 0.1153846154
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.3333333333 0.0000000000
##   ArtDink                                0.0000000000 0.1111111111
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.6666666667 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.2222222222 0.2222222222
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.2500000000 0.5000000000
##   Astragon                               0.0000000000 0.1666666667
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0881542700 0.0550964187
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0746268657 0.0746268657
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0769230769 0.2692307692
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0547945205 0.0273972603
##   Benesse                                0.6666666667 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0985915493 0.0845070423
##   Big Ben Interactive                    0.1428571429 0.2857142857
##   Big Fish Games                         0.5000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.2000000000
##   Black Bean Games                       0.1470588235 0.1470588235
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.1666666667 0.6666666667
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.8000000000 0.0000000000
##   Broccoli                               0.0454545455 0.1363636364
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0682414698 0.0393700787
##   Cave                                   0.1000000000 0.1000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.3333333333 0.3333333333
##   ChunSoft                               0.0000000000 0.0555555556
##   City Interactive                       0.0526315789 0.2105263158
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0789473684 0.1710526316
##   Codemasters Online                     1.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               1.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0500000000 0.0500000000
##   Conspiracy Entertainment               0.2142857143 0.1428571429
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0422535211 0.0704225352
##   Creative Core                          0.6666666667 0.3333333333
##   Crimson Cow                            0.5000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.2500000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0714285714 0.1428571429
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.1141304348 0.1684782609
##   Daedalic                               0.0000000000 0.3333333333
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.3333333333 0.3333333333
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.1065573770 0.1967213115
##   Destination Software, Inc              0.1666666667 0.0000000000
##   Destineer                              0.3333333333 0.2666666667
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.3333333333
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.1513761468 0.1100917431
##   Dorart                                 0.5000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.1176470588 0.3529411765
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.1666666667 0.0000000000
##   DTP Entertainment                      0.2000000000 0.2444444444
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 1.0000000000
##   Edia                                   0.0000000000 0.5000000000
##   Eidos Interactive                      0.1262626263 0.1010101010
##   Electronic Arts                        0.0888230940 0.0829015544
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.1538461538 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 1.0000000000
##   Enterbrain                             0.1333333333 0.0666666667
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.2500000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.1875000000 0.1875000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.5000000000
##   Focus Home Interactive                 0.0172413793 0.1206896552
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 1.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.2666666667
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.5000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.3437500000 0.0000000000
##   Game Life                              0.0000000000 0.5000000000
##   Gamebridge                             0.5000000000 0.5000000000
##   Gamecock                               1.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 1.0000000000
##   Ghostlight                             0.1333333333 0.0666666667
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.5000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.3333333333 0.0000000000
##   GOA                                    1.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.1666666667 0.5000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.1875000000 0.3750000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.3076923077 0.1538461538
##   Gust                                   0.0769230769 0.1538461538
##   Hackberry                              0.2857142857 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.5000000000 0.5000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0909090909 0.0909090909
##   Hudson Soft                            0.0987654321 0.0987654321
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0465116279 0.0542635659
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.2000000000 0.0000000000
##   Ignition Entertainment                 0.2459016393 0.0327868852
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.2500000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.2500000000 0.0833333333
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              1.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0869565217 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.2272727273 0.1818181818
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.1200000000 0.0600000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0689655172 0.1724137931
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.5000000000
##   Koch Media                             0.3529411765 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0769230769 0.0709134615
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     1.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.1481481481
##   Lexicon Entertainment                  0.5000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.1444444444 0.1000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.5000000000
##   Majesco Entertainment                  0.1304347826 0.2608695652
##   Mamba Games                            0.5000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.2321428571 0.0892857143
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0769230769
##   Mastiff                                0.0000000000 0.1875000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.6000000000
##   Mercury Games                          0.5000000000 0.0000000000
##   Merscom LLC                            0.0000000000 1.0000000000
##   Metro 3D                               0.1666666667 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0529100529 0.0370370370
##   Midas Interactive Entertainment        0.0416666667 0.1666666667
##   Midway Games                           0.0808080808 0.0000000000
##   Milestone                              1.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.3333333333 0.0000000000
##   Mindscape                              0.0625000000 0.4062500000
##   Mirai Shounen                          1.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.5000000000 0.0000000000
##   MTO                                    0.1250000000 0.0000000000
##   MTV Games                              0.3170731707 0.3902439024
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.5000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0557939914 0.0665236052
##   Natsume                                0.0000000000 0.0588235294
##   Navarre Corp                           1.0000000000 0.0000000000
##   Naxat Soft                             1.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.1250000000 0.0000000000
##   Neko Entertainment                     0.2857142857 0.1428571429
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0455192034 0.0455192034
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0476190476 0.0857142857
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.5384615385 0.2307692308
##   Nordcurrent                            0.2000000000 0.2000000000
##   Nordic Games                           0.0285714286 0.1142857143
##   NovaLogic                              0.0000000000 0.3333333333
##   Number None                            0.0000000000 1.0000000000
##   O-Games                                0.0000000000 0.0588235294
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.3181818182 0.4090909091
##   P2 Games                               0.0000000000 0.6666666667
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.3333333333 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0869565217 0.1739130435
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 1.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 1.0000000000
##   Phenomedia                             0.2500000000 0.2500000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.8000000000 0.2000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.1428571429 0.7857142857
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.2500000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 1.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.2000000000 0.2666666667
##   Popcorn Arcade                         0.3000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0512820513 0.1025641026
##   Princess Soft                          0.3333333333 0.0000000000
##   Prototype                              0.1111111111 0.1851851852
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.2857142857
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 1.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.1976744186 0.1395348837
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0588235294 0.0588235294
##   Rondomedia                             0.2142857143 0.3571428571
##   RTL                                    0.6250000000 0.2500000000
##   Russel                                 0.1666666667 0.1666666667
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.4000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.1048513302 0.0672926448
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.5000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.1111111111 0.1111111111
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0541727672 0.0658857980
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.2162162162 0.3513513514
##   Spike                                  0.1081081081 0.2162162162
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.1030042918 0.0772532189
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.1000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.5555555556 0.0000000000
##   Storm City Games                       0.0000000000 0.1578947368
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.1578947368 0.0526315789
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.5000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.4285714286 0.1428571429
##   System Soft                            0.2500000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.3513513514 0.1351351351
##   Take-Two Interactive                   0.0992736077 0.0992736077
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0887573964 0.0621301775
##   Telegames                              0.1250000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.2500000000
##   The Adventure Company                  0.6000000000 0.4000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0853146853 0.1006993007
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.3333333333 0.6666666667
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.2000000000
##   Tomy Corporation                       0.0555555556 0.0555555556
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.7500000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               1.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.1216069490 0.1107491857
##   Ubisoft Annecy                         0.0000000000 0.2142857143
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.2500000000 0.1875000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0098522167 0.0049261084
##   Valcon Games                           0.2500000000 0.3750000000
##   ValuSoft                               0.2500000000 0.2500000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.3333333333
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.6666666667 0.3333333333
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0975609756 0.0121951220
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0431034483 0.1250000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.3000000000 0.0000000000
##   XS Games                               0.1666666667 0.2500000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0909090909 0.1818181818
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.1153846154 0.1057692308
##   Zoo Games                              0.2424242424 0.3333333333
##   Zushi Games                            0.2222222222 0.7222222222
##                                         Year
## Publisher                                        2010         2011
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.6666666667
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.1145833333 0.1093750000
##   5pb                                    0.1639344262 0.1311475410
##   7G//AMES                               0.2500000000 0.7500000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               1.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.1000000000 0.2000000000
##   Acquire                                0.2307692308 0.3076923077
##   Activision                             0.0912820513 0.0769230769
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.5000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.2325581395 0.1627906977
##   Alternative Software                   0.1666666667 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.5000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0869565217 0.1304347826
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.1153846154 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.1111111111 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.3333333333 0.1111111111
##   Asgard                                 0.3750000000 0.1250000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.5000000000 0.1666666667
##   Asylum Entertainment                   0.8333333333 0.1666666667
##   Atari                                  0.0303030303 0.0137741047
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0597014925 0.0746268657
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.1538461538 0.2692307692
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0410958904
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0422535211 0.1690140845
##   Big Ben Interactive                    0.0000000000 0.1428571429
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.8000000000
##   Black Bean Games                       0.2352941176 0.2647058824
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0454545455 0.1363636364
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0577427822 0.0629921260
##   Cave                                   0.2000000000 0.4000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.1666666667
##   ChunSoft                               0.0555555556 0.1666666667
##   City Interactive                       0.2631578947 0.2105263158
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0328947368 0.0855263158
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.3333333333 0.3333333333
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.1500000000 0.0500000000
##   Conspiracy Entertainment               0.2857142857 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0985915493 0.1971830986
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.5000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.2500000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.4285714286 0.0714285714
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.1684782609 0.0978260870
##   Daedalic                               0.3333333333 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.1393442623 0.1065573770
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.2666666667 0.0444444444
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.5000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.1605504587 0.0917431193
##   Dorart                                 0.5000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.1176470588 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.1555555556 0.2888888889
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0651369356 0.0562546262
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.1333333333 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.2500000000
##   Excalibur Publishing                   0.0000000000 0.7500000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.1875000000 0.0625000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.5000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.1034482759 0.1551724138
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    1.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0666666667 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.6666666667
##   Funcom                                 0.5000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0370370370 0.1481481481
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.5000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0312500000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.1250000000 0.6250000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.1333333333 0.1333333333
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.3333333333 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.3333333333 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  1.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.1875000000 0.2500000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0769230769
##   Gust                                   0.0769230769 0.0769230769
##   Hackberry                              0.1428571429 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 1.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.4000000000 0.4000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.1358024691 0.0370370370
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.6666666667
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.1782945736 0.1472868217
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0327868852
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.1666666667 0.1666666667
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 1.0000000000
##   Jack of All Games                      0.0000000000 0.6666666667
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.1818181818 0.0000000000
##   Just Flight                            1.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.1800000000 0.1800000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.1724137931 0.2413793103
##   Kamui                                  1.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    1.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.1176470588
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0817307692 0.0528846154
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.1111111111 0.1111111111
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0769230769 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0555555556 0.0888888889
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.1086956522 0.0652173913
##   Mamba Games                            0.5000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.1071428571 0.1071428571
##   Masque Publishing                      0.0000000000 1.0000000000
##   Mastertronic                           0.1538461538 0.6153846154
##   Mastiff                                0.2500000000 0.3750000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.2000000000 0.2000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0634920635 0.0582010582
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.1562500000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.1250000000 0.0000000000
##   MTV Games                              0.1951219512 0.0731707317
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0344827586 0.0517241379
##   Namco Bandai Games                     0.0751072961 0.0815450644
##   Natsume                                0.1764705882 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.2857142857 0.0000000000
##   NetRevo                                0.5000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  1.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0398293030 0.0369843528
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0857142857 0.0857142857
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0769230769 0.0000000000
##   Nordcurrent                            0.4000000000 0.0000000000
##   Nordic Games                           0.1428571429 0.1142857143
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.7058823529 0.2352941176
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.3333333333
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.1666666667 0.1666666667
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.2173913043 0.2608695652
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 1.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.7500000000 0.0000000000
##   Plenty                                 0.0000000000 1.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.2000000000 0.2000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.1538461538 0.2564102564
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.1481481481 0.0740740741
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.4285714286
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      1.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.1428571429 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0697674419 0.1046511628
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.1176470588 0.0588235294
##   Rondomedia                             0.1428571429 0.2142857143
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.5000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.3000000000 0.2000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0610328638 0.0547730829
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.2500000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.1111111111 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0629575403 0.0527086384
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.3750000000
##   SouthPeak Games                        0.1891891892 0.0000000000
##   Spike                                  0.1081081081 0.0540540541
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.1072961373 0.0944206009
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.1000000000 0.2000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.1111111111 0.0000000000
##   Storm City Games                       0.6842105263 0.1578947368
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.1000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.5000000000 0.2500000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.1052631579 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.1081081081 0.0270270270
##   Take-Two Interactive                   0.0847457627 0.0750605327
##   Takuyo                                 0.0000000000 1.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        1.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0562130178 0.0502958580
##   Telegames                              0.1250000000 0.0000000000
##   Telltale Games                         0.0000000000 0.1200000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 1.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0797202797 0.1062937063
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.2000000000
##   Tomy Corporation                       0.0555555556 0.0000000000
##   TopWare Interactive                    0.0000000000 0.2500000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              1.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 1.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0781758958 0.0944625407
##   Ubisoft Annecy                         0.2857142857 0.2142857143
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.3125000000 0.1250000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0886699507 0.2068965517
##   Valcon Games                           0.1250000000 0.0000000000
##   ValuSoft                               0.0000000000 0.2500000000
##   Valve                                  0.0000000000 1.0000000000
##   Valve Software                         0.0000000000 0.6666666667
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     1.0000000000 0.0000000000
##   Visco                                  0.0000000000 1.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 1.0000000000
##   Warner Bros. Interactive Entertainment 0.1422413793 0.0818965517
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0833333333 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.3636363636 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.3636363636 0.0606060606
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2012         2013
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0416666667 0.0312500000
##   5pb                                    0.1311475410 0.0819672131
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.6000000000 0.0000000000
##   Acquire                                0.1538461538 0.0000000000
##   Activision                             0.0430769231 0.0389743590
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.5000000000
##   Agatsuma Entertainment                 0.3333333333 0.3333333333
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0930232558 0.0930232558
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0869565217 0.0869565217
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0769230769 0.2307692308
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  1.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.1250000000 0.2500000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0027548209 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.1044776119 0.0298507463
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.6666666667 0.1111111111
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0845070423 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.1428571429
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 1.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 1.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0909090909 0.1818181818
##   BushiRoad                              1.0000000000 0.0000000000
##   Capcom                                 0.0629921260 0.0551181102
##   Cave                                   0.1000000000 0.1000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.1111111111 0.0000000000
##   City Interactive                       0.0000000000 0.1578947368
##   Cloud Imperium Games Corporation       1.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0526315789 0.0328947368
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.1666666667 0.1666666667
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.1500000000 0.1000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.1428571429 0.0714285714
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0489130435 0.1086956522
##   Daedalic                               0.3333333333 0.0000000000
##   Daedalic Entertainment                 0.3333333333 0.6666666667
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0327868852 0.0983606557
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0321100917 0.0550458716
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0222222222 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               1.0000000000 0.0000000000
##   Easy Interactive                       1.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0340488527 0.0310880829
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.2500000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.1250000000 0.1250000000
##   Fields                                 1.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.1206896552 0.0517241379
##   Focus Multimedia                       0.6666666667 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0666666667
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.1666666667 0.0000000000
##   Funcom                                 0.5000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.1481481481 0.1851851852
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.2500000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.1250000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 1.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.1538461538 0.1538461538
##   Gust                                   0.1538461538 0.0769230769
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 1.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.3333333333 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.1472868217 0.0852713178
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.2000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            1.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             1.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0833333333 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0666666667 0.2000000000
##   Kadokawa Shoten                        0.0800000000 0.0800000000
##   Kaga Create                            0.0000000000 0.1666666667
##   Kalypso Media                          0.0344827586 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0588235294
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0384615385 0.0192307692
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.3333333333 0.1111111111
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            1.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0769230769
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.3333333333 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0217391304
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.1666666667 0.2500000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0769230769 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   1.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0370370370 0.0423280423
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.3333333333 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.5000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0344827586 0.0000000000
##   Namco Bandai Games                     0.0912017167 0.0675965665
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.1666666667 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.5000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.2857142857 0.0000000000
##   Nintendo                               0.0440967283 0.0327169275
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.1428571429 0.2857142857
##   Nippon Ichi Software                   0.0476190476 0.1714285714
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.1142857143 0.0571428571
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.5000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 1.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 1.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0434782609 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0256410256 0.0256410256
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0740740741 0.0370370370
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.2857142857 0.1428571429
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.5714285714 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0232558140 0.0348837209
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0588235294 0.0588235294
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.6666666667
##   SCS Software                           1.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0391236307 0.0266040689
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 1.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0351390922 0.0175695461
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0666666667 0.4666666667
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.1081081081 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0472103004 0.0686695279
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.1000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0526315789
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 1.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0540540541
##   Take-Two Interactive                   0.0677966102 0.0387409201
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0295857988 0.0562130178
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0111888112 0.0013986014
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.2500000000 0.7500000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0347448426 0.0314875136
##   Ubisoft Annecy                         0.2857142857 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0625000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0295566502 0.0098522167
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.5000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0905172414 0.1120689655
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.2500000000 0.2500000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0909090909 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2014         2015
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0312500000 0.0208333333
##   5pb                                    0.1147540984 0.1475409836
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0769230769 0.0000000000
##   Activision                             0.0430769231 0.0400000000
##   Activision Blizzard                    1.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.2500000000 0.3750000000
##   Alawar Entertainment                   0.0000000000 0.5000000000
##   Alchemist                              0.0000000000 0.0465116279
##   Alternative Software                   0.0000000000 0.1666666667
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.1739130435
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.1538461538 0.1538461538
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.1111111111 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.1111111111 0.0000000000
##   Asgard                                 0.0000000000 0.1250000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0746268657 0.0447761194
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.2222222222
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.1549295775 0.1549295775
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.5000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 1.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0909090909
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0104986877 0.0419947507
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0526315789 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0394736842 0.0197368421
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.2500000000 0.1500000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 1.0000000000
##   D3Publisher                            0.0108695652 0.0271739130
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0983606557 0.0573770492
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.5000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0458715596 0.0275229358
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.6000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0266469282 0.0236861584
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.3333333333 0.3333333333
##   Extreme Entertainment Group            0.0000000000 1.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.1896551724 0.0689655172
##   Focus Multimedia                       0.0000000000 0.3333333333
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.1666666667
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.1111111111 0.2592592593
##   FuRyu Corporation                      0.0000000000 1.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   1.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0769230769 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.4000000000 0.4000000000
##   Harmonix Music Systems                 0.0000000000 1.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 1.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.1007751938 0.1085271318
##   Idea Factory International             0.5000000000 0.5000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        1.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 1.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 1.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.3333333333 0.2666666667
##   Kadokawa Shoten                        0.0200000000 0.0200000000
##   Kaga Create                            0.0000000000 0.8333333333
##   Kalypso Media                          0.0689655172 0.1034482759
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.2941176471
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0216346154 0.0144230769
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0370370370 0.0740740741
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.3461538462 0.5000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 1.0000000000
##   Marvelous Entertainment                0.3333333333 0.1666666667
##   Marvelous Games                        0.0000000000 1.0000000000
##   Marvelous Interactive                  0.0535714286 0.0535714286
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0476190476 0.0264550265
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.2500000000 0.5625000000
##   Minato Station                         0.0000000000 0.3333333333
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 1.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 1.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0344827586 0.0000000000
##   Namco Bandai Games                     0.0740343348 0.0729613734
##   Natsume                                0.0588235294 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.1666666667 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.1428571429 0.1428571429
##   Nintendo                               0.0284495021 0.0455192034
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.2857142857 0.1428571429
##   Nippon Ichi Software                   0.1809523810 0.1047619048
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.5000000000 0.5000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0571428571 0.2857142857
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.5000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0434782609 0.0434782609
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.2051282051
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.1111111111 0.0370370370
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.1428571429 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 1.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 1.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 1.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0588235294 0.1764705882
##   Rondomedia                             0.0000000000 0.0714285714
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.1666666667
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0359937402 0.0156494523
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.2000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 1.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0190336750 0.0146412884
##   Sony Computer Entertainment America    1.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.2666666667 0.0666666667
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.1115879828 0.0686695279
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0526315789 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0270270270
##   Take-Two Interactive                   0.0363196126 0.0411622276
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0798816568 0.1035502959
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.4400000000 0.2800000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.7500000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.2500000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.2500000000 0.7500000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              1.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0477741585 0.0347448426
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0147783251 0.0295566502
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.5000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.1293103448 0.1120689655
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 1.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.2500000000 0.2500000000
##   Yacht Club Games                       0.0000000000 1.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2016         2017
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0364583333 0.0000000000
##   5pb                                    0.0327868852 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0143589744 0.0000000000
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.2500000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.6666666667 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.1304347826 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.1666666667 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0027548209 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0298507463 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0769230769 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0422535211 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0909090909 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0472440945 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0394736842 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0500000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0163043478 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0901639344 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.4000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               1.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0148038490 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             1.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.3333333333 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0862068966 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.1111111111 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0769230769 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.2000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            1.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0542635659 0.0077519380
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        1.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           1.0000000000 0.0000000000
##   Introversion Software                  1.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.1333333333 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.1764705882 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0096153846 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0740740741 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0833333333 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0178571429 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.2000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0211640212 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        1.0000000000 0.0000000000
##   Milestone S.r.l.                       0.1875000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                1.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0344827586 0.0000000000
##   Namco Bandai Games                     0.0429184549 0.0000000000
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.4285714286 0.0000000000
##   Nintendo                               0.0142247511 0.0000000000
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.1428571429 0.0000000000
##   Nippon Ichi Software                   0.1142857143 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0857142857 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    1.0000000000 0.0000000000
##   Paradox Interactive                    0.0869565217 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.1282051282 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0370370370 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0116279070 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0588235294 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.1666666667 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0125195618 0.0031298905
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               1.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0073206442 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0858369099 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        1.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0290556901 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0502958580 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.1600000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0141150923 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      1.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0197044335 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0603448276 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0909090909 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2020          N/A
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.0092307692
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0440771350
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0384615385
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0281690141
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.1176470588
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0131233596
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0526315789
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0131578947
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0054347826
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0081967213
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0183486239
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0222222222
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0101010101
##   Electronic Arts                        0.0000000000 0.0088823094
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0192307692
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0344827586
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.2500000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0666666667
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.2000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0077519380
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0327868852
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0161290323
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.1034482759
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0108173077
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0111111111
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0217391304
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.1666666667
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0101010101
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0243902439
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.3793103448
##   Namco Bandai Games                     0.0000000000 0.0042918455
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0000000000 0.0099573257
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0095238095
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0454545455
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0116279070
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 1.0000000000
##   Sega                                   0.0000000000 0.0109546166
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.2500000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0014641288
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0085836910
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0714285714
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0024213075
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0041958042
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.5000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0010857763 0.0032573290
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 1.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0434782609
##   Unknown                                0.0000000000 0.5073891626
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0182926829
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0646551724
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
prop.table(myTable,2)
##                                         Year
## Publisher                                        1980         1981
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0652173913
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.5555555556 0.1304347826
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.4444444444 0.2391304348
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0869565217
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0217391304
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0869565217
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.1521739130
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0217391304
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0217391304
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0000000000 0.0000000000
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0000000000 0.0000000000
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0652173913
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0217391304
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0217391304
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0434782609
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0217391304
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1982         1983
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0555555556 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.1111111111 0.1764705882
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0277777778 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.3888888889 0.3529411765
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0277777778 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0277777778 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0277777778 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0277777778 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0277777778 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0277777778 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0277777778 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0277777778 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0000000000 0.0000000000
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0000000000 0.3529411765
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0555555556 0.1176470588
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0277777778 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0277777778 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0277777778 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0277777778 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0277777778 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1984         1985
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0714285714 0.1428571429
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0714285714
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0714285714 0.0714285714
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0714285714
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.2142857143 0.1428571429
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.6428571429 0.5000000000
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1986         1987
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.1250000000
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0952380952 0.2500000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.1428571429 0.0625000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0625000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.1904761905 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.1904761905 0.0625000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0952380952 0.1250000000
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.2857142857 0.2500000000
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0000000000 0.0625000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1988         1989
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.1333333333 0.0588235294
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0588235294
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.1333333333 0.0588235294
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0666666667 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0588235294
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0588235294
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0666666667 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.1333333333 0.0588235294
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.4000000000 0.5294117647
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0588235294
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0000000000 0.0000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0666666667 0.0588235294
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1990         1991
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.0000000000
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0243902439
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0487804878
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0243902439
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.1875000000 0.0731707317
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0243902439
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0000000000 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0625000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0243902439
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0243902439
##   Human Entertainment                    0.0000000000 0.0243902439
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0731707317
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0243902439
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0625000000 0.0975609756
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.1250000000 0.0731707317
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.4375000000 0.3170731707
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0625000000 0.0243902439
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0243902439
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0625000000 0.0487804878
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0487804878
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1992         1993
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0166666667
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.0000000000
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0465116279 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0232558140 0.0166666667
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0930232558 0.1166666667
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0232558140 0.0166666667
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0166666667
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0232558140 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0232558140 0.0166666667
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0232558140 0.0166666667
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0166666667
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0465116279 0.0500000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0232558140 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0166666667
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0166666667
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0697674419 0.0500000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0166666667
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0232558140 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0166666667
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0465116279 0.1333333333
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0232558140 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.2325581395 0.1500000000
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0232558140 0.0166666667
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0166666667
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.1162790698 0.1000000000
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0333333333
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0465116279 0.0333333333
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0166666667
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0232558140 0.0166666667
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0232558140 0.0333333333
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0166666667
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0166666667
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0000000000 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0166666667
##   Video System                           0.0232558140 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0232558140 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1994         1995
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0578512397 0.0502283105
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0082644628 0.0045662100
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0082644628 0.0045662100
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0082644628 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0082644628 0.0091324201
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0082644628 0.0045662100
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0165289256 0.0228310502
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0413223140 0.0228310502
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0082644628 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0082644628 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0082644628 0.0045662100
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0045662100
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0082644628 0.0045662100
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0136986301
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0082644628 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0045662100
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0165289256 0.0502283105
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0165289256 0.0091324201
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0091324201
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0082644628 0.0000000000
##   Fuji                                   0.0000000000 0.0045662100
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0082644628 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0045662100
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0045662100
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0082644628 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0082644628 0.0045662100
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0413223140 0.0182648402
##   Human Entertainment                    0.0165289256 0.0091324201
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0045662100
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0082644628 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0136986301
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0091324201
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0082644628 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0045662100
##   Konami Digital Entertainment           0.0578512397 0.0547945205
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0082644628 0.0091324201
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0082644628 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0082644628 0.0045662100
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0045662100
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0082644628 0.0045662100
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0045662100
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0045662100
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0082644628 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0495867769 0.0502283105
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0045662100
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0045662100
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0045662100
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0661157025 0.0456621005
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0091324201
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0091324201
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0045662100
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0045662100
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0082644628 0.0319634703
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0045662100
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0082644628 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0045662100
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.2148760331 0.1232876712
##   Seta Corporation                       0.0000000000 0.0182648402
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0091324201
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0330578512 0.0091324201
##   SNK Playmore                           0.0000000000 0.0045662100
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0045662100
##   Sony Computer Entertainment            0.0578512397 0.1415525114
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0082644628 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0165289256 0.0182648402
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0247933884 0.0045662100
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0082644628 0.0091324201
##   Takara                                 0.0165289256 0.0045662100
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0045662100
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0082644628 0.0136986301
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0045662100
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0091324201
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0082644628 0.0045662100
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0045662100
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0091324201
##   Ubisoft                                0.0000000000 0.0045662100
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0082644628 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0091324201
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0247933884 0.0182648402
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0045662100
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0045662100
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1996         1997
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0069204152
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0494296578 0.0346020761
##   Accolade                               0.0038022814 0.0034602076
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0114068441 0.0103806228
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0038022814 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0034602076
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0038022814 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0034602076
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0076045627 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0038022814 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0190114068 0.0207612457
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0038022814 0.0000000000
##   Asmik Ace Entertainment                0.0038022814 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0076045627 0.0069204152
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0076045627 0.0069204152
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0114068441 0.0103806228
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0114068441 0.0415224913
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0038022814 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0038022814 0.0000000000
##   Codemasters                            0.0000000000 0.0069204152
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0038022814 0.0103806228
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0076045627 0.0000000000
##   CTO SpA                                0.0038022814 0.0034602076
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0152091255 0.0173010381
##   Electronic Arts                        0.0494296578 0.0865051903
##   Electronic Arts Victor                 0.0076045627 0.0000000000
##   Elf                                    0.0038022814 0.0034602076
##   Elite                                  0.0038022814 0.0000000000
##   Empire Interactive                     0.0038022814 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0152091255 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0038022814 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0034602076
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0038022814 0.0069204152
##   From Software                          0.0038022814 0.0034602076
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0038022814 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0038022814 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0114068441 0.0103806228
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0266159696 0.0553633218
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0038022814 0.0034602076
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0103806228
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0038022814 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0034602076
##   Hudson Soft                            0.0190114068 0.0207612457
##   Human Entertainment                    0.0038022814 0.0069204152
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0034602076
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0152091255 0.0069204152
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0038022814 0.0034602076
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0076045627 0.0138408304
##   Interplay Productions                  0.0000000000 0.0034602076
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0038022814 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0114068441 0.0034602076
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0038022814 0.0034602076
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0069204152
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0608365019 0.0588235294
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0038022814 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0038022814 0.0034602076
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0038022814 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0038022814 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0038022814 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0076045627 0.0034602076
##   Microsoft Game Studios                 0.0038022814 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0034602076
##   Midway Games                           0.0076045627 0.0138408304
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0076045627 0.0034602076
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0304182510 0.0449826990
##   Natsume                                0.0038022814 0.0034602076
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0038022814 0.0034602076
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0076045627 0.0000000000
##   NEC Interchannel                       0.0038022814 0.0069204152
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0646387833 0.0449826990
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0076045627 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0076045627 0.0103806228
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0034602076
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0034602076
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0076045627 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0034602076
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0266159696 0.0311418685
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0034602076
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0570342205 0.0380622837
##   Seta Corporation                       0.0076045627 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0190114068 0.0034602076
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0038022814 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0038022814 0.0000000000
##   Sony Computer Entertainment            0.1064638783 0.1176470588
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0038022814 0.0000000000
##   Square                                 0.0000000000 0.0034602076
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0152091255 0.0276816609
##   SSI                                    0.0038022814 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0034602076
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0038022814 0.0034602076
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0034602076
##   Takara                                 0.0038022814 0.0069204152
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0103806228
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0152091255 0.0138408304
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0103806228
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0114068441 0.0000000000
##   Titus                                  0.0000000000 0.0034602076
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0076045627 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0076045627 0.0000000000
##   Ubisoft                                0.0038022814 0.0034602076
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0034602076
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0000000000 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0038022814 0.0034602076
##   Victor Interactive                     0.0000000000 0.0034602076
##   Video System                           0.0000000000 0.0034602076
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0494296578 0.0311418685
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0069204152
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0034602076
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0034602076
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        1998         1999
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0052770449 0.0177514793
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0029585799
##   989 Studios                            0.0158311346 0.0177514793
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0606860158 0.0355029586
##   Accolade                               0.0000000000 0.0029585799
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0369393140 0.0236686391
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0052770449 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0029585799
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0026385224 0.0000000000
##   Aruze Corp                             0.0000000000 0.0029585799
##   ASC Games                              0.0026385224 0.0029585799
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0052770449 0.0088757396
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0052770449 0.0177514793
##   Athena                                 0.0000000000 0.0029585799
##   Atlus                                  0.0052770449 0.0059171598
##   Avalon Interactive                     0.0000000000 0.0029585799
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0026385224 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0079155673 0.0088757396
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0026385224 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0184696570 0.0059171598
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0026385224 0.0029585799
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0105540897 0.0059171598
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0026385224 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0052770449 0.0177514793
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0026385224 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0026385224 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0026385224 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0029585799
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0026385224 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0263852243 0.0236686391
##   Electronic Arts                        0.0791556728 0.0769230769
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0026385224 0.0029585799
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0118343195
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0029585799
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0079155673 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0026385224 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0026385224 0.0000000000
##   Fox Interactive                        0.0052770449 0.0059171598
##   From Software                          0.0052770449 0.0029585799
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0052770449 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0026385224 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0026385224 0.0000000000
##   Genki                                  0.0000000000 0.0029585799
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0079155673 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0448548813 0.0118343195
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0079155673 0.0088757396
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0026385224 0.0029585799
##   Hudson Soft                            0.0026385224 0.0029585799
##   Human Entertainment                    0.0079155673 0.0059171598
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0052770449 0.0088757396
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0184696570 0.0177514793
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0158311346 0.0088757396
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0026385224 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0052770449 0.0059171598
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0029585799
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0026385224 0.0029585799
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0105540897 0.0029585799
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0052770449 0.0118343195
##   KID                                    0.0026385224 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0633245383 0.0946745562
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0118343195
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0026385224 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0059171598
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0026385224 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0059171598
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0052770449 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0029585799
##   Microsoft Game Studios                 0.0000000000 0.0029585799
##   Midas Interactive Entertainment        0.0026385224 0.0029585799
##   Midway Games                           0.0158311346 0.0295857988
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0052770449 0.0029585799
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0026385224 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0026385224 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0237467018 0.0414201183
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0026385224 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0052770449 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0052770449 0.0059171598
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0448548813 0.0591715976
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0026385224 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0131926121 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0029585799
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0026385224 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0029585799
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0105540897 0.0088757396
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0026385224 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0059171598
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0026385224 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0369393140 0.0266272189
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0079155673 0.0059171598
##   SNK Playmore                           0.0026385224 0.0059171598
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0791556728 0.0739644970
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0029585799
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0059171598
##   Square EA                              0.0000000000 0.0029585799
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0211081794 0.0236686391
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0029585799
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0026385224 0.0029585799
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0026385224 0.0029585799
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0026385224 0.0000000000
##   Syscom                                 0.0026385224 0.0029585799
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0059171598
##   Takara                                 0.0052770449 0.0029585799
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0158311346 0.0118343195
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0026385224 0.0000000000
##   Tecmo Koei                             0.0105540897 0.0147928994
##   Telegames                              0.0000000000 0.0029585799
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0052770449 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0290237467 0.0236686391
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0052770449 0.0118343195
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0026385224 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0026385224 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0079155673 0.0384615385
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0026385224 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0026385224 0.0000000000
##   Video System                           0.0026385224 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0263852243 0.0177514793
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0079155673 0.0029585799
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0029585799
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2000         2001
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0286532951 0.0228215768
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0429799427 0.0497925311
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0372492837 0.0477178423
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0020746888
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0020746888
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0041493776
##   Aruze Corp                             0.0057306590 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0020746888
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0028653295 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0057306590 0.0186721992
##   Athena                                 0.0000000000 0.0020746888
##   Atlus                                  0.0028653295 0.0020746888
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0028653295 0.0145228216
##   Banpresto                              0.0028653295 0.0082987552
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0020746888
##   Bethesda Softworks                     0.0000000000 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0041493776
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0143266476 0.0207468880
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0028653295 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0057306590 0.0082987552
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0041493776
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0085959885 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0028653295 0.0041493776
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0020746888
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0020746888
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0257879656 0.0207468880
##   Electronic Arts                        0.0888252149 0.0892116183
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0114613181 0.0041493776
##   Encore                                 0.0000000000 0.0020746888
##   Enix Corporation                       0.0085959885 0.0062240664
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0041493776
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0028653295 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0028653295 0.0000000000
##   From Software                          0.0000000000 0.0020746888
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0062240664
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0020746888
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0020746888
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0114613181 0.0020746888
##   Havas Interactive                      0.0028653295 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0062240664
##   Hudson Soft                            0.0028653295 0.0020746888
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0028653295 0.0020746888
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0315186246 0.0207468880
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0085959885 0.0062240664
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0028653295 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0020746888
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0888252149 0.0809128631
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0041493776
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0028653295 0.0082987552
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0020746888
##   Majesco Entertainment                  0.0000000000 0.0062240664
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0057306590 0.0000000000
##   Max Five                               0.0000000000 0.0020746888
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0028653295 0.0020746888
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0062240664
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0028653295 0.0207468880
##   Midas Interactive Entertainment        0.0200573066 0.0082987552
##   Midway Games                           0.0343839542 0.0228215768
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0028653295 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0401146132 0.0248962656
##   Natsume                                0.0028653295 0.0020746888
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0057306590 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0020746888
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0659025788 0.0456431535
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0020746888
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0028653295 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0028653295 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0041493776
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0020746888
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0020746888
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0041493776
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0315186246 0.0186721992
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0057306590 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0916905444 0.0788381743
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0020746888
##   Sony Music Entertainment               0.0000000000 0.0020746888
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0020746888
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0020746888
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0000000000
##   SquareSoft                             0.0114613181 0.0020746888
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0020746888
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0020746888
##   Success                                0.0028653295 0.0020746888
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0057306590 0.0000000000
##   Sunsoft                                0.0028653295 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0057306590 0.0041493776
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0020746888
##   Takara                                 0.0000000000 0.0041493776
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0171919771 0.0248962656
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0020746888
##   TDK Core                               0.0028653295 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0103734440
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0286532951 0.0082987552
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0028653295 0.0000000000
##   THQ                                    0.0429799427 0.0746887967
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0057306590 0.0082987552
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0601719198 0.0518672199
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0041493776
##   Unknown                                0.0000000000 0.0062240664
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0057306590 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0028653295 0.0041493776
##   Video System                           0.0028653295 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0171919771 0.0124481328
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0028653295 0.0082987552
##   Wanadoo                                0.0000000000 0.0020746888
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2002         2003
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0048250905 0.0038709677
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0012062726 0.0012903226
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0398069964 0.0361290323
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0603136309 0.0438709677
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0012062726 0.0025806452
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0024125452 0.0025806452
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0012062726 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0012903226
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0566948130 0.0516129032
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0036188179 0.0038709677
##   Avalon Interactive                     0.0012062726 0.0012903226
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0217129071 0.0077419355
##   Banpresto                              0.0048250905 0.0077419355
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0012062726 0.0012903226
##   Big Ben Interactive                    0.0012062726 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0012062726 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0229191797 0.0400000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0012903226
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0012062726 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0060313631 0.0090322581
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0012062726 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0024125452 0.0012903226
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0012062726 0.0000000000
##   Deep Silver                            0.0000000000 0.0000000000
##   Destination Software, Inc              0.0012062726 0.0012903226
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0012062726 0.0000000000
##   Disney Interactive Studios             0.0012062726 0.0025806452
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0025806452
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0180940893 0.0219354839
##   Electronic Arts                        0.1061519903 0.1096774194
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0096501809 0.0077419355
##   Encore                                 0.0000000000 0.0025806452
##   Enix Corporation                       0.0060313631 0.0012903226
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0036188179 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0012062726 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0012062726 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0012903226
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0025806452
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0025806452
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0012903226
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0012062726 0.0064516129
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0012062726 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0012062726 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0012903226
##   Hudson Soft                            0.0048250905 0.0038709677
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0012062726 0.0000000000
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0024125452 0.0051612903
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0265379976 0.0025806452
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0024125452 0.0025806452
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0024125452 0.0090322581
##   Jester Interactive                     0.0012062726 0.0012903226
##   Jorudan                                0.0012062726 0.0012903226
##   JoWood Productions                     0.0012062726 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0048250905 0.0077419355
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0012062726 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0025806452
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0663449940 0.0348387097
##   Kool Kizz                              0.0000000000 0.0012903226
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0012062726 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0012062726 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0012062726 0.0038709677
##   LucasArts                              0.0048250905 0.0103225806
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0012062726 0.0025806452
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0012062726 0.0012903226
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0012062726 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0012062726 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0024125452 0.0038709677
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0036188179 0.0025806452
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0241254524 0.0361290323
##   Midas Interactive Entertainment        0.0024125452 0.0000000000
##   Midway Games                           0.0398069964 0.0309677419
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0025806452
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0012903226
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0301568154 0.0296774194
##   Natsume                                0.0036188179 0.0012903226
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0012062726 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0012062726 0.0038709677
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0265379976 0.0348387097
##   Nippon Amuse                           0.0012062726 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0012062726 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0012062726 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0024125452 0.0025806452
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0012062726 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0012062726 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0060313631 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0012062726 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0060313631 0.0012903226
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0012062726 0.0103225806
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0470446321 0.0412903226
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0012062726 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0361881785 0.0412903226
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0025806452
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0012062726 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0077419355
##   SquareSoft                             0.0024125452 0.0012903226
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0012062726 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0012062726 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0036188179 0.0012903226
##   Takara                                 0.0024125452 0.0012903226
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0096501809 0.0180645161
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0012062726 0.0000000000
##   TDK Mediactive                         0.0193003619 0.0180645161
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0132689988 0.0116129032
##   Telegames                              0.0000000000 0.0025806452
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0663449940 0.0825806452
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0048250905 0.0012903226
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0064516129
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0530759952 0.0606451613
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0168878166 0.0077419355
##   Unknown                                0.0036188179 0.0012903226
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0012062726 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0048250905 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0193003619 0.0412903226
##   Wanadoo                                0.0012062726 0.0025806452
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0025806452
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0024125452 0.0012903226
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0012062726 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0072376357 0.0116129032
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2004         2005
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0131061599 0.0138150903
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0091743119 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0615989515 0.0743889479
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0013106160 0.0010626993
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0013106160 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0013106160 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0013106160 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0511140236 0.0382571732
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0026212320 0.0000000000
##   Avalon Interactive                     0.0026212320 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0039318480 0.0000000000
##   Banpresto                              0.0039318480 0.0063761955
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0026212320 0.0021253985
##   Big Ben Interactive                    0.0013106160 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0010626993
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0301441678 0.0255047821
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0010626993
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0170380079 0.0074388948
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0131061599 0.0095642933
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0042507970
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0013106160 0.0031880978
##   Destination Software, Inc              0.0026212320 0.0010626993
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0104849279 0.0148777896
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0013106160 0.0010626993
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0010626993
##   DTP Entertainment                      0.0000000000 0.0021253985
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0131061599 0.0127523911
##   Electronic Arts                        0.1127129751 0.1243358130
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0065530799 0.0074388948
##   Encore                                 0.0000000000 0.0010626993
##   Enix Corporation                       0.0013106160 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0026212320 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0010626993
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0052424640 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0010626993
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0013106160 0.0021253985
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0052424640 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0013106160 0.0021253985
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0275229358 0.0159404888
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0013106160 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0010626993
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0010626993
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0026212320 0.0031880978
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0013106160 0.0010626993
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0010626993
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0144167759 0.0074388948
##   Illusion Softworks                     0.0013106160 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0039318480 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0013106160 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0010626993
##   Jaleco                                 0.0026212320 0.0000000000
##   Jester Interactive                     0.0000000000 0.0010626993
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0026212320 0.0042507970
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0013106160 0.0010626993
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0010626993
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0550458716 0.0595111583
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0052424640 0.0085015940
##   Mad Catz                               0.0013106160 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0104849279 0.0106269926
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0013106160 0.0031880978
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0013106160 0.0021253985
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0026212320 0.0010626993
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0026212320 0.0010626993
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0170380079 0.0148777896
##   Midas Interactive Entertainment        0.0000000000 0.0010626993
##   Midway Games                           0.0196592398 0.0223166844
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0026212320 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0249017038 0.0053134963
##   Namco Bandai Games                     0.0327653997 0.0435706695
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0021253985
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0747051114 0.0478214665
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0021253985
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0013106160 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0010626993
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0091743119 0.0031880978
##   Playlogic Game Factory                 0.0000000000 0.0010626993
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0021253985
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0013106160 0.0010626993
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0074388948
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0013106160 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0065530799 0.0031880978
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0366972477 0.0329436769
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0010626993
##   SNK Playmore                           0.0000000000 0.0031880978
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0393184797 0.0510095643
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0013106160 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0013106160 0.0010626993
##   SouthPeak Games                        0.0013106160 0.0010626993
##   Spike                                  0.0013106160 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0078636959 0.0063761955
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0013106160 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0021253985
##   Summitsoft                             0.0013106160 0.0000000000
##   Sunflowers                             0.0013106160 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0157273919 0.0435706695
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0013106160 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0170380079 0.0138150903
##   Telegames                              0.0000000000 0.0010626993
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0642201835 0.0669500531
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0013106160 0.0031880978
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0419397117 0.0605738576
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0013106160 0.0010626993
##   Valcon Games                           0.0000000000 0.0010626993
##   ValuSoft                               0.0000000000 0.0010626993
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0235910878 0.0265674814
##   Wanadoo                                0.0000000000 0.0010626993
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0010626993
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0010626993
##   XS Games                               0.0039318480 0.0010626993
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0010626993
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0222804718 0.0329436769
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2006         2007
##   10TACLE Studios                        0.0009920635 0.0016638935
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0218253968 0.0232945092
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0009920635 0.0000000000
##   Activision                             0.0496031746 0.0623960067
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0029761905 0.0033277870
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0019841270 0.0024958403
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0008319468
##   Aqua Plus                              0.0009920635 0.0008319468
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0009920635 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0009920635 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0008319468
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0228174603 0.0257903494
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0019841270 0.0016638935
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0024958403
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0069444444 0.0074875208
##   Benesse                                0.0000000000 0.0016638935
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0019841270 0.0016638935
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0016638935
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0008319468
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0016638935
##   Broccoli                               0.0009920635 0.0024958403
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0267857143 0.0141430948
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0019841270 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0079365079 0.0099833611
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0008319468
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0016638935
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0049603175 0.0033277870
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0008319468
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0128968254 0.0183028286
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0039682540 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0008319468
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0008319468
##   Deep Silver                            0.0029761905 0.0008319468
##   Destination Software, Inc              0.0019841270 0.0016638935
##   Destineer                              0.0000000000 0.0033277870
##   Detn8 Games                            0.0000000000 0.0008319468
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0016638935
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0128968254 0.0232945092
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0019841270 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0009920635 0.0024958403
##   DTP Entertainment                      0.0000000000 0.0008319468
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0009920635 0.0000000000
##   Eidos Interactive                      0.0287698413 0.0183028286
##   Electronic Arts                        0.1011904762 0.0890183028
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0039682540 0.0033277870
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0019841270 0.0008319468
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0008319468
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0019841270 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0016638935
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0008319468
##   Focus Home Interactive                 0.0019841270 0.0008319468
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0009920635 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0009920635 0.0016638935
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0016638935
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0069444444 0.0074875208
##   Game Life                              0.0000000000 0.0008319468
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0008319468
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0024958403
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0009920635 0.0016638935
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0009920635 0.0008319468
##   Global Star                            0.0029761905 0.0000000000
##   GN Software                            0.0009920635 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0008319468
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0009920635 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0008319468
##   Hackberry                              0.0000000000 0.0033277870
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0009920635 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0009920635 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0009920635 0.0008319468
##   Hudson Soft                            0.0029761905 0.0024958403
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0039682540 0.0016638935
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0019841270 0.0008319468
##   Ignition Entertainment                 0.0089285714 0.0058236273
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0029761905 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0008319468
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0009920635 0.0008319468
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0024958403
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0009920635 0.0008319468
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0009920635 0.0024958403
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0008319468
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0009920635 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0029761905 0.0000000000
##   Kids Station                           0.0000000000 0.0008319468
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0654761905 0.0507487521
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0008319468
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0008319468
##   Liquid Games                           0.0009920635 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0089285714 0.0091514143
##   Mad Catz                               0.0009920635 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0059523810 0.0049916805
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0019841270 0.0091514143
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0009920635 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0009920635 0.0008319468
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0016638935
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0016638935
##   Michaelsoft                            0.0009920635 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0089285714 0.0158069884
##   Midas Interactive Entertainment        0.0009920635 0.0008319468
##   Midway Games                           0.0248015873 0.0141430948
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0016638935
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0008319468
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0019841270 0.0024958403
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0009920635 0.0016638935
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0029761905 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0008319468
##   Namco Bandai Games                     0.0654761905 0.0407653910
##   Natsume                                0.0029761905 0.0008319468
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0019841270 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0016638935
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0525793651 0.0349417637
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0049916805
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0016638935
##   Nordcurrent                            0.0000000000 0.0008319468
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0009920635 0.0008319468
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0009920635 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0029761905 0.0008319468
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0016638935
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0008319468
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0016638935
##   Phoenix Games                          0.0000000000 0.0008319468
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0009920635 0.0008319468
##   Popcorn Arcade                         0.0000000000 0.0058236273
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0016638935
##   Princess Soft                          0.0009920635 0.0000000000
##   Prototype                              0.0000000000 0.0041597338
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0009920635 0.0008319468
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0089285714 0.0158069884
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0019841270 0.0024958403
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0008319468
##   Russel                                 0.0000000000 0.0008319468
##   Sammy Corporation                      0.0009920635 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0008319468
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0466269841 0.0415973378
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0009920635 0.0008319468
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0009920635 0.0033277870
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0505952381 0.0341098170
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0009920635 0.0000000000
##   SouthPeak Games                        0.0019841270 0.0033277870
##   Spike                                  0.0039682540 0.0066555740
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0119047619 0.0191347754
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0016638935
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0009920635 0.0008319468
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0009920635 0.0041597338
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0009920635 0.0008319468
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0009920635 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0029761905 0.0016638935
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0019841270 0.0024958403
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0029761905 0.0066555740
##   Take-Two Interactive                   0.0327380952 0.0307820300
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0019841270 0.0008319468
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0257936508 0.0257903494
##   Telegames                              0.0000000000 0.0016638935
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0565476190 0.0615640599
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0024958403
##   Tomy Corporation                       0.0009920635 0.0008319468
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0008319468
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0605158730 0.0732113145
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0008319468
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0019841270 0.0024958403
##   Valcon Games                           0.0009920635 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0188492063 0.0174708819
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0008319468
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0009920635 0.0041597338
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0008319468
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0039682540 0.0016638935
##   XS Games                               0.0000000000 0.0008319468
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0019841270 0.0000000000
##   Yeti                                   0.0009920635 0.0008319468
##   Yuke's                                 0.0009920635 0.0008319468
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0009920635 0.0008319468
##   Zoo Digital Publishing                 0.0059523810 0.0099833611
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0008319468
##                                         Year
## Publisher                                        2008         2009
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0006988120
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0007002801 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0006988120
##   505 Games                              0.0091036415 0.0209643606
##   5pb                                    0.0035014006 0.0048916841
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0006988120
##   Acquire                                0.0007002801 0.0006988120
##   Activision                             0.0616246499 0.0845562544
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0063025210 0.0048916841
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0006988120
##   Aksys Games                            0.0007002801 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0006988120
##   Alchemist                              0.0049019608 0.0027952481
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0006988120
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0007002801 0.0020964361
##   Aqua Plus                              0.0007002801 0.0020964361
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0028011204 0.0020964361
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0007002801 0.0000000000
##   ArtDink                                0.0000000000 0.0006988120
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0014005602 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0014005602 0.0013976240
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0014005602 0.0027952481
##   Astragon                               0.0000000000 0.0006988120
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0224089636 0.0139762404
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0035014006 0.0034940601
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0014005602 0.0048916841
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0028011204 0.0013976240
##   Benesse                                0.0028011204 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0049019608 0.0041928721
##   Big Ben Interactive                    0.0007002801 0.0013976240
##   Big Fish Games                         0.0007002801 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0006988120
##   Black Bean Games                       0.0035014006 0.0034940601
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0007002801 0.0027952481
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0056022409 0.0000000000
##   Broccoli                               0.0007002801 0.0020964361
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0182072829 0.0104821803
##   Cave                                   0.0007002801 0.0006988120
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0014005602 0.0013976240
##   ChunSoft                               0.0000000000 0.0006988120
##   City Interactive                       0.0007002801 0.0027952481
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0084033613 0.0181691125
##   Codemasters Online                     0.0007002801 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0007002801 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0007002801 0.0006988120
##   Conspiracy Entertainment               0.0021008403 0.0013976240
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0021008403 0.0034940601
##   Creative Core                          0.0014005602 0.0006988120
##   Crimson Cow                            0.0007002801 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0007002801 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0007002801 0.0013976240
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0147058824 0.0216631726
##   Daedalic                               0.0000000000 0.0006988120
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0007002801 0.0006988120
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0091036415 0.0167714885
##   Destination Software, Inc              0.0014005602 0.0000000000
##   Destineer                              0.0105042017 0.0083857442
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0006988120
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0231092437 0.0167714885
##   Dorart                                 0.0007002801 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0014005602 0.0041928721
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0007002801 0.0000000000
##   DTP Entertainment                      0.0063025210 0.0076869322
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0006988120
##   Edia                                   0.0000000000 0.0006988120
##   Eidos Interactive                      0.0175070028 0.0139762404
##   Electronic Arts                        0.0840336134 0.0782669462
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0056022409 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0006988120
##   Enterbrain                             0.0014005602 0.0006988120
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0013976240
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0021008403 0.0020964361
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0006988120
##   Focus Home Interactive                 0.0007002801 0.0048916841
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0007002801 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0027952481
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0006988120
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0077030812 0.0000000000
##   Game Life                              0.0000000000 0.0006988120
##   Gamebridge                             0.0007002801 0.0006988120
##   Gamecock                               0.0028011204 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0006988120
##   Ghostlight                             0.0014005602 0.0006988120
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0014005602 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0007002801 0.0000000000
##   GOA                                    0.0007002801 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0007002801 0.0020964361
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0021008403 0.0041928721
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0028011204 0.0013976240
##   Gust                                   0.0007002801 0.0013976240
##   Hackberry                              0.0014005602 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0007002801 0.0006988120
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0007002801 0.0006988120
##   Hudson Soft                            0.0056022409 0.0055904962
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0042016807 0.0048916841
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0007002801 0.0000000000
##   Ignition Entertainment                 0.0105042017 0.0013976240
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0007002801 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0021008403 0.0006988120
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0007002801 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0014005602 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0035014006 0.0027952481
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0042016807 0.0020964361
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0014005602 0.0034940601
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0013976240
##   Koch Media                             0.0042016807 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0448179272 0.0412299092
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0007002801 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0027952481
##   Lexicon Entertainment                  0.0007002801 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0091036415 0.0062893082
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0006988120
##   Majesco Entertainment                  0.0084033613 0.0167714885
##   Mamba Games                            0.0007002801 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0091036415 0.0034940601
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0006988120
##   Mastiff                                0.0000000000 0.0020964361
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0020964361
##   Mercury Games                          0.0014005602 0.0000000000
##   Merscom LLC                            0.0000000000 0.0006988120
##   Metro 3D                               0.0014005602 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0070028011 0.0048916841
##   Midas Interactive Entertainment        0.0007002801 0.0027952481
##   Midway Games                           0.0112044818 0.0000000000
##   Milestone                              0.0007002801 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0007002801 0.0000000000
##   Mindscape                              0.0014005602 0.0090845563
##   Mirai Shounen                          0.0007002801 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0007002801 0.0000000000
##   MTO                                    0.0007002801 0.0000000000
##   MTV Games                              0.0091036415 0.0111809923
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0021008403 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0000000000
##   Namco Bandai Games                     0.0364145658 0.0433263452
##   Natsume                                0.0000000000 0.0006988120
##   Navarre Corp                           0.0007002801 0.0000000000
##   Naxat Soft                             0.0007002801 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0007002801 0.0000000000
##   Neko Entertainment                     0.0014005602 0.0006988120
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0224089636 0.0223619846
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0035014006 0.0062893082
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0049019608 0.0020964361
##   Nordcurrent                            0.0007002801 0.0006988120
##   Nordic Games                           0.0007002801 0.0027952481
##   NovaLogic                              0.0000000000 0.0006988120
##   Number None                            0.0000000000 0.0006988120
##   O-Games                                0.0000000000 0.0006988120
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0049019608 0.0062893082
##   P2 Games                               0.0000000000 0.0013976240
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0014005602 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0014005602 0.0027952481
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0013976240
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0006988120
##   Phenomedia                             0.0007002801 0.0006988120
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0028011204 0.0006988120
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0014005602 0.0076869322
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0006988120
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0006988120
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0021008403 0.0027952481
##   Popcorn Arcade                         0.0021008403 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0014005602 0.0027952481
##   Princess Soft                          0.0007002801 0.0000000000
##   Prototype                              0.0021008403 0.0034940601
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0013976240
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0006988120
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0119047619 0.0083857442
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0007002801 0.0006988120
##   Rondomedia                             0.0021008403 0.0034940601
##   RTL                                    0.0035014006 0.0013976240
##   Russel                                 0.0007002801 0.0006988120
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0028011204 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0469187675 0.0300489168
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0013976240
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0014005602 0.0013976240
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0259103641 0.0314465409
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0056022409 0.0090845563
##   Spike                                  0.0028011204 0.0055904962
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0168067227 0.0125786164
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0006988120
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0035014006 0.0000000000
##   Storm City Games                       0.0000000000 0.0020964361
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0021008403 0.0006988120
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0006988120
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0042016807 0.0013976240
##   System Soft                            0.0007002801 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0091036415 0.0034940601
##   Take-Two Interactive                   0.0287114846 0.0286512928
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0210084034 0.0146750524
##   Telegames                              0.0007002801 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0006988120
##   The Adventure Company                  0.0021008403 0.0013976240
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0427170868 0.0503144654
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0007002801 0.0013976240
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0006988120
##   Tomy Corporation                       0.0007002801 0.0006988120
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0021008403 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0007002801 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0784313725 0.0712788260
##   Ubisoft Annecy                         0.0000000000 0.0020964361
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0028011204 0.0020964361
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0014005602 0.0006988120
##   Valcon Games                           0.0014005602 0.0020964361
##   ValuSoft                               0.0007002801 0.0006988120
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0006988120
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0014005602 0.0006988120
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0112044818 0.0013976240
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0070028011 0.0202655486
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0021008403 0.0000000000
##   XS Games                               0.0014005602 0.0020964361
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0007002801 0.0013976240
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0084033613 0.0076869322
##   Zoo Games                              0.0056022409 0.0076869322
##   Zushi Games                            0.0028011204 0.0090845563
##                                         Year
## Publisher                                        2010         2011
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0017559263
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0174741859 0.0184372256
##   5pb                                    0.0079428118 0.0070237050
##   7G//AMES                               0.0007942812 0.0026338894
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0007942812 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0007942812 0.0017559263
##   Acquire                                0.0023828435 0.0035118525
##   Activision                             0.0706910246 0.0658472344
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0007942812 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0079428118 0.0061457419
##   Alternative Software                   0.0007942812 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0007942812 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0015885624 0.0026338894
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0023828435 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0007942812 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0023828435 0.0008779631
##   Asgard                                 0.0023828435 0.0008779631
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0023828435 0.0008779631
##   Asylum Entertainment                   0.0039714059 0.0008779631
##   Atari                                  0.0087370929 0.0043898156
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0031771247 0.0043898156
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0031771247 0.0061457419
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0026338894
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0023828435 0.0105355575
##   Big Ben Interactive                    0.0000000000 0.0008779631
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0035118525
##   Black Bean Games                       0.0063542494 0.0079016681
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0007942812 0.0026338894
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0174741859 0.0210711150
##   Cave                                   0.0015885624 0.0035118525
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0008779631
##   ChunSoft                               0.0007942812 0.0026338894
##   City Interactive                       0.0039714059 0.0035118525
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0039714059 0.0114135206
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0015885624 0.0017559263
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0023828435 0.0008779631
##   Conspiracy Entertainment               0.0031771247 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0055599682 0.0122914838
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0008779631
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0007942812 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0047656871 0.0008779631
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0246227164 0.0158033363
##   Daedalic                               0.0007942812 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0135027800 0.0114135206
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0095313741 0.0017559263
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0007942812 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0277998411 0.0175592625
##   Dorart                                 0.0007942812 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0015885624 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0055599682 0.0114135206
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0698967434 0.0667251975
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0015885624 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0017559263
##   Excalibur Publishing                   0.0000000000 0.0026338894
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0023828435 0.0008779631
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0007942812 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0047656871 0.0079016681
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0071485306 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0007942812 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0035118525
##   Funcom                                 0.0007942812 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0007942812 0.0035118525
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0007942812 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0007942812 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0007942812 0.0043898156
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0015885624 0.0017559263
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0007942812 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0015885624 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0007942812 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0023828435 0.0035118525
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0008779631
##   Gust                                   0.0007942812 0.0008779631
##   Hackberry                              0.0007942812 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0008779631
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0015885624 0.0017559263
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0087370929 0.0026338894
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0017559263
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0182684670 0.0166812994
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0017559263
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0015885624 0.0017559263
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0008779631
##   Jack of All Games                      0.0000000000 0.0017559263
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0031771247 0.0000000000
##   Just Flight                            0.0007942812 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0071485306 0.0079016681
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0039714059 0.0061457419
##   Kamui                                  0.0007942812 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0007942812 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0017559263
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0540111199 0.0386303775
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0023828435 0.0026338894
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0015885624 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0039714059 0.0070237050
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0079428118 0.0052677788
##   Mamba Games                            0.0007942812 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0047656871 0.0052677788
##   Masque Publishing                      0.0000000000 0.0008779631
##   Mastertronic                           0.0015885624 0.0070237050
##   Mastiff                                0.0031771247 0.0052677788
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0007942812 0.0008779631
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0095313741 0.0096575944
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0039714059 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0007942812 0.0000000000
##   MTV Games                              0.0063542494 0.0026338894
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0015885624 0.0026338894
##   Namco Bandai Games                     0.0555996823 0.0667251975
##   Natsume                                0.0023828435 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0015885624 0.0000000000
##   NetRevo                                0.0007942812 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0007942812 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0222398729 0.0228270413
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0071485306 0.0079016681
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0007942812 0.0000000000
##   Nordcurrent                            0.0015885624 0.0000000000
##   Nordic Games                           0.0039714059 0.0035118525
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0095313741 0.0035118525
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0008779631
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0007942812 0.0008779631
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0039714059 0.0052677788
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0007942812 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0023828435 0.0000000000
##   Plenty                                 0.0000000000 0.0008779631
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0023828435 0.0026338894
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0047656871 0.0087796313
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0031771247 0.0017559263
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0052677788
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0007942812 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0007942812 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0047656871 0.0079016681
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0015885624 0.0008779631
##   Rondomedia                             0.0015885624 0.0026338894
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0023828435 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0023828435 0.0017559263
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0309769658 0.0307287094
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0007942812 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0015885624 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0341540905 0.0316066725
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0026338894
##   SouthPeak Games                        0.0055599682 0.0000000000
##   Spike                                  0.0031771247 0.0017559263
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0198570294 0.0193151888
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0007942812 0.0017559263
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0007942812 0.0000000000
##   Storm City Games                       0.0103256553 0.0026338894
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0008779631
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0015885624 0.0008779631
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0015885624 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0031771247 0.0008779631
##   Take-Two Interactive                   0.0277998411 0.0272168569
##   Takuyo                                 0.0000000000 0.0008779631
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0007942812 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0150913423 0.0149253731
##   Telegames                              0.0007942812 0.0000000000
##   Telltale Games                         0.0000000000 0.0026338894
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0008779631
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0452740270 0.0667251975
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0008779631
##   Tomy Corporation                       0.0007942812 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0008779631
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0023828435 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0008779631
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0571882446 0.0763827919
##   Ubisoft Annecy                         0.0031771247 0.0026338894
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0039714059 0.0017559263
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0142970612 0.0368744513
##   Valcon Games                           0.0007942812 0.0000000000
##   ValuSoft                               0.0000000000 0.0008779631
##   Valve                                  0.0000000000 0.0008779631
##   Valve Software                         0.0000000000 0.0017559263
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0015885624 0.0000000000
##   Visco                                  0.0000000000 0.0008779631
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0008779631
##   Warner Bros. Interactive Entertainment 0.0262112788 0.0166812994
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0007942812 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0031771247 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0095313741 0.0017559263
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2012         2013
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0121765601 0.0109890110
##   5pb                                    0.0121765601 0.0091575092
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0091324201 0.0000000000
##   Acquire                                0.0030441400 0.0000000000
##   Activision                             0.0639269406 0.0695970696
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0018315018
##   Agatsuma Entertainment                 0.0015220700 0.0018315018
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0060882801 0.0073260073
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0030441400 0.0036630037
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0030441400 0.0109890110
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0015220700 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0015220700 0.0036630037
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0015220700 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0106544901 0.0036630037
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0091324201 0.0018315018
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0091324201 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0018315018
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0018315018
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0018315018
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0030441400 0.0073260073
##   BushiRoad                              0.0015220700 0.0000000000
##   Capcom                                 0.0365296804 0.0384615385
##   Cave                                   0.0015220700 0.0018315018
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0030441400 0.0000000000
##   City Interactive                       0.0000000000 0.0054945055
##   Cloud Imperium Games Corporation       0.0030441400 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0121765601 0.0091575092
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0015220700 0.0018315018
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0045662100 0.0036630037
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0030441400 0.0018315018
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0136986301 0.0366300366
##   Daedalic                               0.0015220700 0.0000000000
##   Daedalic Entertainment                 0.0015220700 0.0036630037
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0060882801 0.0219780220
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0106544901 0.0219780220
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0015220700 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0015220700 0.0000000000
##   Easy Interactive                       0.0030441400 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0700152207 0.0769230769
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0015220700 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0030441400 0.0036630037
##   Fields                                 0.0015220700 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0106544901 0.0054945055
##   Focus Multimedia                       0.0030441400 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0018315018
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0015220700 0.0000000000
##   Funcom                                 0.0015220700 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0060882801 0.0091575092
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0030441400 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0015220700 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0015220700 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0030441400 0.0036630037
##   Gust                                   0.0030441400 0.0018315018
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0018315018
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0015220700 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0289193303 0.0201465201
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0015220700 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0015220700 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0015220700 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0015220700 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0015220700 0.0054945055
##   Kadokawa Shoten                        0.0060882801 0.0073260073
##   Kaga Create                            0.0000000000 0.0018315018
##   Kalypso Media                          0.0015220700 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0018315018
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0487062405 0.0293040293
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0136986301 0.0054945055
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0045662100 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0036630037
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0015220700 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0036630037
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0030441400 0.0054945055
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0015220700 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0015220700 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0106544901 0.0146520147
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0015220700 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0018315018
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0030441400 0.0000000000
##   Namco Bandai Games                     0.1293759513 0.1153846154
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0015220700 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0015220700 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0030441400 0.0000000000
##   Nintendo                               0.0471841705 0.0421245421
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0015220700 0.0036630037
##   Nippon Ichi Software                   0.0076103501 0.0329670330
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0060882801 0.0036630037
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0018315018
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0018315018
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0018315018
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0015220700 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0015220700 0.0018315018
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0030441400 0.0018315018
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0060882801 0.0036630037
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0060882801 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0030441400 0.0054945055
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0015220700 0.0018315018
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0073260073
##   SCS Software                           0.0015220700 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0380517504 0.0311355311
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0018315018
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0365296804 0.0219780220
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0015220700 0.0128205128
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0060882801 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0167427702 0.0293040293
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0015220700 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0018315018
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0054945055
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0036630037
##   Take-Two Interactive                   0.0426179604 0.0293040293
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0152207002 0.0347985348
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0121765601 0.0018315018
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0015220700 0.0054945055
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0487062405 0.0531135531
##   Ubisoft Annecy                         0.0060882801 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0015220700 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0091324201 0.0036630037
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0015220700 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0319634703 0.0476190476
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0015220700 0.0018315018
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0015220700 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2014         2015
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0103092784 0.0065146580
##   5pb                                    0.0120274914 0.0146579805
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0017182131 0.0000000000
##   Activision                             0.0721649485 0.0635179153
##   Activision Blizzard                    0.0017182131 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0034364261 0.0048859935
##   Alawar Entertainment                   0.0000000000 0.0016286645
##   Alchemist                              0.0000000000 0.0032573290
##   Alternative Software                   0.0000000000 0.0016286645
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0065146580
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0068728522 0.0065146580
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0017182131 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0017182131 0.0000000000
##   Asgard                                 0.0000000000 0.0016286645
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0085910653 0.0048859935
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0000000000
##   Avanquest Software                     0.0000000000 0.0032573290
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0189003436 0.0179153094
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0017182131 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0211726384
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0032573290
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0068728522 0.0260586319
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0017182131 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0103092784 0.0048859935
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0085910653 0.0048859935
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0016286645
##   D3Publisher                            0.0034364261 0.0081433225
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0206185567 0.0114006515
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0016286645
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0171821306 0.0097719870
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0048859935
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0618556701 0.0521172638
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0017182131 0.0016286645
##   Extreme Entertainment Group            0.0000000000 0.0016286645
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0189003436 0.0065146580
##   Focus Multimedia                       0.0000000000 0.0016286645
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0016286645
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0051546392 0.0114006515
##   FuRyu Corporation                      0.0000000000 0.0016286645
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0017182131 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0017182131 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0034364261 0.0032573290
##   Harmonix Music Systems                 0.0000000000 0.0032573290
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0032573290
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0223367698 0.0228013029
##   Idea Factory International             0.0051546392 0.0048859935
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0034364261 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0016286645
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0016286645
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0085910653 0.0065146580
##   Kadokawa Shoten                        0.0017182131 0.0016286645
##   Kaga Create                            0.0000000000 0.0081433225
##   Kalypso Media                          0.0034364261 0.0048859935
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0081433225
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0309278351 0.0195439739
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0017182131 0.0032573290
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0154639175 0.0211726384
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0016286645
##   Marvelous Entertainment                0.0068728522 0.0032573290
##   Marvelous Games                        0.0000000000 0.0016286645
##   Marvelous Interactive                  0.0051546392 0.0048859935
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0154639175 0.0081433225
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0068728522 0.0146579805
##   Minato Station                         0.0000000000 0.0016286645
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0016286645
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0081433225
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0034364261 0.0000000000
##   Namco Bandai Games                     0.1185567010 0.1107491857
##   Natsume                                0.0017182131 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0017182131 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0017182131 0.0016286645
##   Nintendo                               0.0343642612 0.0521172638
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0034364261 0.0016286645
##   Nippon Ichi Software                   0.0326460481 0.0179153094
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0017182131 0.0016286645
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0034364261 0.0162866450
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0017182131 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0017182131 0.0016286645
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0130293160
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0051546392 0.0016286645
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0034364261 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0016286645
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0032573290
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0032573290
##   Rising Star Games                      0.0000000000 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0017182131 0.0048859935
##   Rondomedia                             0.0000000000 0.0016286645
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0016286645
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0395189003 0.0162866450
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0016286645
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0048859935
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0223367698 0.0162866450
##   Sony Computer Entertainment America    0.0051546392 0.0000000000
##   Sony Computer Entertainment Europe     0.0068728522 0.0016286645
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0446735395 0.0260586319
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0017182131 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0016286645
##   Take-Two Interactive                   0.0257731959 0.0276872964
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0463917526 0.0570032573
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0189003436 0.0114006515
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0048859935
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0016286645
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0034364261 0.0097719870
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0017182131 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0756013746 0.0521172638
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0051546392 0.0097719870
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0017182131 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0515463918 0.0423452769
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0016286645
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0017182131 0.0016286645
##   Yacht Club Games                       0.0000000000 0.0048859935
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2016         2017
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0203488372 0.0000000000
##   5pb                                    0.0058139535 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0406976744 0.0000000000
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0058139535 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0116279070 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0087209302 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0029069767 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0029069767 0.0000000000
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0058139535 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0058139535 0.0000000000
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0087209302 0.0000000000
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0000000000
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0058139535 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0523255814 0.0000000000
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0000000000
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0174418605 0.0000000000
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0029069767 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0087209302 0.0000000000
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0319767442 0.0000000000
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0000000000
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0058139535 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0000000000
##   Dusenberry Martin Racing               0.0058139535 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0000000000
##   Electronic Arts                        0.0581395349 0.0000000000
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0000000000
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0029069767 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0029069767 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0145348837 0.0000000000
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0000000000
##   FuRyu                                  0.0087209302 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0000000000
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0029069767 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0029069767 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0029069767 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0000000000
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0203488372 0.3333333333
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0000000000
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0000000000
##   Insomniac Games                        0.0087209302 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0029069767 0.0000000000
##   Introversion Software                  0.0029069767 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0058139535 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0000000000
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0087209302 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0232558140 0.0000000000
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0058139535 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0000000000
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0000000000
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0029069767 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0029069767 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0058139535 0.0000000000
##   Microprose                             0.0000000000 0.0000000000
##   Microsoft Game Studios                 0.0116279070 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0000000000
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0058139535 0.0000000000
##   Milestone S.r.l.                       0.0087209302 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0029069767 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0000000000
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0058139535 0.0000000000
##   Namco Bandai Games                     0.1162790698 0.0000000000
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0087209302 0.0000000000
##   Nintendo                               0.0290697674 0.0000000000
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0029069767 0.0000000000
##   Nippon Ichi Software                   0.0348837209 0.0000000000
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0087209302 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0000000000
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0029069767 0.0000000000
##   Paradox Interactive                    0.0058139535 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0145348837 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0029069767 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0029069767 0.0000000000
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0029069767 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0029069767 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0000000000
##   Sega                                   0.0232558140 0.6666666667
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0000000000
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0029069767 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0145348837 0.0000000000
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0581395349 0.0000000000
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0029069767 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0000000000
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0348837209 0.0000000000
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0494186047 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0116279070 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0000000000
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0000000000
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                0.0377906977 0.0000000000
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0029069767 0.0000000000
##   Ultravision                            0.0000000000 0.0000000000
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0000000000
##   Unknown                                0.0116279070 0.0000000000
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0000000000
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0406976744 0.0000000000
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0029069767 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000
##                                         Year
## Publisher                                        2020          N/A
##   10TACLE Studios                        0.0000000000 0.0000000000
##   1C Company                             0.0000000000 0.0000000000
##   20th Century Fox Video Games           0.0000000000 0.0000000000
##   2D Boy                                 0.0000000000 0.0000000000
##   3DO                                    0.0000000000 0.0000000000
##   49Games                                0.0000000000 0.0000000000
##   505 Games                              0.0000000000 0.0000000000
##   5pb                                    0.0000000000 0.0000000000
##   7G//AMES                               0.0000000000 0.0000000000
##   989 Sports                             0.0000000000 0.0000000000
##   989 Studios                            0.0000000000 0.0000000000
##   Abylight                               0.0000000000 0.0000000000
##   Acclaim Entertainment                  0.0000000000 0.0000000000
##   Accolade                               0.0000000000 0.0000000000
##   Ackkstudios                            0.0000000000 0.0000000000
##   Acquire                                0.0000000000 0.0000000000
##   Activision                             0.0000000000 0.0332103321
##   Activision Blizzard                    0.0000000000 0.0000000000
##   Activision Value                       0.0000000000 0.0000000000
##   Adeline Software                       0.0000000000 0.0000000000
##   Aerosoft                               0.0000000000 0.0000000000
##   Agatsuma Entertainment                 0.0000000000 0.0000000000
##   Agetec                                 0.0000000000 0.0000000000
##   Aksys Games                            0.0000000000 0.0000000000
##   Alawar Entertainment                   0.0000000000 0.0000000000
##   Alchemist                              0.0000000000 0.0000000000
##   Alternative Software                   0.0000000000 0.0000000000
##   Altron                                 0.0000000000 0.0000000000
##   Alvion                                 0.0000000000 0.0000000000
##   American Softworks                     0.0000000000 0.0000000000
##   Angel Studios                          0.0000000000 0.0000000000
##   Answer Software                        0.0000000000 0.0000000000
##   AQ Interactive                         0.0000000000 0.0000000000
##   Aqua Plus                              0.0000000000 0.0000000000
##   Aques                                  0.0000000000 0.0000000000
##   Arc System Works                       0.0000000000 0.0000000000
##   Arena Entertainment                    0.0000000000 0.0000000000
##   Aria                                   0.0000000000 0.0000000000
##   Arika                                  0.0000000000 0.0000000000
##   ArtDink                                0.0000000000 0.0000000000
##   Aruze Corp                             0.0000000000 0.0000000000
##   ASC Games                              0.0000000000 0.0000000000
##   Ascaron Entertainment                  0.0000000000 0.0000000000
##   Ascaron Entertainment GmbH             0.0000000000 0.0000000000
##   ASCII Entertainment                    0.0000000000 0.0000000000
##   ASCII Media Works                      0.0000000000 0.0000000000
##   Asgard                                 0.0000000000 0.0000000000
##   ASK                                    0.0000000000 0.0000000000
##   Asmik Ace Entertainment                0.0000000000 0.0000000000
##   Asmik Corp                             0.0000000000 0.0000000000
##   Aspyr                                  0.0000000000 0.0000000000
##   Astragon                               0.0000000000 0.0000000000
##   Asylum Entertainment                   0.0000000000 0.0000000000
##   Atari                                  0.0000000000 0.0590405904
##   Athena                                 0.0000000000 0.0000000000
##   Atlus                                  0.0000000000 0.0000000000
##   Avalon Interactive                     0.0000000000 0.0000000000
##   Avanquest                              0.0000000000 0.0036900369
##   Avanquest Software                     0.0000000000 0.0000000000
##   Axela                                  0.0000000000 0.0000000000
##   BAM! Entertainment                     0.0000000000 0.0000000000
##   Banpresto                              0.0000000000 0.0000000000
##   Benesse                                0.0000000000 0.0000000000
##   Berkeley                               0.0000000000 0.0000000000
##   Bethesda Softworks                     0.0000000000 0.0073800738
##   Big Ben Interactive                    0.0000000000 0.0000000000
##   Big Fish Games                         0.0000000000 0.0000000000
##   Bigben Interactive                     0.0000000000 0.0000000000
##   bitComposer Games                      0.0000000000 0.0000000000
##   Black Bean Games                       0.0000000000 0.0147601476
##   Black Label Games                      0.0000000000 0.0000000000
##   Blast! Entertainment Ltd               0.0000000000 0.0000000000
##   Blue Byte                              0.0000000000 0.0000000000
##   BMG Interactive Entertainment          0.0000000000 0.0000000000
##   Bohemia Interactive                    0.0000000000 0.0000000000
##   Bomb                                   0.0000000000 0.0000000000
##   Boost On                               0.0000000000 0.0000000000
##   BPS                                    0.0000000000 0.0000000000
##   Brash Entertainment                    0.0000000000 0.0000000000
##   Broccoli                               0.0000000000 0.0000000000
##   BushiRoad                              0.0000000000 0.0000000000
##   Capcom                                 0.0000000000 0.0184501845
##   Cave                                   0.0000000000 0.0000000000
##   CBS Electronics                        0.0000000000 0.0000000000
##   CCP                                    0.0000000000 0.0000000000
##   CDV Software Entertainment             0.0000000000 0.0000000000
##   ChunSoft                               0.0000000000 0.0000000000
##   City Interactive                       0.0000000000 0.0036900369
##   Cloud Imperium Games Corporation       0.0000000000 0.0000000000
##   Coconuts Japan                         0.0000000000 0.0000000000
##   Codemasters                            0.0000000000 0.0073800738
##   Codemasters Online                     0.0000000000 0.0000000000
##   CokeM Interactive                      0.0000000000 0.0000000000
##   Coleco                                 0.0000000000 0.0000000000
##   Comfort                                0.0000000000 0.0000000000
##   Commseed                               0.0000000000 0.0000000000
##   Compile                                0.0000000000 0.0000000000
##   Compile Heart                          0.0000000000 0.0000000000
##   Conspiracy Entertainment               0.0000000000 0.0000000000
##   Core Design Ltd.                       0.0000000000 0.0000000000
##   CPG Products                           0.0000000000 0.0000000000
##   Crave Entertainment                    0.0000000000 0.0000000000
##   Creative Core                          0.0000000000 0.0000000000
##   Crimson Cow                            0.0000000000 0.0000000000
##   Crystal Dynamics                       0.0000000000 0.0000000000
##   CTO SpA                                0.0000000000 0.0000000000
##   Culture Brain                          0.0000000000 0.0000000000
##   Culture Publishers                     0.0000000000 0.0000000000
##   CyberFront                             0.0000000000 0.0000000000
##   Cygames                                0.0000000000 0.0000000000
##   D3Publisher                            0.0000000000 0.0036900369
##   Daedalic                               0.0000000000 0.0000000000
##   Daedalic Entertainment                 0.0000000000 0.0000000000
##   Daito                                  0.0000000000 0.0000000000
##   Data Age                               0.0000000000 0.0000000000
##   Data Design Interactive                0.0000000000 0.0000000000
##   Data East                              0.0000000000 0.0000000000
##   Datam Polystar                         0.0000000000 0.0000000000
##   Deep Silver                            0.0000000000 0.0036900369
##   Destination Software, Inc              0.0000000000 0.0000000000
##   Destineer                              0.0000000000 0.0000000000
##   Detn8 Games                            0.0000000000 0.0000000000
##   Devolver Digital                       0.0000000000 0.0000000000
##   DHM Interactive                        0.0000000000 0.0000000000
##   DigiCube                               0.0000000000 0.0000000000
##   Disney Interactive Studios             0.0000000000 0.0147601476
##   Dorart                                 0.0000000000 0.0000000000
##   dramatic create                        0.0000000000 0.0000000000
##   DreamCatcher Interactive               0.0000000000 0.0000000000
##   DreamWorks Interactive                 0.0000000000 0.0000000000
##   DSI Games                              0.0000000000 0.0000000000
##   DTP Entertainment                      0.0000000000 0.0036900369
##   Dusenberry Martin Racing               0.0000000000 0.0000000000
##   EA Games                               0.0000000000 0.0000000000
##   Easy Interactive                       0.0000000000 0.0000000000
##   Ecole                                  0.0000000000 0.0000000000
##   Edia                                   0.0000000000 0.0000000000
##   Eidos Interactive                      0.0000000000 0.0073800738
##   Electronic Arts                        0.0000000000 0.0442804428
##   Electronic Arts Victor                 0.0000000000 0.0000000000
##   Elf                                    0.0000000000 0.0000000000
##   Elite                                  0.0000000000 0.0000000000
##   Empire Interactive                     0.0000000000 0.0036900369
##   Encore                                 0.0000000000 0.0000000000
##   Enix Corporation                       0.0000000000 0.0000000000
##   Enjoy Gaming ltd.                      0.0000000000 0.0000000000
##   Enterbrain                             0.0000000000 0.0000000000
##   EON Digital Entertainment              0.0000000000 0.0000000000
##   Epic Games                             0.0000000000 0.0000000000
##   Epoch                                  0.0000000000 0.0000000000
##   Ertain                                 0.0000000000 0.0000000000
##   ESP                                    0.0000000000 0.0000000000
##   Essential Games                        0.0000000000 0.0000000000
##   Evolution Games                        0.0000000000 0.0000000000
##   Evolved Games                          0.0000000000 0.0000000000
##   Excalibur Publishing                   0.0000000000 0.0000000000
##   Experience Inc.                        0.0000000000 0.0000000000
##   Extreme Entertainment Group            0.0000000000 0.0000000000
##   Falcom Corporation                     0.0000000000 0.0000000000
##   Fields                                 0.0000000000 0.0000000000
##   Flashpoint Games                       0.0000000000 0.0000000000
##   Flight-Plan                            0.0000000000 0.0000000000
##   Focus Home Interactive                 0.0000000000 0.0073800738
##   Focus Multimedia                       0.0000000000 0.0000000000
##   fonfun                                 0.0000000000 0.0000000000
##   Foreign Media Games                    0.0000000000 0.0000000000
##   Fortyfive                              0.0000000000 0.0000000000
##   Fox Interactive                        0.0000000000 0.0000000000
##   From Software                          0.0000000000 0.0000000000
##   Fuji                                   0.0000000000 0.0000000000
##   Funbox Media                           0.0000000000 0.0000000000
##   Funcom                                 0.0000000000 0.0000000000
##   FunSoft                                0.0000000000 0.0000000000
##   Funsta                                 0.0000000000 0.0036900369
##   FuRyu                                  0.0000000000 0.0000000000
##   FuRyu Corporation                      0.0000000000 0.0000000000
##   G.Rev                                  0.0000000000 0.0000000000
##   Gaga                                   0.0000000000 0.0000000000
##   Gainax Network Systems                 0.0000000000 0.0000000000
##   Gakken                                 0.0000000000 0.0000000000
##   Game Arts                              0.0000000000 0.0000000000
##   Game Factory                           0.0000000000 0.0000000000
##   Game Life                              0.0000000000 0.0000000000
##   Gamebridge                             0.0000000000 0.0000000000
##   Gamecock                               0.0000000000 0.0000000000
##   Gameloft                               0.0000000000 0.0000000000
##   GameMill Entertainment                 0.0000000000 0.0000000000
##   GameTek                                0.0000000000 0.0000000000
##   Gathering of Developers                0.0000000000 0.0000000000
##   General Entertainment                  0.0000000000 0.0000000000
##   Genki                                  0.0000000000 0.0000000000
##   Genterprise                            0.0000000000 0.0000000000
##   Ghostlight                             0.0000000000 0.0036900369
##   Giga                                   0.0000000000 0.0000000000
##   Giza10                                 0.0000000000 0.0000000000
##   Glams                                  0.0000000000 0.0000000000
##   Global A Entertainment                 0.0000000000 0.0000000000
##   Global Star                            0.0000000000 0.0000000000
##   GN Software                            0.0000000000 0.0000000000
##   GOA                                    0.0000000000 0.0000000000
##   Gotham Games                           0.0000000000 0.0000000000
##   Graffiti                               0.0000000000 0.0000000000
##   Grand Prix Games                       0.0000000000 0.0000000000
##   Graphsim Entertainment                 0.0000000000 0.0000000000
##   Gremlin Interactive Ltd                0.0000000000 0.0000000000
##   Griffin International                  0.0000000000 0.0000000000
##   Groove Games                           0.0000000000 0.0000000000
##   GSP                                    0.0000000000 0.0000000000
##   GT Interactive                         0.0000000000 0.0000000000
##   GungHo                                 0.0000000000 0.0000000000
##   Gust                                   0.0000000000 0.0000000000
##   Hackberry                              0.0000000000 0.0000000000
##   HAL Laboratory                         0.0000000000 0.0000000000
##   Hamster Corporation                    0.0000000000 0.0000000000
##   Happinet                               0.0000000000 0.0000000000
##   Harmonix Music Systems                 0.0000000000 0.0000000000
##   Hasbro Interactive                     0.0000000000 0.0000000000
##   Havas Interactive                      0.0000000000 0.0000000000
##   Headup Games                           0.0000000000 0.0000000000
##   Hearty Robin                           0.0000000000 0.0000000000
##   Hect                                   0.0000000000 0.0000000000
##   Hello Games                            0.0000000000 0.0000000000
##   Her Interactive                        0.0000000000 0.0000000000
##   Hip Interactive                        0.0000000000 0.0000000000
##   HMH Interactive                        0.0000000000 0.0000000000
##   Home Entertainment Suppliers           0.0000000000 0.0036900369
##   Hudson Entertainment                   0.0000000000 0.0000000000
##   Hudson Soft                            0.0000000000 0.0000000000
##   Human Entertainment                    0.0000000000 0.0000000000
##   HuneX                                  0.0000000000 0.0000000000
##   Iceberg Interactive                    0.0000000000 0.0000000000
##   id Software                            0.0000000000 0.0000000000
##   Idea Factory                           0.0000000000 0.0036900369
##   Idea Factory International             0.0000000000 0.0000000000
##   IE Institute                           0.0000000000 0.0000000000
##   Ignition Entertainment                 0.0000000000 0.0073800738
##   Illusion Softworks                     0.0000000000 0.0000000000
##   Imadio                                 0.0000000000 0.0000000000
##   Image Epoch                            0.0000000000 0.0000000000
##   imageepoch Inc.                        0.0000000000 0.0000000000
##   Imageworks                             0.0000000000 0.0000000000
##   Imagic                                 0.0000000000 0.0000000000
##   Imagineer                              0.0000000000 0.0000000000
##   Imax                                   0.0000000000 0.0000000000
##   Indie Games                            0.0000000000 0.0000000000
##   Infogrames                             0.0000000000 0.0036900369
##   Insomniac Games                        0.0000000000 0.0000000000
##   Interchannel                           0.0000000000 0.0000000000
##   Interchannel-Holon                     0.0000000000 0.0000000000
##   Intergrow                              0.0000000000 0.0000000000
##   Interplay                              0.0000000000 0.0000000000
##   Interplay Productions                  0.0000000000 0.0000000000
##   Interworks Unlimited, Inc.             0.0000000000 0.0000000000
##   Inti Creates                           0.0000000000 0.0000000000
##   Introversion Software                  0.0000000000 0.0000000000
##   inXile Entertainment                   0.0000000000 0.0000000000
##   Irem Software Engineering              0.0000000000 0.0000000000
##   ITT Family Games                       0.0000000000 0.0000000000
##   Ivolgamus                              0.0000000000 0.0000000000
##   iWin                                   0.0000000000 0.0000000000
##   Jack of All Games                      0.0000000000 0.0000000000
##   Jaleco                                 0.0000000000 0.0000000000
##   Jester Interactive                     0.0000000000 0.0000000000
##   Jorudan                                0.0000000000 0.0000000000
##   JoWood Productions                     0.0000000000 0.0000000000
##   Just Flight                            0.0000000000 0.0000000000
##   JVC                                    0.0000000000 0.0000000000
##   Kadokawa Games                         0.0000000000 0.0000000000
##   Kadokawa Shoten                        0.0000000000 0.0000000000
##   Kaga Create                            0.0000000000 0.0000000000
##   Kalypso Media                          0.0000000000 0.0110701107
##   Kamui                                  0.0000000000 0.0000000000
##   Kando Games                            0.0000000000 0.0000000000
##   Karin Entertainment                    0.0000000000 0.0000000000
##   Kemco                                  0.0000000000 0.0000000000
##   KID                                    0.0000000000 0.0000000000
##   Kids Station                           0.0000000000 0.0000000000
##   King Records                           0.0000000000 0.0000000000
##   Knowledge Adventure                    0.0000000000 0.0000000000
##   Koch Media                             0.0000000000 0.0000000000
##   Kokopeli Digital Studios               0.0000000000 0.0000000000
##   Konami Digital Entertainment           0.0000000000 0.0332103321
##   Kool Kizz                              0.0000000000 0.0000000000
##   KSS                                    0.0000000000 0.0000000000
##   Laguna                                 0.0000000000 0.0000000000
##   Legacy Interactive                     0.0000000000 0.0000000000
##   LEGO Media                             0.0000000000 0.0000000000
##   Level 5                                0.0000000000 0.0000000000
##   Lexicon Entertainment                  0.0000000000 0.0000000000
##   Licensed 4U                            0.0000000000 0.0000000000
##   Lighthouse Interactive                 0.0000000000 0.0000000000
##   Liquid Games                           0.0000000000 0.0000000000
##   Little Orbit                           0.0000000000 0.0000000000
##   Locus                                  0.0000000000 0.0000000000
##   LSP Games                              0.0000000000 0.0000000000
##   LucasArts                              0.0000000000 0.0036900369
##   Mad Catz                               0.0000000000 0.0000000000
##   Magical Company                        0.0000000000 0.0000000000
##   Magix                                  0.0000000000 0.0000000000
##   Majesco Entertainment                  0.0000000000 0.0073800738
##   Mamba Games                            0.0000000000 0.0000000000
##   Marvel Entertainment                   0.0000000000 0.0000000000
##   Marvelous Entertainment                0.0000000000 0.0000000000
##   Marvelous Games                        0.0000000000 0.0000000000
##   Marvelous Interactive                  0.0000000000 0.0000000000
##   Masque Publishing                      0.0000000000 0.0000000000
##   Mastertronic                           0.0000000000 0.0000000000
##   Mastiff                                0.0000000000 0.0000000000
##   Mattel Interactive                     0.0000000000 0.0000000000
##   Max Five                               0.0000000000 0.0000000000
##   Maximum Family Games                   0.0000000000 0.0000000000
##   Maxis                                  0.0000000000 0.0000000000
##   MC2 Entertainment                      0.0000000000 0.0000000000
##   Media Entertainment                    0.0000000000 0.0000000000
##   Media Factory                          0.0000000000 0.0000000000
##   Media Rings                            0.0000000000 0.0000000000
##   Media Works                            0.0000000000 0.0000000000
##   MediaQuest                             0.0000000000 0.0000000000
##   Men-A-Vision                           0.0000000000 0.0000000000
##   Mentor Interactive                     0.0000000000 0.0000000000
##   Mercury Games                          0.0000000000 0.0000000000
##   Merscom LLC                            0.0000000000 0.0000000000
##   Metro 3D                               0.0000000000 0.0000000000
##   Michaelsoft                            0.0000000000 0.0000000000
##   Micro Cabin                            0.0000000000 0.0000000000
##   Microids                               0.0000000000 0.0000000000
##   Microprose                             0.0000000000 0.0036900369
##   Microsoft Game Studios                 0.0000000000 0.0000000000
##   Midas Interactive Entertainment        0.0000000000 0.0000000000
##   Midway Games                           0.0000000000 0.0073800738
##   Milestone                              0.0000000000 0.0000000000
##   Milestone S.r.l                        0.0000000000 0.0000000000
##   Milestone S.r.l.                       0.0000000000 0.0000000000
##   Minato Station                         0.0000000000 0.0000000000
##   Mindscape                              0.0000000000 0.0000000000
##   Mirai Shounen                          0.0000000000 0.0000000000
##   Misawa                                 0.0000000000 0.0000000000
##   Mitsui                                 0.0000000000 0.0000000000
##   mixi, Inc                              0.0000000000 0.0000000000
##   MLB.com                                0.0000000000 0.0000000000
##   Mojang                                 0.0000000000 0.0000000000
##   Monte Christo Multimedia               0.0000000000 0.0000000000
##   Moss                                   0.0000000000 0.0000000000
##   MTO                                    0.0000000000 0.0000000000
##   MTV Games                              0.0000000000 0.0036900369
##   Mud Duck Productions                   0.0000000000 0.0000000000
##   Mumbo Jumbo                            0.0000000000 0.0000000000
##   Mycom                                  0.0000000000 0.0000000000
##   Myelin Media                           0.0000000000 0.0000000000
##   Mystique                               0.0000000000 0.0000000000
##   N/A                                    0.0000000000 0.0811808118
##   Namco Bandai Games                     0.0000000000 0.0147601476
##   Natsume                                0.0000000000 0.0000000000
##   Navarre Corp                           0.0000000000 0.0000000000
##   Naxat Soft                             0.0000000000 0.0000000000
##   NCS                                    0.0000000000 0.0000000000
##   NCSoft                                 0.0000000000 0.0000000000
##   NDA Productions                        0.0000000000 0.0000000000
##   NEC                                    0.0000000000 0.0000000000
##   NEC Interchannel                       0.0000000000 0.0000000000
##   Neko Entertainment                     0.0000000000 0.0000000000
##   NetRevo                                0.0000000000 0.0000000000
##   New                                    0.0000000000 0.0000000000
##   New World Computing                    0.0000000000 0.0000000000
##   NewKidCo                               0.0000000000 0.0000000000
##   Nexon                                  0.0000000000 0.0000000000
##   Nichibutsu                             0.0000000000 0.0000000000
##   Nihon Falcom Corporation               0.0000000000 0.0000000000
##   Nintendo                               0.0000000000 0.0258302583
##   Nippon Amuse                           0.0000000000 0.0000000000
##   Nippon Columbia                        0.0000000000 0.0000000000
##   Nippon Ichi Software                   0.0000000000 0.0036900369
##   Nippon Telenet                         0.0000000000 0.0000000000
##   Nitroplus                              0.0000000000 0.0000000000
##   Nobilis                                0.0000000000 0.0000000000
##   Nordcurrent                            0.0000000000 0.0000000000
##   Nordic Games                           0.0000000000 0.0000000000
##   NovaLogic                              0.0000000000 0.0000000000
##   Number None                            0.0000000000 0.0000000000
##   O-Games                                0.0000000000 0.0000000000
##   O3 Entertainment                       0.0000000000 0.0000000000
##   Ocean                                  0.0000000000 0.0000000000
##   Office Create                          0.0000000000 0.0000000000
##   On Demand                              0.0000000000 0.0000000000
##   Ongakukan                              0.0000000000 0.0000000000
##   Origin Systems                         0.0000000000 0.0000000000
##   Otomate                                0.0000000000 0.0000000000
##   Oxygen Interactive                     0.0000000000 0.0036900369
##   P2 Games                               0.0000000000 0.0000000000
##   Pacific Century Cyber Works            0.0000000000 0.0000000000
##   Pack-In-Video                          0.0000000000 0.0000000000
##   Pack In Soft                           0.0000000000 0.0000000000
##   Palcom                                 0.0000000000 0.0000000000
##   Panther Software                       0.0000000000 0.0000000000
##   Paon                                   0.0000000000 0.0000000000
##   Paon Corporation                       0.0000000000 0.0000000000
##   Paradox Development                    0.0000000000 0.0000000000
##   Paradox Interactive                    0.0000000000 0.0000000000
##   Parker Bros.                           0.0000000000 0.0000000000
##   Performance Designed Products          0.0000000000 0.0000000000
##   Phantagram                             0.0000000000 0.0000000000
##   Phantom EFX                            0.0000000000 0.0000000000
##   Phenomedia                             0.0000000000 0.0000000000
##   Phoenix Games                          0.0000000000 0.0000000000
##   Piacci                                 0.0000000000 0.0000000000
##   Pinnacle                               0.0000000000 0.0000000000
##   Pioneer LDC                            0.0000000000 0.0000000000
##   Play It                                0.0000000000 0.0000000000
##   Playlogic Game Factory                 0.0000000000 0.0000000000
##   Playmates                              0.0000000000 0.0000000000
##   Playmore                               0.0000000000 0.0000000000
##   PlayV                                  0.0000000000 0.0000000000
##   Plenty                                 0.0000000000 0.0000000000
##   PM Studios                             0.0000000000 0.0000000000
##   Pony Canyon                            0.0000000000 0.0000000000
##   PopCap Games                           0.0000000000 0.0000000000
##   Popcorn Arcade                         0.0000000000 0.0000000000
##   PopTop Software                        0.0000000000 0.0000000000
##   Pow                                    0.0000000000 0.0000000000
##   PQube                                  0.0000000000 0.0000000000
##   Princess Soft                          0.0000000000 0.0000000000
##   Prototype                              0.0000000000 0.0000000000
##   Psygnosis                              0.0000000000 0.0000000000
##   Quelle                                 0.0000000000 0.0000000000
##   Quest                                  0.0000000000 0.0000000000
##   Quinrose                               0.0000000000 0.0000000000
##   Quintet                                0.0000000000 0.0000000000
##   Rage Software                          0.0000000000 0.0000000000
##   Rain Games                             0.0000000000 0.0000000000
##   Rebellion                              0.0000000000 0.0000000000
##   Rebellion Developments                 0.0000000000 0.0000000000
##   RED Entertainment                      0.0000000000 0.0000000000
##   Red Orb                                0.0000000000 0.0000000000
##   Red Storm Entertainment                0.0000000000 0.0000000000
##   RedOctane                              0.0000000000 0.0000000000
##   Reef Entertainment                     0.0000000000 0.0000000000
##   responDESIGN                           0.0000000000 0.0000000000
##   Revolution (Japan)                     0.0000000000 0.0000000000
##   Revolution Software                    0.0000000000 0.0000000000
##   Rising Star Games                      0.0000000000 0.0036900369
##   Riverhillsoft                          0.0000000000 0.0000000000
##   Rocket Company                         0.0000000000 0.0000000000
##   Rondomedia                             0.0000000000 0.0000000000
##   RTL                                    0.0000000000 0.0000000000
##   Russel                                 0.0000000000 0.0000000000
##   Sammy Corporation                      0.0000000000 0.0000000000
##   Saurus                                 0.0000000000 0.0000000000
##   Scholastic Inc.                        0.0000000000 0.0000000000
##   SCi                                    0.0000000000 0.0000000000
##   Screenlife                             0.0000000000 0.0000000000
##   SCS Software                           0.0000000000 0.0000000000
##   Sears                                  0.0000000000 0.0036900369
##   Sega                                   0.0000000000 0.0258302583
##   Seta Corporation                       0.0000000000 0.0000000000
##   Seventh Chord                          0.0000000000 0.0000000000
##   Shogakukan                             0.0000000000 0.0000000000
##   Simon & Schuster Interactive           0.0000000000 0.0000000000
##   Slightly Mad Studios                   0.0000000000 0.0000000000
##   Slitherine Software                    0.0000000000 0.0036900369
##   SNK                                    0.0000000000 0.0000000000
##   SNK Playmore                           0.0000000000 0.0000000000
##   Societa                                0.0000000000 0.0000000000
##   Sold Out                               0.0000000000 0.0000000000
##   Sonnet                                 0.0000000000 0.0000000000
##   Sony Computer Entertainment            0.0000000000 0.0036900369
##   Sony Computer Entertainment America    0.0000000000 0.0000000000
##   Sony Computer Entertainment Europe     0.0000000000 0.0000000000
##   Sony Music Entertainment               0.0000000000 0.0000000000
##   Sony Online Entertainment              0.0000000000 0.0000000000
##   SouthPeak Games                        0.0000000000 0.0000000000
##   Spike                                  0.0000000000 0.0000000000
##   SPS                                    0.0000000000 0.0000000000
##   Square                                 0.0000000000 0.0000000000
##   Square EA                              0.0000000000 0.0000000000
##   Square Enix                            0.0000000000 0.0073800738
##   SquareSoft                             0.0000000000 0.0000000000
##   SSI                                    0.0000000000 0.0000000000
##   Stainless Games                        0.0000000000 0.0000000000
##   Starfish                               0.0000000000 0.0000000000
##   Starpath Corp.                         0.0000000000 0.0000000000
##   Sting                                  0.0000000000 0.0000000000
##   Storm City Games                       0.0000000000 0.0000000000
##   Strategy First                         0.0000000000 0.0000000000
##   Success                                0.0000000000 0.0000000000
##   Summitsoft                             0.0000000000 0.0000000000
##   Sunflowers                             0.0000000000 0.0000000000
##   Sunrise Interactive                    0.0000000000 0.0000000000
##   Sunsoft                                0.0000000000 0.0000000000
##   Sweets                                 0.0000000000 0.0000000000
##   Swing! Entertainment                   0.0000000000 0.0000000000
##   Syscom                                 0.0000000000 0.0000000000
##   System 3                               0.0000000000 0.0000000000
##   System 3 Arcade Software               0.0000000000 0.0036900369
##   System Soft                            0.0000000000 0.0000000000
##   T&E Soft                               0.0000000000 0.0000000000
##   Taito                                  0.0000000000 0.0000000000
##   Takara                                 0.0000000000 0.0000000000
##   Takara Tomy                            0.0000000000 0.0000000000
##   Take-Two Interactive                   0.0000000000 0.0036900369
##   Takuyo                                 0.0000000000 0.0000000000
##   TalonSoft                              0.0000000000 0.0000000000
##   TDK Core                               0.0000000000 0.0000000000
##   TDK Mediactive                         0.0000000000 0.0000000000
##   Team17 Software                        0.0000000000 0.0000000000
##   Technos Japan Corporation              0.0000000000 0.0000000000
##   TechnoSoft                             0.0000000000 0.0000000000
##   Tecmo Koei                             0.0000000000 0.0000000000
##   Telegames                              0.0000000000 0.0000000000
##   Telltale Games                         0.0000000000 0.0000000000
##   Telstar                                0.0000000000 0.0000000000
##   Tetris Online                          0.0000000000 0.0000000000
##   TGL                                    0.0000000000 0.0000000000
##   The Adventure Company                  0.0000000000 0.0000000000
##   The Learning Company                   0.0000000000 0.0000000000
##   THQ                                    0.0000000000 0.0110701107
##   Tigervision                            0.0000000000 0.0000000000
##   Time Warner Interactive                0.0000000000 0.0000000000
##   Titus                                  0.0000000000 0.0000000000
##   Tivola                                 0.0000000000 0.0000000000
##   TOHO                                   0.0000000000 0.0000000000
##   Tommo                                  0.0000000000 0.0000000000
##   Tomy Corporation                       0.0000000000 0.0000000000
##   TopWare Interactive                    0.0000000000 0.0073800738
##   Touchstone                             0.0000000000 0.0000000000
##   Tradewest                              0.0000000000 0.0000000000
##   Trion Worlds                           0.0000000000 0.0000000000
##   Tripwire Interactive                   0.0000000000 0.0000000000
##   Tru Blu Entertainment                  0.0000000000 0.0000000000
##   Tryfirst                               0.0000000000 0.0000000000
##   TYO                                    0.0000000000 0.0000000000
##   Type-Moon                              0.0000000000 0.0000000000
##   U.S. Gold                              0.0000000000 0.0000000000
##   Ubisoft                                1.0000000000 0.0110701107
##   Ubisoft Annecy                         0.0000000000 0.0000000000
##   UEP Systems                            0.0000000000 0.0000000000
##   UFO Interactive                        0.0000000000 0.0000000000
##   UIG Entertainment                      0.0000000000 0.0000000000
##   Ultravision                            0.0000000000 0.0036900369
##   Universal Gamex                        0.0000000000 0.0000000000
##   Universal Interactive                  0.0000000000 0.0036900369
##   Unknown                                0.0000000000 0.3800738007
##   Valcon Games                           0.0000000000 0.0000000000
##   ValuSoft                               0.0000000000 0.0000000000
##   Valve                                  0.0000000000 0.0000000000
##   Valve Software                         0.0000000000 0.0000000000
##   Vap                                    0.0000000000 0.0000000000
##   Vatical Entertainment                  0.0000000000 0.0000000000
##   Vic Tokai                              0.0000000000 0.0000000000
##   Victor Interactive                     0.0000000000 0.0000000000
##   Video System                           0.0000000000 0.0000000000
##   Views                                  0.0000000000 0.0000000000
##   Vir2L Studios                          0.0000000000 0.0000000000
##   Virgin Interactive                     0.0000000000 0.0000000000
##   Virtual Play Games                     0.0000000000 0.0000000000
##   Visco                                  0.0000000000 0.0000000000
##   Vivendi Games                          0.0000000000 0.0110701107
##   Wanadoo                                0.0000000000 0.0000000000
##   Warashi                                0.0000000000 0.0000000000
##   Wargaming.net                          0.0000000000 0.0000000000
##   Warner Bros. Interactive Entertainment 0.0000000000 0.0553505535
##   Warp                                   0.0000000000 0.0000000000
##   WayForward Technologies                0.0000000000 0.0000000000
##   Westwood Studios                       0.0000000000 0.0000000000
##   White Park Bay Software                0.0000000000 0.0000000000
##   Wizard Video Games                     0.0000000000 0.0000000000
##   Xicat Interactive                      0.0000000000 0.0000000000
##   Xing Entertainment                     0.0000000000 0.0000000000
##   Xplosiv                                0.0000000000 0.0000000000
##   XS Games                               0.0000000000 0.0000000000
##   Xseed Games                            0.0000000000 0.0000000000
##   Yacht Club Games                       0.0000000000 0.0000000000
##   Yamasa Entertainment                   0.0000000000 0.0000000000
##   Yeti                                   0.0000000000 0.0000000000
##   Yuke's                                 0.0000000000 0.0000000000
##   Yumedia                                0.0000000000 0.0000000000
##   Zenrin                                 0.0000000000 0.0000000000
##   Zoo Digital Publishing                 0.0000000000 0.0000000000
##   Zoo Games                              0.0000000000 0.0000000000
##   Zushi Games                            0.0000000000 0.0000000000

Acclaim entertainment had a lot of releases earlier, before the 2005. Activision and 505 games have a good amount of game releases over the years.

myTable <-xtabs(~Genre+Publisher)
addmargins(myTable)
##               Publisher
## Genre          10TACLE Studios 1C Company 20th Century Fox Video Games
##   Action                     0          0                            4
##   Adventure                  1          0                            0
##   Fighting                   0          0                            0
##   Misc                       0          0                            0
##   Platform                   0          0                            0
##   Puzzle                     1          0                            0
##   Racing                     0          1                            0
##   Role-Playing               0          1                            0
##   Shooter                    0          0                            1
##   Simulation                 0          0                            0
##   Sports                     0          0                            0
##   Strategy                   1          1                            0
##   Sum                        3          3                            5
##               Publisher
## Genre          2D Boy   3DO 49Games 505 Games   5pb 7G//AMES 989 Sports
##   Action            0    17       0        21     5        0          0
##   Adventure         0     3       0         7    49        0          0
##   Fighting          0     1       0        11     1        0          0
##   Misc              0     0       0        31     0        1          0
##   Platform          0     1       0         6     0        0          0
##   Puzzle            1     1       0        15     0        1          0
##   Racing            0     0       0         2     0        0          0
##   Role-Playing      0     1       0        10     1        0          0
##   Shooter           0     5       0        18     3        0          0
##   Simulation        0     0       0        41     2        2          0
##   Sports            0     6       1        27     0        0          1
##   Strategy          0     1       0         3     0        0          0
##   Sum               1    36       1       192    61        4          1
##               Publisher
## Genre          989 Studios Abylight Acclaim Entertainment Accolade
##   Action                 2        1                    14        0
##   Adventure              0        0                     4        0
##   Fighting               0        0                    31        0
##   Misc                   0        0                     5        0
##   Platform               0        0                     5        1
##   Puzzle                 0        0                     9        0
##   Racing                 3        0                    44        1
##   Role-Playing           0        0                     1        0
##   Shooter                0        0                    17        0
##   Simulation             0        0                     0        0
##   Sports                 9        0                    52        1
##   Strategy               0        0                     2        0
##   Sum                   14        1                   184        3
##               Publisher
## Genre          Ackkstudios Acquire Activision Activision Blizzard
##   Action                 4       2        310                   1
##   Adventure              1       2         25                   0
##   Fighting               0       0          7                   0
##   Misc                   0       0        103                   0
##   Platform               0       0         60                   0
##   Puzzle                 0       0          7                   0
##   Racing                 0       0         74                   0
##   Role-Playing           2       8         41                   0
##   Shooter                0       0        159                   0
##   Simulation             0       0         23                   0
##   Sports                 2       0        144                   0
##   Strategy               1       1         22                   0
##   Sum                   10      13        975                   1
##               Publisher
## Genre          Activision Value Adeline Software Aerosoft
##   Action                      1                1        0
##   Adventure                   0                0        0
##   Fighting                    0                0        0
##   Misc                        1                0        0
##   Platform                    0                0        0
##   Puzzle                      0                0        0
##   Racing                      0                0        0
##   Role-Playing                0                0        0
##   Shooter                     4                0        0
##   Simulation                  0                0        2
##   Sports                     22                0        0
##   Strategy                    1                0        0
##   Sum                        29                1        2
##               Publisher
## Genre          Agatsuma Entertainment Agetec Aksys Games
##   Action                            1      2           1
##   Adventure                         0      0           3
##   Fighting                          0      1           0
##   Misc                              1      1           0
##   Platform                          1      0           0
##   Puzzle                            0      0           0
##   Racing                            0      1           0
##   Role-Playing                      0      0           4
##   Shooter                           0      0           0
##   Simulation                        0      1           0
##   Sports                            0      1           0
##   Strategy                          0      1           0
##   Sum                               3      8           8
##               Publisher
## Genre          Alawar Entertainment Alchemist Alternative Software Altron
##   Action                          1         3                    1      0
##   Adventure                       0        32                    0      0
##   Fighting                        0         0                    0      0
##   Misc                            0         4                    0      0
##   Platform                        0         0                    0      0
##   Puzzle                          0         0                    0      0
##   Racing                          0         0                    0      0
##   Role-Playing                    0         1                    0      0
##   Shooter                         0         3                    0      1
##   Simulation                      0         0                    0      0
##   Sports                          0         0                    5      0
##   Strategy                        1         0                    0      0
##   Sum                             2        43                    6      1
##               Publisher
## Genre          Alvion American Softworks Angel Studios Answer Software
##   Action            0                  1             0               1
##   Adventure         0                  0             0               0
##   Fighting          0                  0             1               0
##   Misc              2                  0             0               0
##   Platform          0                  0             0               0
##   Puzzle            0                  0             0               0
##   Racing            0                  0             0               0
##   Role-Playing      0                  0             1               0
##   Shooter           0                  0             0               0
##   Simulation        0                  0             0               0
##   Sports            0                  0             0               0
##   Strategy          0                  0             1               0
##   Sum               2                  1             3               1
##               Publisher
## Genre          AQ Interactive Aqua Plus Aques Arc System Works
##   Action                    0         0     0                3
##   Adventure                 0        13     0               10
##   Fighting                  2         1     0                7
##   Misc                      3         5     0                1
##   Platform                  0         0     0                0
##   Puzzle                    0         0     0                0
##   Racing                    0         0     0                0
##   Role-Playing              0         2     0                1
##   Shooter                   0         0     0                0
##   Simulation                0         0     0                0
##   Sports                    0         0     1                4
##   Strategy                  0         2     0                0
##   Sum                       5        23     1               26
##               Publisher
## Genre          Arena Entertainment  Aria Arika ArtDink Aruze Corp
##   Action                         0     0     0       0          0
##   Adventure                      0     1     0       0          0
##   Fighting                       1     0     0       0          0
##   Misc                           0     0     1       0          3
##   Platform                       0     0     0       0          0
##   Puzzle                         0     0     0       0          0
##   Racing                         0     0     0       0          0
##   Role-Playing                   0     0     1       3          0
##   Shooter                        0     0     1       0          0
##   Simulation                     0     0     0       3          0
##   Sports                         1     0     0       0          0
##   Strategy                       0     0     0       3          0
##   Sum                            2     1     3       9          3
##               Publisher
## Genre          ASC Games Ascaron Entertainment Ascaron Entertainment GmbH
##   Action               1                     0                          0
##   Adventure            0                     0                          0
##   Fighting             0                     0                          0
##   Misc                 0                     0                          0
##   Platform             0                     0                          0
##   Puzzle               0                     0                          0
##   Racing               1                     0                          0
##   Role-Playing         0                     0                          1
##   Shooter              0                     0                          0
##   Simulation           0                     0                          0
##   Sports               1                     0                          0
##   Strategy             0                     1                          2
##   Sum                  3                     1                          3
##               Publisher
## Genre          ASCII Entertainment ASCII Media Works Asgard   ASK
##   Action                         0                 0      2     0
##   Adventure                      2                 7      0     0
##   Fighting                       0                 0      0     0
##   Misc                           2                 0      6     1
##   Platform                       0                 0      0     0
##   Puzzle                         0                 0      0     0
##   Racing                         3                 0      0     0
##   Role-Playing                   3                 2      0     0
##   Shooter                        0                 0      0     0
##   Simulation                     1                 0      0     0
##   Sports                         8                 0      0     0
##   Strategy                       1                 0      0     0
##   Sum                           20                 9      8     1
##               Publisher
## Genre          Asmik Ace Entertainment Asmik Corp Aspyr Astragon
##   Action                             0          0     0        1
##   Adventure                          1          0     1        2
##   Fighting                           1          0     0        0
##   Misc                               0          0     3        0
##   Platform                           0          0     0        0
##   Puzzle                             0          0     0        2
##   Racing                             0          0     0        0
##   Role-Playing                       0          0     1        0
##   Shooter                            0          0     0        0
##   Simulation                         1          0     1        1
##   Sports                             0          2     2        0
##   Strategy                           0          0     0        0
##   Sum                                3          2     8        6
##               Publisher
## Genre          Asylum Entertainment Atari Athena Atlus Avalon Interactive
##   Action                          0    54      0     3                  1
##   Adventure                       3    17      1     1                  0
##   Fighting                        0    37      0     5                  0
##   Misc                            0    26      0     1                  0
##   Platform                        1    21      0     1                  0
##   Puzzle                          0    22      0     0                  0
##   Racing                          0    36      0     1                  1
##   Role-Playing                    0    28      0    46                  2
##   Shooter                         0    40      0     2                  1
##   Simulation                      2     9      0     1                  1
##   Sports                          0    56      1     4                  0
##   Strategy                        0    17      0     2                  0
##   Sum                             6   363      2    67                  6
##               Publisher
## Genre          Avanquest Avanquest Software Axela BAM! Entertainment
##   Action               4                  4     0                  9
##   Adventure            1                  3     0                  3
##   Fighting             0                  0     0                  1
##   Misc                 3                  2     0                  1
##   Platform             0                  0     0                  4
##   Puzzle              14                  0     0                  0
##   Racing               0                  0     0                  7
##   Role-Playing         0                  0     0                  0
##   Shooter              0                  0     0                  8
##   Simulation           2                  0     0                  0
##   Sports               2                  0     1                  2
##   Strategy             0                  0     0                  0
##   Sum                 26                  9     1                 35
##               Publisher
## Genre          Banpresto Benesse Berkeley Bethesda Softworks
##   Action               4       0        1                 17
##   Adventure            6       0        0                  0
##   Fighting             6       0        0                  0
##   Misc                 1       6        0                  0
##   Platform             1       0        0                  0
##   Puzzle               2       0        0                  0
##   Racing               1       0        0                  7
##   Role-Playing        17       0        0                 17
##   Shooter              1       0        0                 21
##   Simulation           3       0        0                  2
##   Sports               3       0        0                  5
##   Strategy            28       0        0                  2
##   Sum                 73       6        1                 71
##               Publisher
## Genre          Big Ben Interactive Big Fish Games Bigben Interactive
##   Action                         0              1                  0
##   Adventure                      1              1                  0
##   Fighting                       0              0                  0
##   Misc                           0              0                  0
##   Platform                       1              0                  0
##   Puzzle                         0              0                  0
##   Racing                         2              0                  0
##   Role-Playing                   0              0                  0
##   Shooter                        1              0                  0
##   Simulation                     0              0                  0
##   Sports                         2              0                 13
##   Strategy                       0              0                  0
##   Sum                            7              2                 13
##               Publisher
## Genre          bitComposer Games Black Bean Games Black Label Games
##   Action                       0                1                 1
##   Adventure                    0                0                 0
##   Fighting                     0                0                 0
##   Misc                         0                5                 0
##   Platform                     0                0                 0
##   Puzzle                       0                0                 0
##   Racing                       1               19                 0
##   Role-Playing                 0                0                 0
##   Shooter                      0                0                 0
##   Simulation                   4                0                 0
##   Sports                       0                8                 0
##   Strategy                     0                1                 0
##   Sum                          5               34                 1
##               Publisher
## Genre          Blast! Entertainment Ltd Blue Byte
##   Action                              2         0
##   Adventure                           2         0
##   Fighting                            0         0
##   Misc                                0         0
##   Platform                            0         0
##   Puzzle                              0         0
##   Racing                              0         0
##   Role-Playing                        0         0
##   Shooter                             0         0
##   Simulation                          0         1
##   Sports                              2         0
##   Strategy                            0         1
##   Sum                                 6         2
##               Publisher
## Genre          BMG Interactive Entertainment Bohemia Interactive  Bomb
##   Action                                   0                   0     1
##   Adventure                                0                   0     0
##   Fighting                                 0                   0     0
##   Misc                                     0                   0     0
##   Platform                                 3                   0     0
##   Puzzle                                   0                   0     0
##   Racing                                   1                   0     0
##   Role-Playing                             0                   0     0
##   Shooter                                  2                   1     0
##   Simulation                               0                   0     0
##   Sports                                   1                   0     0
##   Strategy                                 0                   0     0
##   Sum                                      7                   1     1
##               Publisher
## Genre          Boost On   BPS Brash Entertainment Broccoli BushiRoad
##   Action              0     0                   0        5         0
##   Adventure           1     0                   0        9         1
##   Fighting            0     0                   0        2         0
##   Misc                0     0                   3        1         0
##   Platform            0     0                   7        0         0
##   Puzzle              0     1                   0        0         0
##   Racing              0     1                   0        0         0
##   Role-Playing        0     0                   0        1         0
##   Shooter             0     0                   0        0         0
##   Simulation          0     0                   0        1         0
##   Sports              0     0                   0        0         0
##   Strategy            0     0                   0        3         0
##   Sum                 1     2                  10       22         1
##               Publisher
## Genre          Capcom  Cave CBS Electronics   CCP
##   Action          154     1               1     0
##   Adventure        22     1               0     0
##   Fighting         58     0               0     0
##   Misc             11     1               0     0
##   Platform         46     0               0     0
##   Puzzle            6     0               0     0
##   Racing           13     0               0     0
##   Role-Playing     38     0               0     1
##   Shooter          25     7               0     0
##   Simulation        2     0               0     0
##   Sports            3     0               0     0
##   Strategy          3     0               0     0
##   Sum             381    10               1     1
##               Publisher
## Genre          CDV Software Entertainment ChunSoft City Interactive
##   Action                                0        1                1
##   Adventure                             1       11                5
##   Fighting                              0        0                0
##   Misc                                  0        0                1
##   Platform                              0        0                0
##   Puzzle                                1        0                2
##   Racing                                0        0                0
##   Role-Playing                          0        6                0
##   Shooter                               0        0                8
##   Simulation                            1        0                2
##   Sports                                0        0                0
##   Strategy                              3        0                0
##   Sum                                   6       18               19
##               Publisher
## Genre          Cloud Imperium Games Corporation Coconuts Japan Codemasters
##   Action                                      0              0           9
##   Adventure                                   0              1           6
##   Fighting                                    2              0           0
##   Misc                                        0              1           7
##   Platform                                    0              0           0
##   Puzzle                                      0              0           1
##   Racing                                      0              0          89
##   Role-Playing                                0              0           3
##   Shooter                                     0              0          20
##   Simulation                                  0              0           3
##   Sports                                      0              0          10
##   Strategy                                    0              0           4
##   Sum                                         2              2         152
##               Publisher
## Genre          Codemasters Online CokeM Interactive Coleco Comfort
##   Action                        0                 1      3       1
##   Adventure                     0                 0      0       5
##   Fighting                      0                 0      0       0
##   Misc                          0                 0      0       0
##   Platform                      0                 0      1       0
##   Puzzle                        0                 0      0       0
##   Racing                        0                 0      0       0
##   Role-Playing                  1                 0      0       0
##   Shooter                       0                 0      1       0
##   Simulation                    0                 0      0       0
##   Sports                        0                 0      0       0
##   Strategy                      0                 0      0       0
##   Sum                           1                 1      5       6
##               Publisher
## Genre          Commseed Compile Compile Heart Conspiracy Entertainment
##   Action              0       0             2                        3
##   Adventure           0       0             4                        0
##   Fighting            0       0             0                        0
##   Misc                1       0             0                        2
##   Platform            0       0             0                        1
##   Puzzle              0       5             0                        3
##   Racing              0       0             0                        1
##   Role-Playing        0       1            13                        0
##   Shooter             0       0             0                        2
##   Simulation          0       0             0                        1
##   Sports              0       0             0                        1
##   Strategy            0       0             1                        0
##   Sum                 1       6            20                       14
##               Publisher
## Genre          Core Design Ltd. CPG Products Crave Entertainment
##   Action                      1            1                  11
##   Adventure                   0            0                   1
##   Fighting                    0            0                   5
##   Misc                        0            0                  18
##   Platform                    0            0                   3
##   Puzzle                      0            0                  10
##   Racing                      0            0                   4
##   Role-Playing                0            0                   2
##   Shooter                     0            0                   3
##   Simulation                  1            0                   2
##   Sports                      0            0                  10
##   Strategy                    0            0                   2
##   Sum                         2            1                  71
##               Publisher
## Genre          Creative Core Crimson Cow Crystal Dynamics CTO SpA
##   Action                   0           1                0       0
##   Adventure                1           1                1       0
##   Fighting                 0           0                0       0
##   Misc                     1           0                0       0
##   Platform                 0           0                1       0
##   Puzzle                   0           0                0       0
##   Racing                   0           0                1       0
##   Role-Playing             0           0                1       0
##   Shooter                  0           0                0       1
##   Simulation               1           0                0       0
##   Sports                   0           0                1       1
##   Strategy                 0           0                0       0
##   Sum                      3           2                5       2
##               Publisher
## Genre          Culture Brain Culture Publishers CyberFront Cygames
##   Action                   0                  0          1       0
##   Adventure                1                  0          8       0
##   Fighting                 0                  0          0       0
##   Misc                     1                  0          2       0
##   Platform                 0                  0          0       1
##   Puzzle                   0                  1          0       0
##   Racing                   0                  0          0       0
##   Role-Playing             1                  0          1       0
##   Shooter                  0                  0          0       0
##   Simulation               0                  0          0       0
##   Sports                   1                  0          0       0
##   Strategy                 0                  0          2       0
##   Sum                      4                  1         14       1
##               Publisher
## Genre          D3Publisher Daedalic Daedalic Entertainment Daito Data Age
##   Action                53        0                      0     0        2
##   Adventure             31        3                      3     0        0
##   Fighting               3        0                      0     0        0
##   Misc                  32        0                      0     4        0
##   Platform              12        0                      0     0        0
##   Puzzle                11        0                      0     0        0
##   Racing                 6        0                      0     0        0
##   Role-Playing           4        0                      0     0        0
##   Shooter               12        0                      0     0        0
##   Simulation             6        0                      0     0        0
##   Sports                11        0                      0     0        0
##   Strategy               3        0                      0     0        0
##   Sum                  184        3                      3     4        2
##               Publisher
## Genre          Data Design Interactive Data East Datam Polystar
##   Action                             0         0              0
##   Adventure                          0         1              2
##   Fighting                           0         0              0
##   Misc                               1         0              0
##   Platform                           0         0              0
##   Puzzle                             0         0              0
##   Racing                             1         0              0
##   Role-Playing                       0         1              0
##   Shooter                            0         0              0
##   Simulation                         0         0              0
##   Sports                             1         0              0
##   Strategy                           0         0              0
##   Sum                                3         2              2
##               Publisher
## Genre          Deep Silver Destination Software, Inc Destineer Detn8 Games
##   Action                27                         2         6           0
##   Adventure             10                         0         2           0
##   Fighting               2                         0         0           0
##   Misc                   7                         1         4           0
##   Platform               3                         0         1           0
##   Puzzle                 7                         2         7           0
##   Racing                 7                         3         4           0
##   Role-Playing          17                         1         0           0
##   Shooter                5                         0         2           0
##   Simulation            17                         2        11           0
##   Sports                10                         1         8           1
##   Strategy              10                         0         0           0
##   Sum                  122                        12        45           1
##               Publisher
## Genre          Devolver Digital DHM Interactive DigiCube
##   Action                      0               0        0
##   Adventure                   0               0        0
##   Fighting                    0               0        0
##   Misc                        0               0        0
##   Platform                    0               0        0
##   Puzzle                      1               1        0
##   Racing                      0               0        0
##   Role-Playing                0               0        0
##   Shooter                     1               1        0
##   Simulation                  0               1        0
##   Sports                      0               0        1
##   Strategy                    0               0        0
##   Sum                         2               3        1
##               Publisher
## Genre          Disney Interactive Studios Dorart dramatic create
##   Action                               96      0               1
##   Adventure                            29      0               4
##   Fighting                              0      0               0
##   Misc                                 44      2               0
##   Platform                             20      0               0
##   Puzzle                                3      0               0
##   Racing                               14      0               0
##   Role-Playing                          3      0               0
##   Shooter                               3      0               0
##   Simulation                            5      0               0
##   Sports                                1      0               0
##   Strategy                              0      0               0
##   Sum                                 218      2               5
##               Publisher
## Genre          DreamCatcher Interactive DreamWorks Interactive DSI Games
##   Action                              0                      0         1
##   Adventure                           3                      0         1
##   Fighting                            0                      0         0
##   Misc                                3                      0         2
##   Platform                            1                      1         0
##   Puzzle                              2                      0         0
##   Racing                              0                      0         0
##   Role-Playing                        0                      0         0
##   Shooter                             3                      0         0
##   Simulation                          4                      0         1
##   Sports                              1                      0         1
##   Strategy                            0                      0         0
##   Sum                                17                      1         6
##               Publisher
## Genre          DTP Entertainment Dusenberry Martin Racing EA Games
##   Action                       5                        0        0
##   Adventure                   10                        0        0
##   Fighting                     0                        0        0
##   Misc                         5                        0        0
##   Platform                     0                        0        0
##   Puzzle                       2                        0        0
##   Racing                       0                        2        0
##   Role-Playing                 7                        0        0
##   Shooter                      1                        0        1
##   Simulation                   3                        0        0
##   Sports                      11                        0        0
##   Strategy                     1                        0        0
##   Sum                         45                        2        1
##               Publisher
## Genre          Easy Interactive Ecole  Edia Eidos Interactive
##   Action                      0     0     0                84
##   Adventure                   0     0     0                 5
##   Fighting                    0     1     0                 7
##   Misc                        0     0     2                 5
##   Platform                    0     0     0                 4
##   Puzzle                      2     0     0                 8
##   Racing                      0     0     0                14
##   Role-Playing                0     0     0                 9
##   Shooter                     0     0     0                35
##   Simulation                  0     0     0                 8
##   Sports                      0     0     0                 8
##   Strategy                    0     0     0                11
##   Sum                         2     1     2               198
##               Publisher
## Genre          Electronic Arts Electronic Arts Victor   Elf Elite
##   Action                   183                      1     0     0
##   Adventure                 13                      0     1     0
##   Fighting                  39                      0     0     0
##   Misc                      46                      0     0     0
##   Platform                  16                      0     0     0
##   Puzzle                     7                      0     0     0
##   Racing                   159                      0     0     0
##   Role-Playing              35                      0     0     0
##   Shooter                  139                      0     0     0
##   Simulation               116                      0     0     1
##   Sports                   561                      1     0     0
##   Strategy                  37                      0     1     0
##   Sum                     1351                      2     2     1
##               Publisher
## Genre          Empire Interactive Encore Enix Corporation
##   Action                        5      1                1
##   Adventure                     3      0                0
##   Fighting                      1      0                0
##   Misc                          6      0                2
##   Platform                      0      0                0
##   Puzzle                        8      0                0
##   Racing                       21      2                0
##   Role-Playing                  1      1               23
##   Shooter                       5      0                0
##   Simulation                    1      0                2
##   Sports                        1      0                2
##   Strategy                      0      0                0
##   Sum                          52      4               30
##               Publisher
## Genre          Enjoy Gaming ltd. Enterbrain EON Digital Entertainment
##   Action                       0          0                         0
##   Adventure                    0          3                         0
##   Fighting                     0          1                         0
##   Misc                         0          0                         0
##   Platform                     0          0                         0
##   Puzzle                       0          0                         0
##   Racing                       0          0                         0
##   Role-Playing                 0          6                         0
##   Shooter                      1          0                         0
##   Simulation                   0          1                         0
##   Sports                       0          4                         0
##   Strategy                     0          0                         1
##   Sum                          1         15                         1
##               Publisher
## Genre          Epic Games Epoch Ertain   ESP Essential Games
##   Action                1     0      0     0               1
##   Adventure             0     0      0     0               0
##   Fighting              0     0      0     1               0
##   Misc                  0     1      0     0               0
##   Platform              0     2      0     1               0
##   Puzzle                0     0      0     0               0
##   Racing                0     0      0     0               0
##   Role-Playing          0     2      0     1               0
##   Shooter               0     0      0     1               1
##   Simulation            0     0      1     1               0
##   Sports                0     2      0     0               0
##   Strategy              0     0      0     0               1
##   Sum                   1     7      1     5               3
##               Publisher
## Genre          Evolution Games Evolved Games Excalibur Publishing
##   Action                     1             0                    1
##   Adventure                  0             0                    0
##   Fighting                   0             0                    0
##   Misc                       0             0                    0
##   Platform                   0             2                    0
##   Puzzle                     0             0                    0
##   Racing                     0             4                    0
##   Role-Playing               0             0                    0
##   Shooter                    0             2                    0
##   Simulation                 0             0                    3
##   Sports                     0             0                    0
##   Strategy                   0             0                    0
##   Sum                        1             8                    4
##               Publisher
## Genre          Experience Inc. Extreme Entertainment Group
##   Action                     0                           0
##   Adventure                  0                           0
##   Fighting                   0                           0
##   Misc                       0                           0
##   Platform                   0                           0
##   Puzzle                     0                           0
##   Racing                     0                           0
##   Role-Playing               3                           1
##   Shooter                    0                           0
##   Simulation                 0                           0
##   Sports                     0                           0
##   Strategy                   0                           0
##   Sum                        3                           1
##               Publisher
## Genre          Falcom Corporation Fields Flashpoint Games Flight-Plan
##   Action                        0      0                1           0
##   Adventure                     0      0                0           0
##   Fighting                      1      0                0           0
##   Misc                          0      1                0           0
##   Platform                      0      0                1           0
##   Puzzle                        0      0                0           0
##   Racing                        0      0                0           0
##   Role-Playing                 15      0                0           1
##   Shooter                       0      0                0           0
##   Simulation                    0      0                0           0
##   Sports                        0      0                0           0
##   Strategy                      0      0                0           1
##   Sum                          16      1                2           2
##               Publisher
## Genre          Focus Home Interactive Focus Multimedia fonfun
##   Action                            1                0      0
##   Adventure                        17                0      0
##   Fighting                          0                0      0
##   Misc                              1                1      0
##   Platform                          2                0      0
##   Puzzle                            6                2      0
##   Racing                            3                0      0
##   Role-Playing                     12                0      0
##   Shooter                           0                0      0
##   Simulation                        6                0      1
##   Sports                            7                0      0
##   Strategy                          3                0      0
##   Sum                              58                3      1
##               Publisher
## Genre          Foreign Media Games Fortyfive Fox Interactive From Software
##   Action                         0         0               1             3
##   Adventure                      1         1               0             1
##   Fighting                       0         0               0             0
##   Misc                           2         0               0             0
##   Platform                       0         0               2             0
##   Puzzle                         4         0               0             0
##   Racing                         0         0               0             0
##   Role-Playing                   0         0               0             4
##   Shooter                        0         0               3             1
##   Simulation                     2         0               0             6
##   Sports                         0         0               2             0
##   Strategy                       0         0               0             0
##   Sum                            9         1               8            15
##               Publisher
## Genre           Fuji Funbox Media Funcom FunSoft Funsta FuRyu
##   Action           0            3      0       0      0    11
##   Adventure        1            1      0       0      0     3
##   Fighting         0            0      0       0      0     0
##   Misc             0            1      0       0      0     4
##   Platform         0            0      0       0      0     0
##   Puzzle           0            0      0       0      3     0
##   Racing           0            0      0       1      0     0
##   Role-Playing     0            0      2       0      0     8
##   Shooter          0            0      0       0      1     0
##   Simulation       0            0      0       0      0     1
##   Sports           0            0      0       0      0     0
##   Strategy         0            1      0       0      0     0
##   Sum              1            6      2       1      4    27
##               Publisher
## Genre          FuRyu Corporation G.Rev  Gaga Gainax Network Systems Gakken
##   Action                       1     0     0                      0      0
##   Adventure                    0     0     0                      1      0
##   Fighting                     0     1     0                      0      0
##   Misc                         0     0     0                      1      2
##   Platform                     0     0     0                      0      0
##   Puzzle                       0     0     0                      0      0
##   Racing                       0     0     0                      0      0
##   Role-Playing                 0     0     0                      0      0
##   Shooter                      0     1     1                      0      0
##   Simulation                   0     0     0                      0      0
##   Sports                       0     0     0                      0      0
##   Strategy                     0     0     0                      0      0
##   Sum                          1     2     1                      2      2
##               Publisher
## Genre          Game Arts Game Factory Game Life Gamebridge Gamecock
##   Action               0            8         0          2        1
##   Adventure            0            4         0          0        0
##   Fighting             0            2         0          0        0
##   Misc                 0            5         1          0        2
##   Platform             0            4         0          0        0
##   Puzzle               0            4         0          0        0
##   Racing               0            2         0          0        0
##   Role-Playing         1            1         0          0        0
##   Shooter              0            0         0          0        0
##   Simulation           0            2         1          0        0
##   Sports               0            0         0          0        0
##   Strategy             0            0         0          0        1
##   Sum                  1           32         2          2        4
##               Publisher
## Genre          Gameloft GameMill Entertainment GameTek
##   Action              0                      3       0
##   Adventure           0                      1       0
##   Fighting            0                      0       0
##   Misc                1                      3       1
##   Platform            0                      0       0
##   Puzzle              0                      0       0
##   Racing              0                      0       0
##   Role-Playing        0                      0       0
##   Shooter             0                      0       0
##   Simulation          0                      0       0
##   Sports              0                      1       0
##   Strategy            0                      0       0
##   Sum                 1                      8       1
##               Publisher
## Genre          Gathering of Developers General Entertainment Genki
##   Action                             0                     0     2
##   Adventure                          0                     0     0
##   Fighting                           0                     0     0
##   Misc                               2                     0     0
##   Platform                           0                     0     0
##   Puzzle                             0                     0     0
##   Racing                             2                     0     5
##   Role-Playing                       0                     0     0
##   Shooter                            3                     0     0
##   Simulation                         0                     0     0
##   Sports                             0                     0     1
##   Strategy                           2                     1     0
##   Sum                                9                     1     8
##               Publisher
## Genre          Genterprise Ghostlight  Giga Giza10 Glams
##   Action                 0          0     0      1     0
##   Adventure              0          0     1      0     0
##   Fighting               0          0     0      0     0
##   Misc                   0          0     0      0     0
##   Platform               0          0     0      0     0
##   Puzzle                 1          0     0      0     0
##   Racing                 0          0     0      0     0
##   Role-Playing           0          9     0      0     0
##   Shooter                0          0     0      0     0
##   Simulation             0          1     0      0     0
##   Sports                 0          3     0      0     0
##   Strategy               0          2     0      0     1
##   Sum                    1         15     1      1     1
##               Publisher
## Genre          Global A Entertainment Global Star GN Software   GOA
##   Action                            0           1           0     0
##   Adventure                         0           6           3     0
##   Fighting                          0           1           0     0
##   Misc                              1           0           0     0
##   Platform                          0           5           0     0
##   Puzzle                            0           0           0     0
##   Racing                            0           5           0     0
##   Role-Playing                      3           0           0     1
##   Shooter                           0           8           0     0
##   Simulation                        0           2           0     0
##   Sports                            0          10           0     0
##   Strategy                          0           1           0     0
##   Sum                               4          39           3     1
##               Publisher
## Genre          Gotham Games Graffiti Grand Prix Games
##   Action                  0        0                0
##   Adventure               0        0                0
##   Fighting                2        0                1
##   Misc                    0        2                0
##   Platform                3        0                0
##   Puzzle                  0        0                0
##   Racing                  0        0                0
##   Role-Playing            0        2                0
##   Shooter                 1        1                0
##   Simulation              0        1                0
##   Sports                  1        0                0
##   Strategy                0        0                0
##   Sum                     7        6                1
##               Publisher
## Genre          Graphsim Entertainment Gremlin Interactive Ltd
##   Action                            0                       1
##   Adventure                         0                       0
##   Fighting                          0                       0
##   Misc                              0                       0
##   Platform                          0                       1
##   Puzzle                            0                       0
##   Racing                            0                       2
##   Role-Playing                      0                       0
##   Shooter                           0                       1
##   Simulation                        1                       0
##   Sports                            0                       4
##   Strategy                          0                       0
##   Sum                               1                       9
##               Publisher
## Genre          Griffin International Groove Games   GSP GT Interactive
##   Action                           0            0     0             10
##   Adventure                        0            0     6              0
##   Fighting                         0            0     0              7
##   Misc                             0            0     5              1
##   Platform                         0            0     0              3
##   Puzzle                           0            0     3              0
##   Racing                           0            0     0              6
##   Role-Playing                     0            0     0              0
##   Shooter                          0            2     0             12
##   Simulation                       0            0     2              1
##   Sports                           1            0     0              5
##   Strategy                         0            0     0              0
##   Sum                              1            2    16             45
##               Publisher
## Genre          GungHo  Gust Hackberry HAL Laboratory Hamster Corporation
##   Action            2     0         0              0                   1
##   Adventure         1     1         0              0                   0
##   Fighting          0     0         0              0                   0
##   Misc              1     0         7              0                   0
##   Platform          0     0         0              0                   0
##   Puzzle            0     0         0              1                   0
##   Racing            0     0         0              0                   0
##   Role-Playing      9    11         0              0                   0
##   Shooter           0     0         0              0                   0
##   Simulation        0     0         0              0                   1
##   Sports            0     0         0              0                   0
##   Strategy          0     1         0              0                   0
##   Sum              13    13         7              1                   2
##               Publisher
## Genre          Happinet Harmonix Music Systems Hasbro Interactive
##   Action              0                      0                  2
##   Adventure           3                      0                  0
##   Fighting            0                      0                  0
##   Misc                1                      2                  8
##   Platform            0                      0                  1
##   Puzzle              0                      0                  2
##   Racing              0                      0                  2
##   Role-Playing        0                      0                  0
##   Shooter             0                      0                  1
##   Simulation          1                      0                  0
##   Sports              0                      0                  0
##   Strategy            0                      0                  0
##   Sum                 5                      2                 16
##               Publisher
## Genre          Havas Interactive Headup Games Hearty Robin  Hect
##   Action                       0            0            0     0
##   Adventure                    0            1            0     0
##   Fighting                     0            0            0     0
##   Misc                         0            0            0     0
##   Platform                     0            0            0     0
##   Puzzle                       0            0            0     0
##   Racing                       0            0            0     0
##   Role-Playing                 1            0            0     0
##   Shooter                      0            0            0     0
##   Simulation                   0            0            1     3
##   Sports                       0            0            0     0
##   Strategy                     0            0            0     0
##   Sum                          1            1            1     3
##               Publisher
## Genre          Hello Games Her Interactive Hip Interactive HMH Interactive
##   Action                 1               0               4               0
##   Adventure              0               1               0               1
##   Fighting               0               0               0               0
##   Misc                   0               0               0               1
##   Platform               0               0               0               0
##   Puzzle                 0               0               0               0
##   Racing                 0               0               0               0
##   Role-Playing           0               0               0               0
##   Shooter                0               0               1               0
##   Simulation             0               0               0               0
##   Sports                 0               0               0               0
##   Strategy               0               0               0               0
##   Sum                    1               1               5               2
##               Publisher
## Genre          Home Entertainment Suppliers Hudson Entertainment
##   Action                                  0                    0
##   Adventure                               0                    0
##   Fighting                                0                    0
##   Misc                                    0                    3
##   Platform                                0                    1
##   Puzzle                                  0                    2
##   Racing                                  0                    0
##   Role-Playing                            0                    2
##   Shooter                                 0                    1
##   Simulation                              0                    1
##   Sports                                  5                    1
##   Strategy                                0                    0
##   Sum                                     5                   11
##               Publisher
## Genre          Hudson Soft Human Entertainment HuneX Iceberg Interactive
##   Action                 6                   0     1                   0
##   Adventure              3                   2     1                   0
##   Fighting               4                   6     0                   0
##   Misc                  21                   0     0                   0
##   Platform               3                   0     0                   0
##   Puzzle                12                   0     0                   0
##   Racing                 0                   1     0                   0
##   Role-Playing          12                   0     0                   1
##   Shooter                4                   0     0                   0
##   Simulation             3                   1     0                   0
##   Sports                12                   2     0                   0
##   Strategy               1                   1     0                   2
##   Sum                   81                  13     2                   3
##               Publisher
## Genre          id Software Idea Factory Idea Factory International
##   Action                 0           28                          4
##   Adventure              0           81                          0
##   Fighting               0            0                          0
##   Misc                   0            5                          0
##   Platform               0            0                          0
##   Puzzle                 0            0                          0
##   Racing                 0            0                          0
##   Role-Playing           0           13                          2
##   Shooter                1            0                          0
##   Simulation             0            0                          0
##   Sports                 0            0                          0
##   Strategy               0            2                          0
##   Sum                    1          129                          6
##               Publisher
## Genre          IE Institute Ignition Entertainment Illusion Softworks
##   Action                  1                      5                  1
##   Adventure               0                      1                  0
##   Fighting                0                     21                  0
##   Misc                    4                      4                  0
##   Platform                0                      3                  0
##   Puzzle                  0                      8                  0
##   Racing                  0                      3                  0
##   Role-Playing            0                      3                  0
##   Shooter                 0                      6                  0
##   Simulation              0                      0                  0
##   Sports                  0                      6                  0
##   Strategy                0                      1                  0
##   Sum                     5                     61                  1
##               Publisher
## Genre          Imadio Image Epoch imageepoch Inc. Imageworks Imagic
##   Action            0           0               0          0      1
##   Adventure         1           0               1          0      0
##   Fighting          0           0               0          0      0
##   Misc              0           0               0          0      0
##   Platform          0           0               0          0      0
##   Puzzle            0           0               0          0      0
##   Racing            0           0               0          0      0
##   Role-Playing      0           1               1          0      0
##   Shooter           0           0               0          0      3
##   Simulation        0           0               0          1      0
##   Sports            0           0               0          0      0
##   Strategy          0           0               0          0      0
##   Sum               1           1               2          1      4
##               Publisher
## Genre          Imagineer  Imax Indie Games Infogrames Insomniac Games
##   Action               0     0           0          5               3
##   Adventure            3     0           2          4               0
##   Fighting             1     0           0          2               0
##   Misc                 0     1           0          7               0
##   Platform             0     0           0         10               0
##   Puzzle               0     0           0          0               0
##   Racing               1     0           0         15               0
##   Role-Playing         4     0           0          2               0
##   Shooter              0     0           0          6               0
##   Simulation           1     0           1          1               0
##   Sports               6     0           0          7               0
##   Strategy             0     0           0          3               0
##   Sum                 16     1           3         62               3
##               Publisher
## Genre          Interchannel Interchannel-Holon Intergrow Interplay
##   Action                  0                  0         0         6
##   Adventure               4                  0         0         1
##   Fighting                0                  0         0         1
##   Misc                    0                  0         0         2
##   Platform                0                  0         1         3
##   Puzzle                  0                  0         0         0
##   Racing                  0                  0         0         4
##   Role-Playing            0                  0         0         3
##   Shooter                 0                  0         0         5
##   Simulation              0                  0         0         2
##   Sports                  0                  0         0         3
##   Strategy                0                  1         0         0
##   Sum                     4                  1         1        30
##               Publisher
## Genre          Interplay Productions Interworks Unlimited, Inc.
##   Action                           0                          0
##   Adventure                        0                          0
##   Fighting                         0                          0
##   Misc                             0                          0
##   Platform                         0                          0
##   Puzzle                           0                          0
##   Racing                           0                          0
##   Role-Playing                     0                          0
##   Shooter                          1                          0
##   Simulation                       0                          0
##   Sports                           0                          1
##   Strategy                         0                          0
##   Sum                              1                          1
##               Publisher
## Genre          Inti Creates Introversion Software inXile Entertainment
##   Action                  1                     1                    0
##   Adventure               0                     0                    0
##   Fighting                0                     0                    0
##   Misc                    0                     0                    0
##   Platform                0                     0                    0
##   Puzzle                  0                     0                    0
##   Racing                  0                     0                    0
##   Role-Playing            0                     0                    1
##   Shooter                 0                     0                    0
##   Simulation              0                     0                    0
##   Sports                  0                     0                    0
##   Strategy                0                     0                    0
##   Sum                     1                     1                    1
##               Publisher
## Genre          Irem Software Engineering ITT Family Games Ivolgamus  iWin
##   Action                               3                1         0     0
##   Adventure                            0                0         0     0
##   Fighting                             1                0         0     0
##   Misc                                 5                0         0     0
##   Platform                             0                0         0     0
##   Puzzle                               0                0         1     1
##   Racing                               0                0         0     0
##   Role-Playing                         1                0         0     0
##   Shooter                              1                0         0     0
##   Simulation                           0                0         0     0
##   Sports                               0                0         0     0
##   Strategy                             1                0         0     0
##   Sum                                 12                1         1     1
##               Publisher
## Genre          Jack of All Games Jaleco Jester Interactive Jorudan
##   Action                       0      2                  0       0
##   Adventure                    0      0                  0       0
##   Fighting                     0      1                  0       0
##   Misc                         0      2                  1       0
##   Platform                     2      0                  0       0
##   Puzzle                       0      3                  0       0
##   Racing                       0      6                  2       0
##   Role-Playing                 0      0                  0       0
##   Shooter                      1      1                  0       0
##   Simulation                   0      0                  0       3
##   Sports                       0      5                  0       0
##   Strategy                     0      3                  0       0
##   Sum                          3     23                  3       3
##               Publisher
## Genre          JoWood Productions Just Flight   JVC Kadokawa Games
##   Action                        3           0     1              5
##   Adventure                     3           0     0              6
##   Fighting                      0           0     1              0
##   Misc                          1           0     1              1
##   Platform                      2           0     0              0
##   Puzzle                        1           0     1              0
##   Racing                        0           0     2              0
##   Role-Playing                  5           0     0              2
##   Shooter                       0           0     2              0
##   Simulation                    2           1     0              1
##   Sports                        1           0     0              0
##   Strategy                      4           0     0              0
##   Sum                          22           1     8             15
##               Publisher
## Genre          Kadokawa Shoten Kaga Create Kalypso Media Kamui Kando Games
##   Action                     2           3             3     0           0
##   Adventure                 33           2             2     0           0
##   Fighting                   0           0             0     0           0
##   Misc                       1           1             1     1           0
##   Platform                   0           0             0     0           0
##   Puzzle                     0           0             0     0           0
##   Racing                     0           0             0     0           0
##   Role-Playing              11           0             0     0           0
##   Shooter                    0           0             0     0           0
##   Simulation                 1           0             7     0           1
##   Sports                     1           0             0     0           0
##   Strategy                   1           0            16     0           0
##   Sum                       50           6            29     1           1
##               Publisher
## Genre          Karin Entertainment Kemco   KID Kids Station King Records
##   Action                         0     6     0            0            0
##   Adventure                      0     1     4            1            0
##   Fighting                       0     0     0            0            0
##   Misc                           1     1     0            0            0
##   Platform                       0     2     0            0            0
##   Puzzle                         0     3     0            0            0
##   Racing                         0     5     0            0            0
##   Role-Playing                   0     1     0            0            1
##   Shooter                        0     1     0            0            0
##   Simulation                     0     0     0            0            0
##   Sports                         0     1     0            0            0
##   Strategy                       0     0     0            0            0
##   Sum                            1    21     4            1            1
##               Publisher
## Genre          Knowledge Adventure Koch Media Kokopeli Digital Studios
##   Action                         1          4                        0
##   Adventure                      1          2                        0
##   Fighting                       0          0                        1
##   Misc                           1          0                        0
##   Platform                       0          0                        0
##   Puzzle                         0          1                        0
##   Racing                         0          0                        0
##   Role-Playing                   0          1                        0
##   Shooter                        0          0                        0
##   Simulation                     0          6                        0
##   Sports                         1          2                        0
##   Strategy                       0          1                        0
##   Sum                            4         17                        1
##               Publisher
## Genre          Konami Digital Entertainment Kool Kizz   KSS Laguna
##   Action                                148         0     0      1
##   Adventure                              53         0     0      0
##   Fighting                               20         0     0      0
##   Misc                                   77         0     1      0
##   Platform                               40         0     0      2
##   Puzzle                                 10         0     0      0
##   Racing                                 13         0     0      0
##   Role-Playing                           37         0     0      1
##   Shooter                                40         0     0      0
##   Simulation                             86         0     0      0
##   Sports                                280         0     0      0
##   Strategy                               28         1     0      0
##   Sum                                   832         1     1      4
##               Publisher
## Genre          Legacy Interactive LEGO Media Level 5 Lexicon Entertainment
##   Action                        0          1       6                     0
##   Adventure                     1          1       4                     0
##   Fighting                      0          0       0                     0
##   Misc                          0          0       1                     0
##   Platform                      0          1       0                     0
##   Puzzle                        0          0       3                     0
##   Racing                        0          3       0                     0
##   Role-Playing                  0          0      11                     0
##   Shooter                       0          0       0                     1
##   Simulation                    0          0       0                     1
##   Sports                        0          0       1                     0
##   Strategy                      0          1       1                     0
##   Sum                           1          7      27                     2
##               Publisher
## Genre          Licensed 4U Lighthouse Interactive Liquid Games
##   Action                 2                      0            0
##   Adventure              0                      0            0
##   Fighting               0                      0            0
##   Misc                   0                      0            0
##   Platform               0                      0            0
##   Puzzle                 1                      0            1
##   Racing                 0                      0            1
##   Role-Playing           0                      0            0
##   Shooter                0                      0            0
##   Simulation             0                      1            0
##   Sports                 0                      0            0
##   Strategy               0                      0            0
##   Sum                    3                      1            2
##               Publisher
## Genre          Little Orbit Locus LSP Games LucasArts Mad Catz
##   Action                 17     0         1        48        0
##   Adventure               7     0         0         3        0
##   Fighting                0     0         0         0        0
##   Misc                    0     0         0         0        1
##   Platform                0     0         2         0        0
##   Puzzle                  0     0         0         0        0
##   Racing                  0     0         0         2        0
##   Role-Playing            0     1         0         2        0
##   Shooter                 0     0         1        19        0
##   Simulation              2     0         0         6        1
##   Sports                  0     0         0         0        1
##   Strategy                0     0         0        10        0
##   Sum                    26     1         4        90        3
##               Publisher
## Genre          Magical Company Magix Majesco Entertainment Mamba Games
##   Action                     0     0                    15           0
##   Adventure                  0     0                     4           1
##   Fighting                   0     0                     3           0
##   Misc                       0     2                    21           0
##   Platform                   0     0                     4           0
##   Puzzle                     0     0                     9           0
##   Racing                     0     0                     5           0
##   Role-Playing               0     0                     2           0
##   Shooter                    0     0                     9           0
##   Simulation                 0     0                    13           0
##   Sports                     1     0                     5           0
##   Strategy                   0     0                     2           1
##   Sum                        1     2                    92           2
##               Publisher
## Genre          Marvel Entertainment Marvelous Entertainment
##   Action                          1                       6
##   Adventure                       0                       0
##   Fighting                        0                       1
##   Misc                            0                       2
##   Platform                        0                       0
##   Puzzle                          0                       0
##   Racing                          0                       0
##   Role-Playing                    0                       2
##   Shooter                         0                       0
##   Simulation                      0                       1
##   Sports                          0                       0
##   Strategy                        0                       0
##   Sum                             1                      12
##               Publisher
## Genre          Marvelous Games Marvelous Interactive Masque Publishing
##   Action                     0                    10                 0
##   Adventure                  1                    14                 0
##   Fighting                   0                     9                 0
##   Misc                       0                     2                 0
##   Platform                   0                     0                 0
##   Puzzle                     0                     0                 0
##   Racing                     0                     0                 0
##   Role-Playing               0                    13                 0
##   Shooter                    0                     0                 0
##   Simulation                 0                     6                 1
##   Sports                     0                     2                 0
##   Strategy                   0                     0                 0
##   Sum                        1                    56                 1
##               Publisher
## Genre          Mastertronic Mastiff Mattel Interactive Max Five
##   Action                  0       0                  4        0
##   Adventure               1       1                  2        0
##   Fighting                0       0                  0        0
##   Misc                    1       2                  0        0
##   Platform                0       0                  0        0
##   Puzzle                  4       0                  1        0
##   Racing                  1       0                  1        0
##   Role-Playing            0       0                  0        1
##   Shooter                 4       4                  1        0
##   Simulation              0       1                  0        0
##   Sports                  1       8                  3        0
##   Strategy                1       0                  0        0
##   Sum                    13      16                 12        1
##               Publisher
## Genre          Maximum Family Games Maxis MC2 Entertainment
##   Action                          1     0                 0
##   Adventure                       0     0                 2
##   Fighting                        0     0                 0
##   Misc                            0     0                 0
##   Platform                        0     0                 0
##   Puzzle                          0     0                 0
##   Racing                          0     0                 0
##   Role-Playing                    0     0                 0
##   Shooter                         0     0                 1
##   Simulation                      0     3                 0
##   Sports                          0     0                 0
##   Strategy                        0     0                 0
##   Sum                             1     3                 3
##               Publisher
## Genre          Media Entertainment Media Factory Media Rings Media Works
##   Action                         0             0           0           0
##   Adventure                      0             1           0           2
##   Fighting                       0             0           0           0
##   Misc                           1             0           0           1
##   Platform                       0             0           0           0
##   Puzzle                         0             0           0           0
##   Racing                         0             0           1           0
##   Role-Playing                   0             0           1           0
##   Shooter                        0             0           0           0
##   Simulation                     0             0           0           0
##   Sports                         0             1           1           0
##   Strategy                       0             0           0           2
##   Sum                            1             2           3           5
##               Publisher
## Genre          MediaQuest Men-A-Vision Mentor Interactive Mercury Games
##   Action                0            1                  0             0
##   Adventure             0            0                  0             0
##   Fighting              0            0                  0             0
##   Misc                  0            0                  5             0
##   Platform              0            0                  0             0
##   Puzzle                1            0                  0             0
##   Racing                0            0                  0             0
##   Role-Playing          0            0                  0             2
##   Shooter               0            0                  0             0
##   Simulation            0            0                  0             2
##   Sports                0            0                  0             0
##   Strategy              0            0                  0             0
##   Sum                   1            1                  5             4
##               Publisher
## Genre          Merscom LLC Metro 3D Michaelsoft Micro Cabin Microids
##   Action                 0        0           0           0        3
##   Adventure              1        0           0           0        6
##   Fighting               0        1           0           0        0
##   Misc                   0        0           0           0        0
##   Platform               0        1           0           0        0
##   Puzzle                 0        0           0           1        0
##   Racing                 0        4           0           0        0
##   Role-Playing           0        2           1           1        0
##   Shooter                0        1           0           0        0
##   Simulation             0        3           0           1        0
##   Sports                 0        0           0           0        1
##   Strategy               0        0           0           0        0
##   Sum                    1       12           1           3       10
##               Publisher
## Genre          Microprose Microsoft Game Studios
##   Action                0                     21
##   Adventure             0                      3
##   Fighting              0                      5
##   Misc                  1                     34
##   Platform              0                      6
##   Puzzle                0                      1
##   Racing                0                     22
##   Role-Playing          0                     16
##   Shooter               0                     28
##   Simulation            1                     18
##   Sports                0                     17
##   Strategy              4                     18
##   Sum                   6                    189
##               Publisher
## Genre          Midas Interactive Entertainment Midway Games Milestone
##   Action                                     2           27         0
##   Adventure                                  0            4         0
##   Fighting                                   1           25         0
##   Misc                                       1           20         0
##   Platform                                   1           14         0
##   Puzzle                                     3            4         0
##   Racing                                     3           25         0
##   Role-Playing                               1            4         0
##   Shooter                                    4           17         1
##   Simulation                                 1            0         0
##   Sports                                     4           58         0
##   Strategy                                   3            0         0
##   Sum                                       24          198         1
##               Publisher
## Genre          Milestone S.r.l Milestone S.r.l. Minato Station Mindscape
##   Action                     0                0              1         4
##   Adventure                  0                0              2         1
##   Fighting                   0                0              0         0
##   Misc                       0                0              0        15
##   Platform                   0                0              0         0
##   Puzzle                     0                0              0         5
##   Racing                     2               16              0         2
##   Role-Playing               0                0              0         1
##   Shooter                    0                0              0         0
##   Simulation                 0                0              0         0
##   Sports                     0                0              0         1
##   Strategy                   0                0              0         3
##   Sum                        2               16              3        32
##               Publisher
## Genre          Mirai Shounen Misawa Mitsui mixi, Inc MLB.com Mojang
##   Action                   0      0      0         1       0      0
##   Adventure                0      0      0         0       0      5
##   Fighting                 0      0      0         0       0      0
##   Misc                     1      0      0         0       0      0
##   Platform                 0      0      0         0       0      0
##   Puzzle                   0      0      0         0       0      0
##   Racing                   0      0      0         0       0      0
##   Role-Playing             0      0      0         0       0      0
##   Shooter                  0      0      1         0       0      0
##   Simulation               0      0      0         0       0      0
##   Sports                   0      2      0         0       1      0
##   Strategy                 0      0      0         0       0      0
##   Sum                      1      2      1         1       1      5
##               Publisher
## Genre          Monte Christo Multimedia  Moss   MTO MTV Games
##   Action                              0     0     3         0
##   Adventure                           0     0     0         0
##   Fighting                            0     0     0         0
##   Misc                                0     0     0        41
##   Platform                            0     0     0         0
##   Puzzle                              0     0     0         0
##   Racing                              0     0     1         0
##   Role-Playing                        0     0     0         0
##   Shooter                             0     2     0         0
##   Simulation                          1     0     4         0
##   Sports                              0     0     0         0
##   Strategy                            0     0     0         0
##   Sum                                 1     2     8        41
##               Publisher
## Genre          Mud Duck Productions Mumbo Jumbo Mycom Myelin Media
##   Action                          0           0     1            0
##   Adventure                       0           0     0            0
##   Fighting                        0           0     0            0
##   Misc                            2           0     0            3
##   Platform                        0           0     0            0
##   Puzzle                          0           4     0            0
##   Racing                          0           0     0            0
##   Role-Playing                    0           0     0            0
##   Shooter                         0           0     0            0
##   Simulation                      0           0     0            0
##   Sports                          1           1     0            0
##   Strategy                        0           1     0            0
##   Sum                             3           6     1            3
##               Publisher
## Genre          Mystique   N/A Namco Bandai Games Natsume Navarre Corp
##   Action              1     7                248       0            0
##   Adventure           0     4                 58       1            0
##   Fighting            0     2                134       1            0
##   Misc                0    27                 97       1            0
##   Platform            0     2                 19       1            0
##   Puzzle              0     1                 20       2            0
##   Racing              0     1                 27       0            0
##   Role-Playing        0     2                151       2            0
##   Shooter             0     2                 37       0            0
##   Simulation          0     4                 29       3            0
##   Sports              0     3                 51       5            1
##   Strategy            0     3                 61       1            0
##   Sum                 1    58                932      17            1
##               Publisher
## Genre          Naxat Soft   NCS NCSoft NDA Productions   NEC
##   Action                0     0      1               0     0
##   Adventure             0     0      0               0     1
##   Fighting              0     0      0               0     0
##   Misc                  1     0      0               0     0
##   Platform              0     0      0               0     0
##   Puzzle                0     0      0               0     0
##   Racing                0     0      0               0     0
##   Role-Playing          0     0      5               0     2
##   Shooter               0     0      0               1     0
##   Simulation            0     0      0               0     0
##   Sports                0     0      0               0     0
##   Strategy              0     3      0               0     0
##   Sum                   1     3      6               1     3
##               Publisher
## Genre          NEC Interchannel Neko Entertainment NetRevo   New
##   Action                      0                  1       1     0
##   Adventure                   5                  2       1     0
##   Fighting                    0                  0       0     1
##   Misc                        0                  1       0     0
##   Platform                    0                  0       0     0
##   Puzzle                      0                  1       0     0
##   Racing                      0                  0       0     0
##   Role-Playing                1                  0       0     0
##   Shooter                     0                  2       0     0
##   Simulation                  1                  0       0     0
##   Sports                      0                  0       0     0
##   Strategy                    1                  0       0     0
##   Sum                         8                  7       2     1
##               Publisher
## Genre          New World Computing NewKidCo Nexon Nichibutsu
##   Action                         0        2     0          0
##   Adventure                      0        1     0          0
##   Fighting                       0        1     0          0
##   Misc                           0        4     0          1
##   Platform                       0        1     0          0
##   Puzzle                         0        0     0          0
##   Racing                         0        0     0          0
##   Role-Playing                   0        0     1          0
##   Shooter                        0        0     0          0
##   Simulation                     0        0     0          0
##   Sports                         0        0     0          0
##   Strategy                       1        0     0          0
##   Sum                            1        9     1          1
##               Publisher
## Genre          Nihon Falcom Corporation Nintendo Nippon Amuse
##   Action                              2       79            0
##   Adventure                           0       35            0
##   Fighting                            0       18            0
##   Misc                                0      100            1
##   Platform                            0      112            0
##   Puzzle                              0       74            0
##   Racing                              0       37            0
##   Role-Playing                        5      106            0
##   Shooter                             0       26            0
##   Simulation                          0       29            0
##   Sports                              0       55            0
##   Strategy                            0       32            0
##   Sum                                 7      703            1
##               Publisher
## Genre          Nippon Columbia Nippon Ichi Software Nippon Telenet
##   Action                     4                   13              0
##   Adventure                  0                   12              0
##   Fighting                   0                    2              0
##   Misc                       3                    3              2
##   Platform                   0                    3              0
##   Puzzle                     0                    0              0
##   Racing                     0                    0              0
##   Role-Playing               0                   69              0
##   Shooter                    0                    1              0
##   Simulation                 0                    0              0
##   Sports                     0                    0              0
##   Strategy                   0                    2              0
##   Sum                        7                  105              2
##               Publisher
## Genre          Nitroplus Nobilis Nordcurrent Nordic Games NovaLogic
##   Action               0       2           1            8         0
##   Adventure            1       2           0            2         0
##   Fighting             1       0           0            0         0
##   Misc                 0       1           1           11         0
##   Platform             0       0           0            0         0
##   Puzzle               0       0           1            0         0
##   Racing               0       1           0            7         0
##   Role-Playing         0       2           0            1         0
##   Shooter              0       0           0            2         3
##   Simulation           0       5           0            0         0
##   Sports               0       0           2            2         0
##   Strategy             0       0           0            2         0
##   Sum                  2      13           5           35         3
##               Publisher
## Genre          Number None O-Games O3 Entertainment Ocean Office Create
##   Action                 0       0                0     3             0
##   Adventure              0       1                0     0             0
##   Fighting               0       0                0     2             0
##   Misc                   0       4                0     1             0
##   Platform               1       0                0     3             0
##   Puzzle                 0       5                1     1             0
##   Racing                 0       1                0     2             0
##   Role-Playing           0       0                0     0             0
##   Shooter                0       1                1     1             0
##   Simulation             0       0                1     0             2
##   Sports                 0       5                0     1             0
##   Strategy               0       0                0     0             0
##   Sum                    1      17                3    14             2
##               Publisher
## Genre          On Demand Ongakukan Origin Systems Otomate
##   Action               0         0              0       0
##   Adventure            0         0              0       1
##   Fighting             0         0              0       0
##   Misc                 0         0              0       0
##   Platform             0         0              0       0
##   Puzzle               0         0              0       0
##   Racing               0         0              0       0
##   Role-Playing         1         0              0       0
##   Shooter              0         0              0       0
##   Simulation           0         1              1       0
##   Sports               0         0              0       0
##   Strategy             0         0              0       0
##   Sum                  1         1              1       1
##               Publisher
## Genre          Oxygen Interactive P2 Games Pacific Century Cyber Works
##   Action                        3        0                           0
##   Adventure                     2        0                           0
##   Fighting                      0        0                           0
##   Misc                          8        2                           1
##   Platform                      2        0                           0
##   Puzzle                        2        1                           0
##   Racing                        0        0                           0
##   Role-Playing                  0        0                           0
##   Shooter                       0        0                           0
##   Simulation                    0        0                           0
##   Sports                        5        0                           0
##   Strategy                      0        0                           0
##   Sum                          22        3                           1
##               Publisher
## Genre          Pack-In-Video Pack In Soft Palcom Panther Software  Paon
##   Action                   0            0      1                0     0
##   Adventure                1            0      0                0     0
##   Fighting                 0            0      0                0     0
##   Misc                     0            0      0                0     6
##   Platform                 0            0      0                0     0
##   Puzzle                   0            0      0                0     0
##   Racing                   0            0      0                0     0
##   Role-Playing             0            0      0                1     0
##   Shooter                  0            0      0                0     0
##   Simulation               1            1      0                0     0
##   Sports                   0            0      0                0     0
##   Strategy                 0            0      0                0     0
##   Sum                      2            1      1                1     6
##               Publisher
## Genre          Paon Corporation Paradox Development Paradox Interactive
##   Action                      0                   0                   0
##   Adventure                   0                   0                   0
##   Fighting                    0                   0                   0
##   Misc                        1                   0                   1
##   Platform                    0                   0                   0
##   Puzzle                      0                   0                   0
##   Racing                      0                   0                   0
##   Role-Playing                0                   0                   5
##   Shooter                     0                   0                   0
##   Simulation                  0                   1                   4
##   Sports                      0                   0                   0
##   Strategy                    0                   0                  13
##   Sum                         1                   1                  23
##               Publisher
## Genre          Parker Bros. Performance Designed Products Phantagram
##   Action                  5                             0          0
##   Adventure               0                             0          0
##   Fighting                0                             0          0
##   Misc                    0                             0          0
##   Platform                1                             0          0
##   Puzzle                  1                             2          0
##   Racing                  0                             0          0
##   Role-Playing            0                             0          0
##   Shooter                 0                             0          0
##   Simulation              0                             0          1
##   Sports                  0                             0          0
##   Strategy                0                             0          0
##   Sum                     7                             2          1
##               Publisher
## Genre          Phantom EFX Phenomedia Phoenix Games Piacci Pinnacle
##   Action                 0          0             0      0        0
##   Adventure              0          0             0      1        0
##   Fighting               0          0             0      0        0
##   Misc                   0          0             0      0        2
##   Platform               0          1             0      0        0
##   Puzzle                 0          2             0      0        1
##   Racing                 0          1             0      0        0
##   Role-Playing           0          0             0      0        0
##   Shooter                1          0             1      0        0
##   Simulation             0          0             0      0        0
##   Sports                 0          0             0      0        1
##   Strategy               0          0             0      0        1
##   Sum                    1          4             1      1        5
##               Publisher
## Genre          Pioneer LDC Play It Playlogic Game Factory Playmates
##   Action                 0       0                      6         0
##   Adventure              3       0                      0         0
##   Fighting               0       0                      0         0
##   Misc                   0       4                      1         0
##   Platform               0       1                      0         0
##   Puzzle                 0       0                      2         0
##   Racing                 1       4                      0         1
##   Role-Playing           0       0                      0         0
##   Shooter                0       4                      2         0
##   Simulation             0       0                      0         0
##   Sports                 0       1                      1         0
##   Strategy               0       0                      2         0
##   Sum                    4      14                     14         1
##               Publisher
## Genre          Playmore PlayV Plenty PM Studios Pony Canyon PopCap Games
##   Action              0     1      0          0           0            0
##   Adventure           0     0      0          0           0            1
##   Fighting            1     0      0          0           0            0
##   Misc                0     1      1          1           1            2
##   Platform            0     0      0          0           0            0
##   Puzzle              0     2      0          0           0            9
##   Racing              0     0      0          0           0            0
##   Role-Playing        0     0      0          0           0            0
##   Shooter             0     0      0          0           0            0
##   Simulation          0     0      0          0           0            0
##   Sports              0     0      0          0           0            0
##   Strategy            0     0      0          0           0            3
##   Sum                 1     4      1          1           1           15
##               Publisher
## Genre          Popcorn Arcade PopTop Software   Pow PQube Princess Soft
##   Action                    1               0     0    10             0
##   Adventure                 0               0     0     5             3
##   Fighting                  0               0     0    17             0
##   Misc                      0               0     0     1             0
##   Platform                  2               0     0     0             0
##   Puzzle                    2               0     1     0             0
##   Racing                    4               0     0     1             0
##   Role-Playing              0               0     0     0             0
##   Shooter                   1               0     0     2             0
##   Simulation                0               0     0     1             0
##   Sports                    0               0     0     2             0
##   Strategy                  0               1     0     0             0
##   Sum                      10               1     1    39             3
##               Publisher
## Genre          Prototype Psygnosis Quelle Quest Quinrose Quintet
##   Action               1         5      0     0        3       0
##   Adventure           26         6      0     0       11       1
##   Fighting             0         0      0     0        0       0
##   Misc                 0         1      1     0        0       0
##   Platform             0         1      0     0        0       0
##   Puzzle               0         1      0     0        0       0
##   Racing               0         8      0     0        0       0
##   Role-Playing         0         1      0     1        0       0
##   Shooter              0         3      0     0        0       0
##   Simulation           0         4      0     0        0       0
##   Sports               0         2      0     0        0       0
##   Strategy             0         0      0     0        0       0
##   Sum                 27        32      1     1       14       1
##               Publisher
## Genre          Rage Software Rain Games Rebellion Rebellion Developments
##   Action                   0          0         0                      0
##   Adventure                0          0         0                      0
##   Fighting                 3          0         0                      0
##   Misc                     0          0         0                      0
##   Platform                 0          1         0                      0
##   Puzzle                   1          0         0                      0
##   Racing                   2          0         2                      0
##   Role-Playing             0          0         0                      0
##   Shooter                  1          0         0                      2
##   Simulation               0          0         0                      0
##   Sports                   0          0         0                      0
##   Strategy                 0          0         0                      0
##   Sum                      7          1         2                      2
##               Publisher
## Genre          RED Entertainment Red Orb Red Storm Entertainment RedOctane
##   Action                       0       0                       1         0
##   Adventure                    1       2                       0         0
##   Fighting                     0       0                       0         0
##   Misc                         0       0                       0         4
##   Platform                     0       0                       0         0
##   Puzzle                       0       0                       0         0
##   Racing                       0       0                       0         0
##   Role-Playing                 0       0                       0         0
##   Shooter                      0       0                       2         0
##   Simulation                   0       0                       0         0
##   Sports                       0       0                       0         0
##   Strategy                     0       0                       0         0
##   Sum                          1       2                       3         4
##               Publisher
## Genre          Reef Entertainment responDESIGN Revolution (Japan)
##   Action                        0            0                  0
##   Adventure                     4            0                  1
##   Fighting                      0            0                  0
##   Misc                          0            0                  0
##   Platform                      0            0                  0
##   Puzzle                        0            0                  0
##   Racing                        0            0                  0
##   Role-Playing                  0            0                  0
##   Shooter                       2            0                  0
##   Simulation                    0            0                  0
##   Sports                        1            2                  0
##   Strategy                      0            0                  0
##   Sum                           7            2                  1
##               Publisher
## Genre          Revolution Software Rising Star Games Riverhillsoft
##   Action                         0                 8             0
##   Adventure                      2                 5             0
##   Fighting                       0                 3             0
##   Misc                           0                 6             0
##   Platform                       0                 2             0
##   Puzzle                         0                13             0
##   Racing                         0                 0             0
##   Role-Playing                   0                26             0
##   Shooter                        0                 4             0
##   Simulation                     0                11             1
##   Sports                         0                 4             0
##   Strategy                       0                 4             0
##   Sum                            2                86             1
##               Publisher
## Genre          Rocket Company Rondomedia   RTL Russel Sammy Corporation
##   Action                    3          1     0      2                 0
##   Adventure                 1          3     0      3                 1
##   Fighting                  0          0     0      0                 4
##   Misc                      5          1     0      0                 4
##   Platform                  0          0     0      0                 0
##   Puzzle                    0          5     0      0                 0
##   Racing                    0          2     1      0                 0
##   Role-Playing              6          0     0      0                 0
##   Shooter                   0          0     0      0                 0
##   Simulation                1          2     2      0                 2
##   Sports                    1          0     5      1                 0
##   Strategy                  0          0     0      0                 0
##   Sum                      17         14     8      6                11
##               Publisher
## Genre          Saurus Scholastic Inc.   SCi Screenlife SCS Software Sears
##   Action            1               1     5          3            1     0
##   Adventure         0               5     0          0            0     0
##   Fighting          0               0     0          1            0     0
##   Misc              0               1     0          0            0     0
##   Platform          0               0     2          0            0     0
##   Puzzle            0               3     0          0            0     1
##   Racing            0               0     2          0            0     0
##   Role-Playing      0               0     0          2            0     0
##   Shooter           0               0     8          0            0     0
##   Simulation        0               0     0          0            0     0
##   Sports            0               0     0          0            0     0
##   Strategy          0               0     0          0            0     0
##   Sum               1              10    17          6            1     1
##               Publisher
## Genre           Sega Seta Corporation Seventh Chord Shogakukan
##   Action         101                0             1          0
##   Adventure       31                0             0          2
##   Fighting        37                0             0          0
##   Misc            62                4             0          3
##   Platform        52                0             0          0
##   Puzzle          22                0             0          0
##   Racing          48                0             0          0
##   Role-Playing    64                1             0          0
##   Shooter         40                0             0          0
##   Simulation      12                0             0          0
##   Sports         135                1             0          0
##   Strategy        35                0             0          0
##   Sum            639                6             1          5
##               Publisher
## Genre          Simon & Schuster Interactive Slightly Mad Studios
##   Action                                  0                    0
##   Adventure                               0                    0
##   Fighting                                0                    0
##   Misc                                    0                    0
##   Platform                                0                    0
##   Puzzle                                  0                    0
##   Racing                                  0                    3
##   Role-Playing                            0                    0
##   Shooter                                 0                    0
##   Simulation                              0                    0
##   Sports                                  1                    0
##   Strategy                                0                    0
##   Sum                                     1                    3
##               Publisher
## Genre          Slitherine Software   SNK SNK Playmore Societa Sold Out
##   Action                         0     0            0       0        1
##   Adventure                      0     0            3       1        0
##   Fighting                       0    22           12       0        0
##   Misc                           0     0            0       0        0
##   Platform                       0     0            0       0        0
##   Puzzle                         0     0            0       0        0
##   Racing                         0     0            0       0        0
##   Role-Playing                   0     0            1       0        0
##   Shooter                        0     0            2       0        0
##   Simulation                     0     0            0       0        0
##   Sports                         0     0            0       0        0
##   Strategy                       4     0            0       0        0
##   Sum                            4    22           18       1        1
##               Publisher
## Genre          Sonnet Sony Computer Entertainment
##   Action            0                          90
##   Adventure         0                          41
##   Fighting          0                          30
##   Misc              2                         128
##   Platform          0                          66
##   Puzzle            0                          12
##   Racing            0                          65
##   Role-Playing      0                          49
##   Shooter           0                          51
##   Simulation        0                          15
##   Sports            0                         124
##   Strategy          0                          12
##   Sum               2                         683
##               Publisher
## Genre          Sony Computer Entertainment America
##   Action                                         0
##   Adventure                                      0
##   Fighting                                       0
##   Misc                                           0
##   Platform                                       0
##   Puzzle                                         0
##   Racing                                         0
##   Role-Playing                                   0
##   Shooter                                        0
##   Simulation                                     0
##   Sports                                         3
##   Strategy                                       0
##   Sum                                            3
##               Publisher
## Genre          Sony Computer Entertainment Europe Sony Music Entertainment
##   Action                                        1                        0
##   Adventure                                     3                        0
##   Fighting                                      0                        0
##   Misc                                          4                        1
##   Platform                                      4                        0
##   Puzzle                                        0                        0
##   Racing                                        0                        0
##   Role-Playing                                  0                        0
##   Shooter                                       1                        0
##   Simulation                                    2                        0
##   Sports                                        0                        0
##   Strategy                                      0                        0
##   Sum                                          15                        1
##               Publisher
## Genre          Sony Online Entertainment SouthPeak Games Spike   SPS
##   Action                               0               9    10     0
##   Adventure                            0               2     3     0
##   Fighting                             0               3     2     0
##   Misc                                 0               2     4     0
##   Platform                             0               0     0     0
##   Puzzle                               0               2     0     0
##   Racing                               0               3     0     0
##   Role-Playing                         7               2     6     0
##   Shooter                              0               8     0     0
##   Simulation                           0               2     1     0
##   Sports                               0               3    11     1
##   Strategy                             1               1     0     0
##   Sum                                  8              37    37     1
##               Publisher
## Genre          Square Square EA Square Enix SquareSoft   SSI
##   Action            0         0          52          0     0
##   Adventure         0         0          10          0     0
##   Fighting          0         0           3          4     0
##   Misc              0         0           6          0     0
##   Platform          0         0           0          0     0
##   Puzzle            0         0           4          0     0
##   Racing            1         0           0          1     0
##   Role-Playing      5         1         129         38     0
##   Shooter           0         0          16          1     0
##   Simulation        0         0           4          1     0
##   Sports            0         0           0          3     0
##   Strategy          0         0           9          4     1
##   Sum               6         1         233         52     1
##               Publisher
## Genre          Stainless Games Starfish Starpath Corp. Sting
##   Action                     1        1              1     0
##   Adventure                  0        0              0     0
##   Fighting                   0        0              0     0
##   Misc                       0        0              0     0
##   Platform                   0        0              0     0
##   Puzzle                     0        0              0     0
##   Racing                     0        0              0     0
##   Role-Playing               0        5              0     9
##   Shooter                    0        1              0     0
##   Simulation                 0        0              0     0
##   Sports                     0        3              0     0
##   Strategy                   0        0              0     0
##   Sum                        1       10              1     9
##               Publisher
## Genre          Storm City Games Strategy First Success Summitsoft
##   Action                      1              0       1          0
##   Adventure                   1              0       4          0
##   Fighting                    0              0       0          0
##   Misc                        1              0       2          0
##   Platform                    1              0       0          0
##   Puzzle                      7              0       1          0
##   Racing                      6              0       0          0
##   Role-Playing                0              0       7          0
##   Shooter                     0              0       1          0
##   Simulation                  0              0       1          0
##   Sports                      1              0       0          1
##   Strategy                    1              1       2          0
##   Sum                        19              1      19          1
##               Publisher
## Genre          Sunflowers Sunrise Interactive Sunsoft Sweets
##   Action                0                   1       0      0
##   Adventure             0                   0       2      2
##   Fighting              0                   1       2      0
##   Misc                  0                   0       1      0
##   Platform              0                   0       1      0
##   Puzzle                0                   0       1      0
##   Racing                0                   1       0      0
##   Role-Playing          0                   1       2      0
##   Shooter               0                   0       1      0
##   Simulation            0                   0       0      0
##   Sports                0                   0       0      0
##   Strategy              1                   0       0      0
##   Sum                   1                   4      10      2
##               Publisher
## Genre          Swing! Entertainment Syscom System 3
##   Action                          1      0        0
##   Adventure                       1      0        0
##   Fighting                        0      0        0
##   Misc                            0      1        0
##   Platform                        1      0        3
##   Puzzle                          0      0        0
##   Racing                          0      1        0
##   Role-Playing                    0      0        0
##   Shooter                         2      0        0
##   Simulation                      1      0        0
##   Sports                          0      0        0
##   Strategy                        0      0        0
##   Sum                             6      2        3
##               Publisher
## Genre          System 3 Arcade Software System Soft T&E Soft Taito Takara
##   Action                              0           0        0     1      3
##   Adventure                           0           1        0     1      0
##   Fighting                            0           0        0     1      4
##   Misc                                3           0        0     3      4
##   Platform                            2           0        0     0      0
##   Puzzle                              1           0        0     0      0
##   Racing                              7           0        0     0      4
##   Role-Playing                        0           0        0     2      1
##   Shooter                             0           0        0     4      0
##   Simulation                          0           0        0     7      0
##   Sports                              1           0        1     0      0
##   Strategy                            0           3        0     0      0
##   Sum                                14           4        1    19     16
##               Publisher
## Genre          Takara Tomy Take-Two Interactive Takuyo TalonSoft TDK Core
##   Action                12                   93      0         0        2
##   Adventure              0                   12      1         0        0
##   Fighting              10                    1      0         0        0
##   Misc                   6                   27      0         0        2
##   Platform               0                   11      0         0        0
##   Puzzle                 0                    1      0         0        0
##   Racing                 2                   20      0         0        0
##   Role-Playing           3                    6      0         0        0
##   Shooter                0                   65      0         1        0
##   Simulation             0                    4      0         0        1
##   Sports                 3                  151      0         0        0
##   Strategy               1                   22      0         0        0
##   Sum                   37                  413      1         1        5
##               Publisher
## Genre          TDK Mediactive Team17 Software Technos Japan Corporation
##   Action                    8               0                         0
##   Adventure                 2               0                         0
##   Fighting                  0               0                         0
##   Misc                      5               0                         0
##   Platform                  8               0                         0
##   Puzzle                    0               0                         0
##   Racing                    6               0                         0
##   Role-Playing              0               0                         0
##   Shooter                   4               0                         0
##   Simulation                0               0                         0
##   Sports                    3               0                         1
##   Strategy                  0               1                         0
##   Sum                      36               1                         1
##               Publisher
## Genre          TechnoSoft Tecmo Koei Telegames Telltale Games Telstar
##   Action                0        137         0              2       1
##   Adventure             0         17         0             23       0
##   Fighting              0         12         0              0       0
##   Misc                  0         14         4              0       0
##   Platform              0          1         0              0       0
##   Puzzle                0          0         2              0       0
##   Racing                0          5         0              0       1
##   Role-Playing          0         47         0              0       0
##   Shooter               1          3         0              0       1
##   Simulation            0         13         1              0       0
##   Sports                0         39         0              0       0
##   Strategy              0         50         1              0       0
##   Sum                   1        338         8             25       3
##               Publisher
## Genre          Tetris Online   TGL The Adventure Company
##   Action                   0     0                     0
##   Adventure                0     4                     3
##   Fighting                 0     0                     0
##   Misc                     0     0                     0
##   Platform                 0     0                     0
##   Puzzle                   1     0                     2
##   Racing                   0     0                     0
##   Role-Playing             0     0                     0
##   Shooter                  0     0                     0
##   Simulation               0     0                     0
##   Sports                   0     0                     0
##   Strategy                 0     0                     0
##   Sum                      1     4                     5
##               Publisher
## Genre          The Learning Company   THQ Tigervision
##   Action                          0   194           3
##   Adventure                       0    47           0
##   Fighting                        0    71           0
##   Misc                            0    66           0
##   Platform                        0    85           0
##   Puzzle                          0    17           0
##   Racing                          1   101           0
##   Role-Playing                    0     8           0
##   Shooter                         0    36           0
##   Simulation                      0    27           0
##   Sports                          0    31           0
##   Strategy                        0    32           0
##   Sum                             1   715           3
##               Publisher
## Genre          Time Warner Interactive Titus Tivola  TOHO Tommo
##   Action                             0     4      0     0     0
##   Adventure                          0     0      0     0     0
##   Fighting                           1     3      0     0     0
##   Misc                               0     1      3     0     3
##   Platform                           0     1      0     0     0
##   Puzzle                             0     0      0     0     0
##   Racing                             0     4      0     0     0
##   Role-Playing                       0     1      0     1     0
##   Shooter                            1     2      0     0     1
##   Simulation                         0     2      0     0     0
##   Sports                             2     0      0     0     1
##   Strategy                           1     1      0     0     0
##   Sum                                5    19      3     1     5
##               Publisher
## Genre          Tomy Corporation TopWare Interactive Touchstone Tradewest
##   Action                      2                   0          3         0
##   Adventure                   0                   0          0         0
##   Fighting                   10                   0          0         0
##   Misc                        1                   3          0         0
##   Platform                    0                   0          0         0
##   Puzzle                      0                   0          0         0
##   Racing                      1                   0          0         0
##   Role-Playing                3                   1          0         0
##   Shooter                     0                   0          0         0
##   Simulation                  1                   0          1         0
##   Sports                      0                   0          0         3
##   Strategy                    0                   0          0         0
##   Sum                        18                   4          4         3
##               Publisher
## Genre          Trion Worlds Tripwire Interactive Tru Blu Entertainment
##   Action                  0                    0                     4
##   Adventure               0                    0                     0
##   Fighting                0                    0                     0
##   Misc                    0                    0                     0
##   Platform                0                    0                     0
##   Puzzle                  0                    0                     0
##   Racing                  0                    0                     0
##   Role-Playing            0                    0                     0
##   Shooter                 3                    1                     0
##   Simulation              0                    0                     0
##   Sports                  0                    0                     4
##   Strategy                1                    0                     0
##   Sum                     4                    1                     8
##               Publisher
## Genre          Tryfirst   TYO Type-Moon U.S. Gold Ubisoft Ubisoft Annecy
##   Action              0     0         0         0     193             10
##   Adventure           0     0         1         0      59              0
##   Fighting            1     0         0         0      19              2
##   Misc                0     0         0         0     151              1
##   Platform            0     0         0         1      70              0
##   Puzzle              0     0         0         0      24              0
##   Racing              0     1         0         0      52              0
##   Role-Playing        0     0         0         0      41              1
##   Shooter             0     0         0         0      92              0
##   Simulation          0     0         0         0     119              0
##   Sports              0     0         0         3      72              0
##   Strategy            0     0         0         0      29              0
##   Sum                 1     1         1         4     921             14
##               Publisher
## Genre          UEP Systems UFO Interactive UIG Entertainment Ultravision
##   Action                 0               1                 0           0
##   Adventure              0               0                 0           0
##   Fighting               0               0                 0           1
##   Misc                   0               8                 0           0
##   Platform               0               0                 0           0
##   Puzzle                 0               4                 0           0
##   Racing                 0               0                 0           0
##   Role-Playing           0               0                 0           0
##   Shooter                0               1                 0           0
##   Simulation             0               0                 1           0
##   Sports                 1               2                 0           0
##   Strategy               0               0                 0           0
##   Sum                    1              16                 1           1
##               Publisher
## Genre          Universal Gamex Universal Interactive Unknown Valcon Games
##   Action                     1                     9      28            0
##   Adventure                  0                     0      17            1
##   Fighting                   0                     1       6            0
##   Misc                       0                     1      31            0
##   Platform                   0                     7      10            0
##   Puzzle                     0                     0      17            0
##   Racing                     0                     0      13            3
##   Role-Playing               0                     0      22            0
##   Shooter                    0                     4      13            1
##   Simulation                 0                     0      13            1
##   Sports                     0                     1      26            2
##   Strategy                   0                     0       7            0
##   Sum                        1                    23     203            8
##               Publisher
## Genre          ValuSoft Valve Valve Software   Vap Vatical Entertainment
##   Action              0     0              0     0                     0
##   Adventure           1     0              0     0                     0
##   Fighting            0     0              0     0                     0
##   Misc                0     0              0     1                     0
##   Platform            0     0              0     0                     0
##   Puzzle              2     0              0     0                     0
##   Racing              1     0              0     0                     2
##   Role-Playing        0     0              0     0                     0
##   Shooter             0     1              3     0                     0
##   Simulation          0     0              0     0                     0
##   Sports              0     0              0     0                     0
##   Strategy            0     0              0     0                     0
##   Sum                 4     1              3     1                     2
##               Publisher
## Genre          Vic Tokai Victor Interactive Video System Views
##   Action               0                  0            1     1
##   Adventure            0                  1            0     1
##   Fighting             2                  0            0     0
##   Misc                 0                  1            0     0
##   Platform             0                  0            0     0
##   Puzzle               0                  0            0     0
##   Racing               0                  0            3     0
##   Role-Playing         0                  1            0     0
##   Shooter              0                  0            0     0
##   Simulation           0                  2            0     0
##   Sports               0                  4            0     0
##   Strategy             0                  0            0     0
##   Sum                  2                  9            4     2
##               Publisher
## Genre          Vir2L Studios Virgin Interactive Virtual Play Games Visco
##   Action                   1                 12                  0     0
##   Adventure                0                  1                  0     0
##   Fighting                 0                 19                  0     0
##   Misc                     0                  1                  1     0
##   Platform                 0                  6                  0     0
##   Puzzle                   0                  2                  0     0
##   Racing                   1                  1                  0     0
##   Role-Playing             0                  3                  0     0
##   Shooter                  0                  7                  0     1
##   Simulation               0                  2                  0     0
##   Sports                   1                  2                  1     0
##   Strategy                 0                  6                  0     0
##   Sum                      3                 62                  2     1
##               Publisher
## Genre          Vivendi Games Wanadoo Warashi Wargaming.net
##   Action                  46       2       0             0
##   Adventure                7       0       0             0
##   Fighting                 4       0       0             0
##   Misc                     8       0       0             0
##   Platform                37       2       0             0
##   Puzzle                   2       0       0             0
##   Racing                  14       1       0             0
##   Role-Playing             1       0       0             0
##   Shooter                 30       0       1             1
##   Simulation               1       0       0             0
##   Sports                   2       0       0             0
##   Strategy                12       0       0             0
##   Sum                    164       5       1             1
##               Publisher
## Genre          Warner Bros. Interactive Entertainment  Warp
##   Action                                          165     0
##   Adventure                                         3     1
##   Fighting                                         11     0
##   Misc                                             22     0
##   Platform                                          8     0
##   Puzzle                                            8     0
##   Racing                                            3     0
##   Role-Playing                                      0     0
##   Shooter                                          10     0
##   Simulation                                        0     0
##   Sports                                            0     0
##   Strategy                                          2     0
##   Sum                                             232     1
##               Publisher
## Genre          WayForward Technologies Westwood Studios
##   Action                             0                0
##   Adventure                          1                0
##   Fighting                           0                0
##   Misc                               0                0
##   Platform                           0                0
##   Puzzle                             0                0
##   Racing                             0                0
##   Role-Playing                       0                0
##   Shooter                            0                0
##   Simulation                         0                0
##   Sports                             0                0
##   Strategy                           0                1
##   Sum                                1                1
##               Publisher
## Genre          White Park Bay Software Wizard Video Games
##   Action                             0                  1
##   Adventure                          0                  0
##   Fighting                           0                  0
##   Misc                               0                  0
##   Platform                           0                  0
##   Puzzle                             1                  0
##   Racing                             0                  0
##   Role-Playing                       0                  0
##   Shooter                            0                  0
##   Simulation                         0                  0
##   Sports                             0                  0
##   Strategy                           0                  0
##   Sum                                1                  1
##               Publisher
## Genre          Xicat Interactive Xing Entertainment Xplosiv XS Games
##   Action                       0                  0       0        0
##   Adventure                    0                  0       0        0
##   Fighting                     0                  1       0        0
##   Misc                         0                  0       3        2
##   Platform                     0                  0       0        0
##   Puzzle                       0                  0       2        0
##   Racing                       1                  0       5        5
##   Role-Playing                 1                  0       0        0
##   Shooter                      0                  0       0        0
##   Simulation                   0                  0       0        0
##   Sports                       1                  0       0        5
##   Strategy                     0                  0       0        0
##   Sum                          3                  1      10       12
##               Publisher
## Genre          Xseed Games Yacht Club Games Yamasa Entertainment  Yeti
##   Action                 1                0                    0     1
##   Adventure              0                0                    0     9
##   Fighting               0                0                    0     1
##   Misc                   0                0                    2     0
##   Platform               0                3                    0     0
##   Puzzle                 0                0                    0     0
##   Racing                 0                0                    0     0
##   Role-Playing           2                0                    0     0
##   Shooter                1                0                    0     0
##   Simulation             0                0                    0     0
##   Sports                 0                0                    0     0
##   Strategy               0                0                    0     0
##   Sum                    4                3                    2    11
##               Publisher
## Genre          Yuke's Yumedia Zenrin Zoo Digital Publishing Zoo Games
##   Action            0       0      0                      8         3
##   Adventure         0       1      0                      7         1
##   Fighting          2       0      0                      3         0
##   Misc              0       0      2                     18        11
##   Platform          0       0      0                      2         0
##   Puzzle            0       0      0                     14         3
##   Racing            1       0      0                     26         6
##   Role-Playing      0       0      0                      0         0
##   Shooter           0       0      0                      8         4
##   Simulation        0       0      0                      1         1
##   Sports            0       0      0                     16         4
##   Strategy          0       0      0                      1         0
##   Sum               3       1      2                    104        33
##               Publisher
## Genre          Zushi Games   Sum
##   Action                 1  3316
##   Adventure              1  1286
##   Fighting               0   848
##   Misc                   1  1739
##   Platform               0   886
##   Puzzle                 2   582
##   Racing                 3  1249
##   Role-Playing           1  1488
##   Shooter                2  1310
##   Simulation             2   867
##   Sports                 3  2346
##   Strategy               2   681
##   Sum                   18 16598
myTable
##               Publisher
## Genre          10TACLE Studios 1C Company 20th Century Fox Video Games
##   Action                     0          0                            4
##   Adventure                  1          0                            0
##   Fighting                   0          0                            0
##   Misc                       0          0                            0
##   Platform                   0          0                            0
##   Puzzle                     1          0                            0
##   Racing                     0          1                            0
##   Role-Playing               0          1                            0
##   Shooter                    0          0                            1
##   Simulation                 0          0                            0
##   Sports                     0          0                            0
##   Strategy                   1          1                            0
##               Publisher
## Genre          2D Boy 3DO 49Games 505 Games 5pb 7G//AMES 989 Sports
##   Action            0  17       0        21   5        0          0
##   Adventure         0   3       0         7  49        0          0
##   Fighting          0   1       0        11   1        0          0
##   Misc              0   0       0        31   0        1          0
##   Platform          0   1       0         6   0        0          0
##   Puzzle            1   1       0        15   0        1          0
##   Racing            0   0       0         2   0        0          0
##   Role-Playing      0   1       0        10   1        0          0
##   Shooter           0   5       0        18   3        0          0
##   Simulation        0   0       0        41   2        2          0
##   Sports            0   6       1        27   0        0          1
##   Strategy          0   1       0         3   0        0          0
##               Publisher
## Genre          989 Studios Abylight Acclaim Entertainment Accolade
##   Action                 2        1                    14        0
##   Adventure              0        0                     4        0
##   Fighting               0        0                    31        0
##   Misc                   0        0                     5        0
##   Platform               0        0                     5        1
##   Puzzle                 0        0                     9        0
##   Racing                 3        0                    44        1
##   Role-Playing           0        0                     1        0
##   Shooter                0        0                    17        0
##   Simulation             0        0                     0        0
##   Sports                 9        0                    52        1
##   Strategy               0        0                     2        0
##               Publisher
## Genre          Ackkstudios Acquire Activision Activision Blizzard
##   Action                 4       2        310                   1
##   Adventure              1       2         25                   0
##   Fighting               0       0          7                   0
##   Misc                   0       0        103                   0
##   Platform               0       0         60                   0
##   Puzzle                 0       0          7                   0
##   Racing                 0       0         74                   0
##   Role-Playing           2       8         41                   0
##   Shooter                0       0        159                   0
##   Simulation             0       0         23                   0
##   Sports                 2       0        144                   0
##   Strategy               1       1         22                   0
##               Publisher
## Genre          Activision Value Adeline Software Aerosoft
##   Action                      1                1        0
##   Adventure                   0                0        0
##   Fighting                    0                0        0
##   Misc                        1                0        0
##   Platform                    0                0        0
##   Puzzle                      0                0        0
##   Racing                      0                0        0
##   Role-Playing                0                0        0
##   Shooter                     4                0        0
##   Simulation                  0                0        2
##   Sports                     22                0        0
##   Strategy                    1                0        0
##               Publisher
## Genre          Agatsuma Entertainment Agetec Aksys Games
##   Action                            1      2           1
##   Adventure                         0      0           3
##   Fighting                          0      1           0
##   Misc                              1      1           0
##   Platform                          1      0           0
##   Puzzle                            0      0           0
##   Racing                            0      1           0
##   Role-Playing                      0      0           4
##   Shooter                           0      0           0
##   Simulation                        0      1           0
##   Sports                            0      1           0
##   Strategy                          0      1           0
##               Publisher
## Genre          Alawar Entertainment Alchemist Alternative Software Altron
##   Action                          1         3                    1      0
##   Adventure                       0        32                    0      0
##   Fighting                        0         0                    0      0
##   Misc                            0         4                    0      0
##   Platform                        0         0                    0      0
##   Puzzle                          0         0                    0      0
##   Racing                          0         0                    0      0
##   Role-Playing                    0         1                    0      0
##   Shooter                         0         3                    0      1
##   Simulation                      0         0                    0      0
##   Sports                          0         0                    5      0
##   Strategy                        1         0                    0      0
##               Publisher
## Genre          Alvion American Softworks Angel Studios Answer Software
##   Action            0                  1             0               1
##   Adventure         0                  0             0               0
##   Fighting          0                  0             1               0
##   Misc              2                  0             0               0
##   Platform          0                  0             0               0
##   Puzzle            0                  0             0               0
##   Racing            0                  0             0               0
##   Role-Playing      0                  0             1               0
##   Shooter           0                  0             0               0
##   Simulation        0                  0             0               0
##   Sports            0                  0             0               0
##   Strategy          0                  0             1               0
##               Publisher
## Genre          AQ Interactive Aqua Plus Aques Arc System Works
##   Action                    0         0     0                3
##   Adventure                 0        13     0               10
##   Fighting                  2         1     0                7
##   Misc                      3         5     0                1
##   Platform                  0         0     0                0
##   Puzzle                    0         0     0                0
##   Racing                    0         0     0                0
##   Role-Playing              0         2     0                1
##   Shooter                   0         0     0                0
##   Simulation                0         0     0                0
##   Sports                    0         0     1                4
##   Strategy                  0         2     0                0
##               Publisher
## Genre          Arena Entertainment Aria Arika ArtDink Aruze Corp ASC Games
##   Action                         0    0     0       0          0         1
##   Adventure                      0    1     0       0          0         0
##   Fighting                       1    0     0       0          0         0
##   Misc                           0    0     1       0          3         0
##   Platform                       0    0     0       0          0         0
##   Puzzle                         0    0     0       0          0         0
##   Racing                         0    0     0       0          0         1
##   Role-Playing                   0    0     1       3          0         0
##   Shooter                        0    0     1       0          0         0
##   Simulation                     0    0     0       3          0         0
##   Sports                         1    0     0       0          0         1
##   Strategy                       0    0     0       3          0         0
##               Publisher
## Genre          Ascaron Entertainment Ascaron Entertainment GmbH
##   Action                           0                          0
##   Adventure                        0                          0
##   Fighting                         0                          0
##   Misc                             0                          0
##   Platform                         0                          0
##   Puzzle                           0                          0
##   Racing                           0                          0
##   Role-Playing                     0                          1
##   Shooter                          0                          0
##   Simulation                       0                          0
##   Sports                           0                          0
##   Strategy                         1                          2
##               Publisher
## Genre          ASCII Entertainment ASCII Media Works Asgard ASK
##   Action                         0                 0      2   0
##   Adventure                      2                 7      0   0
##   Fighting                       0                 0      0   0
##   Misc                           2                 0      6   1
##   Platform                       0                 0      0   0
##   Puzzle                         0                 0      0   0
##   Racing                         3                 0      0   0
##   Role-Playing                   3                 2      0   0
##   Shooter                        0                 0      0   0
##   Simulation                     1                 0      0   0
##   Sports                         8                 0      0   0
##   Strategy                       1                 0      0   0
##               Publisher
## Genre          Asmik Ace Entertainment Asmik Corp Aspyr Astragon
##   Action                             0          0     0        1
##   Adventure                          1          0     1        2
##   Fighting                           1          0     0        0
##   Misc                               0          0     3        0
##   Platform                           0          0     0        0
##   Puzzle                             0          0     0        2
##   Racing                             0          0     0        0
##   Role-Playing                       0          0     1        0
##   Shooter                            0          0     0        0
##   Simulation                         1          0     1        1
##   Sports                             0          2     2        0
##   Strategy                           0          0     0        0
##               Publisher
## Genre          Asylum Entertainment Atari Athena Atlus Avalon Interactive
##   Action                          0    54      0     3                  1
##   Adventure                       3    17      1     1                  0
##   Fighting                        0    37      0     5                  0
##   Misc                            0    26      0     1                  0
##   Platform                        1    21      0     1                  0
##   Puzzle                          0    22      0     0                  0
##   Racing                          0    36      0     1                  1
##   Role-Playing                    0    28      0    46                  2
##   Shooter                         0    40      0     2                  1
##   Simulation                      2     9      0     1                  1
##   Sports                          0    56      1     4                  0
##   Strategy                        0    17      0     2                  0
##               Publisher
## Genre          Avanquest Avanquest Software Axela BAM! Entertainment
##   Action               4                  4     0                  9
##   Adventure            1                  3     0                  3
##   Fighting             0                  0     0                  1
##   Misc                 3                  2     0                  1
##   Platform             0                  0     0                  4
##   Puzzle              14                  0     0                  0
##   Racing               0                  0     0                  7
##   Role-Playing         0                  0     0                  0
##   Shooter              0                  0     0                  8
##   Simulation           2                  0     0                  0
##   Sports               2                  0     1                  2
##   Strategy             0                  0     0                  0
##               Publisher
## Genre          Banpresto Benesse Berkeley Bethesda Softworks
##   Action               4       0        1                 17
##   Adventure            6       0        0                  0
##   Fighting             6       0        0                  0
##   Misc                 1       6        0                  0
##   Platform             1       0        0                  0
##   Puzzle               2       0        0                  0
##   Racing               1       0        0                  7
##   Role-Playing        17       0        0                 17
##   Shooter              1       0        0                 21
##   Simulation           3       0        0                  2
##   Sports               3       0        0                  5
##   Strategy            28       0        0                  2
##               Publisher
## Genre          Big Ben Interactive Big Fish Games Bigben Interactive
##   Action                         0              1                  0
##   Adventure                      1              1                  0
##   Fighting                       0              0                  0
##   Misc                           0              0                  0
##   Platform                       1              0                  0
##   Puzzle                         0              0                  0
##   Racing                         2              0                  0
##   Role-Playing                   0              0                  0
##   Shooter                        1              0                  0
##   Simulation                     0              0                  0
##   Sports                         2              0                 13
##   Strategy                       0              0                  0
##               Publisher
## Genre          bitComposer Games Black Bean Games Black Label Games
##   Action                       0                1                 1
##   Adventure                    0                0                 0
##   Fighting                     0                0                 0
##   Misc                         0                5                 0
##   Platform                     0                0                 0
##   Puzzle                       0                0                 0
##   Racing                       1               19                 0
##   Role-Playing                 0                0                 0
##   Shooter                      0                0                 0
##   Simulation                   4                0                 0
##   Sports                       0                8                 0
##   Strategy                     0                1                 0
##               Publisher
## Genre          Blast! Entertainment Ltd Blue Byte
##   Action                              2         0
##   Adventure                           2         0
##   Fighting                            0         0
##   Misc                                0         0
##   Platform                            0         0
##   Puzzle                              0         0
##   Racing                              0         0
##   Role-Playing                        0         0
##   Shooter                             0         0
##   Simulation                          0         1
##   Sports                              2         0
##   Strategy                            0         1
##               Publisher
## Genre          BMG Interactive Entertainment Bohemia Interactive Bomb
##   Action                                   0                   0    1
##   Adventure                                0                   0    0
##   Fighting                                 0                   0    0
##   Misc                                     0                   0    0
##   Platform                                 3                   0    0
##   Puzzle                                   0                   0    0
##   Racing                                   1                   0    0
##   Role-Playing                             0                   0    0
##   Shooter                                  2                   1    0
##   Simulation                               0                   0    0
##   Sports                                   1                   0    0
##   Strategy                                 0                   0    0
##               Publisher
## Genre          Boost On BPS Brash Entertainment Broccoli BushiRoad Capcom
##   Action              0   0                   0        5         0    154
##   Adventure           1   0                   0        9         1     22
##   Fighting            0   0                   0        2         0     58
##   Misc                0   0                   3        1         0     11
##   Platform            0   0                   7        0         0     46
##   Puzzle              0   1                   0        0         0      6
##   Racing              0   1                   0        0         0     13
##   Role-Playing        0   0                   0        1         0     38
##   Shooter             0   0                   0        0         0     25
##   Simulation          0   0                   0        1         0      2
##   Sports              0   0                   0        0         0      3
##   Strategy            0   0                   0        3         0      3
##               Publisher
## Genre          Cave CBS Electronics CCP CDV Software Entertainment
##   Action          1               1   0                          0
##   Adventure       1               0   0                          1
##   Fighting        0               0   0                          0
##   Misc            1               0   0                          0
##   Platform        0               0   0                          0
##   Puzzle          0               0   0                          1
##   Racing          0               0   0                          0
##   Role-Playing    0               0   1                          0
##   Shooter         7               0   0                          0
##   Simulation      0               0   0                          1
##   Sports          0               0   0                          0
##   Strategy        0               0   0                          3
##               Publisher
## Genre          ChunSoft City Interactive Cloud Imperium Games Corporation
##   Action              1                1                                0
##   Adventure          11                5                                0
##   Fighting            0                0                                2
##   Misc                0                1                                0
##   Platform            0                0                                0
##   Puzzle              0                2                                0
##   Racing              0                0                                0
##   Role-Playing        6                0                                0
##   Shooter             0                8                                0
##   Simulation          0                2                                0
##   Sports              0                0                                0
##   Strategy            0                0                                0
##               Publisher
## Genre          Coconuts Japan Codemasters Codemasters Online
##   Action                    0           9                  0
##   Adventure                 1           6                  0
##   Fighting                  0           0                  0
##   Misc                      1           7                  0
##   Platform                  0           0                  0
##   Puzzle                    0           1                  0
##   Racing                    0          89                  0
##   Role-Playing              0           3                  1
##   Shooter                   0          20                  0
##   Simulation                0           3                  0
##   Sports                    0          10                  0
##   Strategy                  0           4                  0
##               Publisher
## Genre          CokeM Interactive Coleco Comfort Commseed Compile
##   Action                       1      3       1        0       0
##   Adventure                    0      0       5        0       0
##   Fighting                     0      0       0        0       0
##   Misc                         0      0       0        1       0
##   Platform                     0      1       0        0       0
##   Puzzle                       0      0       0        0       5
##   Racing                       0      0       0        0       0
##   Role-Playing                 0      0       0        0       1
##   Shooter                      0      1       0        0       0
##   Simulation                   0      0       0        0       0
##   Sports                       0      0       0        0       0
##   Strategy                     0      0       0        0       0
##               Publisher
## Genre          Compile Heart Conspiracy Entertainment Core Design Ltd.
##   Action                   2                        3                1
##   Adventure                4                        0                0
##   Fighting                 0                        0                0
##   Misc                     0                        2                0
##   Platform                 0                        1                0
##   Puzzle                   0                        3                0
##   Racing                   0                        1                0
##   Role-Playing            13                        0                0
##   Shooter                  0                        2                0
##   Simulation               0                        1                1
##   Sports                   0                        1                0
##   Strategy                 1                        0                0
##               Publisher
## Genre          CPG Products Crave Entertainment Creative Core Crimson Cow
##   Action                  1                  11             0           1
##   Adventure               0                   1             1           1
##   Fighting                0                   5             0           0
##   Misc                    0                  18             1           0
##   Platform                0                   3             0           0
##   Puzzle                  0                  10             0           0
##   Racing                  0                   4             0           0
##   Role-Playing            0                   2             0           0
##   Shooter                 0                   3             0           0
##   Simulation              0                   2             1           0
##   Sports                  0                  10             0           0
##   Strategy                0                   2             0           0
##               Publisher
## Genre          Crystal Dynamics CTO SpA Culture Brain Culture Publishers
##   Action                      0       0             0                  0
##   Adventure                   1       0             1                  0
##   Fighting                    0       0             0                  0
##   Misc                        0       0             1                  0
##   Platform                    1       0             0                  0
##   Puzzle                      0       0             0                  1
##   Racing                      1       0             0                  0
##   Role-Playing                1       0             1                  0
##   Shooter                     0       1             0                  0
##   Simulation                  0       0             0                  0
##   Sports                      1       1             1                  0
##   Strategy                    0       0             0                  0
##               Publisher
## Genre          CyberFront Cygames D3Publisher Daedalic
##   Action                1       0          53        0
##   Adventure             8       0          31        3
##   Fighting              0       0           3        0
##   Misc                  2       0          32        0
##   Platform              0       1          12        0
##   Puzzle                0       0          11        0
##   Racing                0       0           6        0
##   Role-Playing          1       0           4        0
##   Shooter               0       0          12        0
##   Simulation            0       0           6        0
##   Sports                0       0          11        0
##   Strategy              2       0           3        0
##               Publisher
## Genre          Daedalic Entertainment Daito Data Age
##   Action                            0     0        2
##   Adventure                         3     0        0
##   Fighting                          0     0        0
##   Misc                              0     4        0
##   Platform                          0     0        0
##   Puzzle                            0     0        0
##   Racing                            0     0        0
##   Role-Playing                      0     0        0
##   Shooter                           0     0        0
##   Simulation                        0     0        0
##   Sports                            0     0        0
##   Strategy                          0     0        0
##               Publisher
## Genre          Data Design Interactive Data East Datam Polystar
##   Action                             0         0              0
##   Adventure                          0         1              2
##   Fighting                           0         0              0
##   Misc                               1         0              0
##   Platform                           0         0              0
##   Puzzle                             0         0              0
##   Racing                             1         0              0
##   Role-Playing                       0         1              0
##   Shooter                            0         0              0
##   Simulation                         0         0              0
##   Sports                             1         0              0
##   Strategy                           0         0              0
##               Publisher
## Genre          Deep Silver Destination Software, Inc Destineer Detn8 Games
##   Action                27                         2         6           0
##   Adventure             10                         0         2           0
##   Fighting               2                         0         0           0
##   Misc                   7                         1         4           0
##   Platform               3                         0         1           0
##   Puzzle                 7                         2         7           0
##   Racing                 7                         3         4           0
##   Role-Playing          17                         1         0           0
##   Shooter                5                         0         2           0
##   Simulation            17                         2        11           0
##   Sports                10                         1         8           1
##   Strategy              10                         0         0           0
##               Publisher
## Genre          Devolver Digital DHM Interactive DigiCube
##   Action                      0               0        0
##   Adventure                   0               0        0
##   Fighting                    0               0        0
##   Misc                        0               0        0
##   Platform                    0               0        0
##   Puzzle                      1               1        0
##   Racing                      0               0        0
##   Role-Playing                0               0        0
##   Shooter                     1               1        0
##   Simulation                  0               1        0
##   Sports                      0               0        1
##   Strategy                    0               0        0
##               Publisher
## Genre          Disney Interactive Studios Dorart dramatic create
##   Action                               96      0               1
##   Adventure                            29      0               4
##   Fighting                              0      0               0
##   Misc                                 44      2               0
##   Platform                             20      0               0
##   Puzzle                                3      0               0
##   Racing                               14      0               0
##   Role-Playing                          3      0               0
##   Shooter                               3      0               0
##   Simulation                            5      0               0
##   Sports                                1      0               0
##   Strategy                              0      0               0
##               Publisher
## Genre          DreamCatcher Interactive DreamWorks Interactive DSI Games
##   Action                              0                      0         1
##   Adventure                           3                      0         1
##   Fighting                            0                      0         0
##   Misc                                3                      0         2
##   Platform                            1                      1         0
##   Puzzle                              2                      0         0
##   Racing                              0                      0         0
##   Role-Playing                        0                      0         0
##   Shooter                             3                      0         0
##   Simulation                          4                      0         1
##   Sports                              1                      0         1
##   Strategy                            0                      0         0
##               Publisher
## Genre          DTP Entertainment Dusenberry Martin Racing EA Games
##   Action                       5                        0        0
##   Adventure                   10                        0        0
##   Fighting                     0                        0        0
##   Misc                         5                        0        0
##   Platform                     0                        0        0
##   Puzzle                       2                        0        0
##   Racing                       0                        2        0
##   Role-Playing                 7                        0        0
##   Shooter                      1                        0        1
##   Simulation                   3                        0        0
##   Sports                      11                        0        0
##   Strategy                     1                        0        0
##               Publisher
## Genre          Easy Interactive Ecole Edia Eidos Interactive
##   Action                      0     0    0                84
##   Adventure                   0     0    0                 5
##   Fighting                    0     1    0                 7
##   Misc                        0     0    2                 5
##   Platform                    0     0    0                 4
##   Puzzle                      2     0    0                 8
##   Racing                      0     0    0                14
##   Role-Playing                0     0    0                 9
##   Shooter                     0     0    0                35
##   Simulation                  0     0    0                 8
##   Sports                      0     0    0                 8
##   Strategy                    0     0    0                11
##               Publisher
## Genre          Electronic Arts Electronic Arts Victor Elf Elite
##   Action                   183                      1   0     0
##   Adventure                 13                      0   1     0
##   Fighting                  39                      0   0     0
##   Misc                      46                      0   0     0
##   Platform                  16                      0   0     0
##   Puzzle                     7                      0   0     0
##   Racing                   159                      0   0     0
##   Role-Playing              35                      0   0     0
##   Shooter                  139                      0   0     0
##   Simulation               116                      0   0     1
##   Sports                   561                      1   0     0
##   Strategy                  37                      0   1     0
##               Publisher
## Genre          Empire Interactive Encore Enix Corporation
##   Action                        5      1                1
##   Adventure                     3      0                0
##   Fighting                      1      0                0
##   Misc                          6      0                2
##   Platform                      0      0                0
##   Puzzle                        8      0                0
##   Racing                       21      2                0
##   Role-Playing                  1      1               23
##   Shooter                       5      0                0
##   Simulation                    1      0                2
##   Sports                        1      0                2
##   Strategy                      0      0                0
##               Publisher
## Genre          Enjoy Gaming ltd. Enterbrain EON Digital Entertainment
##   Action                       0          0                         0
##   Adventure                    0          3                         0
##   Fighting                     0          1                         0
##   Misc                         0          0                         0
##   Platform                     0          0                         0
##   Puzzle                       0          0                         0
##   Racing                       0          0                         0
##   Role-Playing                 0          6                         0
##   Shooter                      1          0                         0
##   Simulation                   0          1                         0
##   Sports                       0          4                         0
##   Strategy                     0          0                         1
##               Publisher
## Genre          Epic Games Epoch Ertain ESP Essential Games Evolution Games
##   Action                1     0      0   0               1               1
##   Adventure             0     0      0   0               0               0
##   Fighting              0     0      0   1               0               0
##   Misc                  0     1      0   0               0               0
##   Platform              0     2      0   1               0               0
##   Puzzle                0     0      0   0               0               0
##   Racing                0     0      0   0               0               0
##   Role-Playing          0     2      0   1               0               0
##   Shooter               0     0      0   1               1               0
##   Simulation            0     0      1   1               0               0
##   Sports                0     2      0   0               0               0
##   Strategy              0     0      0   0               1               0
##               Publisher
## Genre          Evolved Games Excalibur Publishing Experience Inc.
##   Action                   0                    1               0
##   Adventure                0                    0               0
##   Fighting                 0                    0               0
##   Misc                     0                    0               0
##   Platform                 2                    0               0
##   Puzzle                   0                    0               0
##   Racing                   4                    0               0
##   Role-Playing             0                    0               3
##   Shooter                  2                    0               0
##   Simulation               0                    3               0
##   Sports                   0                    0               0
##   Strategy                 0                    0               0
##               Publisher
## Genre          Extreme Entertainment Group Falcom Corporation Fields
##   Action                                 0                  0      0
##   Adventure                              0                  0      0
##   Fighting                               0                  1      0
##   Misc                                   0                  0      1
##   Platform                               0                  0      0
##   Puzzle                                 0                  0      0
##   Racing                                 0                  0      0
##   Role-Playing                           1                 15      0
##   Shooter                                0                  0      0
##   Simulation                             0                  0      0
##   Sports                                 0                  0      0
##   Strategy                               0                  0      0
##               Publisher
## Genre          Flashpoint Games Flight-Plan Focus Home Interactive
##   Action                      1           0                      1
##   Adventure                   0           0                     17
##   Fighting                    0           0                      0
##   Misc                        0           0                      1
##   Platform                    1           0                      2
##   Puzzle                      0           0                      6
##   Racing                      0           0                      3
##   Role-Playing                0           1                     12
##   Shooter                     0           0                      0
##   Simulation                  0           0                      6
##   Sports                      0           0                      7
##   Strategy                    0           1                      3
##               Publisher
## Genre          Focus Multimedia fonfun Foreign Media Games Fortyfive
##   Action                      0      0                   0         0
##   Adventure                   0      0                   1         1
##   Fighting                    0      0                   0         0
##   Misc                        1      0                   2         0
##   Platform                    0      0                   0         0
##   Puzzle                      2      0                   4         0
##   Racing                      0      0                   0         0
##   Role-Playing                0      0                   0         0
##   Shooter                     0      0                   0         0
##   Simulation                  0      1                   2         0
##   Sports                      0      0                   0         0
##   Strategy                    0      0                   0         0
##               Publisher
## Genre          Fox Interactive From Software Fuji Funbox Media Funcom
##   Action                     1             3    0            3      0
##   Adventure                  0             1    1            1      0
##   Fighting                   0             0    0            0      0
##   Misc                       0             0    0            1      0
##   Platform                   2             0    0            0      0
##   Puzzle                     0             0    0            0      0
##   Racing                     0             0    0            0      0
##   Role-Playing               0             4    0            0      2
##   Shooter                    3             1    0            0      0
##   Simulation                 0             6    0            0      0
##   Sports                     2             0    0            0      0
##   Strategy                   0             0    0            1      0
##               Publisher
## Genre          FunSoft Funsta FuRyu FuRyu Corporation G.Rev Gaga
##   Action             0      0    11                 1     0    0
##   Adventure          0      0     3                 0     0    0
##   Fighting           0      0     0                 0     1    0
##   Misc               0      0     4                 0     0    0
##   Platform           0      0     0                 0     0    0
##   Puzzle             0      3     0                 0     0    0
##   Racing             1      0     0                 0     0    0
##   Role-Playing       0      0     8                 0     0    0
##   Shooter            0      1     0                 0     1    1
##   Simulation         0      0     1                 0     0    0
##   Sports             0      0     0                 0     0    0
##   Strategy           0      0     0                 0     0    0
##               Publisher
## Genre          Gainax Network Systems Gakken Game Arts Game Factory
##   Action                            0      0         0            8
##   Adventure                         1      0         0            4
##   Fighting                          0      0         0            2
##   Misc                              1      2         0            5
##   Platform                          0      0         0            4
##   Puzzle                            0      0         0            4
##   Racing                            0      0         0            2
##   Role-Playing                      0      0         1            1
##   Shooter                           0      0         0            0
##   Simulation                        0      0         0            2
##   Sports                            0      0         0            0
##   Strategy                          0      0         0            0
##               Publisher
## Genre          Game Life Gamebridge Gamecock Gameloft
##   Action               0          2        1        0
##   Adventure            0          0        0        0
##   Fighting             0          0        0        0
##   Misc                 1          0        2        1
##   Platform             0          0        0        0
##   Puzzle               0          0        0        0
##   Racing               0          0        0        0
##   Role-Playing         0          0        0        0
##   Shooter              0          0        0        0
##   Simulation           1          0        0        0
##   Sports               0          0        0        0
##   Strategy             0          0        1        0
##               Publisher
## Genre          GameMill Entertainment GameTek Gathering of Developers
##   Action                            3       0                       0
##   Adventure                         1       0                       0
##   Fighting                          0       0                       0
##   Misc                              3       1                       2
##   Platform                          0       0                       0
##   Puzzle                            0       0                       0
##   Racing                            0       0                       2
##   Role-Playing                      0       0                       0
##   Shooter                           0       0                       3
##   Simulation                        0       0                       0
##   Sports                            1       0                       0
##   Strategy                          0       0                       2
##               Publisher
## Genre          General Entertainment Genki Genterprise Ghostlight Giga
##   Action                           0     2           0          0    0
##   Adventure                        0     0           0          0    1
##   Fighting                         0     0           0          0    0
##   Misc                             0     0           0          0    0
##   Platform                         0     0           0          0    0
##   Puzzle                           0     0           1          0    0
##   Racing                           0     5           0          0    0
##   Role-Playing                     0     0           0          9    0
##   Shooter                          0     0           0          0    0
##   Simulation                       0     0           0          1    0
##   Sports                           0     1           0          3    0
##   Strategy                         1     0           0          2    0
##               Publisher
## Genre          Giza10 Glams Global A Entertainment Global Star GN Software
##   Action            1     0                      0           1           0
##   Adventure         0     0                      0           6           3
##   Fighting          0     0                      0           1           0
##   Misc              0     0                      1           0           0
##   Platform          0     0                      0           5           0
##   Puzzle            0     0                      0           0           0
##   Racing            0     0                      0           5           0
##   Role-Playing      0     0                      3           0           0
##   Shooter           0     0                      0           8           0
##   Simulation        0     0                      0           2           0
##   Sports            0     0                      0          10           0
##   Strategy          0     1                      0           1           0
##               Publisher
## Genre          GOA Gotham Games Graffiti Grand Prix Games
##   Action         0            0        0                0
##   Adventure      0            0        0                0
##   Fighting       0            2        0                1
##   Misc           0            0        2                0
##   Platform       0            3        0                0
##   Puzzle         0            0        0                0
##   Racing         0            0        0                0
##   Role-Playing   1            0        2                0
##   Shooter        0            1        1                0
##   Simulation     0            0        1                0
##   Sports         0            1        0                0
##   Strategy       0            0        0                0
##               Publisher
## Genre          Graphsim Entertainment Gremlin Interactive Ltd
##   Action                            0                       1
##   Adventure                         0                       0
##   Fighting                          0                       0
##   Misc                              0                       0
##   Platform                          0                       1
##   Puzzle                            0                       0
##   Racing                            0                       2
##   Role-Playing                      0                       0
##   Shooter                           0                       1
##   Simulation                        1                       0
##   Sports                            0                       4
##   Strategy                          0                       0
##               Publisher
## Genre          Griffin International Groove Games GSP GT Interactive
##   Action                           0            0   0             10
##   Adventure                        0            0   6              0
##   Fighting                         0            0   0              7
##   Misc                             0            0   5              1
##   Platform                         0            0   0              3
##   Puzzle                           0            0   3              0
##   Racing                           0            0   0              6
##   Role-Playing                     0            0   0              0
##   Shooter                          0            2   0             12
##   Simulation                       0            0   2              1
##   Sports                           1            0   0              5
##   Strategy                         0            0   0              0
##               Publisher
## Genre          GungHo Gust Hackberry HAL Laboratory Hamster Corporation
##   Action            2    0         0              0                   1
##   Adventure         1    1         0              0                   0
##   Fighting          0    0         0              0                   0
##   Misc              1    0         7              0                   0
##   Platform          0    0         0              0                   0
##   Puzzle            0    0         0              1                   0
##   Racing            0    0         0              0                   0
##   Role-Playing      9   11         0              0                   0
##   Shooter           0    0         0              0                   0
##   Simulation        0    0         0              0                   1
##   Sports            0    0         0              0                   0
##   Strategy          0    1         0              0                   0
##               Publisher
## Genre          Happinet Harmonix Music Systems Hasbro Interactive
##   Action              0                      0                  2
##   Adventure           3                      0                  0
##   Fighting            0                      0                  0
##   Misc                1                      2                  8
##   Platform            0                      0                  1
##   Puzzle              0                      0                  2
##   Racing              0                      0                  2
##   Role-Playing        0                      0                  0
##   Shooter             0                      0                  1
##   Simulation          1                      0                  0
##   Sports              0                      0                  0
##   Strategy            0                      0                  0
##               Publisher
## Genre          Havas Interactive Headup Games Hearty Robin Hect
##   Action                       0            0            0    0
##   Adventure                    0            1            0    0
##   Fighting                     0            0            0    0
##   Misc                         0            0            0    0
##   Platform                     0            0            0    0
##   Puzzle                       0            0            0    0
##   Racing                       0            0            0    0
##   Role-Playing                 1            0            0    0
##   Shooter                      0            0            0    0
##   Simulation                   0            0            1    3
##   Sports                       0            0            0    0
##   Strategy                     0            0            0    0
##               Publisher
## Genre          Hello Games Her Interactive Hip Interactive HMH Interactive
##   Action                 1               0               4               0
##   Adventure              0               1               0               1
##   Fighting               0               0               0               0
##   Misc                   0               0               0               1
##   Platform               0               0               0               0
##   Puzzle                 0               0               0               0
##   Racing                 0               0               0               0
##   Role-Playing           0               0               0               0
##   Shooter                0               0               1               0
##   Simulation             0               0               0               0
##   Sports                 0               0               0               0
##   Strategy               0               0               0               0
##               Publisher
## Genre          Home Entertainment Suppliers Hudson Entertainment
##   Action                                  0                    0
##   Adventure                               0                    0
##   Fighting                                0                    0
##   Misc                                    0                    3
##   Platform                                0                    1
##   Puzzle                                  0                    2
##   Racing                                  0                    0
##   Role-Playing                            0                    2
##   Shooter                                 0                    1
##   Simulation                              0                    1
##   Sports                                  5                    1
##   Strategy                                0                    0
##               Publisher
## Genre          Hudson Soft Human Entertainment HuneX Iceberg Interactive
##   Action                 6                   0     1                   0
##   Adventure              3                   2     1                   0
##   Fighting               4                   6     0                   0
##   Misc                  21                   0     0                   0
##   Platform               3                   0     0                   0
##   Puzzle                12                   0     0                   0
##   Racing                 0                   1     0                   0
##   Role-Playing          12                   0     0                   1
##   Shooter                4                   0     0                   0
##   Simulation             3                   1     0                   0
##   Sports                12                   2     0                   0
##   Strategy               1                   1     0                   2
##               Publisher
## Genre          id Software Idea Factory Idea Factory International
##   Action                 0           28                          4
##   Adventure              0           81                          0
##   Fighting               0            0                          0
##   Misc                   0            5                          0
##   Platform               0            0                          0
##   Puzzle                 0            0                          0
##   Racing                 0            0                          0
##   Role-Playing           0           13                          2
##   Shooter                1            0                          0
##   Simulation             0            0                          0
##   Sports                 0            0                          0
##   Strategy               0            2                          0
##               Publisher
## Genre          IE Institute Ignition Entertainment Illusion Softworks
##   Action                  1                      5                  1
##   Adventure               0                      1                  0
##   Fighting                0                     21                  0
##   Misc                    4                      4                  0
##   Platform                0                      3                  0
##   Puzzle                  0                      8                  0
##   Racing                  0                      3                  0
##   Role-Playing            0                      3                  0
##   Shooter                 0                      6                  0
##   Simulation              0                      0                  0
##   Sports                  0                      6                  0
##   Strategy                0                      1                  0
##               Publisher
## Genre          Imadio Image Epoch imageepoch Inc. Imageworks Imagic
##   Action            0           0               0          0      1
##   Adventure         1           0               1          0      0
##   Fighting          0           0               0          0      0
##   Misc              0           0               0          0      0
##   Platform          0           0               0          0      0
##   Puzzle            0           0               0          0      0
##   Racing            0           0               0          0      0
##   Role-Playing      0           1               1          0      0
##   Shooter           0           0               0          0      3
##   Simulation        0           0               0          1      0
##   Sports            0           0               0          0      0
##   Strategy          0           0               0          0      0
##               Publisher
## Genre          Imagineer Imax Indie Games Infogrames Insomniac Games
##   Action               0    0           0          5               3
##   Adventure            3    0           2          4               0
##   Fighting             1    0           0          2               0
##   Misc                 0    1           0          7               0
##   Platform             0    0           0         10               0
##   Puzzle               0    0           0          0               0
##   Racing               1    0           0         15               0
##   Role-Playing         4    0           0          2               0
##   Shooter              0    0           0          6               0
##   Simulation           1    0           1          1               0
##   Sports               6    0           0          7               0
##   Strategy             0    0           0          3               0
##               Publisher
## Genre          Interchannel Interchannel-Holon Intergrow Interplay
##   Action                  0                  0         0         6
##   Adventure               4                  0         0         1
##   Fighting                0                  0         0         1
##   Misc                    0                  0         0         2
##   Platform                0                  0         1         3
##   Puzzle                  0                  0         0         0
##   Racing                  0                  0         0         4
##   Role-Playing            0                  0         0         3
##   Shooter                 0                  0         0         5
##   Simulation              0                  0         0         2
##   Sports                  0                  0         0         3
##   Strategy                0                  1         0         0
##               Publisher
## Genre          Interplay Productions Interworks Unlimited, Inc.
##   Action                           0                          0
##   Adventure                        0                          0
##   Fighting                         0                          0
##   Misc                             0                          0
##   Platform                         0                          0
##   Puzzle                           0                          0
##   Racing                           0                          0
##   Role-Playing                     0                          0
##   Shooter                          1                          0
##   Simulation                       0                          0
##   Sports                           0                          1
##   Strategy                         0                          0
##               Publisher
## Genre          Inti Creates Introversion Software inXile Entertainment
##   Action                  1                     1                    0
##   Adventure               0                     0                    0
##   Fighting                0                     0                    0
##   Misc                    0                     0                    0
##   Platform                0                     0                    0
##   Puzzle                  0                     0                    0
##   Racing                  0                     0                    0
##   Role-Playing            0                     0                    1
##   Shooter                 0                     0                    0
##   Simulation              0                     0                    0
##   Sports                  0                     0                    0
##   Strategy                0                     0                    0
##               Publisher
## Genre          Irem Software Engineering ITT Family Games Ivolgamus iWin
##   Action                               3                1         0    0
##   Adventure                            0                0         0    0
##   Fighting                             1                0         0    0
##   Misc                                 5                0         0    0
##   Platform                             0                0         0    0
##   Puzzle                               0                0         1    1
##   Racing                               0                0         0    0
##   Role-Playing                         1                0         0    0
##   Shooter                              1                0         0    0
##   Simulation                           0                0         0    0
##   Sports                               0                0         0    0
##   Strategy                             1                0         0    0
##               Publisher
## Genre          Jack of All Games Jaleco Jester Interactive Jorudan
##   Action                       0      2                  0       0
##   Adventure                    0      0                  0       0
##   Fighting                     0      1                  0       0
##   Misc                         0      2                  1       0
##   Platform                     2      0                  0       0
##   Puzzle                       0      3                  0       0
##   Racing                       0      6                  2       0
##   Role-Playing                 0      0                  0       0
##   Shooter                      1      1                  0       0
##   Simulation                   0      0                  0       3
##   Sports                       0      5                  0       0
##   Strategy                     0      3                  0       0
##               Publisher
## Genre          JoWood Productions Just Flight JVC Kadokawa Games
##   Action                        3           0   1              5
##   Adventure                     3           0   0              6
##   Fighting                      0           0   1              0
##   Misc                          1           0   1              1
##   Platform                      2           0   0              0
##   Puzzle                        1           0   1              0
##   Racing                        0           0   2              0
##   Role-Playing                  5           0   0              2
##   Shooter                       0           0   2              0
##   Simulation                    2           1   0              1
##   Sports                        1           0   0              0
##   Strategy                      4           0   0              0
##               Publisher
## Genre          Kadokawa Shoten Kaga Create Kalypso Media Kamui Kando Games
##   Action                     2           3             3     0           0
##   Adventure                 33           2             2     0           0
##   Fighting                   0           0             0     0           0
##   Misc                       1           1             1     1           0
##   Platform                   0           0             0     0           0
##   Puzzle                     0           0             0     0           0
##   Racing                     0           0             0     0           0
##   Role-Playing              11           0             0     0           0
##   Shooter                    0           0             0     0           0
##   Simulation                 1           0             7     0           1
##   Sports                     1           0             0     0           0
##   Strategy                   1           0            16     0           0
##               Publisher
## Genre          Karin Entertainment Kemco KID Kids Station King Records
##   Action                         0     6   0            0            0
##   Adventure                      0     1   4            1            0
##   Fighting                       0     0   0            0            0
##   Misc                           1     1   0            0            0
##   Platform                       0     2   0            0            0
##   Puzzle                         0     3   0            0            0
##   Racing                         0     5   0            0            0
##   Role-Playing                   0     1   0            0            1
##   Shooter                        0     1   0            0            0
##   Simulation                     0     0   0            0            0
##   Sports                         0     1   0            0            0
##   Strategy                       0     0   0            0            0
##               Publisher
## Genre          Knowledge Adventure Koch Media Kokopeli Digital Studios
##   Action                         1          4                        0
##   Adventure                      1          2                        0
##   Fighting                       0          0                        1
##   Misc                           1          0                        0
##   Platform                       0          0                        0
##   Puzzle                         0          1                        0
##   Racing                         0          0                        0
##   Role-Playing                   0          1                        0
##   Shooter                        0          0                        0
##   Simulation                     0          6                        0
##   Sports                         1          2                        0
##   Strategy                       0          1                        0
##               Publisher
## Genre          Konami Digital Entertainment Kool Kizz KSS Laguna
##   Action                                148         0   0      1
##   Adventure                              53         0   0      0
##   Fighting                               20         0   0      0
##   Misc                                   77         0   1      0
##   Platform                               40         0   0      2
##   Puzzle                                 10         0   0      0
##   Racing                                 13         0   0      0
##   Role-Playing                           37         0   0      1
##   Shooter                                40         0   0      0
##   Simulation                             86         0   0      0
##   Sports                                280         0   0      0
##   Strategy                               28         1   0      0
##               Publisher
## Genre          Legacy Interactive LEGO Media Level 5 Lexicon Entertainment
##   Action                        0          1       6                     0
##   Adventure                     1          1       4                     0
##   Fighting                      0          0       0                     0
##   Misc                          0          0       1                     0
##   Platform                      0          1       0                     0
##   Puzzle                        0          0       3                     0
##   Racing                        0          3       0                     0
##   Role-Playing                  0          0      11                     0
##   Shooter                       0          0       0                     1
##   Simulation                    0          0       0                     1
##   Sports                        0          0       1                     0
##   Strategy                      0          1       1                     0
##               Publisher
## Genre          Licensed 4U Lighthouse Interactive Liquid Games
##   Action                 2                      0            0
##   Adventure              0                      0            0
##   Fighting               0                      0            0
##   Misc                   0                      0            0
##   Platform               0                      0            0
##   Puzzle                 1                      0            1
##   Racing                 0                      0            1
##   Role-Playing           0                      0            0
##   Shooter                0                      0            0
##   Simulation             0                      1            0
##   Sports                 0                      0            0
##   Strategy               0                      0            0
##               Publisher
## Genre          Little Orbit Locus LSP Games LucasArts Mad Catz
##   Action                 17     0         1        48        0
##   Adventure               7     0         0         3        0
##   Fighting                0     0         0         0        0
##   Misc                    0     0         0         0        1
##   Platform                0     0         2         0        0
##   Puzzle                  0     0         0         0        0
##   Racing                  0     0         0         2        0
##   Role-Playing            0     1         0         2        0
##   Shooter                 0     0         1        19        0
##   Simulation              2     0         0         6        1
##   Sports                  0     0         0         0        1
##   Strategy                0     0         0        10        0
##               Publisher
## Genre          Magical Company Magix Majesco Entertainment Mamba Games
##   Action                     0     0                    15           0
##   Adventure                  0     0                     4           1
##   Fighting                   0     0                     3           0
##   Misc                       0     2                    21           0
##   Platform                   0     0                     4           0
##   Puzzle                     0     0                     9           0
##   Racing                     0     0                     5           0
##   Role-Playing               0     0                     2           0
##   Shooter                    0     0                     9           0
##   Simulation                 0     0                    13           0
##   Sports                     1     0                     5           0
##   Strategy                   0     0                     2           1
##               Publisher
## Genre          Marvel Entertainment Marvelous Entertainment
##   Action                          1                       6
##   Adventure                       0                       0
##   Fighting                        0                       1
##   Misc                            0                       2
##   Platform                        0                       0
##   Puzzle                          0                       0
##   Racing                          0                       0
##   Role-Playing                    0                       2
##   Shooter                         0                       0
##   Simulation                      0                       1
##   Sports                          0                       0
##   Strategy                        0                       0
##               Publisher
## Genre          Marvelous Games Marvelous Interactive Masque Publishing
##   Action                     0                    10                 0
##   Adventure                  1                    14                 0
##   Fighting                   0                     9                 0
##   Misc                       0                     2                 0
##   Platform                   0                     0                 0
##   Puzzle                     0                     0                 0
##   Racing                     0                     0                 0
##   Role-Playing               0                    13                 0
##   Shooter                    0                     0                 0
##   Simulation                 0                     6                 1
##   Sports                     0                     2                 0
##   Strategy                   0                     0                 0
##               Publisher
## Genre          Mastertronic Mastiff Mattel Interactive Max Five
##   Action                  0       0                  4        0
##   Adventure               1       1                  2        0
##   Fighting                0       0                  0        0
##   Misc                    1       2                  0        0
##   Platform                0       0                  0        0
##   Puzzle                  4       0                  1        0
##   Racing                  1       0                  1        0
##   Role-Playing            0       0                  0        1
##   Shooter                 4       4                  1        0
##   Simulation              0       1                  0        0
##   Sports                  1       8                  3        0
##   Strategy                1       0                  0        0
##               Publisher
## Genre          Maximum Family Games Maxis MC2 Entertainment
##   Action                          1     0                 0
##   Adventure                       0     0                 2
##   Fighting                        0     0                 0
##   Misc                            0     0                 0
##   Platform                        0     0                 0
##   Puzzle                          0     0                 0
##   Racing                          0     0                 0
##   Role-Playing                    0     0                 0
##   Shooter                         0     0                 1
##   Simulation                      0     3                 0
##   Sports                          0     0                 0
##   Strategy                        0     0                 0
##               Publisher
## Genre          Media Entertainment Media Factory Media Rings Media Works
##   Action                         0             0           0           0
##   Adventure                      0             1           0           2
##   Fighting                       0             0           0           0
##   Misc                           1             0           0           1
##   Platform                       0             0           0           0
##   Puzzle                         0             0           0           0
##   Racing                         0             0           1           0
##   Role-Playing                   0             0           1           0
##   Shooter                        0             0           0           0
##   Simulation                     0             0           0           0
##   Sports                         0             1           1           0
##   Strategy                       0             0           0           2
##               Publisher
## Genre          MediaQuest Men-A-Vision Mentor Interactive Mercury Games
##   Action                0            1                  0             0
##   Adventure             0            0                  0             0
##   Fighting              0            0                  0             0
##   Misc                  0            0                  5             0
##   Platform              0            0                  0             0
##   Puzzle                1            0                  0             0
##   Racing                0            0                  0             0
##   Role-Playing          0            0                  0             2
##   Shooter               0            0                  0             0
##   Simulation            0            0                  0             2
##   Sports                0            0                  0             0
##   Strategy              0            0                  0             0
##               Publisher
## Genre          Merscom LLC Metro 3D Michaelsoft Micro Cabin Microids
##   Action                 0        0           0           0        3
##   Adventure              1        0           0           0        6
##   Fighting               0        1           0           0        0
##   Misc                   0        0           0           0        0
##   Platform               0        1           0           0        0
##   Puzzle                 0        0           0           1        0
##   Racing                 0        4           0           0        0
##   Role-Playing           0        2           1           1        0
##   Shooter                0        1           0           0        0
##   Simulation             0        3           0           1        0
##   Sports                 0        0           0           0        1
##   Strategy               0        0           0           0        0
##               Publisher
## Genre          Microprose Microsoft Game Studios
##   Action                0                     21
##   Adventure             0                      3
##   Fighting              0                      5
##   Misc                  1                     34
##   Platform              0                      6
##   Puzzle                0                      1
##   Racing                0                     22
##   Role-Playing          0                     16
##   Shooter               0                     28
##   Simulation            1                     18
##   Sports                0                     17
##   Strategy              4                     18
##               Publisher
## Genre          Midas Interactive Entertainment Midway Games Milestone
##   Action                                     2           27         0
##   Adventure                                  0            4         0
##   Fighting                                   1           25         0
##   Misc                                       1           20         0
##   Platform                                   1           14         0
##   Puzzle                                     3            4         0
##   Racing                                     3           25         0
##   Role-Playing                               1            4         0
##   Shooter                                    4           17         1
##   Simulation                                 1            0         0
##   Sports                                     4           58         0
##   Strategy                                   3            0         0
##               Publisher
## Genre          Milestone S.r.l Milestone S.r.l. Minato Station Mindscape
##   Action                     0                0              1         4
##   Adventure                  0                0              2         1
##   Fighting                   0                0              0         0
##   Misc                       0                0              0        15
##   Platform                   0                0              0         0
##   Puzzle                     0                0              0         5
##   Racing                     2               16              0         2
##   Role-Playing               0                0              0         1
##   Shooter                    0                0              0         0
##   Simulation                 0                0              0         0
##   Sports                     0                0              0         1
##   Strategy                   0                0              0         3
##               Publisher
## Genre          Mirai Shounen Misawa Mitsui mixi, Inc MLB.com Mojang
##   Action                   0      0      0         1       0      0
##   Adventure                0      0      0         0       0      5
##   Fighting                 0      0      0         0       0      0
##   Misc                     1      0      0         0       0      0
##   Platform                 0      0      0         0       0      0
##   Puzzle                   0      0      0         0       0      0
##   Racing                   0      0      0         0       0      0
##   Role-Playing             0      0      0         0       0      0
##   Shooter                  0      0      1         0       0      0
##   Simulation               0      0      0         0       0      0
##   Sports                   0      2      0         0       1      0
##   Strategy                 0      0      0         0       0      0
##               Publisher
## Genre          Monte Christo Multimedia Moss MTO MTV Games
##   Action                              0    0   3         0
##   Adventure                           0    0   0         0
##   Fighting                            0    0   0         0
##   Misc                                0    0   0        41
##   Platform                            0    0   0         0
##   Puzzle                              0    0   0         0
##   Racing                              0    0   1         0
##   Role-Playing                        0    0   0         0
##   Shooter                             0    2   0         0
##   Simulation                          1    0   4         0
##   Sports                              0    0   0         0
##   Strategy                            0    0   0         0
##               Publisher
## Genre          Mud Duck Productions Mumbo Jumbo Mycom Myelin Media
##   Action                          0           0     1            0
##   Adventure                       0           0     0            0
##   Fighting                        0           0     0            0
##   Misc                            2           0     0            3
##   Platform                        0           0     0            0
##   Puzzle                          0           4     0            0
##   Racing                          0           0     0            0
##   Role-Playing                    0           0     0            0
##   Shooter                         0           0     0            0
##   Simulation                      0           0     0            0
##   Sports                          1           1     0            0
##   Strategy                        0           1     0            0
##               Publisher
## Genre          Mystique N/A Namco Bandai Games Natsume Navarre Corp
##   Action              1   7                248       0            0
##   Adventure           0   4                 58       1            0
##   Fighting            0   2                134       1            0
##   Misc                0  27                 97       1            0
##   Platform            0   2                 19       1            0
##   Puzzle              0   1                 20       2            0
##   Racing              0   1                 27       0            0
##   Role-Playing        0   2                151       2            0
##   Shooter             0   2                 37       0            0
##   Simulation          0   4                 29       3            0
##   Sports              0   3                 51       5            1
##   Strategy            0   3                 61       1            0
##               Publisher
## Genre          Naxat Soft NCS NCSoft NDA Productions NEC NEC Interchannel
##   Action                0   0      1               0   0                0
##   Adventure             0   0      0               0   1                5
##   Fighting              0   0      0               0   0                0
##   Misc                  1   0      0               0   0                0
##   Platform              0   0      0               0   0                0
##   Puzzle                0   0      0               0   0                0
##   Racing                0   0      0               0   0                0
##   Role-Playing          0   0      5               0   2                1
##   Shooter               0   0      0               1   0                0
##   Simulation            0   0      0               0   0                1
##   Sports                0   0      0               0   0                0
##   Strategy              0   3      0               0   0                1
##               Publisher
## Genre          Neko Entertainment NetRevo New New World Computing NewKidCo
##   Action                        1       1   0                   0        2
##   Adventure                     2       1   0                   0        1
##   Fighting                      0       0   1                   0        1
##   Misc                          1       0   0                   0        4
##   Platform                      0       0   0                   0        1
##   Puzzle                        1       0   0                   0        0
##   Racing                        0       0   0                   0        0
##   Role-Playing                  0       0   0                   0        0
##   Shooter                       2       0   0                   0        0
##   Simulation                    0       0   0                   0        0
##   Sports                        0       0   0                   0        0
##   Strategy                      0       0   0                   1        0
##               Publisher
## Genre          Nexon Nichibutsu Nihon Falcom Corporation Nintendo
##   Action           0          0                        2       79
##   Adventure        0          0                        0       35
##   Fighting         0          0                        0       18
##   Misc             0          1                        0      100
##   Platform         0          0                        0      112
##   Puzzle           0          0                        0       74
##   Racing           0          0                        0       37
##   Role-Playing     1          0                        5      106
##   Shooter          0          0                        0       26
##   Simulation       0          0                        0       29
##   Sports           0          0                        0       55
##   Strategy         0          0                        0       32
##               Publisher
## Genre          Nippon Amuse Nippon Columbia Nippon Ichi Software
##   Action                  0               4                   13
##   Adventure               0               0                   12
##   Fighting                0               0                    2
##   Misc                    1               3                    3
##   Platform                0               0                    3
##   Puzzle                  0               0                    0
##   Racing                  0               0                    0
##   Role-Playing            0               0                   69
##   Shooter                 0               0                    1
##   Simulation              0               0                    0
##   Sports                  0               0                    0
##   Strategy                0               0                    2
##               Publisher
## Genre          Nippon Telenet Nitroplus Nobilis Nordcurrent Nordic Games
##   Action                    0         0       2           1            8
##   Adventure                 0         1       2           0            2
##   Fighting                  0         1       0           0            0
##   Misc                      2         0       1           1           11
##   Platform                  0         0       0           0            0
##   Puzzle                    0         0       0           1            0
##   Racing                    0         0       1           0            7
##   Role-Playing              0         0       2           0            1
##   Shooter                   0         0       0           0            2
##   Simulation                0         0       5           0            0
##   Sports                    0         0       0           2            2
##   Strategy                  0         0       0           0            2
##               Publisher
## Genre          NovaLogic Number None O-Games O3 Entertainment Ocean
##   Action               0           0       0                0     3
##   Adventure            0           0       1                0     0
##   Fighting             0           0       0                0     2
##   Misc                 0           0       4                0     1
##   Platform             0           1       0                0     3
##   Puzzle               0           0       5                1     1
##   Racing               0           0       1                0     2
##   Role-Playing         0           0       0                0     0
##   Shooter              3           0       1                1     1
##   Simulation           0           0       0                1     0
##   Sports               0           0       5                0     1
##   Strategy             0           0       0                0     0
##               Publisher
## Genre          Office Create On Demand Ongakukan Origin Systems Otomate
##   Action                   0         0         0              0       0
##   Adventure                0         0         0              0       1
##   Fighting                 0         0         0              0       0
##   Misc                     0         0         0              0       0
##   Platform                 0         0         0              0       0
##   Puzzle                   0         0         0              0       0
##   Racing                   0         0         0              0       0
##   Role-Playing             0         1         0              0       0
##   Shooter                  0         0         0              0       0
##   Simulation               2         0         1              1       0
##   Sports                   0         0         0              0       0
##   Strategy                 0         0         0              0       0
##               Publisher
## Genre          Oxygen Interactive P2 Games Pacific Century Cyber Works
##   Action                        3        0                           0
##   Adventure                     2        0                           0
##   Fighting                      0        0                           0
##   Misc                          8        2                           1
##   Platform                      2        0                           0
##   Puzzle                        2        1                           0
##   Racing                        0        0                           0
##   Role-Playing                  0        0                           0
##   Shooter                       0        0                           0
##   Simulation                    0        0                           0
##   Sports                        5        0                           0
##   Strategy                      0        0                           0
##               Publisher
## Genre          Pack-In-Video Pack In Soft Palcom Panther Software Paon
##   Action                   0            0      1                0    0
##   Adventure                1            0      0                0    0
##   Fighting                 0            0      0                0    0
##   Misc                     0            0      0                0    6
##   Platform                 0            0      0                0    0
##   Puzzle                   0            0      0                0    0
##   Racing                   0            0      0                0    0
##   Role-Playing             0            0      0                1    0
##   Shooter                  0            0      0                0    0
##   Simulation               1            1      0                0    0
##   Sports                   0            0      0                0    0
##   Strategy                 0            0      0                0    0
##               Publisher
## Genre          Paon Corporation Paradox Development Paradox Interactive
##   Action                      0                   0                   0
##   Adventure                   0                   0                   0
##   Fighting                    0                   0                   0
##   Misc                        1                   0                   1
##   Platform                    0                   0                   0
##   Puzzle                      0                   0                   0
##   Racing                      0                   0                   0
##   Role-Playing                0                   0                   5
##   Shooter                     0                   0                   0
##   Simulation                  0                   1                   4
##   Sports                      0                   0                   0
##   Strategy                    0                   0                  13
##               Publisher
## Genre          Parker Bros. Performance Designed Products Phantagram
##   Action                  5                             0          0
##   Adventure               0                             0          0
##   Fighting                0                             0          0
##   Misc                    0                             0          0
##   Platform                1                             0          0
##   Puzzle                  1                             2          0
##   Racing                  0                             0          0
##   Role-Playing            0                             0          0
##   Shooter                 0                             0          0
##   Simulation              0                             0          1
##   Sports                  0                             0          0
##   Strategy                0                             0          0
##               Publisher
## Genre          Phantom EFX Phenomedia Phoenix Games Piacci Pinnacle
##   Action                 0          0             0      0        0
##   Adventure              0          0             0      1        0
##   Fighting               0          0             0      0        0
##   Misc                   0          0             0      0        2
##   Platform               0          1             0      0        0
##   Puzzle                 0          2             0      0        1
##   Racing                 0          1             0      0        0
##   Role-Playing           0          0             0      0        0
##   Shooter                1          0             1      0        0
##   Simulation             0          0             0      0        0
##   Sports                 0          0             0      0        1
##   Strategy               0          0             0      0        1
##               Publisher
## Genre          Pioneer LDC Play It Playlogic Game Factory Playmates
##   Action                 0       0                      6         0
##   Adventure              3       0                      0         0
##   Fighting               0       0                      0         0
##   Misc                   0       4                      1         0
##   Platform               0       1                      0         0
##   Puzzle                 0       0                      2         0
##   Racing                 1       4                      0         1
##   Role-Playing           0       0                      0         0
##   Shooter                0       4                      2         0
##   Simulation             0       0                      0         0
##   Sports                 0       1                      1         0
##   Strategy               0       0                      2         0
##               Publisher
## Genre          Playmore PlayV Plenty PM Studios Pony Canyon PopCap Games
##   Action              0     1      0          0           0            0
##   Adventure           0     0      0          0           0            1
##   Fighting            1     0      0          0           0            0
##   Misc                0     1      1          1           1            2
##   Platform            0     0      0          0           0            0
##   Puzzle              0     2      0          0           0            9
##   Racing              0     0      0          0           0            0
##   Role-Playing        0     0      0          0           0            0
##   Shooter             0     0      0          0           0            0
##   Simulation          0     0      0          0           0            0
##   Sports              0     0      0          0           0            0
##   Strategy            0     0      0          0           0            3
##               Publisher
## Genre          Popcorn Arcade PopTop Software Pow PQube Princess Soft
##   Action                    1               0   0    10             0
##   Adventure                 0               0   0     5             3
##   Fighting                  0               0   0    17             0
##   Misc                      0               0   0     1             0
##   Platform                  2               0   0     0             0
##   Puzzle                    2               0   1     0             0
##   Racing                    4               0   0     1             0
##   Role-Playing              0               0   0     0             0
##   Shooter                   1               0   0     2             0
##   Simulation                0               0   0     1             0
##   Sports                    0               0   0     2             0
##   Strategy                  0               1   0     0             0
##               Publisher
## Genre          Prototype Psygnosis Quelle Quest Quinrose Quintet
##   Action               1         5      0     0        3       0
##   Adventure           26         6      0     0       11       1
##   Fighting             0         0      0     0        0       0
##   Misc                 0         1      1     0        0       0
##   Platform             0         1      0     0        0       0
##   Puzzle               0         1      0     0        0       0
##   Racing               0         8      0     0        0       0
##   Role-Playing         0         1      0     1        0       0
##   Shooter              0         3      0     0        0       0
##   Simulation           0         4      0     0        0       0
##   Sports               0         2      0     0        0       0
##   Strategy             0         0      0     0        0       0
##               Publisher
## Genre          Rage Software Rain Games Rebellion Rebellion Developments
##   Action                   0          0         0                      0
##   Adventure                0          0         0                      0
##   Fighting                 3          0         0                      0
##   Misc                     0          0         0                      0
##   Platform                 0          1         0                      0
##   Puzzle                   1          0         0                      0
##   Racing                   2          0         2                      0
##   Role-Playing             0          0         0                      0
##   Shooter                  1          0         0                      2
##   Simulation               0          0         0                      0
##   Sports                   0          0         0                      0
##   Strategy                 0          0         0                      0
##               Publisher
## Genre          RED Entertainment Red Orb Red Storm Entertainment RedOctane
##   Action                       0       0                       1         0
##   Adventure                    1       2                       0         0
##   Fighting                     0       0                       0         0
##   Misc                         0       0                       0         4
##   Platform                     0       0                       0         0
##   Puzzle                       0       0                       0         0
##   Racing                       0       0                       0         0
##   Role-Playing                 0       0                       0         0
##   Shooter                      0       0                       2         0
##   Simulation                   0       0                       0         0
##   Sports                       0       0                       0         0
##   Strategy                     0       0                       0         0
##               Publisher
## Genre          Reef Entertainment responDESIGN Revolution (Japan)
##   Action                        0            0                  0
##   Adventure                     4            0                  1
##   Fighting                      0            0                  0
##   Misc                          0            0                  0
##   Platform                      0            0                  0
##   Puzzle                        0            0                  0
##   Racing                        0            0                  0
##   Role-Playing                  0            0                  0
##   Shooter                       2            0                  0
##   Simulation                    0            0                  0
##   Sports                        1            2                  0
##   Strategy                      0            0                  0
##               Publisher
## Genre          Revolution Software Rising Star Games Riverhillsoft
##   Action                         0                 8             0
##   Adventure                      2                 5             0
##   Fighting                       0                 3             0
##   Misc                           0                 6             0
##   Platform                       0                 2             0
##   Puzzle                         0                13             0
##   Racing                         0                 0             0
##   Role-Playing                   0                26             0
##   Shooter                        0                 4             0
##   Simulation                     0                11             1
##   Sports                         0                 4             0
##   Strategy                       0                 4             0
##               Publisher
## Genre          Rocket Company Rondomedia RTL Russel Sammy Corporation
##   Action                    3          1   0      2                 0
##   Adventure                 1          3   0      3                 1
##   Fighting                  0          0   0      0                 4
##   Misc                      5          1   0      0                 4
##   Platform                  0          0   0      0                 0
##   Puzzle                    0          5   0      0                 0
##   Racing                    0          2   1      0                 0
##   Role-Playing              6          0   0      0                 0
##   Shooter                   0          0   0      0                 0
##   Simulation                1          2   2      0                 2
##   Sports                    1          0   5      1                 0
##   Strategy                  0          0   0      0                 0
##               Publisher
## Genre          Saurus Scholastic Inc. SCi Screenlife SCS Software Sears
##   Action            1               1   5          3            1     0
##   Adventure         0               5   0          0            0     0
##   Fighting          0               0   0          1            0     0
##   Misc              0               1   0          0            0     0
##   Platform          0               0   2          0            0     0
##   Puzzle            0               3   0          0            0     1
##   Racing            0               0   2          0            0     0
##   Role-Playing      0               0   0          2            0     0
##   Shooter           0               0   8          0            0     0
##   Simulation        0               0   0          0            0     0
##   Sports            0               0   0          0            0     0
##   Strategy          0               0   0          0            0     0
##               Publisher
## Genre          Sega Seta Corporation Seventh Chord Shogakukan
##   Action        101                0             1          0
##   Adventure      31                0             0          2
##   Fighting       37                0             0          0
##   Misc           62                4             0          3
##   Platform       52                0             0          0
##   Puzzle         22                0             0          0
##   Racing         48                0             0          0
##   Role-Playing   64                1             0          0
##   Shooter        40                0             0          0
##   Simulation     12                0             0          0
##   Sports        135                1             0          0
##   Strategy       35                0             0          0
##               Publisher
## Genre          Simon & Schuster Interactive Slightly Mad Studios
##   Action                                  0                    0
##   Adventure                               0                    0
##   Fighting                                0                    0
##   Misc                                    0                    0
##   Platform                                0                    0
##   Puzzle                                  0                    0
##   Racing                                  0                    3
##   Role-Playing                            0                    0
##   Shooter                                 0                    0
##   Simulation                              0                    0
##   Sports                                  1                    0
##   Strategy                                0                    0
##               Publisher
## Genre          Slitherine Software SNK SNK Playmore Societa Sold Out
##   Action                         0   0            0       0        1
##   Adventure                      0   0            3       1        0
##   Fighting                       0  22           12       0        0
##   Misc                           0   0            0       0        0
##   Platform                       0   0            0       0        0
##   Puzzle                         0   0            0       0        0
##   Racing                         0   0            0       0        0
##   Role-Playing                   0   0            1       0        0
##   Shooter                        0   0            2       0        0
##   Simulation                     0   0            0       0        0
##   Sports                         0   0            0       0        0
##   Strategy                       4   0            0       0        0
##               Publisher
## Genre          Sonnet Sony Computer Entertainment
##   Action            0                          90
##   Adventure         0                          41
##   Fighting          0                          30
##   Misc              2                         128
##   Platform          0                          66
##   Puzzle            0                          12
##   Racing            0                          65
##   Role-Playing      0                          49
##   Shooter           0                          51
##   Simulation        0                          15
##   Sports            0                         124
##   Strategy          0                          12
##               Publisher
## Genre          Sony Computer Entertainment America
##   Action                                         0
##   Adventure                                      0
##   Fighting                                       0
##   Misc                                           0
##   Platform                                       0
##   Puzzle                                         0
##   Racing                                         0
##   Role-Playing                                   0
##   Shooter                                        0
##   Simulation                                     0
##   Sports                                         3
##   Strategy                                       0
##               Publisher
## Genre          Sony Computer Entertainment Europe Sony Music Entertainment
##   Action                                        1                        0
##   Adventure                                     3                        0
##   Fighting                                      0                        0
##   Misc                                          4                        1
##   Platform                                      4                        0
##   Puzzle                                        0                        0
##   Racing                                        0                        0
##   Role-Playing                                  0                        0
##   Shooter                                       1                        0
##   Simulation                                    2                        0
##   Sports                                        0                        0
##   Strategy                                      0                        0
##               Publisher
## Genre          Sony Online Entertainment SouthPeak Games Spike SPS Square
##   Action                               0               9    10   0      0
##   Adventure                            0               2     3   0      0
##   Fighting                             0               3     2   0      0
##   Misc                                 0               2     4   0      0
##   Platform                             0               0     0   0      0
##   Puzzle                               0               2     0   0      0
##   Racing                               0               3     0   0      1
##   Role-Playing                         7               2     6   0      5
##   Shooter                              0               8     0   0      0
##   Simulation                           0               2     1   0      0
##   Sports                               0               3    11   1      0
##   Strategy                             1               1     0   0      0
##               Publisher
## Genre          Square EA Square Enix SquareSoft SSI Stainless Games
##   Action               0          52          0   0               1
##   Adventure            0          10          0   0               0
##   Fighting             0           3          4   0               0
##   Misc                 0           6          0   0               0
##   Platform             0           0          0   0               0
##   Puzzle               0           4          0   0               0
##   Racing               0           0          1   0               0
##   Role-Playing         1         129         38   0               0
##   Shooter              0          16          1   0               0
##   Simulation           0           4          1   0               0
##   Sports               0           0          3   0               0
##   Strategy             0           9          4   1               0
##               Publisher
## Genre          Starfish Starpath Corp. Sting Storm City Games
##   Action              1              1     0                1
##   Adventure           0              0     0                1
##   Fighting            0              0     0                0
##   Misc                0              0     0                1
##   Platform            0              0     0                1
##   Puzzle              0              0     0                7
##   Racing              0              0     0                6
##   Role-Playing        5              0     9                0
##   Shooter             1              0     0                0
##   Simulation          0              0     0                0
##   Sports              3              0     0                1
##   Strategy            0              0     0                1
##               Publisher
## Genre          Strategy First Success Summitsoft Sunflowers
##   Action                    0       1          0          0
##   Adventure                 0       4          0          0
##   Fighting                  0       0          0          0
##   Misc                      0       2          0          0
##   Platform                  0       0          0          0
##   Puzzle                    0       1          0          0
##   Racing                    0       0          0          0
##   Role-Playing              0       7          0          0
##   Shooter                   0       1          0          0
##   Simulation                0       1          0          0
##   Sports                    0       0          1          0
##   Strategy                  1       2          0          1
##               Publisher
## Genre          Sunrise Interactive Sunsoft Sweets Swing! Entertainment
##   Action                         1       0      0                    1
##   Adventure                      0       2      2                    1
##   Fighting                       1       2      0                    0
##   Misc                           0       1      0                    0
##   Platform                       0       1      0                    1
##   Puzzle                         0       1      0                    0
##   Racing                         1       0      0                    0
##   Role-Playing                   1       2      0                    0
##   Shooter                        0       1      0                    2
##   Simulation                     0       0      0                    1
##   Sports                         0       0      0                    0
##   Strategy                       0       0      0                    0
##               Publisher
## Genre          Syscom System 3 System 3 Arcade Software System Soft
##   Action            0        0                        0           0
##   Adventure         0        0                        0           1
##   Fighting          0        0                        0           0
##   Misc              1        0                        3           0
##   Platform          0        3                        2           0
##   Puzzle            0        0                        1           0
##   Racing            1        0                        7           0
##   Role-Playing      0        0                        0           0
##   Shooter           0        0                        0           0
##   Simulation        0        0                        0           0
##   Sports            0        0                        1           0
##   Strategy          0        0                        0           3
##               Publisher
## Genre          T&E Soft Taito Takara Takara Tomy Take-Two Interactive
##   Action              0     1      3          12                   93
##   Adventure           0     1      0           0                   12
##   Fighting            0     1      4          10                    1
##   Misc                0     3      4           6                   27
##   Platform            0     0      0           0                   11
##   Puzzle              0     0      0           0                    1
##   Racing              0     0      4           2                   20
##   Role-Playing        0     2      1           3                    6
##   Shooter             0     4      0           0                   65
##   Simulation          0     7      0           0                    4
##   Sports              1     0      0           3                  151
##   Strategy            0     0      0           1                   22
##               Publisher
## Genre          Takuyo TalonSoft TDK Core TDK Mediactive Team17 Software
##   Action            0         0        2              8               0
##   Adventure         1         0        0              2               0
##   Fighting          0         0        0              0               0
##   Misc              0         0        2              5               0
##   Platform          0         0        0              8               0
##   Puzzle            0         0        0              0               0
##   Racing            0         0        0              6               0
##   Role-Playing      0         0        0              0               0
##   Shooter           0         1        0              4               0
##   Simulation        0         0        1              0               0
##   Sports            0         0        0              3               0
##   Strategy          0         0        0              0               1
##               Publisher
## Genre          Technos Japan Corporation TechnoSoft Tecmo Koei Telegames
##   Action                               0          0        137         0
##   Adventure                            0          0         17         0
##   Fighting                             0          0         12         0
##   Misc                                 0          0         14         4
##   Platform                             0          0          1         0
##   Puzzle                               0          0          0         2
##   Racing                               0          0          5         0
##   Role-Playing                         0          0         47         0
##   Shooter                              0          1          3         0
##   Simulation                           0          0         13         1
##   Sports                               1          0         39         0
##   Strategy                             0          0         50         1
##               Publisher
## Genre          Telltale Games Telstar Tetris Online TGL
##   Action                    2       1             0   0
##   Adventure                23       0             0   4
##   Fighting                  0       0             0   0
##   Misc                      0       0             0   0
##   Platform                  0       0             0   0
##   Puzzle                    0       0             1   0
##   Racing                    0       1             0   0
##   Role-Playing              0       0             0   0
##   Shooter                   0       1             0   0
##   Simulation                0       0             0   0
##   Sports                    0       0             0   0
##   Strategy                  0       0             0   0
##               Publisher
## Genre          The Adventure Company The Learning Company THQ Tigervision
##   Action                           0                    0 194           3
##   Adventure                        3                    0  47           0
##   Fighting                         0                    0  71           0
##   Misc                             0                    0  66           0
##   Platform                         0                    0  85           0
##   Puzzle                           2                    0  17           0
##   Racing                           0                    1 101           0
##   Role-Playing                     0                    0   8           0
##   Shooter                          0                    0  36           0
##   Simulation                       0                    0  27           0
##   Sports                           0                    0  31           0
##   Strategy                         0                    0  32           0
##               Publisher
## Genre          Time Warner Interactive Titus Tivola TOHO Tommo
##   Action                             0     4      0    0     0
##   Adventure                          0     0      0    0     0
##   Fighting                           1     3      0    0     0
##   Misc                               0     1      3    0     3
##   Platform                           0     1      0    0     0
##   Puzzle                             0     0      0    0     0
##   Racing                             0     4      0    0     0
##   Role-Playing                       0     1      0    1     0
##   Shooter                            1     2      0    0     1
##   Simulation                         0     2      0    0     0
##   Sports                             2     0      0    0     1
##   Strategy                           1     1      0    0     0
##               Publisher
## Genre          Tomy Corporation TopWare Interactive Touchstone Tradewest
##   Action                      2                   0          3         0
##   Adventure                   0                   0          0         0
##   Fighting                   10                   0          0         0
##   Misc                        1                   3          0         0
##   Platform                    0                   0          0         0
##   Puzzle                      0                   0          0         0
##   Racing                      1                   0          0         0
##   Role-Playing                3                   1          0         0
##   Shooter                     0                   0          0         0
##   Simulation                  1                   0          1         0
##   Sports                      0                   0          0         3
##   Strategy                    0                   0          0         0
##               Publisher
## Genre          Trion Worlds Tripwire Interactive Tru Blu Entertainment
##   Action                  0                    0                     4
##   Adventure               0                    0                     0
##   Fighting                0                    0                     0
##   Misc                    0                    0                     0
##   Platform                0                    0                     0
##   Puzzle                  0                    0                     0
##   Racing                  0                    0                     0
##   Role-Playing            0                    0                     0
##   Shooter                 3                    1                     0
##   Simulation              0                    0                     0
##   Sports                  0                    0                     4
##   Strategy                1                    0                     0
##               Publisher
## Genre          Tryfirst TYO Type-Moon U.S. Gold Ubisoft Ubisoft Annecy
##   Action              0   0         0         0     193             10
##   Adventure           0   0         1         0      59              0
##   Fighting            1   0         0         0      19              2
##   Misc                0   0         0         0     151              1
##   Platform            0   0         0         1      70              0
##   Puzzle              0   0         0         0      24              0
##   Racing              0   1         0         0      52              0
##   Role-Playing        0   0         0         0      41              1
##   Shooter             0   0         0         0      92              0
##   Simulation          0   0         0         0     119              0
##   Sports              0   0         0         3      72              0
##   Strategy            0   0         0         0      29              0
##               Publisher
## Genre          UEP Systems UFO Interactive UIG Entertainment Ultravision
##   Action                 0               1                 0           0
##   Adventure              0               0                 0           0
##   Fighting               0               0                 0           1
##   Misc                   0               8                 0           0
##   Platform               0               0                 0           0
##   Puzzle                 0               4                 0           0
##   Racing                 0               0                 0           0
##   Role-Playing           0               0                 0           0
##   Shooter                0               1                 0           0
##   Simulation             0               0                 1           0
##   Sports                 1               2                 0           0
##   Strategy               0               0                 0           0
##               Publisher
## Genre          Universal Gamex Universal Interactive Unknown Valcon Games
##   Action                     1                     9      28            0
##   Adventure                  0                     0      17            1
##   Fighting                   0                     1       6            0
##   Misc                       0                     1      31            0
##   Platform                   0                     7      10            0
##   Puzzle                     0                     0      17            0
##   Racing                     0                     0      13            3
##   Role-Playing               0                     0      22            0
##   Shooter                    0                     4      13            1
##   Simulation                 0                     0      13            1
##   Sports                     0                     1      26            2
##   Strategy                   0                     0       7            0
##               Publisher
## Genre          ValuSoft Valve Valve Software Vap Vatical Entertainment
##   Action              0     0              0   0                     0
##   Adventure           1     0              0   0                     0
##   Fighting            0     0              0   0                     0
##   Misc                0     0              0   1                     0
##   Platform            0     0              0   0                     0
##   Puzzle              2     0              0   0                     0
##   Racing              1     0              0   0                     2
##   Role-Playing        0     0              0   0                     0
##   Shooter             0     1              3   0                     0
##   Simulation          0     0              0   0                     0
##   Sports              0     0              0   0                     0
##   Strategy            0     0              0   0                     0
##               Publisher
## Genre          Vic Tokai Victor Interactive Video System Views
##   Action               0                  0            1     1
##   Adventure            0                  1            0     1
##   Fighting             2                  0            0     0
##   Misc                 0                  1            0     0
##   Platform             0                  0            0     0
##   Puzzle               0                  0            0     0
##   Racing               0                  0            3     0
##   Role-Playing         0                  1            0     0
##   Shooter              0                  0            0     0
##   Simulation           0                  2            0     0
##   Sports               0                  4            0     0
##   Strategy             0                  0            0     0
##               Publisher
## Genre          Vir2L Studios Virgin Interactive Virtual Play Games Visco
##   Action                   1                 12                  0     0
##   Adventure                0                  1                  0     0
##   Fighting                 0                 19                  0     0
##   Misc                     0                  1                  1     0
##   Platform                 0                  6                  0     0
##   Puzzle                   0                  2                  0     0
##   Racing                   1                  1                  0     0
##   Role-Playing             0                  3                  0     0
##   Shooter                  0                  7                  0     1
##   Simulation               0                  2                  0     0
##   Sports                   1                  2                  1     0
##   Strategy                 0                  6                  0     0
##               Publisher
## Genre          Vivendi Games Wanadoo Warashi Wargaming.net
##   Action                  46       2       0             0
##   Adventure                7       0       0             0
##   Fighting                 4       0       0             0
##   Misc                     8       0       0             0
##   Platform                37       2       0             0
##   Puzzle                   2       0       0             0
##   Racing                  14       1       0             0
##   Role-Playing             1       0       0             0
##   Shooter                 30       0       1             1
##   Simulation               1       0       0             0
##   Sports                   2       0       0             0
##   Strategy                12       0       0             0
##               Publisher
## Genre          Warner Bros. Interactive Entertainment Warp
##   Action                                          165    0
##   Adventure                                         3    1
##   Fighting                                         11    0
##   Misc                                             22    0
##   Platform                                          8    0
##   Puzzle                                            8    0
##   Racing                                            3    0
##   Role-Playing                                      0    0
##   Shooter                                          10    0
##   Simulation                                        0    0
##   Sports                                            0    0
##   Strategy                                          2    0
##               Publisher
## Genre          WayForward Technologies Westwood Studios
##   Action                             0                0
##   Adventure                          1                0
##   Fighting                           0                0
##   Misc                               0                0
##   Platform                           0                0
##   Puzzle                             0                0
##   Racing                             0                0
##   Role-Playing                       0                0
##   Shooter                            0                0
##   Simulation                         0                0
##   Sports                             0                0
##   Strategy                           0                1
##               Publisher
## Genre          White Park Bay Software Wizard Video Games
##   Action                             0                  1
##   Adventure                          0                  0
##   Fighting                           0                  0
##   Misc                               0                  0
##   Platform                           0                  0
##   Puzzle                             1                  0
##   Racing                             0                  0
##   Role-Playing                       0                  0
##   Shooter                            0                  0
##   Simulation                         0                  0
##   Sports                             0                  0
##   Strategy                           0                  0
##               Publisher
## Genre          Xicat Interactive Xing Entertainment Xplosiv XS Games
##   Action                       0                  0       0        0
##   Adventure                    0                  0       0        0
##   Fighting                     0                  1       0        0
##   Misc                         0                  0       3        2
##   Platform                     0                  0       0        0
##   Puzzle                       0                  0       2        0
##   Racing                       1                  0       5        5
##   Role-Playing                 1                  0       0        0
##   Shooter                      0                  0       0        0
##   Simulation                   0                  0       0        0
##   Sports                       1                  0       0        5
##   Strategy                     0                  0       0        0
##               Publisher
## Genre          Xseed Games Yacht Club Games Yamasa Entertainment Yeti
##   Action                 1                0                    0    1
##   Adventure              0                0                    0    9
##   Fighting               0                0                    0    1
##   Misc                   0                0                    2    0
##   Platform               0                3                    0    0
##   Puzzle                 0                0                    0    0
##   Racing                 0                0                    0    0
##   Role-Playing           2                0                    0    0
##   Shooter                1                0                    0    0
##   Simulation             0                0                    0    0
##   Sports                 0                0                    0    0
##   Strategy               0                0                    0    0
##               Publisher
## Genre          Yuke's Yumedia Zenrin Zoo Digital Publishing Zoo Games
##   Action            0       0      0                      8         3
##   Adventure         0       1      0                      7         1
##   Fighting          2       0      0                      3         0
##   Misc              0       0      2                     18        11
##   Platform          0       0      0                      2         0
##   Puzzle            0       0      0                     14         3
##   Racing            1       0      0                     26         6
##   Role-Playing      0       0      0                      0         0
##   Shooter           0       0      0                      8         4
##   Simulation        0       0      0                      1         1
##   Sports            0       0      0                     16         4
##   Strategy          0       0      0                      1         0
##               Publisher
## Genre          Zushi Games
##   Action                 1
##   Adventure              1
##   Fighting               0
##   Misc                   1
##   Platform               0
##   Puzzle                 2
##   Racing                 3
##   Role-Playing           1
##   Shooter                2
##   Simulation             2
##   Sports                 3
##   Strategy               2
prop.table(myTable,1)
##               Publisher
## Genre          10TACLE Studios   1C Company 20th Century Fox Video Games
##   Action          0.0000000000 0.0000000000                 0.0012062726
##   Adventure       0.0007776050 0.0000000000                 0.0000000000
##   Fighting        0.0000000000 0.0000000000                 0.0000000000
##   Misc            0.0000000000 0.0000000000                 0.0000000000
##   Platform        0.0000000000 0.0000000000                 0.0000000000
##   Puzzle          0.0017182131 0.0000000000                 0.0000000000
##   Racing          0.0000000000 0.0008006405                 0.0000000000
##   Role-Playing    0.0000000000 0.0006720430                 0.0000000000
##   Shooter         0.0000000000 0.0000000000                 0.0007633588
##   Simulation      0.0000000000 0.0000000000                 0.0000000000
##   Sports          0.0000000000 0.0000000000                 0.0000000000
##   Strategy        0.0014684288 0.0014684288                 0.0000000000
##               Publisher
## Genre                2D Boy          3DO      49Games    505 Games
##   Action       0.0000000000 0.0051266586 0.0000000000 0.0063329312
##   Adventure    0.0000000000 0.0023328149 0.0000000000 0.0054432348
##   Fighting     0.0000000000 0.0011792453 0.0000000000 0.0129716981
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0178263370
##   Platform     0.0000000000 0.0011286682 0.0000000000 0.0067720090
##   Puzzle       0.0017182131 0.0017182131 0.0000000000 0.0257731959
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0016012810
##   Role-Playing 0.0000000000 0.0006720430 0.0000000000 0.0067204301
##   Shooter      0.0000000000 0.0038167939 0.0000000000 0.0137404580
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.0472895040
##   Sports       0.0000000000 0.0025575448 0.0004262575 0.0115089514
##   Strategy     0.0000000000 0.0014684288 0.0000000000 0.0044052863
##               Publisher
## Genre                   5pb     7G//AMES   989 Sports  989 Studios
##   Action       0.0015078408 0.0000000000 0.0000000000 0.0006031363
##   Adventure    0.0381026439 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0011792453 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0005750431 0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0017182131 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0024019215
##   Role-Playing 0.0006720430 0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0022900763 0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0023068051 0.0023068051 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0004262575 0.0038363171
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre              Abylight Acclaim Entertainment     Accolade
##   Action       0.0003015682          0.0042219542 0.0000000000
##   Adventure    0.0000000000          0.0031104199 0.0000000000
##   Fighting     0.0000000000          0.0365566038 0.0000000000
##   Misc         0.0000000000          0.0028752156 0.0000000000
##   Platform     0.0000000000          0.0056433409 0.0011286682
##   Puzzle       0.0000000000          0.0154639175 0.0000000000
##   Racing       0.0000000000          0.0352281825 0.0008006405
##   Role-Playing 0.0000000000          0.0006720430 0.0000000000
##   Shooter      0.0000000000          0.0129770992 0.0000000000
##   Simulation   0.0000000000          0.0000000000 0.0000000000
##   Sports       0.0000000000          0.0221653879 0.0004262575
##   Strategy     0.0000000000          0.0029368576 0.0000000000
##               Publisher
## Genre           Ackkstudios      Acquire   Activision Activision Blizzard
##   Action       0.0012062726 0.0006031363 0.0934861279        0.0003015682
##   Adventure    0.0007776050 0.0015552100 0.0194401244        0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0082547170        0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0592294422        0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0677200903        0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0120274914        0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0592473979        0.0000000000
##   Role-Playing 0.0013440860 0.0053763441 0.0275537634        0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.1213740458        0.0000000000
##   Simulation   0.0000000000 0.0000000000 0.0265282584        0.0000000000
##   Sports       0.0008525149 0.0000000000 0.0613810742        0.0000000000
##   Strategy     0.0014684288 0.0014684288 0.0323054332        0.0000000000
##               Publisher
## Genre          Activision Value Adeline Software     Aerosoft
##   Action           0.0003015682     0.0003015682 0.0000000000
##   Adventure        0.0000000000     0.0000000000 0.0000000000
##   Fighting         0.0000000000     0.0000000000 0.0000000000
##   Misc             0.0005750431     0.0000000000 0.0000000000
##   Platform         0.0000000000     0.0000000000 0.0000000000
##   Puzzle           0.0000000000     0.0000000000 0.0000000000
##   Racing           0.0000000000     0.0000000000 0.0000000000
##   Role-Playing     0.0000000000     0.0000000000 0.0000000000
##   Shooter          0.0030534351     0.0000000000 0.0000000000
##   Simulation       0.0000000000     0.0000000000 0.0023068051
##   Sports           0.0093776641     0.0000000000 0.0000000000
##   Strategy         0.0014684288     0.0000000000 0.0000000000
##               Publisher
## Genre          Agatsuma Entertainment       Agetec  Aksys Games
##   Action                 0.0003015682 0.0006031363 0.0003015682
##   Adventure              0.0000000000 0.0000000000 0.0023328149
##   Fighting               0.0000000000 0.0011792453 0.0000000000
##   Misc                   0.0005750431 0.0005750431 0.0000000000
##   Platform               0.0011286682 0.0000000000 0.0000000000
##   Puzzle                 0.0000000000 0.0000000000 0.0000000000
##   Racing                 0.0000000000 0.0008006405 0.0000000000
##   Role-Playing           0.0000000000 0.0000000000 0.0026881720
##   Shooter                0.0000000000 0.0000000000 0.0000000000
##   Simulation             0.0000000000 0.0011534025 0.0000000000
##   Sports                 0.0000000000 0.0004262575 0.0000000000
##   Strategy               0.0000000000 0.0014684288 0.0000000000
##               Publisher
## Genre          Alawar Entertainment    Alchemist Alternative Software
##   Action               0.0003015682 0.0009047045         0.0003015682
##   Adventure            0.0000000000 0.0248833593         0.0000000000
##   Fighting             0.0000000000 0.0000000000         0.0000000000
##   Misc                 0.0000000000 0.0023001725         0.0000000000
##   Platform             0.0000000000 0.0000000000         0.0000000000
##   Puzzle               0.0000000000 0.0000000000         0.0000000000
##   Racing               0.0000000000 0.0000000000         0.0000000000
##   Role-Playing         0.0000000000 0.0006720430         0.0000000000
##   Shooter              0.0000000000 0.0022900763         0.0000000000
##   Simulation           0.0000000000 0.0000000000         0.0000000000
##   Sports               0.0000000000 0.0000000000         0.0021312873
##   Strategy             0.0014684288 0.0000000000         0.0000000000
##               Publisher
## Genre                Altron       Alvion American Softworks Angel Studios
##   Action       0.0000000000 0.0000000000       0.0003015682  0.0000000000
##   Adventure    0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Fighting     0.0000000000 0.0000000000       0.0000000000  0.0011792453
##   Misc         0.0000000000 0.0011500863       0.0000000000  0.0000000000
##   Platform     0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Puzzle       0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Racing       0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Role-Playing 0.0000000000 0.0000000000       0.0000000000  0.0006720430
##   Shooter      0.0007633588 0.0000000000       0.0000000000  0.0000000000
##   Simulation   0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Sports       0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Strategy     0.0000000000 0.0000000000       0.0000000000  0.0014684288
##               Publisher
## Genre          Answer Software AQ Interactive    Aqua Plus        Aques
##   Action          0.0003015682   0.0000000000 0.0000000000 0.0000000000
##   Adventure       0.0000000000   0.0000000000 0.0101088647 0.0000000000
##   Fighting        0.0000000000   0.0023584906 0.0011792453 0.0000000000
##   Misc            0.0000000000   0.0017251294 0.0028752156 0.0000000000
##   Platform        0.0000000000   0.0000000000 0.0000000000 0.0000000000
##   Puzzle          0.0000000000   0.0000000000 0.0000000000 0.0000000000
##   Racing          0.0000000000   0.0000000000 0.0000000000 0.0000000000
##   Role-Playing    0.0000000000   0.0000000000 0.0013440860 0.0000000000
##   Shooter         0.0000000000   0.0000000000 0.0000000000 0.0000000000
##   Simulation      0.0000000000   0.0000000000 0.0000000000 0.0000000000
##   Sports          0.0000000000   0.0000000000 0.0000000000 0.0004262575
##   Strategy        0.0000000000   0.0000000000 0.0029368576 0.0000000000
##               Publisher
## Genre          Arc System Works Arena Entertainment         Aria
##   Action           0.0009047045        0.0000000000 0.0000000000
##   Adventure        0.0077760498        0.0000000000 0.0007776050
##   Fighting         0.0082547170        0.0011792453 0.0000000000
##   Misc             0.0005750431        0.0000000000 0.0000000000
##   Platform         0.0000000000        0.0000000000 0.0000000000
##   Puzzle           0.0000000000        0.0000000000 0.0000000000
##   Racing           0.0000000000        0.0000000000 0.0000000000
##   Role-Playing     0.0006720430        0.0000000000 0.0000000000
##   Shooter          0.0000000000        0.0000000000 0.0000000000
##   Simulation       0.0000000000        0.0000000000 0.0000000000
##   Sports           0.0017050298        0.0004262575 0.0000000000
##   Strategy         0.0000000000        0.0000000000 0.0000000000
##               Publisher
## Genre                 Arika      ArtDink   Aruze Corp    ASC Games
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0003015682
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0005750431 0.0000000000 0.0017251294 0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0008006405
##   Role-Playing 0.0006720430 0.0020161290 0.0000000000 0.0000000000
##   Shooter      0.0007633588 0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0034602076 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0004262575
##   Strategy     0.0000000000 0.0044052863 0.0000000000 0.0000000000
##               Publisher
## Genre          Ascaron Entertainment Ascaron Entertainment GmbH
##   Action                0.0000000000               0.0000000000
##   Adventure             0.0000000000               0.0000000000
##   Fighting              0.0000000000               0.0000000000
##   Misc                  0.0000000000               0.0000000000
##   Platform              0.0000000000               0.0000000000
##   Puzzle                0.0000000000               0.0000000000
##   Racing                0.0000000000               0.0000000000
##   Role-Playing          0.0000000000               0.0006720430
##   Shooter               0.0000000000               0.0000000000
##   Simulation            0.0000000000               0.0000000000
##   Sports                0.0000000000               0.0000000000
##   Strategy              0.0014684288               0.0029368576
##               Publisher
## Genre          ASCII Entertainment ASCII Media Works       Asgard
##   Action              0.0000000000      0.0000000000 0.0006031363
##   Adventure           0.0015552100      0.0054432348 0.0000000000
##   Fighting            0.0000000000      0.0000000000 0.0000000000
##   Misc                0.0011500863      0.0000000000 0.0034502588
##   Platform            0.0000000000      0.0000000000 0.0000000000
##   Puzzle              0.0000000000      0.0000000000 0.0000000000
##   Racing              0.0024019215      0.0000000000 0.0000000000
##   Role-Playing        0.0020161290      0.0013440860 0.0000000000
##   Shooter             0.0000000000      0.0000000000 0.0000000000
##   Simulation          0.0011534025      0.0000000000 0.0000000000
##   Sports              0.0034100597      0.0000000000 0.0000000000
##   Strategy            0.0014684288      0.0000000000 0.0000000000
##               Publisher
## Genre                   ASK Asmik Ace Entertainment   Asmik Corp
##   Action       0.0000000000            0.0000000000 0.0000000000
##   Adventure    0.0000000000            0.0007776050 0.0000000000
##   Fighting     0.0000000000            0.0011792453 0.0000000000
##   Misc         0.0005750431            0.0000000000 0.0000000000
##   Platform     0.0000000000            0.0000000000 0.0000000000
##   Puzzle       0.0000000000            0.0000000000 0.0000000000
##   Racing       0.0000000000            0.0000000000 0.0000000000
##   Role-Playing 0.0000000000            0.0000000000 0.0000000000
##   Shooter      0.0000000000            0.0000000000 0.0000000000
##   Simulation   0.0000000000            0.0011534025 0.0000000000
##   Sports       0.0000000000            0.0000000000 0.0008525149
##   Strategy     0.0000000000            0.0000000000 0.0000000000
##               Publisher
## Genre                 Aspyr     Astragon Asylum Entertainment        Atari
##   Action       0.0000000000 0.0003015682         0.0000000000 0.0162846803
##   Adventure    0.0007776050 0.0015552100         0.0023328149 0.0132192846
##   Fighting     0.0000000000 0.0000000000         0.0000000000 0.0436320755
##   Misc         0.0017251294 0.0000000000         0.0000000000 0.0149511213
##   Platform     0.0000000000 0.0000000000         0.0011286682 0.0237020316
##   Puzzle       0.0000000000 0.0034364261         0.0000000000 0.0378006873
##   Racing       0.0000000000 0.0000000000         0.0000000000 0.0288230584
##   Role-Playing 0.0006720430 0.0000000000         0.0000000000 0.0188172043
##   Shooter      0.0000000000 0.0000000000         0.0000000000 0.0305343511
##   Simulation   0.0011534025 0.0011534025         0.0023068051 0.0103806228
##   Sports       0.0008525149 0.0000000000         0.0000000000 0.0238704177
##   Strategy     0.0000000000 0.0000000000         0.0000000000 0.0249632893
##               Publisher
## Genre                Athena        Atlus Avalon Interactive    Avanquest
##   Action       0.0000000000 0.0009047045       0.0003015682 0.0012062726
##   Adventure    0.0007776050 0.0007776050       0.0000000000 0.0007776050
##   Fighting     0.0000000000 0.0058962264       0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0005750431       0.0000000000 0.0017251294
##   Platform     0.0000000000 0.0011286682       0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000       0.0000000000 0.0240549828
##   Racing       0.0000000000 0.0008006405       0.0008006405 0.0000000000
##   Role-Playing 0.0000000000 0.0309139785       0.0013440860 0.0000000000
##   Shooter      0.0000000000 0.0015267176       0.0007633588 0.0000000000
##   Simulation   0.0000000000 0.0011534025       0.0011534025 0.0023068051
##   Sports       0.0004262575 0.0017050298       0.0000000000 0.0008525149
##   Strategy     0.0000000000 0.0029368576       0.0000000000 0.0000000000
##               Publisher
## Genre          Avanquest Software        Axela BAM! Entertainment
##   Action             0.0012062726 0.0000000000       0.0027141134
##   Adventure          0.0023328149 0.0000000000       0.0023328149
##   Fighting           0.0000000000 0.0000000000       0.0011792453
##   Misc               0.0011500863 0.0000000000       0.0005750431
##   Platform           0.0000000000 0.0000000000       0.0045146727
##   Puzzle             0.0000000000 0.0000000000       0.0000000000
##   Racing             0.0000000000 0.0000000000       0.0056044836
##   Role-Playing       0.0000000000 0.0000000000       0.0000000000
##   Shooter            0.0000000000 0.0000000000       0.0061068702
##   Simulation         0.0000000000 0.0000000000       0.0000000000
##   Sports             0.0000000000 0.0004262575       0.0008525149
##   Strategy           0.0000000000 0.0000000000       0.0000000000
##               Publisher
## Genre             Banpresto      Benesse     Berkeley Bethesda Softworks
##   Action       0.0012062726 0.0000000000 0.0003015682       0.0051266586
##   Adventure    0.0046656299 0.0000000000 0.0000000000       0.0000000000
##   Fighting     0.0070754717 0.0000000000 0.0000000000       0.0000000000
##   Misc         0.0005750431 0.0034502588 0.0000000000       0.0000000000
##   Platform     0.0011286682 0.0000000000 0.0000000000       0.0000000000
##   Puzzle       0.0034364261 0.0000000000 0.0000000000       0.0000000000
##   Racing       0.0008006405 0.0000000000 0.0000000000       0.0056044836
##   Role-Playing 0.0114247312 0.0000000000 0.0000000000       0.0114247312
##   Shooter      0.0007633588 0.0000000000 0.0000000000       0.0160305344
##   Simulation   0.0034602076 0.0000000000 0.0000000000       0.0023068051
##   Sports       0.0012787724 0.0000000000 0.0000000000       0.0021312873
##   Strategy     0.0411160059 0.0000000000 0.0000000000       0.0029368576
##               Publisher
## Genre          Big Ben Interactive Big Fish Games Bigben Interactive
##   Action              0.0000000000   0.0003015682       0.0000000000
##   Adventure           0.0007776050   0.0007776050       0.0000000000
##   Fighting            0.0000000000   0.0000000000       0.0000000000
##   Misc                0.0000000000   0.0000000000       0.0000000000
##   Platform            0.0011286682   0.0000000000       0.0000000000
##   Puzzle              0.0000000000   0.0000000000       0.0000000000
##   Racing              0.0016012810   0.0000000000       0.0000000000
##   Role-Playing        0.0000000000   0.0000000000       0.0000000000
##   Shooter             0.0007633588   0.0000000000       0.0000000000
##   Simulation          0.0000000000   0.0000000000       0.0000000000
##   Sports              0.0008525149   0.0000000000       0.0055413470
##   Strategy            0.0000000000   0.0000000000       0.0000000000
##               Publisher
## Genre          bitComposer Games Black Bean Games Black Label Games
##   Action            0.0000000000     0.0003015682      0.0003015682
##   Adventure         0.0000000000     0.0000000000      0.0000000000
##   Fighting          0.0000000000     0.0000000000      0.0000000000
##   Misc              0.0000000000     0.0028752156      0.0000000000
##   Platform          0.0000000000     0.0000000000      0.0000000000
##   Puzzle            0.0000000000     0.0000000000      0.0000000000
##   Racing            0.0008006405     0.0152121697      0.0000000000
##   Role-Playing      0.0000000000     0.0000000000      0.0000000000
##   Shooter           0.0000000000     0.0000000000      0.0000000000
##   Simulation        0.0046136101     0.0000000000      0.0000000000
##   Sports            0.0000000000     0.0034100597      0.0000000000
##   Strategy          0.0000000000     0.0014684288      0.0000000000
##               Publisher
## Genre          Blast! Entertainment Ltd    Blue Byte
##   Action                   0.0006031363 0.0000000000
##   Adventure                0.0015552100 0.0000000000
##   Fighting                 0.0000000000 0.0000000000
##   Misc                     0.0000000000 0.0000000000
##   Platform                 0.0000000000 0.0000000000
##   Puzzle                   0.0000000000 0.0000000000
##   Racing                   0.0000000000 0.0000000000
##   Role-Playing             0.0000000000 0.0000000000
##   Shooter                  0.0000000000 0.0000000000
##   Simulation               0.0000000000 0.0011534025
##   Sports                   0.0008525149 0.0000000000
##   Strategy                 0.0000000000 0.0014684288
##               Publisher
## Genre          BMG Interactive Entertainment Bohemia Interactive
##   Action                        0.0000000000        0.0000000000
##   Adventure                     0.0000000000        0.0000000000
##   Fighting                      0.0000000000        0.0000000000
##   Misc                          0.0000000000        0.0000000000
##   Platform                      0.0033860045        0.0000000000
##   Puzzle                        0.0000000000        0.0000000000
##   Racing                        0.0008006405        0.0000000000
##   Role-Playing                  0.0000000000        0.0000000000
##   Shooter                       0.0015267176        0.0007633588
##   Simulation                    0.0000000000        0.0000000000
##   Sports                        0.0004262575        0.0000000000
##   Strategy                      0.0000000000        0.0000000000
##               Publisher
## Genre                  Bomb     Boost On          BPS Brash Entertainment
##   Action       0.0003015682 0.0000000000 0.0000000000        0.0000000000
##   Adventure    0.0000000000 0.0007776050 0.0000000000        0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000        0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0000000000        0.0017251294
##   Platform     0.0000000000 0.0000000000 0.0000000000        0.0079006772
##   Puzzle       0.0000000000 0.0000000000 0.0017182131        0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0008006405        0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000        0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000        0.0000000000
##   Simulation   0.0000000000 0.0000000000 0.0000000000        0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000        0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000        0.0000000000
##               Publisher
## Genre              Broccoli    BushiRoad       Capcom         Cave
##   Action       0.0015078408 0.0000000000 0.0464414958 0.0003015682
##   Adventure    0.0069984448 0.0007776050 0.0171073095 0.0007776050
##   Fighting     0.0023584906 0.0000000000 0.0683962264 0.0000000000
##   Misc         0.0005750431 0.0000000000 0.0063254744 0.0005750431
##   Platform     0.0000000000 0.0000000000 0.0519187359 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0103092784 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0104083267 0.0000000000
##   Role-Playing 0.0006720430 0.0000000000 0.0255376344 0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0190839695 0.0053435115
##   Simulation   0.0011534025 0.0000000000 0.0023068051 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0012787724 0.0000000000
##   Strategy     0.0044052863 0.0000000000 0.0044052863 0.0000000000
##               Publisher
## Genre          CBS Electronics          CCP CDV Software Entertainment
##   Action          0.0003015682 0.0000000000               0.0000000000
##   Adventure       0.0000000000 0.0000000000               0.0007776050
##   Fighting        0.0000000000 0.0000000000               0.0000000000
##   Misc            0.0000000000 0.0000000000               0.0000000000
##   Platform        0.0000000000 0.0000000000               0.0000000000
##   Puzzle          0.0000000000 0.0000000000               0.0017182131
##   Racing          0.0000000000 0.0000000000               0.0000000000
##   Role-Playing    0.0000000000 0.0006720430               0.0000000000
##   Shooter         0.0000000000 0.0000000000               0.0000000000
##   Simulation      0.0000000000 0.0000000000               0.0011534025
##   Sports          0.0000000000 0.0000000000               0.0000000000
##   Strategy        0.0000000000 0.0000000000               0.0044052863
##               Publisher
## Genre              ChunSoft City Interactive
##   Action       0.0003015682     0.0003015682
##   Adventure    0.0085536547     0.0038880249
##   Fighting     0.0000000000     0.0000000000
##   Misc         0.0000000000     0.0005750431
##   Platform     0.0000000000     0.0000000000
##   Puzzle       0.0000000000     0.0034364261
##   Racing       0.0000000000     0.0000000000
##   Role-Playing 0.0040322581     0.0000000000
##   Shooter      0.0000000000     0.0061068702
##   Simulation   0.0000000000     0.0023068051
##   Sports       0.0000000000     0.0000000000
##   Strategy     0.0000000000     0.0000000000
##               Publisher
## Genre          Cloud Imperium Games Corporation Coconuts Japan
##   Action                           0.0000000000   0.0000000000
##   Adventure                        0.0000000000   0.0007776050
##   Fighting                         0.0023584906   0.0000000000
##   Misc                             0.0000000000   0.0005750431
##   Platform                         0.0000000000   0.0000000000
##   Puzzle                           0.0000000000   0.0000000000
##   Racing                           0.0000000000   0.0000000000
##   Role-Playing                     0.0000000000   0.0000000000
##   Shooter                          0.0000000000   0.0000000000
##   Simulation                       0.0000000000   0.0000000000
##   Sports                           0.0000000000   0.0000000000
##   Strategy                         0.0000000000   0.0000000000
##               Publisher
## Genre           Codemasters Codemasters Online CokeM Interactive
##   Action       0.0027141134       0.0000000000      0.0003015682
##   Adventure    0.0046656299       0.0000000000      0.0000000000
##   Fighting     0.0000000000       0.0000000000      0.0000000000
##   Misc         0.0040253019       0.0000000000      0.0000000000
##   Platform     0.0000000000       0.0000000000      0.0000000000
##   Puzzle       0.0017182131       0.0000000000      0.0000000000
##   Racing       0.0712570056       0.0000000000      0.0000000000
##   Role-Playing 0.0020161290       0.0006720430      0.0000000000
##   Shooter      0.0152671756       0.0000000000      0.0000000000
##   Simulation   0.0034602076       0.0000000000      0.0000000000
##   Sports       0.0042625746       0.0000000000      0.0000000000
##   Strategy     0.0058737151       0.0000000000      0.0000000000
##               Publisher
## Genre                Coleco      Comfort     Commseed      Compile
##   Action       0.0009047045 0.0003015682 0.0000000000 0.0000000000
##   Adventure    0.0000000000 0.0038880249 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0005750431 0.0000000000
##   Platform     0.0011286682 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0085910653
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000 0.0006720430
##   Shooter      0.0007633588 0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Compile Heart Conspiracy Entertainment Core Design Ltd.
##   Action        0.0006031363             0.0009047045     0.0003015682
##   Adventure     0.0031104199             0.0000000000     0.0000000000
##   Fighting      0.0000000000             0.0000000000     0.0000000000
##   Misc          0.0000000000             0.0011500863     0.0000000000
##   Platform      0.0000000000             0.0011286682     0.0000000000
##   Puzzle        0.0000000000             0.0051546392     0.0000000000
##   Racing        0.0000000000             0.0008006405     0.0000000000
##   Role-Playing  0.0087365591             0.0000000000     0.0000000000
##   Shooter       0.0000000000             0.0015267176     0.0000000000
##   Simulation    0.0000000000             0.0011534025     0.0011534025
##   Sports        0.0000000000             0.0004262575     0.0000000000
##   Strategy      0.0014684288             0.0000000000     0.0000000000
##               Publisher
## Genre          CPG Products Crave Entertainment Creative Core  Crimson Cow
##   Action       0.0003015682        0.0033172497  0.0000000000 0.0003015682
##   Adventure    0.0000000000        0.0007776050  0.0007776050 0.0007776050
##   Fighting     0.0000000000        0.0058962264  0.0000000000 0.0000000000
##   Misc         0.0000000000        0.0103507763  0.0005750431 0.0000000000
##   Platform     0.0000000000        0.0033860045  0.0000000000 0.0000000000
##   Puzzle       0.0000000000        0.0171821306  0.0000000000 0.0000000000
##   Racing       0.0000000000        0.0032025620  0.0000000000 0.0000000000
##   Role-Playing 0.0000000000        0.0013440860  0.0000000000 0.0000000000
##   Shooter      0.0000000000        0.0022900763  0.0000000000 0.0000000000
##   Simulation   0.0000000000        0.0023068051  0.0011534025 0.0000000000
##   Sports       0.0000000000        0.0042625746  0.0000000000 0.0000000000
##   Strategy     0.0000000000        0.0029368576  0.0000000000 0.0000000000
##               Publisher
## Genre          Crystal Dynamics      CTO SpA Culture Brain
##   Action           0.0000000000 0.0000000000  0.0000000000
##   Adventure        0.0007776050 0.0000000000  0.0007776050
##   Fighting         0.0000000000 0.0000000000  0.0000000000
##   Misc             0.0000000000 0.0000000000  0.0005750431
##   Platform         0.0011286682 0.0000000000  0.0000000000
##   Puzzle           0.0000000000 0.0000000000  0.0000000000
##   Racing           0.0008006405 0.0000000000  0.0000000000
##   Role-Playing     0.0006720430 0.0000000000  0.0006720430
##   Shooter          0.0000000000 0.0007633588  0.0000000000
##   Simulation       0.0000000000 0.0000000000  0.0000000000
##   Sports           0.0004262575 0.0004262575  0.0004262575
##   Strategy         0.0000000000 0.0000000000  0.0000000000
##               Publisher
## Genre          Culture Publishers   CyberFront      Cygames  D3Publisher
##   Action             0.0000000000 0.0003015682 0.0000000000 0.0159831122
##   Adventure          0.0000000000 0.0062208398 0.0000000000 0.0241057543
##   Fighting           0.0000000000 0.0000000000 0.0000000000 0.0035377358
##   Misc               0.0000000000 0.0011500863 0.0000000000 0.0184013801
##   Platform           0.0000000000 0.0000000000 0.0011286682 0.0135440181
##   Puzzle             0.0017182131 0.0000000000 0.0000000000 0.0189003436
##   Racing             0.0000000000 0.0000000000 0.0000000000 0.0048038431
##   Role-Playing       0.0000000000 0.0006720430 0.0000000000 0.0026881720
##   Shooter            0.0000000000 0.0000000000 0.0000000000 0.0091603053
##   Simulation         0.0000000000 0.0000000000 0.0000000000 0.0069204152
##   Sports             0.0000000000 0.0000000000 0.0000000000 0.0046888321
##   Strategy           0.0000000000 0.0029368576 0.0000000000 0.0044052863
##               Publisher
## Genre              Daedalic Daedalic Entertainment        Daito
##   Action       0.0000000000           0.0000000000 0.0000000000
##   Adventure    0.0023328149           0.0023328149 0.0000000000
##   Fighting     0.0000000000           0.0000000000 0.0000000000
##   Misc         0.0000000000           0.0000000000 0.0023001725
##   Platform     0.0000000000           0.0000000000 0.0000000000
##   Puzzle       0.0000000000           0.0000000000 0.0000000000
##   Racing       0.0000000000           0.0000000000 0.0000000000
##   Role-Playing 0.0000000000           0.0000000000 0.0000000000
##   Shooter      0.0000000000           0.0000000000 0.0000000000
##   Simulation   0.0000000000           0.0000000000 0.0000000000
##   Sports       0.0000000000           0.0000000000 0.0000000000
##   Strategy     0.0000000000           0.0000000000 0.0000000000
##               Publisher
## Genre              Data Age Data Design Interactive    Data East
##   Action       0.0006031363            0.0000000000 0.0000000000
##   Adventure    0.0000000000            0.0000000000 0.0007776050
##   Fighting     0.0000000000            0.0000000000 0.0000000000
##   Misc         0.0000000000            0.0005750431 0.0000000000
##   Platform     0.0000000000            0.0000000000 0.0000000000
##   Puzzle       0.0000000000            0.0000000000 0.0000000000
##   Racing       0.0000000000            0.0008006405 0.0000000000
##   Role-Playing 0.0000000000            0.0000000000 0.0006720430
##   Shooter      0.0000000000            0.0000000000 0.0000000000
##   Simulation   0.0000000000            0.0000000000 0.0000000000
##   Sports       0.0000000000            0.0004262575 0.0000000000
##   Strategy     0.0000000000            0.0000000000 0.0000000000
##               Publisher
## Genre          Datam Polystar  Deep Silver Destination Software, Inc
##   Action         0.0000000000 0.0081423402              0.0006031363
##   Adventure      0.0015552100 0.0077760498              0.0000000000
##   Fighting       0.0000000000 0.0023584906              0.0000000000
##   Misc           0.0000000000 0.0040253019              0.0005750431
##   Platform       0.0000000000 0.0033860045              0.0000000000
##   Puzzle         0.0000000000 0.0120274914              0.0034364261
##   Racing         0.0000000000 0.0056044836              0.0024019215
##   Role-Playing   0.0000000000 0.0114247312              0.0006720430
##   Shooter        0.0000000000 0.0038167939              0.0000000000
##   Simulation     0.0000000000 0.0196078431              0.0023068051
##   Sports         0.0000000000 0.0042625746              0.0004262575
##   Strategy       0.0000000000 0.0146842878              0.0000000000
##               Publisher
## Genre             Destineer  Detn8 Games Devolver Digital DHM Interactive
##   Action       0.0018094089 0.0000000000     0.0000000000    0.0000000000
##   Adventure    0.0015552100 0.0000000000     0.0000000000    0.0000000000
##   Fighting     0.0000000000 0.0000000000     0.0000000000    0.0000000000
##   Misc         0.0023001725 0.0000000000     0.0000000000    0.0000000000
##   Platform     0.0011286682 0.0000000000     0.0000000000    0.0000000000
##   Puzzle       0.0120274914 0.0000000000     0.0017182131    0.0017182131
##   Racing       0.0032025620 0.0000000000     0.0000000000    0.0000000000
##   Role-Playing 0.0000000000 0.0000000000     0.0000000000    0.0000000000
##   Shooter      0.0015267176 0.0000000000     0.0007633588    0.0007633588
##   Simulation   0.0126874279 0.0000000000     0.0000000000    0.0011534025
##   Sports       0.0034100597 0.0004262575     0.0000000000    0.0000000000
##   Strategy     0.0000000000 0.0000000000     0.0000000000    0.0000000000
##               Publisher
## Genre              DigiCube Disney Interactive Studios       Dorart
##   Action       0.0000000000               0.0289505428 0.0000000000
##   Adventure    0.0000000000               0.0225505443 0.0000000000
##   Fighting     0.0000000000               0.0000000000 0.0000000000
##   Misc         0.0000000000               0.0253018976 0.0011500863
##   Platform     0.0000000000               0.0225733634 0.0000000000
##   Puzzle       0.0000000000               0.0051546392 0.0000000000
##   Racing       0.0000000000               0.0112089672 0.0000000000
##   Role-Playing 0.0000000000               0.0020161290 0.0000000000
##   Shooter      0.0000000000               0.0022900763 0.0000000000
##   Simulation   0.0000000000               0.0057670127 0.0000000000
##   Sports       0.0004262575               0.0004262575 0.0000000000
##   Strategy     0.0000000000               0.0000000000 0.0000000000
##               Publisher
## Genre          dramatic create DreamCatcher Interactive
##   Action          0.0003015682             0.0000000000
##   Adventure       0.0031104199             0.0023328149
##   Fighting        0.0000000000             0.0000000000
##   Misc            0.0000000000             0.0017251294
##   Platform        0.0000000000             0.0011286682
##   Puzzle          0.0000000000             0.0034364261
##   Racing          0.0000000000             0.0000000000
##   Role-Playing    0.0000000000             0.0000000000
##   Shooter         0.0000000000             0.0022900763
##   Simulation      0.0000000000             0.0046136101
##   Sports          0.0000000000             0.0004262575
##   Strategy        0.0000000000             0.0000000000
##               Publisher
## Genre          DreamWorks Interactive    DSI Games DTP Entertainment
##   Action                 0.0000000000 0.0003015682      0.0015078408
##   Adventure              0.0000000000 0.0007776050      0.0077760498
##   Fighting               0.0000000000 0.0000000000      0.0000000000
##   Misc                   0.0000000000 0.0011500863      0.0028752156
##   Platform               0.0011286682 0.0000000000      0.0000000000
##   Puzzle                 0.0000000000 0.0000000000      0.0034364261
##   Racing                 0.0000000000 0.0000000000      0.0000000000
##   Role-Playing           0.0000000000 0.0000000000      0.0047043011
##   Shooter                0.0000000000 0.0000000000      0.0007633588
##   Simulation             0.0000000000 0.0011534025      0.0034602076
##   Sports                 0.0000000000 0.0004262575      0.0046888321
##   Strategy               0.0000000000 0.0000000000      0.0014684288
##               Publisher
## Genre          Dusenberry Martin Racing     EA Games Easy Interactive
##   Action                   0.0000000000 0.0000000000     0.0000000000
##   Adventure                0.0000000000 0.0000000000     0.0000000000
##   Fighting                 0.0000000000 0.0000000000     0.0000000000
##   Misc                     0.0000000000 0.0000000000     0.0000000000
##   Platform                 0.0000000000 0.0000000000     0.0000000000
##   Puzzle                   0.0000000000 0.0000000000     0.0034364261
##   Racing                   0.0016012810 0.0000000000     0.0000000000
##   Role-Playing             0.0000000000 0.0000000000     0.0000000000
##   Shooter                  0.0000000000 0.0007633588     0.0000000000
##   Simulation               0.0000000000 0.0000000000     0.0000000000
##   Sports                   0.0000000000 0.0000000000     0.0000000000
##   Strategy                 0.0000000000 0.0000000000     0.0000000000
##               Publisher
## Genre                 Ecole         Edia Eidos Interactive Electronic Arts
##   Action       0.0000000000 0.0000000000      0.0253317250    0.0551869723
##   Adventure    0.0000000000 0.0000000000      0.0038880249    0.0101088647
##   Fighting     0.0011792453 0.0000000000      0.0082547170    0.0459905660
##   Misc         0.0000000000 0.0011500863      0.0028752156    0.0264519839
##   Platform     0.0000000000 0.0000000000      0.0045146727    0.0180586907
##   Puzzle       0.0000000000 0.0000000000      0.0137457045    0.0120274914
##   Racing       0.0000000000 0.0000000000      0.0112089672    0.1273018415
##   Role-Playing 0.0000000000 0.0000000000      0.0060483871    0.0235215054
##   Shooter      0.0000000000 0.0000000000      0.0267175573    0.1061068702
##   Simulation   0.0000000000 0.0000000000      0.0092272203    0.1337946943
##   Sports       0.0000000000 0.0000000000      0.0034100597    0.2391304348
##   Strategy     0.0000000000 0.0000000000      0.0161527166    0.0543318649
##               Publisher
## Genre          Electronic Arts Victor          Elf        Elite
##   Action                 0.0003015682 0.0000000000 0.0000000000
##   Adventure              0.0000000000 0.0007776050 0.0000000000
##   Fighting               0.0000000000 0.0000000000 0.0000000000
##   Misc                   0.0000000000 0.0000000000 0.0000000000
##   Platform               0.0000000000 0.0000000000 0.0000000000
##   Puzzle                 0.0000000000 0.0000000000 0.0000000000
##   Racing                 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing           0.0000000000 0.0000000000 0.0000000000
##   Shooter                0.0000000000 0.0000000000 0.0000000000
##   Simulation             0.0000000000 0.0000000000 0.0011534025
##   Sports                 0.0004262575 0.0000000000 0.0000000000
##   Strategy               0.0000000000 0.0014684288 0.0000000000
##               Publisher
## Genre          Empire Interactive       Encore Enix Corporation
##   Action             0.0015078408 0.0003015682     0.0003015682
##   Adventure          0.0023328149 0.0000000000     0.0000000000
##   Fighting           0.0011792453 0.0000000000     0.0000000000
##   Misc               0.0034502588 0.0000000000     0.0011500863
##   Platform           0.0000000000 0.0000000000     0.0000000000
##   Puzzle             0.0137457045 0.0000000000     0.0000000000
##   Racing             0.0168134508 0.0016012810     0.0000000000
##   Role-Playing       0.0006720430 0.0006720430     0.0154569892
##   Shooter            0.0038167939 0.0000000000     0.0000000000
##   Simulation         0.0011534025 0.0000000000     0.0023068051
##   Sports             0.0004262575 0.0000000000     0.0008525149
##   Strategy           0.0000000000 0.0000000000     0.0000000000
##               Publisher
## Genre          Enjoy Gaming ltd.   Enterbrain EON Digital Entertainment
##   Action            0.0000000000 0.0000000000              0.0000000000
##   Adventure         0.0000000000 0.0023328149              0.0000000000
##   Fighting          0.0000000000 0.0011792453              0.0000000000
##   Misc              0.0000000000 0.0000000000              0.0000000000
##   Platform          0.0000000000 0.0000000000              0.0000000000
##   Puzzle            0.0000000000 0.0000000000              0.0000000000
##   Racing            0.0000000000 0.0000000000              0.0000000000
##   Role-Playing      0.0000000000 0.0040322581              0.0000000000
##   Shooter           0.0007633588 0.0000000000              0.0000000000
##   Simulation        0.0000000000 0.0011534025              0.0000000000
##   Sports            0.0000000000 0.0017050298              0.0000000000
##   Strategy          0.0000000000 0.0000000000              0.0014684288
##               Publisher
## Genre            Epic Games        Epoch       Ertain          ESP
##   Action       0.0003015682 0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0011792453
##   Misc         0.0000000000 0.0005750431 0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0022573363 0.0000000000 0.0011286682
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0013440860 0.0000000000 0.0006720430
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0007633588
##   Simulation   0.0000000000 0.0000000000 0.0011534025 0.0011534025
##   Sports       0.0000000000 0.0008525149 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Essential Games Evolution Games Evolved Games
##   Action          0.0003015682    0.0003015682  0.0000000000
##   Adventure       0.0000000000    0.0000000000  0.0000000000
##   Fighting        0.0000000000    0.0000000000  0.0000000000
##   Misc            0.0000000000    0.0000000000  0.0000000000
##   Platform        0.0000000000    0.0000000000  0.0022573363
##   Puzzle          0.0000000000    0.0000000000  0.0000000000
##   Racing          0.0000000000    0.0000000000  0.0032025620
##   Role-Playing    0.0000000000    0.0000000000  0.0000000000
##   Shooter         0.0007633588    0.0000000000  0.0015267176
##   Simulation      0.0000000000    0.0000000000  0.0000000000
##   Sports          0.0000000000    0.0000000000  0.0000000000
##   Strategy        0.0014684288    0.0000000000  0.0000000000
##               Publisher
## Genre          Excalibur Publishing Experience Inc.
##   Action               0.0003015682    0.0000000000
##   Adventure            0.0000000000    0.0000000000
##   Fighting             0.0000000000    0.0000000000
##   Misc                 0.0000000000    0.0000000000
##   Platform             0.0000000000    0.0000000000
##   Puzzle               0.0000000000    0.0000000000
##   Racing               0.0000000000    0.0000000000
##   Role-Playing         0.0000000000    0.0020161290
##   Shooter              0.0000000000    0.0000000000
##   Simulation           0.0034602076    0.0000000000
##   Sports               0.0000000000    0.0000000000
##   Strategy             0.0000000000    0.0000000000
##               Publisher
## Genre          Extreme Entertainment Group Falcom Corporation       Fields
##   Action                      0.0000000000       0.0000000000 0.0000000000
##   Adventure                   0.0000000000       0.0000000000 0.0000000000
##   Fighting                    0.0000000000       0.0011792453 0.0000000000
##   Misc                        0.0000000000       0.0000000000 0.0005750431
##   Platform                    0.0000000000       0.0000000000 0.0000000000
##   Puzzle                      0.0000000000       0.0000000000 0.0000000000
##   Racing                      0.0000000000       0.0000000000 0.0000000000
##   Role-Playing                0.0006720430       0.0100806452 0.0000000000
##   Shooter                     0.0000000000       0.0000000000 0.0000000000
##   Simulation                  0.0000000000       0.0000000000 0.0000000000
##   Sports                      0.0000000000       0.0000000000 0.0000000000
##   Strategy                    0.0000000000       0.0000000000 0.0000000000
##               Publisher
## Genre          Flashpoint Games  Flight-Plan Focus Home Interactive
##   Action           0.0003015682 0.0000000000           0.0003015682
##   Adventure        0.0000000000 0.0000000000           0.0132192846
##   Fighting         0.0000000000 0.0000000000           0.0000000000
##   Misc             0.0000000000 0.0000000000           0.0005750431
##   Platform         0.0011286682 0.0000000000           0.0022573363
##   Puzzle           0.0000000000 0.0000000000           0.0103092784
##   Racing           0.0000000000 0.0000000000           0.0024019215
##   Role-Playing     0.0000000000 0.0006720430           0.0080645161
##   Shooter          0.0000000000 0.0000000000           0.0000000000
##   Simulation       0.0000000000 0.0000000000           0.0069204152
##   Sports           0.0000000000 0.0000000000           0.0029838022
##   Strategy         0.0000000000 0.0014684288           0.0044052863
##               Publisher
## Genre          Focus Multimedia       fonfun Foreign Media Games
##   Action           0.0000000000 0.0000000000        0.0000000000
##   Adventure        0.0000000000 0.0000000000        0.0007776050
##   Fighting         0.0000000000 0.0000000000        0.0000000000
##   Misc             0.0005750431 0.0000000000        0.0011500863
##   Platform         0.0000000000 0.0000000000        0.0000000000
##   Puzzle           0.0034364261 0.0000000000        0.0068728522
##   Racing           0.0000000000 0.0000000000        0.0000000000
##   Role-Playing     0.0000000000 0.0000000000        0.0000000000
##   Shooter          0.0000000000 0.0000000000        0.0000000000
##   Simulation       0.0000000000 0.0011534025        0.0023068051
##   Sports           0.0000000000 0.0000000000        0.0000000000
##   Strategy         0.0000000000 0.0000000000        0.0000000000
##               Publisher
## Genre             Fortyfive Fox Interactive From Software         Fuji
##   Action       0.0000000000    0.0003015682  0.0009047045 0.0000000000
##   Adventure    0.0007776050    0.0000000000  0.0007776050 0.0007776050
##   Fighting     0.0000000000    0.0000000000  0.0000000000 0.0000000000
##   Misc         0.0000000000    0.0000000000  0.0000000000 0.0000000000
##   Platform     0.0000000000    0.0022573363  0.0000000000 0.0000000000
##   Puzzle       0.0000000000    0.0000000000  0.0000000000 0.0000000000
##   Racing       0.0000000000    0.0000000000  0.0000000000 0.0000000000
##   Role-Playing 0.0000000000    0.0000000000  0.0026881720 0.0000000000
##   Shooter      0.0000000000    0.0022900763  0.0007633588 0.0000000000
##   Simulation   0.0000000000    0.0000000000  0.0069204152 0.0000000000
##   Sports       0.0000000000    0.0008525149  0.0000000000 0.0000000000
##   Strategy     0.0000000000    0.0000000000  0.0000000000 0.0000000000
##               Publisher
## Genre          Funbox Media       Funcom      FunSoft       Funsta
##   Action       0.0009047045 0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0007776050 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0005750431 0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0051546392
##   Racing       0.0000000000 0.0000000000 0.0008006405 0.0000000000
##   Role-Playing 0.0000000000 0.0013440860 0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0007633588
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0014684288 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre                 FuRyu FuRyu Corporation        G.Rev         Gaga
##   Action       0.0033172497      0.0003015682 0.0000000000 0.0000000000
##   Adventure    0.0023328149      0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000      0.0000000000 0.0011792453 0.0000000000
##   Misc         0.0023001725      0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0000000000      0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0053763441      0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000      0.0000000000 0.0007633588 0.0007633588
##   Simulation   0.0011534025      0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000      0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000      0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Gainax Network Systems       Gakken    Game Arts
##   Action                 0.0000000000 0.0000000000 0.0000000000
##   Adventure              0.0007776050 0.0000000000 0.0000000000
##   Fighting               0.0000000000 0.0000000000 0.0000000000
##   Misc                   0.0005750431 0.0011500863 0.0000000000
##   Platform               0.0000000000 0.0000000000 0.0000000000
##   Puzzle                 0.0000000000 0.0000000000 0.0000000000
##   Racing                 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing           0.0000000000 0.0000000000 0.0006720430
##   Shooter                0.0000000000 0.0000000000 0.0000000000
##   Simulation             0.0000000000 0.0000000000 0.0000000000
##   Sports                 0.0000000000 0.0000000000 0.0000000000
##   Strategy               0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Game Factory    Game Life   Gamebridge     Gamecock
##   Action       0.0024125452 0.0000000000 0.0006031363 0.0003015682
##   Adventure    0.0031104199 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0023584906 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0028752156 0.0005750431 0.0000000000 0.0011500863
##   Platform     0.0045146727 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0068728522 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0016012810 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0006720430 0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0023068051 0.0011534025 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0014684288
##               Publisher
## Genre              Gameloft GameMill Entertainment      GameTek
##   Action       0.0000000000           0.0009047045 0.0000000000
##   Adventure    0.0000000000           0.0007776050 0.0000000000
##   Fighting     0.0000000000           0.0000000000 0.0000000000
##   Misc         0.0005750431           0.0017251294 0.0005750431
##   Platform     0.0000000000           0.0000000000 0.0000000000
##   Puzzle       0.0000000000           0.0000000000 0.0000000000
##   Racing       0.0000000000           0.0000000000 0.0000000000
##   Role-Playing 0.0000000000           0.0000000000 0.0000000000
##   Shooter      0.0000000000           0.0000000000 0.0000000000
##   Simulation   0.0000000000           0.0000000000 0.0000000000
##   Sports       0.0000000000           0.0004262575 0.0000000000
##   Strategy     0.0000000000           0.0000000000 0.0000000000
##               Publisher
## Genre          Gathering of Developers General Entertainment        Genki
##   Action                  0.0000000000          0.0000000000 0.0006031363
##   Adventure               0.0000000000          0.0000000000 0.0000000000
##   Fighting                0.0000000000          0.0000000000 0.0000000000
##   Misc                    0.0011500863          0.0000000000 0.0000000000
##   Platform                0.0000000000          0.0000000000 0.0000000000
##   Puzzle                  0.0000000000          0.0000000000 0.0000000000
##   Racing                  0.0016012810          0.0000000000 0.0040032026
##   Role-Playing            0.0000000000          0.0000000000 0.0000000000
##   Shooter                 0.0022900763          0.0000000000 0.0000000000
##   Simulation              0.0000000000          0.0000000000 0.0000000000
##   Sports                  0.0000000000          0.0000000000 0.0004262575
##   Strategy                0.0029368576          0.0014684288 0.0000000000
##               Publisher
## Genre           Genterprise   Ghostlight         Giga       Giza10
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0003015682
##   Adventure    0.0000000000 0.0000000000 0.0007776050 0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0017182131 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0060483871 0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0011534025 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0012787724 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0029368576 0.0000000000 0.0000000000
##               Publisher
## Genre                 Glams Global A Entertainment  Global Star
##   Action       0.0000000000           0.0000000000 0.0003015682
##   Adventure    0.0000000000           0.0000000000 0.0046656299
##   Fighting     0.0000000000           0.0000000000 0.0011792453
##   Misc         0.0000000000           0.0005750431 0.0000000000
##   Platform     0.0000000000           0.0000000000 0.0056433409
##   Puzzle       0.0000000000           0.0000000000 0.0000000000
##   Racing       0.0000000000           0.0000000000 0.0040032026
##   Role-Playing 0.0000000000           0.0020161290 0.0000000000
##   Shooter      0.0000000000           0.0000000000 0.0061068702
##   Simulation   0.0000000000           0.0000000000 0.0023068051
##   Sports       0.0000000000           0.0000000000 0.0042625746
##   Strategy     0.0014684288           0.0000000000 0.0014684288
##               Publisher
## Genre           GN Software          GOA Gotham Games     Graffiti
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0023328149 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0023584906 0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0011500863
##   Platform     0.0000000000 0.0000000000 0.0033860045 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0006720430 0.0000000000 0.0013440860
##   Shooter      0.0000000000 0.0000000000 0.0007633588 0.0007633588
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.0011534025
##   Sports       0.0000000000 0.0000000000 0.0004262575 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Grand Prix Games Graphsim Entertainment
##   Action           0.0000000000           0.0000000000
##   Adventure        0.0000000000           0.0000000000
##   Fighting         0.0011792453           0.0000000000
##   Misc             0.0000000000           0.0000000000
##   Platform         0.0000000000           0.0000000000
##   Puzzle           0.0000000000           0.0000000000
##   Racing           0.0000000000           0.0000000000
##   Role-Playing     0.0000000000           0.0000000000
##   Shooter          0.0000000000           0.0000000000
##   Simulation       0.0000000000           0.0011534025
##   Sports           0.0000000000           0.0000000000
##   Strategy         0.0000000000           0.0000000000
##               Publisher
## Genre          Gremlin Interactive Ltd Griffin International Groove Games
##   Action                  0.0003015682          0.0000000000 0.0000000000
##   Adventure               0.0000000000          0.0000000000 0.0000000000
##   Fighting                0.0000000000          0.0000000000 0.0000000000
##   Misc                    0.0000000000          0.0000000000 0.0000000000
##   Platform                0.0011286682          0.0000000000 0.0000000000
##   Puzzle                  0.0000000000          0.0000000000 0.0000000000
##   Racing                  0.0016012810          0.0000000000 0.0000000000
##   Role-Playing            0.0000000000          0.0000000000 0.0000000000
##   Shooter                 0.0007633588          0.0000000000 0.0015267176
##   Simulation              0.0000000000          0.0000000000 0.0000000000
##   Sports                  0.0017050298          0.0004262575 0.0000000000
##   Strategy                0.0000000000          0.0000000000 0.0000000000
##               Publisher
## Genre                   GSP GT Interactive       GungHo         Gust
##   Action       0.0000000000   0.0030156815 0.0006031363 0.0000000000
##   Adventure    0.0046656299   0.0000000000 0.0007776050 0.0007776050
##   Fighting     0.0000000000   0.0082547170 0.0000000000 0.0000000000
##   Misc         0.0028752156   0.0005750431 0.0005750431 0.0000000000
##   Platform     0.0000000000   0.0033860045 0.0000000000 0.0000000000
##   Puzzle       0.0051546392   0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000   0.0048038431 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000   0.0000000000 0.0060483871 0.0073924731
##   Shooter      0.0000000000   0.0091603053 0.0000000000 0.0000000000
##   Simulation   0.0023068051   0.0011534025 0.0000000000 0.0000000000
##   Sports       0.0000000000   0.0021312873 0.0000000000 0.0000000000
##   Strategy     0.0000000000   0.0000000000 0.0000000000 0.0014684288
##               Publisher
## Genre             Hackberry HAL Laboratory Hamster Corporation
##   Action       0.0000000000   0.0000000000        0.0003015682
##   Adventure    0.0000000000   0.0000000000        0.0000000000
##   Fighting     0.0000000000   0.0000000000        0.0000000000
##   Misc         0.0040253019   0.0000000000        0.0000000000
##   Platform     0.0000000000   0.0000000000        0.0000000000
##   Puzzle       0.0000000000   0.0017182131        0.0000000000
##   Racing       0.0000000000   0.0000000000        0.0000000000
##   Role-Playing 0.0000000000   0.0000000000        0.0000000000
##   Shooter      0.0000000000   0.0000000000        0.0000000000
##   Simulation   0.0000000000   0.0000000000        0.0011534025
##   Sports       0.0000000000   0.0000000000        0.0000000000
##   Strategy     0.0000000000   0.0000000000        0.0000000000
##               Publisher
## Genre              Happinet Harmonix Music Systems Hasbro Interactive
##   Action       0.0000000000           0.0000000000       0.0006031363
##   Adventure    0.0023328149           0.0000000000       0.0000000000
##   Fighting     0.0000000000           0.0000000000       0.0000000000
##   Misc         0.0005750431           0.0011500863       0.0046003450
##   Platform     0.0000000000           0.0000000000       0.0011286682
##   Puzzle       0.0000000000           0.0000000000       0.0034364261
##   Racing       0.0000000000           0.0000000000       0.0016012810
##   Role-Playing 0.0000000000           0.0000000000       0.0000000000
##   Shooter      0.0000000000           0.0000000000       0.0007633588
##   Simulation   0.0011534025           0.0000000000       0.0000000000
##   Sports       0.0000000000           0.0000000000       0.0000000000
##   Strategy     0.0000000000           0.0000000000       0.0000000000
##               Publisher
## Genre          Havas Interactive Headup Games Hearty Robin         Hect
##   Action            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Adventure         0.0000000000 0.0007776050 0.0000000000 0.0000000000
##   Fighting          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Platform          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing      0.0006720430 0.0000000000 0.0000000000 0.0000000000
##   Shooter           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation        0.0000000000 0.0000000000 0.0011534025 0.0034602076
##   Sports            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre           Hello Games Her Interactive Hip Interactive
##   Action       0.0003015682    0.0000000000    0.0012062726
##   Adventure    0.0000000000    0.0007776050    0.0000000000
##   Fighting     0.0000000000    0.0000000000    0.0000000000
##   Misc         0.0000000000    0.0000000000    0.0000000000
##   Platform     0.0000000000    0.0000000000    0.0000000000
##   Puzzle       0.0000000000    0.0000000000    0.0000000000
##   Racing       0.0000000000    0.0000000000    0.0000000000
##   Role-Playing 0.0000000000    0.0000000000    0.0000000000
##   Shooter      0.0000000000    0.0000000000    0.0007633588
##   Simulation   0.0000000000    0.0000000000    0.0000000000
##   Sports       0.0000000000    0.0000000000    0.0000000000
##   Strategy     0.0000000000    0.0000000000    0.0000000000
##               Publisher
## Genre          HMH Interactive Home Entertainment Suppliers
##   Action          0.0000000000                 0.0000000000
##   Adventure       0.0007776050                 0.0000000000
##   Fighting        0.0000000000                 0.0000000000
##   Misc            0.0005750431                 0.0000000000
##   Platform        0.0000000000                 0.0000000000
##   Puzzle          0.0000000000                 0.0000000000
##   Racing          0.0000000000                 0.0000000000
##   Role-Playing    0.0000000000                 0.0000000000
##   Shooter         0.0000000000                 0.0000000000
##   Simulation      0.0000000000                 0.0000000000
##   Sports          0.0000000000                 0.0021312873
##   Strategy        0.0000000000                 0.0000000000
##               Publisher
## Genre          Hudson Entertainment  Hudson Soft Human Entertainment
##   Action               0.0000000000 0.0018094089        0.0000000000
##   Adventure            0.0000000000 0.0023328149        0.0015552100
##   Fighting             0.0000000000 0.0047169811        0.0070754717
##   Misc                 0.0017251294 0.0120759057        0.0000000000
##   Platform             0.0011286682 0.0033860045        0.0000000000
##   Puzzle               0.0034364261 0.0206185567        0.0000000000
##   Racing               0.0000000000 0.0000000000        0.0008006405
##   Role-Playing         0.0013440860 0.0080645161        0.0000000000
##   Shooter              0.0007633588 0.0030534351        0.0000000000
##   Simulation           0.0011534025 0.0034602076        0.0011534025
##   Sports               0.0004262575 0.0051150895        0.0008525149
##   Strategy             0.0000000000 0.0014684288        0.0014684288
##               Publisher
## Genre                 HuneX Iceberg Interactive  id Software Idea Factory
##   Action       0.0003015682        0.0000000000 0.0000000000 0.0084439083
##   Adventure    0.0007776050        0.0000000000 0.0000000000 0.0629860031
##   Fighting     0.0000000000        0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000        0.0000000000 0.0000000000 0.0028752156
##   Platform     0.0000000000        0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000        0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000        0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000        0.0006720430 0.0000000000 0.0087365591
##   Shooter      0.0000000000        0.0000000000 0.0007633588 0.0000000000
##   Simulation   0.0000000000        0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000        0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000        0.0029368576 0.0000000000 0.0029368576
##               Publisher
## Genre          Idea Factory International IE Institute
##   Action                     0.0012062726 0.0003015682
##   Adventure                  0.0000000000 0.0000000000
##   Fighting                   0.0000000000 0.0000000000
##   Misc                       0.0000000000 0.0023001725
##   Platform                   0.0000000000 0.0000000000
##   Puzzle                     0.0000000000 0.0000000000
##   Racing                     0.0000000000 0.0000000000
##   Role-Playing               0.0013440860 0.0000000000
##   Shooter                    0.0000000000 0.0000000000
##   Simulation                 0.0000000000 0.0000000000
##   Sports                     0.0000000000 0.0000000000
##   Strategy                   0.0000000000 0.0000000000
##               Publisher
## Genre          Ignition Entertainment Illusion Softworks       Imadio
##   Action                 0.0015078408       0.0003015682 0.0000000000
##   Adventure              0.0007776050       0.0000000000 0.0007776050
##   Fighting               0.0247641509       0.0000000000 0.0000000000
##   Misc                   0.0023001725       0.0000000000 0.0000000000
##   Platform               0.0033860045       0.0000000000 0.0000000000
##   Puzzle                 0.0137457045       0.0000000000 0.0000000000
##   Racing                 0.0024019215       0.0000000000 0.0000000000
##   Role-Playing           0.0020161290       0.0000000000 0.0000000000
##   Shooter                0.0045801527       0.0000000000 0.0000000000
##   Simulation             0.0000000000       0.0000000000 0.0000000000
##   Sports                 0.0025575448       0.0000000000 0.0000000000
##   Strategy               0.0014684288       0.0000000000 0.0000000000
##               Publisher
## Genre           Image Epoch imageepoch Inc.   Imageworks       Imagic
##   Action       0.0000000000    0.0000000000 0.0000000000 0.0003015682
##   Adventure    0.0000000000    0.0007776050 0.0000000000 0.0000000000
##   Fighting     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000    0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000    0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000    0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0006720430    0.0006720430 0.0000000000 0.0000000000
##   Shooter      0.0000000000    0.0000000000 0.0000000000 0.0022900763
##   Simulation   0.0000000000    0.0000000000 0.0011534025 0.0000000000
##   Sports       0.0000000000    0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000    0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre             Imagineer         Imax  Indie Games   Infogrames
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0015078408
##   Adventure    0.0023328149 0.0000000000 0.0015552100 0.0031104199
##   Fighting     0.0011792453 0.0000000000 0.0000000000 0.0023584906
##   Misc         0.0000000000 0.0005750431 0.0000000000 0.0040253019
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0112866817
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0008006405 0.0000000000 0.0000000000 0.0120096077
##   Role-Playing 0.0026881720 0.0000000000 0.0000000000 0.0013440860
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0045801527
##   Simulation   0.0011534025 0.0000000000 0.0011534025 0.0011534025
##   Sports       0.0025575448 0.0000000000 0.0000000000 0.0029838022
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0044052863
##               Publisher
## Genre          Insomniac Games Interchannel Interchannel-Holon
##   Action          0.0009047045 0.0000000000       0.0000000000
##   Adventure       0.0000000000 0.0031104199       0.0000000000
##   Fighting        0.0000000000 0.0000000000       0.0000000000
##   Misc            0.0000000000 0.0000000000       0.0000000000
##   Platform        0.0000000000 0.0000000000       0.0000000000
##   Puzzle          0.0000000000 0.0000000000       0.0000000000
##   Racing          0.0000000000 0.0000000000       0.0000000000
##   Role-Playing    0.0000000000 0.0000000000       0.0000000000
##   Shooter         0.0000000000 0.0000000000       0.0000000000
##   Simulation      0.0000000000 0.0000000000       0.0000000000
##   Sports          0.0000000000 0.0000000000       0.0000000000
##   Strategy        0.0000000000 0.0000000000       0.0014684288
##               Publisher
## Genre             Intergrow    Interplay Interplay Productions
##   Action       0.0000000000 0.0018094089          0.0000000000
##   Adventure    0.0000000000 0.0007776050          0.0000000000
##   Fighting     0.0000000000 0.0011792453          0.0000000000
##   Misc         0.0000000000 0.0011500863          0.0000000000
##   Platform     0.0011286682 0.0033860045          0.0000000000
##   Puzzle       0.0000000000 0.0000000000          0.0000000000
##   Racing       0.0000000000 0.0032025620          0.0000000000
##   Role-Playing 0.0000000000 0.0020161290          0.0000000000
##   Shooter      0.0000000000 0.0038167939          0.0007633588
##   Simulation   0.0000000000 0.0023068051          0.0000000000
##   Sports       0.0000000000 0.0012787724          0.0000000000
##   Strategy     0.0000000000 0.0000000000          0.0000000000
##               Publisher
## Genre          Interworks Unlimited, Inc. Inti Creates
##   Action                     0.0000000000 0.0003015682
##   Adventure                  0.0000000000 0.0000000000
##   Fighting                   0.0000000000 0.0000000000
##   Misc                       0.0000000000 0.0000000000
##   Platform                   0.0000000000 0.0000000000
##   Puzzle                     0.0000000000 0.0000000000
##   Racing                     0.0000000000 0.0000000000
##   Role-Playing               0.0000000000 0.0000000000
##   Shooter                    0.0000000000 0.0000000000
##   Simulation                 0.0000000000 0.0000000000
##   Sports                     0.0004262575 0.0000000000
##   Strategy                   0.0000000000 0.0000000000
##               Publisher
## Genre          Introversion Software inXile Entertainment
##   Action                0.0003015682         0.0000000000
##   Adventure             0.0000000000         0.0000000000
##   Fighting              0.0000000000         0.0000000000
##   Misc                  0.0000000000         0.0000000000
##   Platform              0.0000000000         0.0000000000
##   Puzzle                0.0000000000         0.0000000000
##   Racing                0.0000000000         0.0000000000
##   Role-Playing          0.0000000000         0.0006720430
##   Shooter               0.0000000000         0.0000000000
##   Simulation            0.0000000000         0.0000000000
##   Sports                0.0000000000         0.0000000000
##   Strategy              0.0000000000         0.0000000000
##               Publisher
## Genre          Irem Software Engineering ITT Family Games    Ivolgamus
##   Action                    0.0009047045     0.0003015682 0.0000000000
##   Adventure                 0.0000000000     0.0000000000 0.0000000000
##   Fighting                  0.0011792453     0.0000000000 0.0000000000
##   Misc                      0.0028752156     0.0000000000 0.0000000000
##   Platform                  0.0000000000     0.0000000000 0.0000000000
##   Puzzle                    0.0000000000     0.0000000000 0.0017182131
##   Racing                    0.0000000000     0.0000000000 0.0000000000
##   Role-Playing              0.0006720430     0.0000000000 0.0000000000
##   Shooter                   0.0007633588     0.0000000000 0.0000000000
##   Simulation                0.0000000000     0.0000000000 0.0000000000
##   Sports                    0.0000000000     0.0000000000 0.0000000000
##   Strategy                  0.0014684288     0.0000000000 0.0000000000
##               Publisher
## Genre                  iWin Jack of All Games       Jaleco
##   Action       0.0000000000      0.0000000000 0.0006031363
##   Adventure    0.0000000000      0.0000000000 0.0000000000
##   Fighting     0.0000000000      0.0000000000 0.0011792453
##   Misc         0.0000000000      0.0000000000 0.0011500863
##   Platform     0.0000000000      0.0022573363 0.0000000000
##   Puzzle       0.0017182131      0.0000000000 0.0051546392
##   Racing       0.0000000000      0.0000000000 0.0048038431
##   Role-Playing 0.0000000000      0.0000000000 0.0000000000
##   Shooter      0.0000000000      0.0007633588 0.0007633588
##   Simulation   0.0000000000      0.0000000000 0.0000000000
##   Sports       0.0000000000      0.0000000000 0.0021312873
##   Strategy     0.0000000000      0.0000000000 0.0044052863
##               Publisher
## Genre          Jester Interactive      Jorudan JoWood Productions
##   Action             0.0000000000 0.0000000000       0.0009047045
##   Adventure          0.0000000000 0.0000000000       0.0023328149
##   Fighting           0.0000000000 0.0000000000       0.0000000000
##   Misc               0.0005750431 0.0000000000       0.0005750431
##   Platform           0.0000000000 0.0000000000       0.0022573363
##   Puzzle             0.0000000000 0.0000000000       0.0017182131
##   Racing             0.0016012810 0.0000000000       0.0000000000
##   Role-Playing       0.0000000000 0.0000000000       0.0033602151
##   Shooter            0.0000000000 0.0000000000       0.0000000000
##   Simulation         0.0000000000 0.0034602076       0.0023068051
##   Sports             0.0000000000 0.0000000000       0.0004262575
##   Strategy           0.0000000000 0.0000000000       0.0058737151
##               Publisher
## Genre           Just Flight          JVC Kadokawa Games Kadokawa Shoten
##   Action       0.0000000000 0.0003015682   0.0015078408    0.0006031363
##   Adventure    0.0000000000 0.0000000000   0.0046656299    0.0256609642
##   Fighting     0.0000000000 0.0011792453   0.0000000000    0.0000000000
##   Misc         0.0000000000 0.0005750431   0.0005750431    0.0005750431
##   Platform     0.0000000000 0.0000000000   0.0000000000    0.0000000000
##   Puzzle       0.0000000000 0.0017182131   0.0000000000    0.0000000000
##   Racing       0.0000000000 0.0016012810   0.0000000000    0.0000000000
##   Role-Playing 0.0000000000 0.0000000000   0.0013440860    0.0073924731
##   Shooter      0.0000000000 0.0015267176   0.0000000000    0.0000000000
##   Simulation   0.0011534025 0.0000000000   0.0011534025    0.0011534025
##   Sports       0.0000000000 0.0000000000   0.0000000000    0.0004262575
##   Strategy     0.0000000000 0.0000000000   0.0000000000    0.0014684288
##               Publisher
## Genre           Kaga Create Kalypso Media        Kamui  Kando Games
##   Action       0.0009047045  0.0009047045 0.0000000000 0.0000000000
##   Adventure    0.0015552100  0.0015552100 0.0000000000 0.0000000000
##   Fighting     0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0005750431  0.0005750431 0.0005750431 0.0000000000
##   Platform     0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000  0.0080738178 0.0000000000 0.0011534025
##   Sports       0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000  0.0234948605 0.0000000000 0.0000000000
##               Publisher
## Genre          Karin Entertainment        Kemco          KID Kids Station
##   Action              0.0000000000 0.0018094089 0.0000000000 0.0000000000
##   Adventure           0.0000000000 0.0007776050 0.0031104199 0.0007776050
##   Fighting            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc                0.0005750431 0.0005750431 0.0000000000 0.0000000000
##   Platform            0.0000000000 0.0022573363 0.0000000000 0.0000000000
##   Puzzle              0.0000000000 0.0051546392 0.0000000000 0.0000000000
##   Racing              0.0000000000 0.0040032026 0.0000000000 0.0000000000
##   Role-Playing        0.0000000000 0.0006720430 0.0000000000 0.0000000000
##   Shooter             0.0000000000 0.0007633588 0.0000000000 0.0000000000
##   Simulation          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Sports              0.0000000000 0.0004262575 0.0000000000 0.0000000000
##   Strategy            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          King Records Knowledge Adventure   Koch Media
##   Action       0.0000000000        0.0003015682 0.0012062726
##   Adventure    0.0000000000        0.0007776050 0.0015552100
##   Fighting     0.0000000000        0.0000000000 0.0000000000
##   Misc         0.0000000000        0.0005750431 0.0000000000
##   Platform     0.0000000000        0.0000000000 0.0000000000
##   Puzzle       0.0000000000        0.0000000000 0.0017182131
##   Racing       0.0000000000        0.0000000000 0.0000000000
##   Role-Playing 0.0006720430        0.0000000000 0.0006720430
##   Shooter      0.0000000000        0.0000000000 0.0000000000
##   Simulation   0.0000000000        0.0000000000 0.0069204152
##   Sports       0.0000000000        0.0004262575 0.0008525149
##   Strategy     0.0000000000        0.0000000000 0.0014684288
##               Publisher
## Genre          Kokopeli Digital Studios Konami Digital Entertainment
##   Action                   0.0000000000                 0.0446320869
##   Adventure                0.0000000000                 0.0412130638
##   Fighting                 0.0011792453                 0.0235849057
##   Misc                     0.0000000000                 0.0442783209
##   Platform                 0.0000000000                 0.0451467269
##   Puzzle                   0.0000000000                 0.0171821306
##   Racing                   0.0000000000                 0.0104083267
##   Role-Playing             0.0000000000                 0.0248655914
##   Shooter                  0.0000000000                 0.0305343511
##   Simulation               0.0000000000                 0.0991926182
##   Sports                   0.0000000000                 0.1193520887
##   Strategy                 0.0000000000                 0.0411160059
##               Publisher
## Genre             Kool Kizz          KSS       Laguna Legacy Interactive
##   Action       0.0000000000 0.0000000000 0.0003015682       0.0000000000
##   Adventure    0.0000000000 0.0000000000 0.0000000000       0.0007776050
##   Fighting     0.0000000000 0.0000000000 0.0000000000       0.0000000000
##   Misc         0.0000000000 0.0005750431 0.0000000000       0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0022573363       0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000       0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000       0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0006720430       0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000       0.0000000000
##   Simulation   0.0000000000 0.0000000000 0.0000000000       0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000       0.0000000000
##   Strategy     0.0014684288 0.0000000000 0.0000000000       0.0000000000
##               Publisher
## Genre            LEGO Media      Level 5 Lexicon Entertainment
##   Action       0.0003015682 0.0018094089          0.0000000000
##   Adventure    0.0007776050 0.0031104199          0.0000000000
##   Fighting     0.0000000000 0.0000000000          0.0000000000
##   Misc         0.0000000000 0.0005750431          0.0000000000
##   Platform     0.0011286682 0.0000000000          0.0000000000
##   Puzzle       0.0000000000 0.0051546392          0.0000000000
##   Racing       0.0024019215 0.0000000000          0.0000000000
##   Role-Playing 0.0000000000 0.0073924731          0.0000000000
##   Shooter      0.0000000000 0.0000000000          0.0007633588
##   Simulation   0.0000000000 0.0000000000          0.0011534025
##   Sports       0.0000000000 0.0004262575          0.0000000000
##   Strategy     0.0014684288 0.0014684288          0.0000000000
##               Publisher
## Genre           Licensed 4U Lighthouse Interactive Liquid Games
##   Action       0.0006031363           0.0000000000 0.0000000000
##   Adventure    0.0000000000           0.0000000000 0.0000000000
##   Fighting     0.0000000000           0.0000000000 0.0000000000
##   Misc         0.0000000000           0.0000000000 0.0000000000
##   Platform     0.0000000000           0.0000000000 0.0000000000
##   Puzzle       0.0017182131           0.0000000000 0.0017182131
##   Racing       0.0000000000           0.0000000000 0.0008006405
##   Role-Playing 0.0000000000           0.0000000000 0.0000000000
##   Shooter      0.0000000000           0.0000000000 0.0000000000
##   Simulation   0.0000000000           0.0011534025 0.0000000000
##   Sports       0.0000000000           0.0000000000 0.0000000000
##   Strategy     0.0000000000           0.0000000000 0.0000000000
##               Publisher
## Genre          Little Orbit        Locus    LSP Games    LucasArts
##   Action       0.0051266586 0.0000000000 0.0003015682 0.0144752714
##   Adventure    0.0054432348 0.0000000000 0.0000000000 0.0023328149
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0022573363 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0016012810
##   Role-Playing 0.0000000000 0.0006720430 0.0000000000 0.0013440860
##   Shooter      0.0000000000 0.0000000000 0.0007633588 0.0145038168
##   Simulation   0.0023068051 0.0000000000 0.0000000000 0.0069204152
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0146842878
##               Publisher
## Genre              Mad Catz Magical Company        Magix
##   Action       0.0000000000    0.0000000000 0.0000000000
##   Adventure    0.0000000000    0.0000000000 0.0000000000
##   Fighting     0.0000000000    0.0000000000 0.0000000000
##   Misc         0.0005750431    0.0000000000 0.0011500863
##   Platform     0.0000000000    0.0000000000 0.0000000000
##   Puzzle       0.0000000000    0.0000000000 0.0000000000
##   Racing       0.0000000000    0.0000000000 0.0000000000
##   Role-Playing 0.0000000000    0.0000000000 0.0000000000
##   Shooter      0.0000000000    0.0000000000 0.0000000000
##   Simulation   0.0011534025    0.0000000000 0.0000000000
##   Sports       0.0004262575    0.0004262575 0.0000000000
##   Strategy     0.0000000000    0.0000000000 0.0000000000
##               Publisher
## Genre          Majesco Entertainment  Mamba Games Marvel Entertainment
##   Action                0.0045235223 0.0000000000         0.0003015682
##   Adventure             0.0031104199 0.0007776050         0.0000000000
##   Fighting              0.0035377358 0.0000000000         0.0000000000
##   Misc                  0.0120759057 0.0000000000         0.0000000000
##   Platform              0.0045146727 0.0000000000         0.0000000000
##   Puzzle                0.0154639175 0.0000000000         0.0000000000
##   Racing                0.0040032026 0.0000000000         0.0000000000
##   Role-Playing          0.0013440860 0.0000000000         0.0000000000
##   Shooter               0.0068702290 0.0000000000         0.0000000000
##   Simulation            0.0149942330 0.0000000000         0.0000000000
##   Sports                0.0021312873 0.0000000000         0.0000000000
##   Strategy              0.0029368576 0.0014684288         0.0000000000
##               Publisher
## Genre          Marvelous Entertainment Marvelous Games
##   Action                  0.0018094089    0.0000000000
##   Adventure               0.0000000000    0.0007776050
##   Fighting                0.0011792453    0.0000000000
##   Misc                    0.0011500863    0.0000000000
##   Platform                0.0000000000    0.0000000000
##   Puzzle                  0.0000000000    0.0000000000
##   Racing                  0.0000000000    0.0000000000
##   Role-Playing            0.0013440860    0.0000000000
##   Shooter                 0.0000000000    0.0000000000
##   Simulation              0.0011534025    0.0000000000
##   Sports                  0.0000000000    0.0000000000
##   Strategy                0.0000000000    0.0000000000
##               Publisher
## Genre          Marvelous Interactive Masque Publishing Mastertronic
##   Action                0.0030156815      0.0000000000 0.0000000000
##   Adventure             0.0108864697      0.0000000000 0.0007776050
##   Fighting              0.0106132075      0.0000000000 0.0000000000
##   Misc                  0.0011500863      0.0000000000 0.0005750431
##   Platform              0.0000000000      0.0000000000 0.0000000000
##   Puzzle                0.0000000000      0.0000000000 0.0068728522
##   Racing                0.0000000000      0.0000000000 0.0008006405
##   Role-Playing          0.0087365591      0.0000000000 0.0000000000
##   Shooter               0.0000000000      0.0000000000 0.0030534351
##   Simulation            0.0069204152      0.0011534025 0.0000000000
##   Sports                0.0008525149      0.0000000000 0.0004262575
##   Strategy              0.0000000000      0.0000000000 0.0014684288
##               Publisher
## Genre               Mastiff Mattel Interactive     Max Five
##   Action       0.0000000000       0.0012062726 0.0000000000
##   Adventure    0.0007776050       0.0015552100 0.0000000000
##   Fighting     0.0000000000       0.0000000000 0.0000000000
##   Misc         0.0011500863       0.0000000000 0.0000000000
##   Platform     0.0000000000       0.0000000000 0.0000000000
##   Puzzle       0.0000000000       0.0017182131 0.0000000000
##   Racing       0.0000000000       0.0008006405 0.0000000000
##   Role-Playing 0.0000000000       0.0000000000 0.0006720430
##   Shooter      0.0030534351       0.0007633588 0.0000000000
##   Simulation   0.0011534025       0.0000000000 0.0000000000
##   Sports       0.0034100597       0.0012787724 0.0000000000
##   Strategy     0.0000000000       0.0000000000 0.0000000000
##               Publisher
## Genre          Maximum Family Games        Maxis MC2 Entertainment
##   Action               0.0003015682 0.0000000000      0.0000000000
##   Adventure            0.0000000000 0.0000000000      0.0015552100
##   Fighting             0.0000000000 0.0000000000      0.0000000000
##   Misc                 0.0000000000 0.0000000000      0.0000000000
##   Platform             0.0000000000 0.0000000000      0.0000000000
##   Puzzle               0.0000000000 0.0000000000      0.0000000000
##   Racing               0.0000000000 0.0000000000      0.0000000000
##   Role-Playing         0.0000000000 0.0000000000      0.0000000000
##   Shooter              0.0000000000 0.0000000000      0.0007633588
##   Simulation           0.0000000000 0.0034602076      0.0000000000
##   Sports               0.0000000000 0.0000000000      0.0000000000
##   Strategy             0.0000000000 0.0000000000      0.0000000000
##               Publisher
## Genre          Media Entertainment Media Factory  Media Rings  Media Works
##   Action              0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Adventure           0.0000000000  0.0007776050 0.0000000000 0.0015552100
##   Fighting            0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Misc                0.0005750431  0.0000000000 0.0000000000 0.0005750431
##   Platform            0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Puzzle              0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Racing              0.0000000000  0.0000000000 0.0008006405 0.0000000000
##   Role-Playing        0.0000000000  0.0000000000 0.0006720430 0.0000000000
##   Shooter             0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Simulation          0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Sports              0.0000000000  0.0004262575 0.0004262575 0.0000000000
##   Strategy            0.0000000000  0.0000000000 0.0000000000 0.0029368576
##               Publisher
## Genre            MediaQuest Men-A-Vision Mentor Interactive Mercury Games
##   Action       0.0000000000 0.0003015682       0.0000000000  0.0000000000
##   Adventure    0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Fighting     0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Misc         0.0000000000 0.0000000000       0.0028752156  0.0000000000
##   Platform     0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Puzzle       0.0017182131 0.0000000000       0.0000000000  0.0000000000
##   Racing       0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Role-Playing 0.0000000000 0.0000000000       0.0000000000  0.0013440860
##   Shooter      0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Simulation   0.0000000000 0.0000000000       0.0000000000  0.0023068051
##   Sports       0.0000000000 0.0000000000       0.0000000000  0.0000000000
##   Strategy     0.0000000000 0.0000000000       0.0000000000  0.0000000000
##               Publisher
## Genre           Merscom LLC     Metro 3D  Michaelsoft  Micro Cabin
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0007776050 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0011792453 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0011286682 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0017182131
##   Racing       0.0000000000 0.0032025620 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0013440860 0.0006720430 0.0006720430
##   Shooter      0.0000000000 0.0007633588 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0034602076 0.0000000000 0.0011534025
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre              Microids   Microprose Microsoft Game Studios
##   Action       0.0009047045 0.0000000000           0.0063329312
##   Adventure    0.0046656299 0.0000000000           0.0023328149
##   Fighting     0.0000000000 0.0000000000           0.0058962264
##   Misc         0.0000000000 0.0005750431           0.0195514664
##   Platform     0.0000000000 0.0000000000           0.0067720090
##   Puzzle       0.0000000000 0.0000000000           0.0017182131
##   Racing       0.0000000000 0.0000000000           0.0176140913
##   Role-Playing 0.0000000000 0.0000000000           0.0107526882
##   Shooter      0.0000000000 0.0000000000           0.0213740458
##   Simulation   0.0000000000 0.0011534025           0.0207612457
##   Sports       0.0004262575 0.0000000000           0.0072463768
##   Strategy     0.0000000000 0.0058737151           0.0264317181
##               Publisher
## Genre          Midas Interactive Entertainment Midway Games    Milestone
##   Action                          0.0006031363 0.0081423402 0.0000000000
##   Adventure                       0.0000000000 0.0031104199 0.0000000000
##   Fighting                        0.0011792453 0.0294811321 0.0000000000
##   Misc                            0.0005750431 0.0115008626 0.0000000000
##   Platform                        0.0011286682 0.0158013544 0.0000000000
##   Puzzle                          0.0051546392 0.0068728522 0.0000000000
##   Racing                          0.0024019215 0.0200160128 0.0000000000
##   Role-Playing                    0.0006720430 0.0026881720 0.0000000000
##   Shooter                         0.0030534351 0.0129770992 0.0007633588
##   Simulation                      0.0011534025 0.0000000000 0.0000000000
##   Sports                          0.0017050298 0.0247229327 0.0000000000
##   Strategy                        0.0044052863 0.0000000000 0.0000000000
##               Publisher
## Genre          Milestone S.r.l Milestone S.r.l. Minato Station
##   Action          0.0000000000     0.0000000000   0.0003015682
##   Adventure       0.0000000000     0.0000000000   0.0015552100
##   Fighting        0.0000000000     0.0000000000   0.0000000000
##   Misc            0.0000000000     0.0000000000   0.0000000000
##   Platform        0.0000000000     0.0000000000   0.0000000000
##   Puzzle          0.0000000000     0.0000000000   0.0000000000
##   Racing          0.0016012810     0.0128102482   0.0000000000
##   Role-Playing    0.0000000000     0.0000000000   0.0000000000
##   Shooter         0.0000000000     0.0000000000   0.0000000000
##   Simulation      0.0000000000     0.0000000000   0.0000000000
##   Sports          0.0000000000     0.0000000000   0.0000000000
##   Strategy        0.0000000000     0.0000000000   0.0000000000
##               Publisher
## Genre             Mindscape Mirai Shounen       Misawa       Mitsui
##   Action       0.0012062726  0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0007776050  0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0086256469  0.0005750431 0.0000000000 0.0000000000
##   Platform     0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0085910653  0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0016012810  0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0006720430  0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000  0.0000000000 0.0000000000 0.0007633588
##   Simulation   0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0004262575  0.0000000000 0.0008525149 0.0000000000
##   Strategy     0.0044052863  0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre             mixi, Inc      MLB.com       Mojang
##   Action       0.0003015682 0.0000000000 0.0000000000
##   Adventure    0.0000000000 0.0000000000 0.0038880249
##   Fighting     0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0004262575 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Monte Christo Multimedia         Moss          MTO
##   Action                   0.0000000000 0.0000000000 0.0009047045
##   Adventure                0.0000000000 0.0000000000 0.0000000000
##   Fighting                 0.0000000000 0.0000000000 0.0000000000
##   Misc                     0.0000000000 0.0000000000 0.0000000000
##   Platform                 0.0000000000 0.0000000000 0.0000000000
##   Puzzle                   0.0000000000 0.0000000000 0.0000000000
##   Racing                   0.0000000000 0.0000000000 0.0008006405
##   Role-Playing             0.0000000000 0.0000000000 0.0000000000
##   Shooter                  0.0000000000 0.0015267176 0.0000000000
##   Simulation               0.0011534025 0.0000000000 0.0046136101
##   Sports                   0.0000000000 0.0000000000 0.0000000000
##   Strategy                 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre             MTV Games Mud Duck Productions  Mumbo Jumbo        Mycom
##   Action       0.0000000000         0.0000000000 0.0000000000 0.0003015682
##   Adventure    0.0000000000         0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000         0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0235767683         0.0011500863 0.0000000000 0.0000000000
##   Platform     0.0000000000         0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000         0.0000000000 0.0068728522 0.0000000000
##   Racing       0.0000000000         0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000         0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000         0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000         0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000         0.0004262575 0.0004262575 0.0000000000
##   Strategy     0.0000000000         0.0000000000 0.0014684288 0.0000000000
##               Publisher
## Genre          Myelin Media     Mystique          N/A Namco Bandai Games
##   Action       0.0000000000 0.0003015682 0.0021109771       0.0747889023
##   Adventure    0.0000000000 0.0000000000 0.0031104199       0.0451010886
##   Fighting     0.0000000000 0.0000000000 0.0023584906       0.1580188679
##   Misc         0.0017251294 0.0000000000 0.0155261645       0.0557791834
##   Platform     0.0000000000 0.0000000000 0.0022573363       0.0214446953
##   Puzzle       0.0000000000 0.0000000000 0.0017182131       0.0343642612
##   Racing       0.0000000000 0.0000000000 0.0008006405       0.0216172938
##   Role-Playing 0.0000000000 0.0000000000 0.0013440860       0.1014784946
##   Shooter      0.0000000000 0.0000000000 0.0015267176       0.0282442748
##   Simulation   0.0000000000 0.0000000000 0.0046136101       0.0334486736
##   Sports       0.0000000000 0.0000000000 0.0012787724       0.0217391304
##   Strategy     0.0000000000 0.0000000000 0.0044052863       0.0895741557
##               Publisher
## Genre               Natsume Navarre Corp   Naxat Soft          NCS
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0007776050 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0011792453 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0005750431 0.0000000000 0.0005750431 0.0000000000
##   Platform     0.0011286682 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0034364261 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0013440860 0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0034602076 0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0021312873 0.0004262575 0.0000000000 0.0000000000
##   Strategy     0.0014684288 0.0000000000 0.0000000000 0.0044052863
##               Publisher
## Genre                NCSoft NDA Productions          NEC NEC Interchannel
##   Action       0.0003015682    0.0000000000 0.0000000000     0.0000000000
##   Adventure    0.0000000000    0.0000000000 0.0007776050     0.0038880249
##   Fighting     0.0000000000    0.0000000000 0.0000000000     0.0000000000
##   Misc         0.0000000000    0.0000000000 0.0000000000     0.0000000000
##   Platform     0.0000000000    0.0000000000 0.0000000000     0.0000000000
##   Puzzle       0.0000000000    0.0000000000 0.0000000000     0.0000000000
##   Racing       0.0000000000    0.0000000000 0.0000000000     0.0000000000
##   Role-Playing 0.0033602151    0.0000000000 0.0013440860     0.0006720430
##   Shooter      0.0000000000    0.0007633588 0.0000000000     0.0000000000
##   Simulation   0.0000000000    0.0000000000 0.0000000000     0.0011534025
##   Sports       0.0000000000    0.0000000000 0.0000000000     0.0000000000
##   Strategy     0.0000000000    0.0000000000 0.0000000000     0.0014684288
##               Publisher
## Genre          Neko Entertainment      NetRevo          New
##   Action             0.0003015682 0.0003015682 0.0000000000
##   Adventure          0.0015552100 0.0007776050 0.0000000000
##   Fighting           0.0000000000 0.0000000000 0.0011792453
##   Misc               0.0005750431 0.0000000000 0.0000000000
##   Platform           0.0000000000 0.0000000000 0.0000000000
##   Puzzle             0.0017182131 0.0000000000 0.0000000000
##   Racing             0.0000000000 0.0000000000 0.0000000000
##   Role-Playing       0.0000000000 0.0000000000 0.0000000000
##   Shooter            0.0015267176 0.0000000000 0.0000000000
##   Simulation         0.0000000000 0.0000000000 0.0000000000
##   Sports             0.0000000000 0.0000000000 0.0000000000
##   Strategy           0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          New World Computing     NewKidCo        Nexon   Nichibutsu
##   Action              0.0000000000 0.0006031363 0.0000000000 0.0000000000
##   Adventure           0.0000000000 0.0007776050 0.0000000000 0.0000000000
##   Fighting            0.0000000000 0.0011792453 0.0000000000 0.0000000000
##   Misc                0.0000000000 0.0023001725 0.0000000000 0.0005750431
##   Platform            0.0000000000 0.0011286682 0.0000000000 0.0000000000
##   Puzzle              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing        0.0000000000 0.0000000000 0.0006720430 0.0000000000
##   Shooter             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Sports              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy            0.0014684288 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Nihon Falcom Corporation     Nintendo Nippon Amuse
##   Action                   0.0006031363 0.0238238842 0.0000000000
##   Adventure                0.0000000000 0.0272161742 0.0000000000
##   Fighting                 0.0000000000 0.0212264151 0.0000000000
##   Misc                     0.0000000000 0.0575043128 0.0005750431
##   Platform                 0.0000000000 0.1264108352 0.0000000000
##   Puzzle                   0.0000000000 0.1271477663 0.0000000000
##   Racing                   0.0000000000 0.0296236990 0.0000000000
##   Role-Playing             0.0033602151 0.0712365591 0.0000000000
##   Shooter                  0.0000000000 0.0198473282 0.0000000000
##   Simulation               0.0000000000 0.0334486736 0.0000000000
##   Sports                   0.0000000000 0.0234441603 0.0000000000
##   Strategy                 0.0000000000 0.0469897210 0.0000000000
##               Publisher
## Genre          Nippon Columbia Nippon Ichi Software Nippon Telenet
##   Action          0.0012062726         0.0039203860   0.0000000000
##   Adventure       0.0000000000         0.0093312597   0.0000000000
##   Fighting        0.0000000000         0.0023584906   0.0000000000
##   Misc            0.0017251294         0.0017251294   0.0011500863
##   Platform        0.0000000000         0.0033860045   0.0000000000
##   Puzzle          0.0000000000         0.0000000000   0.0000000000
##   Racing          0.0000000000         0.0000000000   0.0000000000
##   Role-Playing    0.0000000000         0.0463709677   0.0000000000
##   Shooter         0.0000000000         0.0007633588   0.0000000000
##   Simulation      0.0000000000         0.0000000000   0.0000000000
##   Sports          0.0000000000         0.0000000000   0.0000000000
##   Strategy        0.0000000000         0.0029368576   0.0000000000
##               Publisher
## Genre             Nitroplus      Nobilis  Nordcurrent Nordic Games
##   Action       0.0000000000 0.0006031363 0.0003015682 0.0024125452
##   Adventure    0.0007776050 0.0015552100 0.0000000000 0.0015552100
##   Fighting     0.0011792453 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0005750431 0.0005750431 0.0063254744
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0017182131 0.0000000000
##   Racing       0.0000000000 0.0008006405 0.0000000000 0.0056044836
##   Role-Playing 0.0000000000 0.0013440860 0.0000000000 0.0006720430
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0015267176
##   Simulation   0.0000000000 0.0057670127 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0008525149 0.0008525149
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0029368576
##               Publisher
## Genre             NovaLogic  Number None      O-Games O3 Entertainment
##   Action       0.0000000000 0.0000000000 0.0000000000     0.0000000000
##   Adventure    0.0000000000 0.0000000000 0.0007776050     0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000     0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0023001725     0.0000000000
##   Platform     0.0000000000 0.0011286682 0.0000000000     0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0085910653     0.0017182131
##   Racing       0.0000000000 0.0000000000 0.0008006405     0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000     0.0000000000
##   Shooter      0.0022900763 0.0000000000 0.0007633588     0.0007633588
##   Simulation   0.0000000000 0.0000000000 0.0000000000     0.0011534025
##   Sports       0.0000000000 0.0000000000 0.0021312873     0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000     0.0000000000
##               Publisher
## Genre                 Ocean Office Create    On Demand    Ongakukan
##   Action       0.0009047045  0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0023584906  0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0005750431  0.0000000000 0.0000000000 0.0000000000
##   Platform     0.0033860045  0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0017182131  0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0016012810  0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000  0.0000000000 0.0006720430 0.0000000000
##   Shooter      0.0007633588  0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000  0.0023068051 0.0000000000 0.0011534025
##   Sports       0.0004262575  0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000  0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Origin Systems      Otomate Oxygen Interactive     P2 Games
##   Action         0.0000000000 0.0000000000       0.0009047045 0.0000000000
##   Adventure      0.0000000000 0.0007776050       0.0015552100 0.0000000000
##   Fighting       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##   Misc           0.0000000000 0.0000000000       0.0046003450 0.0011500863
##   Platform       0.0000000000 0.0000000000       0.0022573363 0.0000000000
##   Puzzle         0.0000000000 0.0000000000       0.0034364261 0.0017182131
##   Racing         0.0000000000 0.0000000000       0.0000000000 0.0000000000
##   Role-Playing   0.0000000000 0.0000000000       0.0000000000 0.0000000000
##   Shooter        0.0000000000 0.0000000000       0.0000000000 0.0000000000
##   Simulation     0.0011534025 0.0000000000       0.0000000000 0.0000000000
##   Sports         0.0000000000 0.0000000000       0.0021312873 0.0000000000
##   Strategy       0.0000000000 0.0000000000       0.0000000000 0.0000000000
##               Publisher
## Genre          Pacific Century Cyber Works Pack-In-Video Pack In Soft
##   Action                      0.0000000000  0.0000000000 0.0000000000
##   Adventure                   0.0000000000  0.0007776050 0.0000000000
##   Fighting                    0.0000000000  0.0000000000 0.0000000000
##   Misc                        0.0005750431  0.0000000000 0.0000000000
##   Platform                    0.0000000000  0.0000000000 0.0000000000
##   Puzzle                      0.0000000000  0.0000000000 0.0000000000
##   Racing                      0.0000000000  0.0000000000 0.0000000000
##   Role-Playing                0.0000000000  0.0000000000 0.0000000000
##   Shooter                     0.0000000000  0.0000000000 0.0000000000
##   Simulation                  0.0000000000  0.0011534025 0.0011534025
##   Sports                      0.0000000000  0.0000000000 0.0000000000
##   Strategy                    0.0000000000  0.0000000000 0.0000000000
##               Publisher
## Genre                Palcom Panther Software         Paon Paon Corporation
##   Action       0.0003015682     0.0000000000 0.0000000000     0.0000000000
##   Adventure    0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Fighting     0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Misc         0.0000000000     0.0000000000 0.0034502588     0.0005750431
##   Platform     0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Puzzle       0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Racing       0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Role-Playing 0.0000000000     0.0006720430 0.0000000000     0.0000000000
##   Shooter      0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Simulation   0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Sports       0.0000000000     0.0000000000 0.0000000000     0.0000000000
##   Strategy     0.0000000000     0.0000000000 0.0000000000     0.0000000000
##               Publisher
## Genre          Paradox Development Paradox Interactive Parker Bros.
##   Action              0.0000000000        0.0000000000 0.0015078408
##   Adventure           0.0000000000        0.0000000000 0.0000000000
##   Fighting            0.0000000000        0.0000000000 0.0000000000
##   Misc                0.0000000000        0.0005750431 0.0000000000
##   Platform            0.0000000000        0.0000000000 0.0011286682
##   Puzzle              0.0000000000        0.0000000000 0.0017182131
##   Racing              0.0000000000        0.0000000000 0.0000000000
##   Role-Playing        0.0000000000        0.0033602151 0.0000000000
##   Shooter             0.0000000000        0.0000000000 0.0000000000
##   Simulation          0.0011534025        0.0046136101 0.0000000000
##   Sports              0.0000000000        0.0000000000 0.0000000000
##   Strategy            0.0000000000        0.0190895742 0.0000000000
##               Publisher
## Genre          Performance Designed Products   Phantagram  Phantom EFX
##   Action                        0.0000000000 0.0000000000 0.0000000000
##   Adventure                     0.0000000000 0.0000000000 0.0000000000
##   Fighting                      0.0000000000 0.0000000000 0.0000000000
##   Misc                          0.0000000000 0.0000000000 0.0000000000
##   Platform                      0.0000000000 0.0000000000 0.0000000000
##   Puzzle                        0.0034364261 0.0000000000 0.0000000000
##   Racing                        0.0000000000 0.0000000000 0.0000000000
##   Role-Playing                  0.0000000000 0.0000000000 0.0000000000
##   Shooter                       0.0000000000 0.0000000000 0.0007633588
##   Simulation                    0.0000000000 0.0011534025 0.0000000000
##   Sports                        0.0000000000 0.0000000000 0.0000000000
##   Strategy                      0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre            Phenomedia Phoenix Games       Piacci     Pinnacle
##   Action       0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Adventure    0.0000000000  0.0000000000 0.0007776050 0.0000000000
##   Fighting     0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000  0.0000000000 0.0000000000 0.0011500863
##   Platform     0.0011286682  0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0034364261  0.0000000000 0.0000000000 0.0017182131
##   Racing       0.0008006405  0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000  0.0007633588 0.0000000000 0.0000000000
##   Simulation   0.0000000000  0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000  0.0000000000 0.0000000000 0.0004262575
##   Strategy     0.0000000000  0.0000000000 0.0000000000 0.0014684288
##               Publisher
## Genre           Pioneer LDC      Play It Playlogic Game Factory
##   Action       0.0000000000 0.0000000000           0.0018094089
##   Adventure    0.0023328149 0.0000000000           0.0000000000
##   Fighting     0.0000000000 0.0000000000           0.0000000000
##   Misc         0.0000000000 0.0023001725           0.0005750431
##   Platform     0.0000000000 0.0011286682           0.0000000000
##   Puzzle       0.0000000000 0.0000000000           0.0034364261
##   Racing       0.0008006405 0.0032025620           0.0000000000
##   Role-Playing 0.0000000000 0.0000000000           0.0000000000
##   Shooter      0.0000000000 0.0030534351           0.0015267176
##   Simulation   0.0000000000 0.0000000000           0.0000000000
##   Sports       0.0000000000 0.0004262575           0.0004262575
##   Strategy     0.0000000000 0.0000000000           0.0029368576
##               Publisher
## Genre             Playmates     Playmore        PlayV       Plenty
##   Action       0.0000000000 0.0000000000 0.0003015682 0.0000000000
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0011792453 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000 0.0005750431 0.0005750431
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0034364261 0.0000000000
##   Racing       0.0008006405 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre            PM Studios  Pony Canyon PopCap Games Popcorn Arcade
##   Action       0.0000000000 0.0000000000 0.0000000000   0.0003015682
##   Adventure    0.0000000000 0.0000000000 0.0007776050   0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000   0.0000000000
##   Misc         0.0005750431 0.0005750431 0.0011500863   0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0000000000   0.0022573363
##   Puzzle       0.0000000000 0.0000000000 0.0154639175   0.0034364261
##   Racing       0.0000000000 0.0000000000 0.0000000000   0.0032025620
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000   0.0000000000
##   Shooter      0.0000000000 0.0000000000 0.0000000000   0.0007633588
##   Simulation   0.0000000000 0.0000000000 0.0000000000   0.0000000000
##   Sports       0.0000000000 0.0000000000 0.0000000000   0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0044052863   0.0000000000
##               Publisher
## Genre          PopTop Software          Pow        PQube Princess Soft
##   Action          0.0000000000 0.0000000000 0.0030156815  0.0000000000
##   Adventure       0.0000000000 0.0000000000 0.0038880249  0.0023328149
##   Fighting        0.0000000000 0.0000000000 0.0200471698  0.0000000000
##   Misc            0.0000000000 0.0000000000 0.0005750431  0.0000000000
##   Platform        0.0000000000 0.0000000000 0.0000000000  0.0000000000
##   Puzzle          0.0000000000 0.0017182131 0.0000000000  0.0000000000
##   Racing          0.0000000000 0.0000000000 0.0008006405  0.0000000000
##   Role-Playing    0.0000000000 0.0000000000 0.0000000000  0.0000000000
##   Shooter         0.0000000000 0.0000000000 0.0015267176  0.0000000000
##   Simulation      0.0000000000 0.0000000000 0.0011534025  0.0000000000
##   Sports          0.0000000000 0.0000000000 0.0008525149  0.0000000000
##   Strategy        0.0014684288 0.0000000000 0.0000000000  0.0000000000
##               Publisher
## Genre             Prototype    Psygnosis       Quelle        Quest
##   Action       0.0003015682 0.0015078408 0.0000000000 0.0000000000
##   Adventure    0.0202177294 0.0046656299 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0005750431 0.0005750431 0.0000000000
##   Platform     0.0000000000 0.0011286682 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0017182131 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0064051241 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0006720430 0.0000000000 0.0006720430
##   Shooter      0.0000000000 0.0022900763 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0046136101 0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0008525149 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre              Quinrose      Quintet Rage Software   Rain Games
##   Action       0.0009047045 0.0000000000  0.0000000000 0.0000000000
##   Adventure    0.0085536547 0.0007776050  0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000  0.0035377358 0.0000000000
##   Misc         0.0000000000 0.0000000000  0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0000000000  0.0000000000 0.0011286682
##   Puzzle       0.0000000000 0.0000000000  0.0017182131 0.0000000000
##   Racing       0.0000000000 0.0000000000  0.0016012810 0.0000000000
##   Role-Playing 0.0000000000 0.0000000000  0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0000000000  0.0007633588 0.0000000000
##   Simulation   0.0000000000 0.0000000000  0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000  0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000  0.0000000000 0.0000000000
##               Publisher
## Genre             Rebellion Rebellion Developments RED Entertainment
##   Action       0.0000000000           0.0000000000      0.0000000000
##   Adventure    0.0000000000           0.0000000000      0.0007776050
##   Fighting     0.0000000000           0.0000000000      0.0000000000
##   Misc         0.0000000000           0.0000000000      0.0000000000
##   Platform     0.0000000000           0.0000000000      0.0000000000
##   Puzzle       0.0000000000           0.0000000000      0.0000000000
##   Racing       0.0016012810           0.0000000000      0.0000000000
##   Role-Playing 0.0000000000           0.0000000000      0.0000000000
##   Shooter      0.0000000000           0.0015267176      0.0000000000
##   Simulation   0.0000000000           0.0000000000      0.0000000000
##   Sports       0.0000000000           0.0000000000      0.0000000000
##   Strategy     0.0000000000           0.0000000000      0.0000000000
##               Publisher
## Genre               Red Orb Red Storm Entertainment    RedOctane
##   Action       0.0000000000            0.0003015682 0.0000000000
##   Adventure    0.0015552100            0.0000000000 0.0000000000
##   Fighting     0.0000000000            0.0000000000 0.0000000000
##   Misc         0.0000000000            0.0000000000 0.0023001725
##   Platform     0.0000000000            0.0000000000 0.0000000000
##   Puzzle       0.0000000000            0.0000000000 0.0000000000
##   Racing       0.0000000000            0.0000000000 0.0000000000
##   Role-Playing 0.0000000000            0.0000000000 0.0000000000
##   Shooter      0.0000000000            0.0015267176 0.0000000000
##   Simulation   0.0000000000            0.0000000000 0.0000000000
##   Sports       0.0000000000            0.0000000000 0.0000000000
##   Strategy     0.0000000000            0.0000000000 0.0000000000
##               Publisher
## Genre          Reef Entertainment responDESIGN Revolution (Japan)
##   Action             0.0000000000 0.0000000000       0.0000000000
##   Adventure          0.0031104199 0.0000000000       0.0007776050
##   Fighting           0.0000000000 0.0000000000       0.0000000000
##   Misc               0.0000000000 0.0000000000       0.0000000000
##   Platform           0.0000000000 0.0000000000       0.0000000000
##   Puzzle             0.0000000000 0.0000000000       0.0000000000
##   Racing             0.0000000000 0.0000000000       0.0000000000
##   Role-Playing       0.0000000000 0.0000000000       0.0000000000
##   Shooter            0.0015267176 0.0000000000       0.0000000000
##   Simulation         0.0000000000 0.0000000000       0.0000000000
##   Sports             0.0004262575 0.0008525149       0.0000000000
##   Strategy           0.0000000000 0.0000000000       0.0000000000
##               Publisher
## Genre          Revolution Software Rising Star Games Riverhillsoft
##   Action              0.0000000000      0.0024125452  0.0000000000
##   Adventure           0.0015552100      0.0038880249  0.0000000000
##   Fighting            0.0000000000      0.0035377358  0.0000000000
##   Misc                0.0000000000      0.0034502588  0.0000000000
##   Platform            0.0000000000      0.0022573363  0.0000000000
##   Puzzle              0.0000000000      0.0223367698  0.0000000000
##   Racing              0.0000000000      0.0000000000  0.0000000000
##   Role-Playing        0.0000000000      0.0174731183  0.0000000000
##   Shooter             0.0000000000      0.0030534351  0.0000000000
##   Simulation          0.0000000000      0.0126874279  0.0011534025
##   Sports              0.0000000000      0.0017050298  0.0000000000
##   Strategy            0.0000000000      0.0058737151  0.0000000000
##               Publisher
## Genre          Rocket Company   Rondomedia          RTL       Russel
##   Action         0.0009047045 0.0003015682 0.0000000000 0.0006031363
##   Adventure      0.0007776050 0.0023328149 0.0000000000 0.0023328149
##   Fighting       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc           0.0028752156 0.0005750431 0.0000000000 0.0000000000
##   Platform       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle         0.0000000000 0.0085910653 0.0000000000 0.0000000000
##   Racing         0.0000000000 0.0016012810 0.0008006405 0.0000000000
##   Role-Playing   0.0040322581 0.0000000000 0.0000000000 0.0000000000
##   Shooter        0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation     0.0011534025 0.0023068051 0.0023068051 0.0000000000
##   Sports         0.0004262575 0.0000000000 0.0021312873 0.0004262575
##   Strategy       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          Sammy Corporation       Saurus Scholastic Inc.          SCi
##   Action            0.0000000000 0.0003015682    0.0003015682 0.0015078408
##   Adventure         0.0007776050 0.0000000000    0.0038880249 0.0000000000
##   Fighting          0.0047169811 0.0000000000    0.0000000000 0.0000000000
##   Misc              0.0023001725 0.0000000000    0.0005750431 0.0000000000
##   Platform          0.0000000000 0.0000000000    0.0000000000 0.0022573363
##   Puzzle            0.0000000000 0.0000000000    0.0051546392 0.0000000000
##   Racing            0.0000000000 0.0000000000    0.0000000000 0.0016012810
##   Role-Playing      0.0000000000 0.0000000000    0.0000000000 0.0000000000
##   Shooter           0.0000000000 0.0000000000    0.0000000000 0.0061068702
##   Simulation        0.0023068051 0.0000000000    0.0000000000 0.0000000000
##   Sports            0.0000000000 0.0000000000    0.0000000000 0.0000000000
##   Strategy          0.0000000000 0.0000000000    0.0000000000 0.0000000000
##               Publisher
## Genre            Screenlife SCS Software        Sears         Sega
##   Action       0.0009047045 0.0003015682 0.0000000000 0.0304583836
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0241057543
##   Fighting     0.0011792453 0.0000000000 0.0000000000 0.0436320755
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0356526740
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0586907449
##   Puzzle       0.0000000000 0.0000000000 0.0017182131 0.0378006873
##   Racing       0.0000000000 0.0000000000 0.0000000000 0.0384307446
##   Role-Playing 0.0013440860 0.0000000000 0.0000000000 0.0430107527
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0305343511
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.0138408304
##   Sports       0.0000000000 0.0000000000 0.0000000000 0.0575447570
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0513950073
##               Publisher
## Genre          Seta Corporation Seventh Chord   Shogakukan
##   Action           0.0000000000  0.0003015682 0.0000000000
##   Adventure        0.0000000000  0.0000000000 0.0015552100
##   Fighting         0.0000000000  0.0000000000 0.0000000000
##   Misc             0.0023001725  0.0000000000 0.0017251294
##   Platform         0.0000000000  0.0000000000 0.0000000000
##   Puzzle           0.0000000000  0.0000000000 0.0000000000
##   Racing           0.0000000000  0.0000000000 0.0000000000
##   Role-Playing     0.0006720430  0.0000000000 0.0000000000
##   Shooter          0.0000000000  0.0000000000 0.0000000000
##   Simulation       0.0000000000  0.0000000000 0.0000000000
##   Sports           0.0004262575  0.0000000000 0.0000000000
##   Strategy         0.0000000000  0.0000000000 0.0000000000
##               Publisher
## Genre          Simon & Schuster Interactive Slightly Mad Studios
##   Action                       0.0000000000         0.0000000000
##   Adventure                    0.0000000000         0.0000000000
##   Fighting                     0.0000000000         0.0000000000
##   Misc                         0.0000000000         0.0000000000
##   Platform                     0.0000000000         0.0000000000
##   Puzzle                       0.0000000000         0.0000000000
##   Racing                       0.0000000000         0.0024019215
##   Role-Playing                 0.0000000000         0.0000000000
##   Shooter                      0.0000000000         0.0000000000
##   Simulation                   0.0000000000         0.0000000000
##   Sports                       0.0004262575         0.0000000000
##   Strategy                     0.0000000000         0.0000000000
##               Publisher
## Genre          Slitherine Software          SNK SNK Playmore      Societa
##   Action              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Adventure           0.0000000000 0.0000000000 0.0023328149 0.0007776050
##   Fighting            0.0000000000 0.0259433962 0.0141509434 0.0000000000
##   Misc                0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Platform            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing        0.0000000000 0.0000000000 0.0006720430 0.0000000000
##   Shooter             0.0000000000 0.0000000000 0.0015267176 0.0000000000
##   Simulation          0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Sports              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy            0.0058737151 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre              Sold Out       Sonnet Sony Computer Entertainment
##   Action       0.0003015682 0.0000000000                0.0271411339
##   Adventure    0.0000000000 0.0000000000                0.0318818040
##   Fighting     0.0000000000 0.0000000000                0.0353773585
##   Misc         0.0000000000 0.0011500863                0.0736055204
##   Platform     0.0000000000 0.0000000000                0.0744920993
##   Puzzle       0.0000000000 0.0000000000                0.0206185567
##   Racing       0.0000000000 0.0000000000                0.0520416333
##   Role-Playing 0.0000000000 0.0000000000                0.0329301075
##   Shooter      0.0000000000 0.0000000000                0.0389312977
##   Simulation   0.0000000000 0.0000000000                0.0173010381
##   Sports       0.0000000000 0.0000000000                0.0528559250
##   Strategy     0.0000000000 0.0000000000                0.0176211454
##               Publisher
## Genre          Sony Computer Entertainment America
##   Action                              0.0000000000
##   Adventure                           0.0000000000
##   Fighting                            0.0000000000
##   Misc                                0.0000000000
##   Platform                            0.0000000000
##   Puzzle                              0.0000000000
##   Racing                              0.0000000000
##   Role-Playing                        0.0000000000
##   Shooter                             0.0000000000
##   Simulation                          0.0000000000
##   Sports                              0.0012787724
##   Strategy                            0.0000000000
##               Publisher
## Genre          Sony Computer Entertainment Europe Sony Music Entertainment
##   Action                             0.0003015682             0.0000000000
##   Adventure                          0.0023328149             0.0000000000
##   Fighting                           0.0000000000             0.0000000000
##   Misc                               0.0023001725             0.0005750431
##   Platform                           0.0045146727             0.0000000000
##   Puzzle                             0.0000000000             0.0000000000
##   Racing                             0.0000000000             0.0000000000
##   Role-Playing                       0.0000000000             0.0000000000
##   Shooter                            0.0007633588             0.0000000000
##   Simulation                         0.0023068051             0.0000000000
##   Sports                             0.0000000000             0.0000000000
##   Strategy                           0.0000000000             0.0000000000
##               Publisher
## Genre          Sony Online Entertainment SouthPeak Games        Spike
##   Action                    0.0000000000    0.0027141134 0.0030156815
##   Adventure                 0.0000000000    0.0015552100 0.0023328149
##   Fighting                  0.0000000000    0.0035377358 0.0023584906
##   Misc                      0.0000000000    0.0011500863 0.0023001725
##   Platform                  0.0000000000    0.0000000000 0.0000000000
##   Puzzle                    0.0000000000    0.0034364261 0.0000000000
##   Racing                    0.0000000000    0.0024019215 0.0000000000
##   Role-Playing              0.0047043011    0.0013440860 0.0040322581
##   Shooter                   0.0000000000    0.0061068702 0.0000000000
##   Simulation                0.0000000000    0.0023068051 0.0011534025
##   Sports                    0.0000000000    0.0012787724 0.0046888321
##   Strategy                  0.0014684288    0.0014684288 0.0000000000
##               Publisher
## Genre                   SPS       Square    Square EA  Square Enix
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0156815440
##   Adventure    0.0000000000 0.0000000000 0.0000000000 0.0077760498
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0035377358
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0034502588
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0068728522
##   Racing       0.0000000000 0.0008006405 0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0033602151 0.0006720430 0.0866935484
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0122137405
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.0046136101
##   Sports       0.0004262575 0.0000000000 0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0132158590
##               Publisher
## Genre            SquareSoft          SSI Stainless Games     Starfish
##   Action       0.0000000000 0.0000000000    0.0003015682 0.0003015682
##   Adventure    0.0000000000 0.0000000000    0.0000000000 0.0000000000
##   Fighting     0.0047169811 0.0000000000    0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000    0.0000000000 0.0000000000
##   Platform     0.0000000000 0.0000000000    0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000    0.0000000000 0.0000000000
##   Racing       0.0008006405 0.0000000000    0.0000000000 0.0000000000
##   Role-Playing 0.0255376344 0.0000000000    0.0000000000 0.0033602151
##   Shooter      0.0007633588 0.0000000000    0.0000000000 0.0007633588
##   Simulation   0.0011534025 0.0000000000    0.0000000000 0.0000000000
##   Sports       0.0012787724 0.0000000000    0.0000000000 0.0012787724
##   Strategy     0.0058737151 0.0014684288    0.0000000000 0.0000000000
##               Publisher
## Genre          Starpath Corp.        Sting Storm City Games Strategy First
##   Action         0.0003015682 0.0000000000     0.0003015682   0.0000000000
##   Adventure      0.0000000000 0.0000000000     0.0007776050   0.0000000000
##   Fighting       0.0000000000 0.0000000000     0.0000000000   0.0000000000
##   Misc           0.0000000000 0.0000000000     0.0005750431   0.0000000000
##   Platform       0.0000000000 0.0000000000     0.0011286682   0.0000000000
##   Puzzle         0.0000000000 0.0000000000     0.0120274914   0.0000000000
##   Racing         0.0000000000 0.0000000000     0.0048038431   0.0000000000
##   Role-Playing   0.0000000000 0.0060483871     0.0000000000   0.0000000000
##   Shooter        0.0000000000 0.0000000000     0.0000000000   0.0000000000
##   Simulation     0.0000000000 0.0000000000     0.0000000000   0.0000000000
##   Sports         0.0000000000 0.0000000000     0.0004262575   0.0000000000
##   Strategy       0.0000000000 0.0000000000     0.0014684288   0.0014684288
##               Publisher
## Genre               Success   Summitsoft   Sunflowers Sunrise Interactive
##   Action       0.0003015682 0.0000000000 0.0000000000        0.0003015682
##   Adventure    0.0031104199 0.0000000000 0.0000000000        0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000        0.0011792453
##   Misc         0.0011500863 0.0000000000 0.0000000000        0.0000000000
##   Platform     0.0000000000 0.0000000000 0.0000000000        0.0000000000
##   Puzzle       0.0017182131 0.0000000000 0.0000000000        0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000        0.0008006405
##   Role-Playing 0.0047043011 0.0000000000 0.0000000000        0.0006720430
##   Shooter      0.0007633588 0.0000000000 0.0000000000        0.0000000000
##   Simulation   0.0011534025 0.0000000000 0.0000000000        0.0000000000
##   Sports       0.0000000000 0.0004262575 0.0000000000        0.0000000000
##   Strategy     0.0029368576 0.0000000000 0.0014684288        0.0000000000
##               Publisher
## Genre               Sunsoft       Sweets Swing! Entertainment       Syscom
##   Action       0.0000000000 0.0000000000         0.0003015682 0.0000000000
##   Adventure    0.0015552100 0.0015552100         0.0007776050 0.0000000000
##   Fighting     0.0023584906 0.0000000000         0.0000000000 0.0000000000
##   Misc         0.0005750431 0.0000000000         0.0000000000 0.0005750431
##   Platform     0.0011286682 0.0000000000         0.0011286682 0.0000000000
##   Puzzle       0.0017182131 0.0000000000         0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000         0.0000000000 0.0008006405
##   Role-Playing 0.0013440860 0.0000000000         0.0000000000 0.0000000000
##   Shooter      0.0007633588 0.0000000000         0.0015267176 0.0000000000
##   Simulation   0.0000000000 0.0000000000         0.0011534025 0.0000000000
##   Sports       0.0000000000 0.0000000000         0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000         0.0000000000 0.0000000000
##               Publisher
## Genre              System 3 System 3 Arcade Software  System Soft
##   Action       0.0000000000             0.0000000000 0.0000000000
##   Adventure    0.0000000000             0.0000000000 0.0007776050
##   Fighting     0.0000000000             0.0000000000 0.0000000000
##   Misc         0.0000000000             0.0017251294 0.0000000000
##   Platform     0.0033860045             0.0022573363 0.0000000000
##   Puzzle       0.0000000000             0.0017182131 0.0000000000
##   Racing       0.0000000000             0.0056044836 0.0000000000
##   Role-Playing 0.0000000000             0.0000000000 0.0000000000
##   Shooter      0.0000000000             0.0000000000 0.0000000000
##   Simulation   0.0000000000             0.0000000000 0.0000000000
##   Sports       0.0000000000             0.0004262575 0.0000000000
##   Strategy     0.0000000000             0.0000000000 0.0044052863
##               Publisher
## Genre              T&E Soft        Taito       Takara  Takara Tomy
##   Action       0.0000000000 0.0003015682 0.0009047045 0.0036188179
##   Adventure    0.0000000000 0.0007776050 0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0011792453 0.0047169811 0.0117924528
##   Misc         0.0000000000 0.0017251294 0.0023001725 0.0034502588
##   Platform     0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0032025620 0.0016012810
##   Role-Playing 0.0000000000 0.0013440860 0.0006720430 0.0020161290
##   Shooter      0.0000000000 0.0030534351 0.0000000000 0.0000000000
##   Simulation   0.0000000000 0.0080738178 0.0000000000 0.0000000000
##   Sports       0.0004262575 0.0000000000 0.0000000000 0.0012787724
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0014684288
##               Publisher
## Genre          Take-Two Interactive       Takuyo    TalonSoft     TDK Core
##   Action               0.0280458384 0.0000000000 0.0000000000 0.0006031363
##   Adventure            0.0093312597 0.0007776050 0.0000000000 0.0000000000
##   Fighting             0.0011792453 0.0000000000 0.0000000000 0.0000000000
##   Misc                 0.0155261645 0.0000000000 0.0000000000 0.0011500863
##   Platform             0.0124153499 0.0000000000 0.0000000000 0.0000000000
##   Puzzle               0.0017182131 0.0000000000 0.0000000000 0.0000000000
##   Racing               0.0160128102 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing         0.0040322581 0.0000000000 0.0000000000 0.0000000000
##   Shooter              0.0496183206 0.0000000000 0.0007633588 0.0000000000
##   Simulation           0.0046136101 0.0000000000 0.0000000000 0.0011534025
##   Sports               0.0643648764 0.0000000000 0.0000000000 0.0000000000
##   Strategy             0.0323054332 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre          TDK Mediactive Team17 Software Technos Japan Corporation
##   Action         0.0024125452    0.0000000000              0.0000000000
##   Adventure      0.0015552100    0.0000000000              0.0000000000
##   Fighting       0.0000000000    0.0000000000              0.0000000000
##   Misc           0.0028752156    0.0000000000              0.0000000000
##   Platform       0.0090293454    0.0000000000              0.0000000000
##   Puzzle         0.0000000000    0.0000000000              0.0000000000
##   Racing         0.0048038431    0.0000000000              0.0000000000
##   Role-Playing   0.0000000000    0.0000000000              0.0000000000
##   Shooter        0.0030534351    0.0000000000              0.0000000000
##   Simulation     0.0000000000    0.0000000000              0.0000000000
##   Sports         0.0012787724    0.0000000000              0.0004262575
##   Strategy       0.0000000000    0.0014684288              0.0000000000
##               Publisher
## Genre            TechnoSoft   Tecmo Koei    Telegames Telltale Games
##   Action       0.0000000000 0.0413148372 0.0000000000   0.0006031363
##   Adventure    0.0000000000 0.0132192846 0.0000000000   0.0178849145
##   Fighting     0.0000000000 0.0141509434 0.0000000000   0.0000000000
##   Misc         0.0000000000 0.0080506038 0.0023001725   0.0000000000
##   Platform     0.0000000000 0.0011286682 0.0000000000   0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0034364261   0.0000000000
##   Racing       0.0000000000 0.0040032026 0.0000000000   0.0000000000
##   Role-Playing 0.0000000000 0.0315860215 0.0000000000   0.0000000000
##   Shooter      0.0007633588 0.0022900763 0.0000000000   0.0000000000
##   Simulation   0.0000000000 0.0149942330 0.0011534025   0.0000000000
##   Sports       0.0000000000 0.0166240409 0.0000000000   0.0000000000
##   Strategy     0.0000000000 0.0734214391 0.0014684288   0.0000000000
##               Publisher
## Genre               Telstar Tetris Online          TGL
##   Action       0.0003015682  0.0000000000 0.0000000000
##   Adventure    0.0000000000  0.0000000000 0.0031104199
##   Fighting     0.0000000000  0.0000000000 0.0000000000
##   Misc         0.0000000000  0.0000000000 0.0000000000
##   Platform     0.0000000000  0.0000000000 0.0000000000
##   Puzzle       0.0000000000  0.0017182131 0.0000000000
##   Racing       0.0008006405  0.0000000000 0.0000000000
##   Role-Playing 0.0000000000  0.0000000000 0.0000000000
##   Shooter      0.0007633588  0.0000000000 0.0000000000
##   Simulation   0.0000000000  0.0000000000 0.0000000000
##   Sports       0.0000000000  0.0000000000 0.0000000000
##   Strategy     0.0000000000  0.0000000000 0.0000000000
##               Publisher
## Genre          The Adventure Company The Learning Company          THQ
##   Action                0.0000000000         0.0000000000 0.0585042220
##   Adventure             0.0023328149         0.0000000000 0.0365474339
##   Fighting              0.0000000000         0.0000000000 0.0837264151
##   Misc                  0.0000000000         0.0000000000 0.0379528465
##   Platform              0.0000000000         0.0000000000 0.0959367946
##   Puzzle                0.0034364261         0.0000000000 0.0292096220
##   Racing                0.0000000000         0.0008006405 0.0808646918
##   Role-Playing          0.0000000000         0.0000000000 0.0053763441
##   Shooter               0.0000000000         0.0000000000 0.0274809160
##   Simulation            0.0000000000         0.0000000000 0.0311418685
##   Sports                0.0000000000         0.0000000000 0.0132139812
##   Strategy              0.0000000000         0.0000000000 0.0469897210
##               Publisher
## Genre           Tigervision Time Warner Interactive        Titus
##   Action       0.0009047045            0.0000000000 0.0012062726
##   Adventure    0.0000000000            0.0000000000 0.0000000000
##   Fighting     0.0000000000            0.0011792453 0.0035377358
##   Misc         0.0000000000            0.0000000000 0.0005750431
##   Platform     0.0000000000            0.0000000000 0.0011286682
##   Puzzle       0.0000000000            0.0000000000 0.0000000000
##   Racing       0.0000000000            0.0000000000 0.0032025620
##   Role-Playing 0.0000000000            0.0000000000 0.0006720430
##   Shooter      0.0000000000            0.0007633588 0.0015267176
##   Simulation   0.0000000000            0.0000000000 0.0023068051
##   Sports       0.0000000000            0.0008525149 0.0000000000
##   Strategy     0.0000000000            0.0014684288 0.0014684288
##               Publisher
## Genre                Tivola         TOHO        Tommo Tomy Corporation
##   Action       0.0000000000 0.0000000000 0.0000000000     0.0006031363
##   Adventure    0.0000000000 0.0000000000 0.0000000000     0.0000000000
##   Fighting     0.0000000000 0.0000000000 0.0000000000     0.0117924528
##   Misc         0.0017251294 0.0000000000 0.0017251294     0.0005750431
##   Platform     0.0000000000 0.0000000000 0.0000000000     0.0000000000
##   Puzzle       0.0000000000 0.0000000000 0.0000000000     0.0000000000
##   Racing       0.0000000000 0.0000000000 0.0000000000     0.0008006405
##   Role-Playing 0.0000000000 0.0006720430 0.0000000000     0.0020161290
##   Shooter      0.0000000000 0.0000000000 0.0007633588     0.0000000000
##   Simulation   0.0000000000 0.0000000000 0.0000000000     0.0011534025
##   Sports       0.0000000000 0.0000000000 0.0004262575     0.0000000000
##   Strategy     0.0000000000 0.0000000000 0.0000000000     0.0000000000
##               Publisher
## Genre          TopWare Interactive   Touchstone    Tradewest Trion Worlds
##   Action              0.0000000000 0.0009047045 0.0000000000 0.0000000000
##   Adventure           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Fighting            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Misc                0.0017251294 0.0000000000 0.0000000000 0.0000000000
##   Platform            0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Role-Playing        0.0006720430 0.0000000000 0.0000000000 0.0000000000
##   Shooter             0.0000000000 0.0000000000 0.0000000000 0.0022900763
##   Simulation          0.0000000000 0.0011534025 0.0000000000 0.0000000000
##   Sports              0.0000000000 0.0000000000 0.0012787724 0.0000000000
##   Strategy            0.0000000000 0.0000000000 0.0000000000 0.0014684288
##               Publisher
## Genre          Tripwire Interactive Tru Blu Entertainment     Tryfirst
##   Action               0.0000000000          0.0012062726 0.0000000000
##   Adventure            0.0000000000          0.0000000000 0.0000000000
##   Fighting             0.0000000000          0.0000000000 0.0011792453
##   Misc                 0.0000000000          0.0000000000 0.0000000000
##   Platform             0.0000000000          0.0000000000 0.0000000000
##   Puzzle               0.0000000000          0.0000000000 0.0000000000
##   Racing               0.0000000000          0.0000000000 0.0000000000
##   Role-Playing         0.0000000000          0.0000000000 0.0000000000
##   Shooter              0.0007633588          0.0000000000 0.0000000000
##   Simulation           0.0000000000          0.0000000000 0.0000000000
##   Sports               0.0000000000          0.0017050298 0.0000000000
##   Strategy             0.0000000000          0.0000000000 0.0000000000
##               Publisher
## Genre                   TYO    Type-Moon    U.S. Gold      Ubisoft
##   Action       0.0000000000 0.0000000000 0.0000000000 0.0582026538
##   Adventure    0.0000000000 0.0007776050 0.0000000000 0.0458786936
##   Fighting     0.0000000000 0.0000000000 0.0000000000 0.0224056604
##   Misc         0.0000000000 0.0000000000 0.0000000000 0.0868315124
##   Platform     0.0000000000 0.0000000000 0.0011286682 0.0790067720
##   Puzzle       0.0000000000 0.0000000000 0.0000000000 0.0412371134
##   Racing       0.0008006405 0.0000000000 0.0000000000 0.0416333066
##   Role-Playing 0.0000000000 0.0000000000 0.0000000000 0.0275537634
##   Shooter      0.0000000000 0.0000000000 0.0000000000 0.0702290076
##   Simulation   0.0000000000 0.0000000000 0.0000000000 0.1372549020
##   Sports       0.0000000000 0.0000000000 0.0012787724 0.0306905371
##   Strategy     0.0000000000 0.0000000000 0.0000000000 0.0425844347
##               Publisher
## Genre          Ubisoft Annecy  UEP Systems UFO Interactive
##   Action         0.0030156815 0.0000000000    0.0003015682
##   Adventure      0.0000000000 0.0000000000    0.0000000000
##   Fighting       0.0023584906 0.0000000000    0.0000000000
##   Misc           0.0005750431 0.0000000000    0.0046003450
##   Platform       0.0000000000 0.0000000000    0.0000000000
##   Puzzle         0.0000000000 0.0000000000    0.0068728522
##   Racing         0.0000000000 0.0000000000    0.0000000000
##   Role-Playing   0.0006720430 0.0000000000    0.0000000000
##   Shooter        0.0000000000 0.0000000000    0.0007633588
##   Simulation     0.0000000000 0.0000000000    0.0000000000
##   Sports         0.0000000000 0.0004262575    0.0008525149
##   Strategy       0.0000000000 0.0000000000    0.0000000000
##               Publisher
## Genre          UIG Entertainment  Ultravision Universal Gamex
##   Action            0.0000000000 0.0000000000    0.0003015682
##   Adventure         0.0000000000 0.0000000000    0.0000000000
##   Fighting          0.0000000000 0.0011792453    0.0000000000
##   Misc              0.0000000000 0.0000000000    0.0000000000
##   Platform          0.0000000000 0.0000000000    0.0000000000
##   Puzzle            0.0000000000 0.0000000000    0.0000000000
##   Racing            0.0000000000 0.0000000000    0.0000000000
##   Role-Playing      0.0000000000 0.0000000000    0.0000000000
##   Shooter           0.0000000000 0.0000000000    0.0000000000
##   Simulation        0.0011534025 0.0000000000    0.0000000000
##   Sports            0.0000000000 0.0000000000    0.0000000000
##   Strategy          0.0000000000 0.0000000000    0.0000000000
##               Publisher
## Genre          Universal Interactive      Unknown Valcon Games
##   Action                0.0027141134 0.0084439083 0.0000000000
##   Adventure             0.0000000000 0.0132192846 0.0007776050
##   Fighting              0.0011792453 0.0070754717 0.0000000000
##   Misc                  0.0005750431 0.0178263370 0.0000000000
##   Platform              0.0079006772 0.0112866817 0.0000000000
##   Puzzle                0.0000000000 0.0292096220 0.0000000000
##   Racing                0.0000000000 0.0104083267 0.0024019215
##   Role-Playing          0.0000000000 0.0147849462 0.0000000000
##   Shooter               0.0030534351 0.0099236641 0.0007633588
##   Simulation            0.0000000000 0.0149942330 0.0011534025
##   Sports                0.0004262575 0.0110826939 0.0008525149
##   Strategy              0.0000000000 0.0102790015 0.0000000000
##               Publisher
## Genre              ValuSoft        Valve Valve Software          Vap
##   Action       0.0000000000 0.0000000000   0.0000000000 0.0000000000
##   Adventure    0.0007776050 0.0000000000   0.0000000000 0.0000000000
##   Fighting     0.0000000000 0.0000000000   0.0000000000 0.0000000000
##   Misc         0.0000000000 0.0000000000   0.0000000000 0.0005750431
##   Platform     0.0000000000 0.0000000000   0.0000000000 0.0000000000
##   Puzzle       0.0034364261 0.0000000000   0.0000000000 0.0000000000
##   Racing       0.0008006405 0.0000000000   0.0000000000 0.0000000000
##   Role-Playing 0.0000000000 0.0000000000   0.0000000000 0.0000000000
##   Shooter      0.0000000000 0.0007633588   0.0022900763 0.0000000000
##   Simulation   0.0000000000 0.0000000000   0.0000000000 0.0000000000
##   Sports       0.0000000000 0.0000000000   0.0000000000 0.0000000000
##   Strategy     0.0000000000 0.0000000000   0.0000000000 0.0000000000
##               Publisher
## Genre          Vatical Entertainment    Vic Tokai Victor Interactive
##   Action                0.0000000000 0.0000000000       0.0000000000
##   Adventure             0.0000000000 0.0000000000       0.0007776050
##   Fighting              0.0000000000 0.0023584906       0.0000000000
##   Misc                  0.0000000000 0.0000000000       0.0005750431
##   Platform              0.0000000000 0.0000000000       0.0000000000
##   Puzzle                0.0000000000 0.0000000000       0.0000000000
##   Racing                0.0016012810 0.0000000000       0.0000000000
##   Role-Playing          0.0000000000 0.0000000000       0.0006720430
##   Shooter               0.0000000000 0.0000000000       0.0000000000
##   Simulation            0.0000000000 0.0000000000       0.0023068051
##   Sports                0.0000000000 0.0000000000       0.0017050298
##   Strategy              0.0000000000 0.0000000000       0.0000000000
##               Publisher
## Genre          Video System        Views Vir2L Studios Virgin Interactive
##   Action       0.0003015682 0.0003015682  0.0003015682       0.0036188179
##   Adventure    0.0000000000 0.0007776050  0.0000000000       0.0007776050
##   Fighting     0.0000000000 0.0000000000  0.0000000000       0.0224056604
##   Misc         0.0000000000 0.0000000000  0.0000000000       0.0005750431
##   Platform     0.0000000000 0.0000000000  0.0000000000       0.0067720090
##   Puzzle       0.0000000000 0.0000000000  0.0000000000       0.0034364261
##   Racing       0.0024019215 0.0000000000  0.0008006405       0.0008006405
##   Role-Playing 0.0000000000 0.0000000000  0.0000000000       0.0020161290
##   Shooter      0.0000000000 0.0000000000  0.0000000000       0.0053435115
##   Simulation   0.0000000000 0.0000000000  0.0000000000       0.0023068051
##   Sports       0.0000000000 0.0000000000  0.0004262575       0.0008525149
##   Strategy     0.0000000000 0.0000000000  0.0000000000       0.0088105727
##               Publisher
## Genre          Virtual Play Games        Visco Vivendi Games      Wanadoo
##   Action             0.0000000000 0.0000000000  0.0138721351 0.0006031363
##   Adventure          0.0000000000 0.0000000000  0.0054432348 0.0000000000
##   Fighting           0.0000000000 0.0000000000  0.0047169811 0.0000000000
##   Misc               0.0005750431 0.0000000000  0.0046003450 0.0000000000
##   Platform           0.0000000000 0.0000000000  0.0417607223 0.0022573363
##   Puzzle             0.0000000000 0.0000000000  0.0034364261 0.0000000000
##   Racing             0.0000000000 0.0000000000  0.0112089672 0.0008006405
##   Role-Playing       0.0000000000 0.0000000000  0.0006720430 0.0000000000
##   Shooter            0.0000000000 0.0007633588  0.0229007634 0.0000000000
##   Simulation         0.0000000000 0.0000000000  0.0011534025 0.0000000000
##   Sports             0.0004262575 0.0000000000  0.0008525149 0.0000000000
##   Strategy           0.0000000000 0.0000000000  0.0176211454 0.0000000000
##               Publisher
## Genre               Warashi Wargaming.net
##   Action       0.0000000000  0.0000000000
##   Adventure    0.0000000000  0.0000000000
##   Fighting     0.0000000000  0.0000000000
##   Misc         0.0000000000  0.0000000000
##   Platform     0.0000000000  0.0000000000
##   Puzzle       0.0000000000  0.0000000000
##   Racing       0.0000000000  0.0000000000
##   Role-Playing 0.0000000000  0.0000000000
##   Shooter      0.0007633588  0.0007633588
##   Simulation   0.0000000000  0.0000000000
##   Sports       0.0000000000  0.0000000000
##   Strategy     0.0000000000  0.0000000000
##               Publisher
## Genre          Warner Bros. Interactive Entertainment         Warp
##   Action                                 0.0497587455 0.0000000000
##   Adventure                              0.0023328149 0.0007776050
##   Fighting                               0.0129716981 0.0000000000
##   Misc                                   0.0126509488 0.0000000000
##   Platform                               0.0090293454 0.0000000000
##   Puzzle                                 0.0137457045 0.0000000000
##   Racing                                 0.0024019215 0.0000000000
##   Role-Playing                           0.0000000000 0.0000000000
##   Shooter                                0.0076335878 0.0000000000
##   Simulation                             0.0000000000 0.0000000000
##   Sports                                 0.0000000000 0.0000000000
##   Strategy                               0.0029368576 0.0000000000
##               Publisher
## Genre          WayForward Technologies Westwood Studios
##   Action                  0.0000000000     0.0000000000
##   Adventure               0.0007776050     0.0000000000
##   Fighting                0.0000000000     0.0000000000
##   Misc                    0.0000000000     0.0000000000
##   Platform                0.0000000000     0.0000000000
##   Puzzle                  0.0000000000     0.0000000000
##   Racing                  0.0000000000     0.0000000000
##   Role-Playing            0.0000000000     0.0000000000
##   Shooter                 0.0000000000     0.0000000000
##   Simulation              0.0000000000     0.0000000000
##   Sports                  0.0000000000     0.0000000000
##   Strategy                0.0000000000     0.0014684288
##               Publisher
## Genre          White Park Bay Software Wizard Video Games
##   Action                  0.0000000000       0.0003015682
##   Adventure               0.0000000000       0.0000000000
##   Fighting                0.0000000000       0.0000000000
##   Misc                    0.0000000000       0.0000000000
##   Platform                0.0000000000       0.0000000000
##   Puzzle                  0.0017182131       0.0000000000
##   Racing                  0.0000000000       0.0000000000
##   Role-Playing            0.0000000000       0.0000000000
##   Shooter                 0.0000000000       0.0000000000
##   Simulation              0.0000000000       0.0000000000
##   Sports                  0.0000000000       0.0000000000
##   Strategy                0.0000000000       0.0000000000
##               Publisher
## Genre          Xicat Interactive Xing Entertainment      Xplosiv
##   Action            0.0000000000       0.0000000000 0.0000000000
##   Adventure         0.0000000000       0.0000000000 0.0000000000
##   Fighting          0.0000000000       0.0011792453 0.0000000000
##   Misc              0.0000000000       0.0000000000 0.0017251294
##   Platform          0.0000000000       0.0000000000 0.0000000000
##   Puzzle            0.0000000000       0.0000000000 0.0034364261
##   Racing            0.0008006405       0.0000000000 0.0040032026
##   Role-Playing      0.0006720430       0.0000000000 0.0000000000
##   Shooter           0.0000000000       0.0000000000 0.0000000000
##   Simulation        0.0000000000       0.0000000000 0.0000000000
##   Sports            0.0004262575       0.0000000000 0.0000000000
##   Strategy          0.0000000000       0.0000000000 0.0000000000
##               Publisher
## Genre              XS Games  Xseed Games Yacht Club Games
##   Action       0.0000000000 0.0003015682     0.0000000000
##   Adventure    0.0000000000 0.0000000000     0.0000000000
##   Fighting     0.0000000000 0.0000000000     0.0000000000
##   Misc         0.0011500863 0.0000000000     0.0000000000
##   Platform     0.0000000000 0.0000000000     0.0033860045
##   Puzzle       0.0000000000 0.0000000000     0.0000000000
##   Racing       0.0040032026 0.0000000000     0.0000000000
##   Role-Playing 0.0000000000 0.0013440860     0.0000000000
##   Shooter      0.0000000000 0.0007633588     0.0000000000
##   Simulation   0.0000000000 0.0000000000     0.0000000000
##   Sports       0.0021312873 0.0000000000     0.0000000000
##   Strategy     0.0000000000 0.0000000000     0.0000000000
##               Publisher
## Genre          Yamasa Entertainment         Yeti       Yuke's      Yumedia
##   Action               0.0000000000 0.0003015682 0.0000000000 0.0000000000
##   Adventure            0.0000000000 0.0069984448 0.0000000000 0.0007776050
##   Fighting             0.0000000000 0.0011792453 0.0023584906 0.0000000000
##   Misc                 0.0011500863 0.0000000000 0.0000000000 0.0000000000
##   Platform             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Puzzle               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Racing               0.0000000000 0.0000000000 0.0008006405 0.0000000000
##   Role-Playing         0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Shooter              0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Simulation           0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Sports               0.0000000000 0.0000000000 0.0000000000 0.0000000000
##   Strategy             0.0000000000 0.0000000000 0.0000000000 0.0000000000
##               Publisher
## Genre                Zenrin Zoo Digital Publishing    Zoo Games
##   Action       0.0000000000           0.0024125452 0.0009047045
##   Adventure    0.0000000000           0.0054432348 0.0007776050
##   Fighting     0.0000000000           0.0035377358 0.0000000000
##   Misc         0.0011500863           0.0103507763 0.0063254744
##   Platform     0.0000000000           0.0022573363 0.0000000000
##   Puzzle       0.0000000000           0.0240549828 0.0051546392
##   Racing       0.0000000000           0.0208166533 0.0048038431
##   Role-Playing 0.0000000000           0.0000000000 0.0000000000
##   Shooter      0.0000000000           0.0061068702 0.0030534351
##   Simulation   0.0000000000           0.0011534025 0.0011534025
##   Sports       0.0000000000           0.0068201194 0.0017050298
##   Strategy     0.0000000000           0.0014684288 0.0000000000
##               Publisher
## Genre           Zushi Games
##   Action       0.0003015682
##   Adventure    0.0007776050
##   Fighting     0.0000000000
##   Misc         0.0005750431
##   Platform     0.0000000000
##   Puzzle       0.0034364261
##   Racing       0.0024019215
##   Role-Playing 0.0006720430
##   Shooter      0.0015267176
##   Simulation   0.0023068051
##   Sports       0.0012787724
##   Strategy     0.0029368576
prop.table(myTable,2)
##               Publisher
## Genre          10TACLE Studios  1C Company 20th Century Fox Video Games
##   Action           0.000000000 0.000000000                  0.800000000
##   Adventure        0.333333333 0.000000000                  0.000000000
##   Fighting         0.000000000 0.000000000                  0.000000000
##   Misc             0.000000000 0.000000000                  0.000000000
##   Platform         0.000000000 0.000000000                  0.000000000
##   Puzzle           0.333333333 0.000000000                  0.000000000
##   Racing           0.000000000 0.333333333                  0.000000000
##   Role-Playing     0.000000000 0.333333333                  0.000000000
##   Shooter          0.000000000 0.000000000                  0.200000000
##   Simulation       0.000000000 0.000000000                  0.000000000
##   Sports           0.000000000 0.000000000                  0.000000000
##   Strategy         0.333333333 0.333333333                  0.000000000
##               Publisher
## Genre               2D Boy         3DO     49Games   505 Games         5pb
##   Action       0.000000000 0.472222222 0.000000000 0.109375000 0.081967213
##   Adventure    0.000000000 0.083333333 0.000000000 0.036458333 0.803278689
##   Fighting     0.000000000 0.027777778 0.000000000 0.057291667 0.016393443
##   Misc         0.000000000 0.000000000 0.000000000 0.161458333 0.000000000
##   Platform     0.000000000 0.027777778 0.000000000 0.031250000 0.000000000
##   Puzzle       1.000000000 0.027777778 0.000000000 0.078125000 0.000000000
##   Racing       0.000000000 0.000000000 0.000000000 0.010416667 0.000000000
##   Role-Playing 0.000000000 0.027777778 0.000000000 0.052083333 0.016393443
##   Shooter      0.000000000 0.138888889 0.000000000 0.093750000 0.049180328
##   Simulation   0.000000000 0.000000000 0.000000000 0.213541667 0.032786885
##   Sports       0.000000000 0.166666667 1.000000000 0.140625000 0.000000000
##   Strategy     0.000000000 0.027777778 0.000000000 0.015625000 0.000000000
##               Publisher
## Genre             7G//AMES  989 Sports 989 Studios    Abylight
##   Action       0.000000000 0.000000000 0.142857143 1.000000000
##   Adventure    0.000000000 0.000000000 0.000000000 0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000 0.000000000
##   Misc         0.250000000 0.000000000 0.000000000 0.000000000
##   Platform     0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle       0.250000000 0.000000000 0.000000000 0.000000000
##   Racing       0.000000000 0.000000000 0.214285714 0.000000000
##   Role-Playing 0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter      0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation   0.500000000 0.000000000 0.000000000 0.000000000
##   Sports       0.000000000 1.000000000 0.642857143 0.000000000
##   Strategy     0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Acclaim Entertainment    Accolade Ackkstudios     Acquire
##   Action                 0.076086957 0.000000000 0.400000000 0.153846154
##   Adventure              0.021739130 0.000000000 0.100000000 0.153846154
##   Fighting               0.168478261 0.000000000 0.000000000 0.000000000
##   Misc                   0.027173913 0.000000000 0.000000000 0.000000000
##   Platform               0.027173913 0.333333333 0.000000000 0.000000000
##   Puzzle                 0.048913043 0.000000000 0.000000000 0.000000000
##   Racing                 0.239130435 0.333333333 0.000000000 0.000000000
##   Role-Playing           0.005434783 0.000000000 0.200000000 0.615384615
##   Shooter                0.092391304 0.000000000 0.000000000 0.000000000
##   Simulation             0.000000000 0.000000000 0.000000000 0.000000000
##   Sports                 0.282608696 0.333333333 0.200000000 0.000000000
##   Strategy               0.010869565 0.000000000 0.100000000 0.076923077
##               Publisher
## Genre           Activision Activision Blizzard Activision Value
##   Action       0.317948718         1.000000000      0.034482759
##   Adventure    0.025641026         0.000000000      0.000000000
##   Fighting     0.007179487         0.000000000      0.000000000
##   Misc         0.105641026         0.000000000      0.034482759
##   Platform     0.061538462         0.000000000      0.000000000
##   Puzzle       0.007179487         0.000000000      0.000000000
##   Racing       0.075897436         0.000000000      0.000000000
##   Role-Playing 0.042051282         0.000000000      0.000000000
##   Shooter      0.163076923         0.000000000      0.137931034
##   Simulation   0.023589744         0.000000000      0.000000000
##   Sports       0.147692308         0.000000000      0.758620690
##   Strategy     0.022564103         0.000000000      0.034482759
##               Publisher
## Genre          Adeline Software    Aerosoft Agatsuma Entertainment
##   Action            1.000000000 0.000000000            0.333333333
##   Adventure         0.000000000 0.000000000            0.000000000
##   Fighting          0.000000000 0.000000000            0.000000000
##   Misc              0.000000000 0.000000000            0.333333333
##   Platform          0.000000000 0.000000000            0.333333333
##   Puzzle            0.000000000 0.000000000            0.000000000
##   Racing            0.000000000 0.000000000            0.000000000
##   Role-Playing      0.000000000 0.000000000            0.000000000
##   Shooter           0.000000000 0.000000000            0.000000000
##   Simulation        0.000000000 1.000000000            0.000000000
##   Sports            0.000000000 0.000000000            0.000000000
##   Strategy          0.000000000 0.000000000            0.000000000
##               Publisher
## Genre               Agetec Aksys Games Alawar Entertainment   Alchemist
##   Action       0.250000000 0.125000000          0.500000000 0.069767442
##   Adventure    0.000000000 0.375000000          0.000000000 0.744186047
##   Fighting     0.125000000 0.000000000          0.000000000 0.000000000
##   Misc         0.125000000 0.000000000          0.000000000 0.093023256
##   Platform     0.000000000 0.000000000          0.000000000 0.000000000
##   Puzzle       0.000000000 0.000000000          0.000000000 0.000000000
##   Racing       0.125000000 0.000000000          0.000000000 0.000000000
##   Role-Playing 0.000000000 0.500000000          0.000000000 0.023255814
##   Shooter      0.000000000 0.000000000          0.000000000 0.069767442
##   Simulation   0.125000000 0.000000000          0.000000000 0.000000000
##   Sports       0.125000000 0.000000000          0.000000000 0.000000000
##   Strategy     0.125000000 0.000000000          0.500000000 0.000000000
##               Publisher
## Genre          Alternative Software      Altron      Alvion
##   Action                0.166666667 0.000000000 0.000000000
##   Adventure             0.000000000 0.000000000 0.000000000
##   Fighting              0.000000000 0.000000000 0.000000000
##   Misc                  0.000000000 0.000000000 1.000000000
##   Platform              0.000000000 0.000000000 0.000000000
##   Puzzle                0.000000000 0.000000000 0.000000000
##   Racing                0.000000000 0.000000000 0.000000000
##   Role-Playing          0.000000000 0.000000000 0.000000000
##   Shooter               0.000000000 1.000000000 0.000000000
##   Simulation            0.000000000 0.000000000 0.000000000
##   Sports                0.833333333 0.000000000 0.000000000
##   Strategy              0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          American Softworks Angel Studios Answer Software
##   Action              1.000000000   0.000000000     1.000000000
##   Adventure           0.000000000   0.000000000     0.000000000
##   Fighting            0.000000000   0.333333333     0.000000000
##   Misc                0.000000000   0.000000000     0.000000000
##   Platform            0.000000000   0.000000000     0.000000000
##   Puzzle              0.000000000   0.000000000     0.000000000
##   Racing              0.000000000   0.000000000     0.000000000
##   Role-Playing        0.000000000   0.333333333     0.000000000
##   Shooter             0.000000000   0.000000000     0.000000000
##   Simulation          0.000000000   0.000000000     0.000000000
##   Sports              0.000000000   0.000000000     0.000000000
##   Strategy            0.000000000   0.333333333     0.000000000
##               Publisher
## Genre          AQ Interactive   Aqua Plus       Aques Arc System Works
##   Action          0.000000000 0.000000000 0.000000000      0.115384615
##   Adventure       0.000000000 0.565217391 0.000000000      0.384615385
##   Fighting        0.400000000 0.043478261 0.000000000      0.269230769
##   Misc            0.600000000 0.217391304 0.000000000      0.038461538
##   Platform        0.000000000 0.000000000 0.000000000      0.000000000
##   Puzzle          0.000000000 0.000000000 0.000000000      0.000000000
##   Racing          0.000000000 0.000000000 0.000000000      0.000000000
##   Role-Playing    0.000000000 0.086956522 0.000000000      0.038461538
##   Shooter         0.000000000 0.000000000 0.000000000      0.000000000
##   Simulation      0.000000000 0.000000000 0.000000000      0.000000000
##   Sports          0.000000000 0.000000000 1.000000000      0.153846154
##   Strategy        0.000000000 0.086956522 0.000000000      0.000000000
##               Publisher
## Genre          Arena Entertainment        Aria       Arika     ArtDink
##   Action               0.000000000 0.000000000 0.000000000 0.000000000
##   Adventure            0.000000000 1.000000000 0.000000000 0.000000000
##   Fighting             0.500000000 0.000000000 0.000000000 0.000000000
##   Misc                 0.000000000 0.000000000 0.333333333 0.000000000
##   Platform             0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle               0.000000000 0.000000000 0.000000000 0.000000000
##   Racing               0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing         0.000000000 0.000000000 0.333333333 0.333333333
##   Shooter              0.000000000 0.000000000 0.333333333 0.000000000
##   Simulation           0.000000000 0.000000000 0.000000000 0.333333333
##   Sports               0.500000000 0.000000000 0.000000000 0.000000000
##   Strategy             0.000000000 0.000000000 0.000000000 0.333333333
##               Publisher
## Genre           Aruze Corp   ASC Games Ascaron Entertainment
##   Action       0.000000000 0.333333333           0.000000000
##   Adventure    0.000000000 0.000000000           0.000000000
##   Fighting     0.000000000 0.000000000           0.000000000
##   Misc         1.000000000 0.000000000           0.000000000
##   Platform     0.000000000 0.000000000           0.000000000
##   Puzzle       0.000000000 0.000000000           0.000000000
##   Racing       0.000000000 0.333333333           0.000000000
##   Role-Playing 0.000000000 0.000000000           0.000000000
##   Shooter      0.000000000 0.000000000           0.000000000
##   Simulation   0.000000000 0.000000000           0.000000000
##   Sports       0.000000000 0.333333333           0.000000000
##   Strategy     0.000000000 0.000000000           1.000000000
##               Publisher
## Genre          Ascaron Entertainment GmbH ASCII Entertainment
##   Action                      0.000000000         0.000000000
##   Adventure                   0.000000000         0.100000000
##   Fighting                    0.000000000         0.000000000
##   Misc                        0.000000000         0.100000000
##   Platform                    0.000000000         0.000000000
##   Puzzle                      0.000000000         0.000000000
##   Racing                      0.000000000         0.150000000
##   Role-Playing                0.333333333         0.150000000
##   Shooter                     0.000000000         0.000000000
##   Simulation                  0.000000000         0.050000000
##   Sports                      0.000000000         0.400000000
##   Strategy                    0.666666667         0.050000000
##               Publisher
## Genre          ASCII Media Works      Asgard         ASK
##   Action             0.000000000 0.250000000 0.000000000
##   Adventure          0.777777778 0.000000000 0.000000000
##   Fighting           0.000000000 0.000000000 0.000000000
##   Misc               0.000000000 0.750000000 1.000000000
##   Platform           0.000000000 0.000000000 0.000000000
##   Puzzle             0.000000000 0.000000000 0.000000000
##   Racing             0.000000000 0.000000000 0.000000000
##   Role-Playing       0.222222222 0.000000000 0.000000000
##   Shooter            0.000000000 0.000000000 0.000000000
##   Simulation         0.000000000 0.000000000 0.000000000
##   Sports             0.000000000 0.000000000 0.000000000
##   Strategy           0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Asmik Ace Entertainment  Asmik Corp       Aspyr    Astragon
##   Action                   0.000000000 0.000000000 0.000000000 0.166666667
##   Adventure                0.333333333 0.000000000 0.125000000 0.333333333
##   Fighting                 0.333333333 0.000000000 0.000000000 0.000000000
##   Misc                     0.000000000 0.000000000 0.375000000 0.000000000
##   Platform                 0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle                   0.000000000 0.000000000 0.000000000 0.333333333
##   Racing                   0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing             0.000000000 0.000000000 0.125000000 0.000000000
##   Shooter                  0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation               0.333333333 0.000000000 0.125000000 0.166666667
##   Sports                   0.000000000 1.000000000 0.250000000 0.000000000
##   Strategy                 0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Asylum Entertainment       Atari      Athena       Atlus
##   Action                0.000000000 0.148760331 0.000000000 0.044776119
##   Adventure             0.500000000 0.046831956 0.500000000 0.014925373
##   Fighting              0.000000000 0.101928375 0.000000000 0.074626866
##   Misc                  0.000000000 0.071625344 0.000000000 0.014925373
##   Platform              0.166666667 0.057851240 0.000000000 0.014925373
##   Puzzle                0.000000000 0.060606061 0.000000000 0.000000000
##   Racing                0.000000000 0.099173554 0.000000000 0.014925373
##   Role-Playing          0.000000000 0.077134986 0.000000000 0.686567164
##   Shooter               0.000000000 0.110192837 0.000000000 0.029850746
##   Simulation            0.333333333 0.024793388 0.000000000 0.014925373
##   Sports                0.000000000 0.154269972 0.500000000 0.059701493
##   Strategy              0.000000000 0.046831956 0.000000000 0.029850746
##               Publisher
## Genre          Avalon Interactive   Avanquest Avanquest Software
##   Action              0.166666667 0.153846154        0.444444444
##   Adventure           0.000000000 0.038461538        0.333333333
##   Fighting            0.000000000 0.000000000        0.000000000
##   Misc                0.000000000 0.115384615        0.222222222
##   Platform            0.000000000 0.000000000        0.000000000
##   Puzzle              0.000000000 0.538461538        0.000000000
##   Racing              0.166666667 0.000000000        0.000000000
##   Role-Playing        0.333333333 0.000000000        0.000000000
##   Shooter             0.166666667 0.000000000        0.000000000
##   Simulation          0.166666667 0.076923077        0.000000000
##   Sports              0.000000000 0.076923077        0.000000000
##   Strategy            0.000000000 0.000000000        0.000000000
##               Publisher
## Genre                Axela BAM! Entertainment   Banpresto     Benesse
##   Action       0.000000000        0.257142857 0.054794521 0.000000000
##   Adventure    0.000000000        0.085714286 0.082191781 0.000000000
##   Fighting     0.000000000        0.028571429 0.082191781 0.000000000
##   Misc         0.000000000        0.028571429 0.013698630 1.000000000
##   Platform     0.000000000        0.114285714 0.013698630 0.000000000
##   Puzzle       0.000000000        0.000000000 0.027397260 0.000000000
##   Racing       0.000000000        0.200000000 0.013698630 0.000000000
##   Role-Playing 0.000000000        0.000000000 0.232876712 0.000000000
##   Shooter      0.000000000        0.228571429 0.013698630 0.000000000
##   Simulation   0.000000000        0.000000000 0.041095890 0.000000000
##   Sports       1.000000000        0.057142857 0.041095890 0.000000000
##   Strategy     0.000000000        0.000000000 0.383561644 0.000000000
##               Publisher
## Genre             Berkeley Bethesda Softworks Big Ben Interactive
##   Action       1.000000000        0.239436620         0.000000000
##   Adventure    0.000000000        0.000000000         0.142857143
##   Fighting     0.000000000        0.000000000         0.000000000
##   Misc         0.000000000        0.000000000         0.000000000
##   Platform     0.000000000        0.000000000         0.142857143
##   Puzzle       0.000000000        0.000000000         0.000000000
##   Racing       0.000000000        0.098591549         0.285714286
##   Role-Playing 0.000000000        0.239436620         0.000000000
##   Shooter      0.000000000        0.295774648         0.142857143
##   Simulation   0.000000000        0.028169014         0.000000000
##   Sports       0.000000000        0.070422535         0.285714286
##   Strategy     0.000000000        0.028169014         0.000000000
##               Publisher
## Genre          Big Fish Games Bigben Interactive bitComposer Games
##   Action          0.500000000        0.000000000       0.000000000
##   Adventure       0.500000000        0.000000000       0.000000000
##   Fighting        0.000000000        0.000000000       0.000000000
##   Misc            0.000000000        0.000000000       0.000000000
##   Platform        0.000000000        0.000000000       0.000000000
##   Puzzle          0.000000000        0.000000000       0.000000000
##   Racing          0.000000000        0.000000000       0.200000000
##   Role-Playing    0.000000000        0.000000000       0.000000000
##   Shooter         0.000000000        0.000000000       0.000000000
##   Simulation      0.000000000        0.000000000       0.800000000
##   Sports          0.000000000        1.000000000       0.000000000
##   Strategy        0.000000000        0.000000000       0.000000000
##               Publisher
## Genre          Black Bean Games Black Label Games Blast! Entertainment Ltd
##   Action            0.029411765       1.000000000              0.333333333
##   Adventure         0.000000000       0.000000000              0.333333333
##   Fighting          0.000000000       0.000000000              0.000000000
##   Misc              0.147058824       0.000000000              0.000000000
##   Platform          0.000000000       0.000000000              0.000000000
##   Puzzle            0.000000000       0.000000000              0.000000000
##   Racing            0.558823529       0.000000000              0.000000000
##   Role-Playing      0.000000000       0.000000000              0.000000000
##   Shooter           0.000000000       0.000000000              0.000000000
##   Simulation        0.000000000       0.000000000              0.000000000
##   Sports            0.235294118       0.000000000              0.333333333
##   Strategy          0.029411765       0.000000000              0.000000000
##               Publisher
## Genre            Blue Byte BMG Interactive Entertainment
##   Action       0.000000000                   0.000000000
##   Adventure    0.000000000                   0.000000000
##   Fighting     0.000000000                   0.000000000
##   Misc         0.000000000                   0.000000000
##   Platform     0.000000000                   0.428571429
##   Puzzle       0.000000000                   0.000000000
##   Racing       0.000000000                   0.142857143
##   Role-Playing 0.000000000                   0.000000000
##   Shooter      0.000000000                   0.285714286
##   Simulation   0.500000000                   0.000000000
##   Sports       0.000000000                   0.142857143
##   Strategy     0.500000000                   0.000000000
##               Publisher
## Genre          Bohemia Interactive        Bomb    Boost On         BPS
##   Action               0.000000000 1.000000000 0.000000000 0.000000000
##   Adventure            0.000000000 0.000000000 1.000000000 0.000000000
##   Fighting             0.000000000 0.000000000 0.000000000 0.000000000
##   Misc                 0.000000000 0.000000000 0.000000000 0.000000000
##   Platform             0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle               0.000000000 0.000000000 0.000000000 0.500000000
##   Racing               0.000000000 0.000000000 0.000000000 0.500000000
##   Role-Playing         0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter              1.000000000 0.000000000 0.000000000 0.000000000
##   Simulation           0.000000000 0.000000000 0.000000000 0.000000000
##   Sports               0.000000000 0.000000000 0.000000000 0.000000000
##   Strategy             0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Brash Entertainment    Broccoli   BushiRoad      Capcom
##   Action               0.000000000 0.227272727 0.000000000 0.404199475
##   Adventure            0.000000000 0.409090909 1.000000000 0.057742782
##   Fighting             0.000000000 0.090909091 0.000000000 0.152230971
##   Misc                 0.300000000 0.045454545 0.000000000 0.028871391
##   Platform             0.700000000 0.000000000 0.000000000 0.120734908
##   Puzzle               0.000000000 0.000000000 0.000000000 0.015748031
##   Racing               0.000000000 0.000000000 0.000000000 0.034120735
##   Role-Playing         0.000000000 0.045454545 0.000000000 0.099737533
##   Shooter              0.000000000 0.000000000 0.000000000 0.065616798
##   Simulation           0.000000000 0.045454545 0.000000000 0.005249344
##   Sports               0.000000000 0.000000000 0.000000000 0.007874016
##   Strategy             0.000000000 0.136363636 0.000000000 0.007874016
##               Publisher
## Genre                 Cave CBS Electronics         CCP
##   Action       0.100000000     1.000000000 0.000000000
##   Adventure    0.100000000     0.000000000 0.000000000
##   Fighting     0.000000000     0.000000000 0.000000000
##   Misc         0.100000000     0.000000000 0.000000000
##   Platform     0.000000000     0.000000000 0.000000000
##   Puzzle       0.000000000     0.000000000 0.000000000
##   Racing       0.000000000     0.000000000 0.000000000
##   Role-Playing 0.000000000     0.000000000 1.000000000
##   Shooter      0.700000000     0.000000000 0.000000000
##   Simulation   0.000000000     0.000000000 0.000000000
##   Sports       0.000000000     0.000000000 0.000000000
##   Strategy     0.000000000     0.000000000 0.000000000
##               Publisher
## Genre          CDV Software Entertainment    ChunSoft City Interactive
##   Action                      0.000000000 0.055555556      0.052631579
##   Adventure                   0.166666667 0.611111111      0.263157895
##   Fighting                    0.000000000 0.000000000      0.000000000
##   Misc                        0.000000000 0.000000000      0.052631579
##   Platform                    0.000000000 0.000000000      0.000000000
##   Puzzle                      0.166666667 0.000000000      0.105263158
##   Racing                      0.000000000 0.000000000      0.000000000
##   Role-Playing                0.000000000 0.333333333      0.000000000
##   Shooter                     0.000000000 0.000000000      0.421052632
##   Simulation                  0.166666667 0.000000000      0.105263158
##   Sports                      0.000000000 0.000000000      0.000000000
##   Strategy                    0.500000000 0.000000000      0.000000000
##               Publisher
## Genre          Cloud Imperium Games Corporation Coconuts Japan Codemasters
##   Action                            0.000000000    0.000000000 0.059210526
##   Adventure                         0.000000000    0.500000000 0.039473684
##   Fighting                          1.000000000    0.000000000 0.000000000
##   Misc                              0.000000000    0.500000000 0.046052632
##   Platform                          0.000000000    0.000000000 0.000000000
##   Puzzle                            0.000000000    0.000000000 0.006578947
##   Racing                            0.000000000    0.000000000 0.585526316
##   Role-Playing                      0.000000000    0.000000000 0.019736842
##   Shooter                           0.000000000    0.000000000 0.131578947
##   Simulation                        0.000000000    0.000000000 0.019736842
##   Sports                            0.000000000    0.000000000 0.065789474
##   Strategy                          0.000000000    0.000000000 0.026315789
##               Publisher
## Genre          Codemasters Online CokeM Interactive      Coleco
##   Action              0.000000000       1.000000000 0.600000000
##   Adventure           0.000000000       0.000000000 0.000000000
##   Fighting            0.000000000       0.000000000 0.000000000
##   Misc                0.000000000       0.000000000 0.000000000
##   Platform            0.000000000       0.000000000 0.200000000
##   Puzzle              0.000000000       0.000000000 0.000000000
##   Racing              0.000000000       0.000000000 0.000000000
##   Role-Playing        1.000000000       0.000000000 0.000000000
##   Shooter             0.000000000       0.000000000 0.200000000
##   Simulation          0.000000000       0.000000000 0.000000000
##   Sports              0.000000000       0.000000000 0.000000000
##   Strategy            0.000000000       0.000000000 0.000000000
##               Publisher
## Genre              Comfort    Commseed     Compile Compile Heart
##   Action       0.166666667 0.000000000 0.000000000   0.100000000
##   Adventure    0.833333333 0.000000000 0.000000000   0.200000000
##   Fighting     0.000000000 0.000000000 0.000000000   0.000000000
##   Misc         0.000000000 1.000000000 0.000000000   0.000000000
##   Platform     0.000000000 0.000000000 0.000000000   0.000000000
##   Puzzle       0.000000000 0.000000000 0.833333333   0.000000000
##   Racing       0.000000000 0.000000000 0.000000000   0.000000000
##   Role-Playing 0.000000000 0.000000000 0.166666667   0.650000000
##   Shooter      0.000000000 0.000000000 0.000000000   0.000000000
##   Simulation   0.000000000 0.000000000 0.000000000   0.000000000
##   Sports       0.000000000 0.000000000 0.000000000   0.000000000
##   Strategy     0.000000000 0.000000000 0.000000000   0.050000000
##               Publisher
## Genre          Conspiracy Entertainment Core Design Ltd. CPG Products
##   Action                    0.214285714      0.500000000  1.000000000
##   Adventure                 0.000000000      0.000000000  0.000000000
##   Fighting                  0.000000000      0.000000000  0.000000000
##   Misc                      0.142857143      0.000000000  0.000000000
##   Platform                  0.071428571      0.000000000  0.000000000
##   Puzzle                    0.214285714      0.000000000  0.000000000
##   Racing                    0.071428571      0.000000000  0.000000000
##   Role-Playing              0.000000000      0.000000000  0.000000000
##   Shooter                   0.142857143      0.000000000  0.000000000
##   Simulation                0.071428571      0.500000000  0.000000000
##   Sports                    0.071428571      0.000000000  0.000000000
##   Strategy                  0.000000000      0.000000000  0.000000000
##               Publisher
## Genre          Crave Entertainment Creative Core Crimson Cow
##   Action               0.154929577   0.000000000 0.500000000
##   Adventure            0.014084507   0.333333333 0.500000000
##   Fighting             0.070422535   0.000000000 0.000000000
##   Misc                 0.253521127   0.333333333 0.000000000
##   Platform             0.042253521   0.000000000 0.000000000
##   Puzzle               0.140845070   0.000000000 0.000000000
##   Racing               0.056338028   0.000000000 0.000000000
##   Role-Playing         0.028169014   0.000000000 0.000000000
##   Shooter              0.042253521   0.000000000 0.000000000
##   Simulation           0.028169014   0.333333333 0.000000000
##   Sports               0.140845070   0.000000000 0.000000000
##   Strategy             0.028169014   0.000000000 0.000000000
##               Publisher
## Genre          Crystal Dynamics     CTO SpA Culture Brain
##   Action            0.000000000 0.000000000   0.000000000
##   Adventure         0.200000000 0.000000000   0.250000000
##   Fighting          0.000000000 0.000000000   0.000000000
##   Misc              0.000000000 0.000000000   0.250000000
##   Platform          0.200000000 0.000000000   0.000000000
##   Puzzle            0.000000000 0.000000000   0.000000000
##   Racing            0.200000000 0.000000000   0.000000000
##   Role-Playing      0.200000000 0.000000000   0.250000000
##   Shooter           0.000000000 0.500000000   0.000000000
##   Simulation        0.000000000 0.000000000   0.000000000
##   Sports            0.200000000 0.500000000   0.250000000
##   Strategy          0.000000000 0.000000000   0.000000000
##               Publisher
## Genre          Culture Publishers  CyberFront     Cygames D3Publisher
##   Action              0.000000000 0.071428571 0.000000000 0.288043478
##   Adventure           0.000000000 0.571428571 0.000000000 0.168478261
##   Fighting            0.000000000 0.000000000 0.000000000 0.016304348
##   Misc                0.000000000 0.142857143 0.000000000 0.173913043
##   Platform            0.000000000 0.000000000 1.000000000 0.065217391
##   Puzzle              1.000000000 0.000000000 0.000000000 0.059782609
##   Racing              0.000000000 0.000000000 0.000000000 0.032608696
##   Role-Playing        0.000000000 0.071428571 0.000000000 0.021739130
##   Shooter             0.000000000 0.000000000 0.000000000 0.065217391
##   Simulation          0.000000000 0.000000000 0.000000000 0.032608696
##   Sports              0.000000000 0.000000000 0.000000000 0.059782609
##   Strategy            0.000000000 0.142857143 0.000000000 0.016304348
##               Publisher
## Genre             Daedalic Daedalic Entertainment       Daito    Data Age
##   Action       0.000000000            0.000000000 0.000000000 1.000000000
##   Adventure    1.000000000            1.000000000 0.000000000 0.000000000
##   Fighting     0.000000000            0.000000000 0.000000000 0.000000000
##   Misc         0.000000000            0.000000000 1.000000000 0.000000000
##   Platform     0.000000000            0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000            0.000000000 0.000000000 0.000000000
##   Racing       0.000000000            0.000000000 0.000000000 0.000000000
##   Role-Playing 0.000000000            0.000000000 0.000000000 0.000000000
##   Shooter      0.000000000            0.000000000 0.000000000 0.000000000
##   Simulation   0.000000000            0.000000000 0.000000000 0.000000000
##   Sports       0.000000000            0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000            0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Data Design Interactive   Data East Datam Polystar
##   Action                   0.000000000 0.000000000    0.000000000
##   Adventure                0.000000000 0.500000000    1.000000000
##   Fighting                 0.000000000 0.000000000    0.000000000
##   Misc                     0.333333333 0.000000000    0.000000000
##   Platform                 0.000000000 0.000000000    0.000000000
##   Puzzle                   0.000000000 0.000000000    0.000000000
##   Racing                   0.333333333 0.000000000    0.000000000
##   Role-Playing             0.000000000 0.500000000    0.000000000
##   Shooter                  0.000000000 0.000000000    0.000000000
##   Simulation               0.000000000 0.000000000    0.000000000
##   Sports                   0.333333333 0.000000000    0.000000000
##   Strategy                 0.000000000 0.000000000    0.000000000
##               Publisher
## Genre          Deep Silver Destination Software, Inc   Destineer
##   Action       0.221311475               0.166666667 0.133333333
##   Adventure    0.081967213               0.000000000 0.044444444
##   Fighting     0.016393443               0.000000000 0.000000000
##   Misc         0.057377049               0.083333333 0.088888889
##   Platform     0.024590164               0.000000000 0.022222222
##   Puzzle       0.057377049               0.166666667 0.155555556
##   Racing       0.057377049               0.250000000 0.088888889
##   Role-Playing 0.139344262               0.083333333 0.000000000
##   Shooter      0.040983607               0.000000000 0.044444444
##   Simulation   0.139344262               0.166666667 0.244444444
##   Sports       0.081967213               0.083333333 0.177777778
##   Strategy     0.081967213               0.000000000 0.000000000
##               Publisher
## Genre          Detn8 Games Devolver Digital DHM Interactive    DigiCube
##   Action       0.000000000      0.000000000     0.000000000 0.000000000
##   Adventure    0.000000000      0.000000000     0.000000000 0.000000000
##   Fighting     0.000000000      0.000000000     0.000000000 0.000000000
##   Misc         0.000000000      0.000000000     0.000000000 0.000000000
##   Platform     0.000000000      0.000000000     0.000000000 0.000000000
##   Puzzle       0.000000000      0.500000000     0.333333333 0.000000000
##   Racing       0.000000000      0.000000000     0.000000000 0.000000000
##   Role-Playing 0.000000000      0.000000000     0.000000000 0.000000000
##   Shooter      0.000000000      0.500000000     0.333333333 0.000000000
##   Simulation   0.000000000      0.000000000     0.333333333 0.000000000
##   Sports       1.000000000      0.000000000     0.000000000 1.000000000
##   Strategy     0.000000000      0.000000000     0.000000000 0.000000000
##               Publisher
## Genre          Disney Interactive Studios      Dorart dramatic create
##   Action                      0.440366972 0.000000000     0.200000000
##   Adventure                   0.133027523 0.000000000     0.800000000
##   Fighting                    0.000000000 0.000000000     0.000000000
##   Misc                        0.201834862 1.000000000     0.000000000
##   Platform                    0.091743119 0.000000000     0.000000000
##   Puzzle                      0.013761468 0.000000000     0.000000000
##   Racing                      0.064220183 0.000000000     0.000000000
##   Role-Playing                0.013761468 0.000000000     0.000000000
##   Shooter                     0.013761468 0.000000000     0.000000000
##   Simulation                  0.022935780 0.000000000     0.000000000
##   Sports                      0.004587156 0.000000000     0.000000000
##   Strategy                    0.000000000 0.000000000     0.000000000
##               Publisher
## Genre          DreamCatcher Interactive DreamWorks Interactive   DSI Games
##   Action                    0.000000000            0.000000000 0.166666667
##   Adventure                 0.176470588            0.000000000 0.166666667
##   Fighting                  0.000000000            0.000000000 0.000000000
##   Misc                      0.176470588            0.000000000 0.333333333
##   Platform                  0.058823529            1.000000000 0.000000000
##   Puzzle                    0.117647059            0.000000000 0.000000000
##   Racing                    0.000000000            0.000000000 0.000000000
##   Role-Playing              0.000000000            0.000000000 0.000000000
##   Shooter                   0.176470588            0.000000000 0.000000000
##   Simulation                0.235294118            0.000000000 0.166666667
##   Sports                    0.058823529            0.000000000 0.166666667
##   Strategy                  0.000000000            0.000000000 0.000000000
##               Publisher
## Genre          DTP Entertainment Dusenberry Martin Racing    EA Games
##   Action             0.111111111              0.000000000 0.000000000
##   Adventure          0.222222222              0.000000000 0.000000000
##   Fighting           0.000000000              0.000000000 0.000000000
##   Misc               0.111111111              0.000000000 0.000000000
##   Platform           0.000000000              0.000000000 0.000000000
##   Puzzle             0.044444444              0.000000000 0.000000000
##   Racing             0.000000000              1.000000000 0.000000000
##   Role-Playing       0.155555556              0.000000000 0.000000000
##   Shooter            0.022222222              0.000000000 1.000000000
##   Simulation         0.066666667              0.000000000 0.000000000
##   Sports             0.244444444              0.000000000 0.000000000
##   Strategy           0.022222222              0.000000000 0.000000000
##               Publisher
## Genre          Easy Interactive       Ecole        Edia Eidos Interactive
##   Action            0.000000000 0.000000000 0.000000000       0.424242424
##   Adventure         0.000000000 0.000000000 0.000000000       0.025252525
##   Fighting          0.000000000 1.000000000 0.000000000       0.035353535
##   Misc              0.000000000 0.000000000 1.000000000       0.025252525
##   Platform          0.000000000 0.000000000 0.000000000       0.020202020
##   Puzzle            1.000000000 0.000000000 0.000000000       0.040404040
##   Racing            0.000000000 0.000000000 0.000000000       0.070707071
##   Role-Playing      0.000000000 0.000000000 0.000000000       0.045454545
##   Shooter           0.000000000 0.000000000 0.000000000       0.176767677
##   Simulation        0.000000000 0.000000000 0.000000000       0.040404040
##   Sports            0.000000000 0.000000000 0.000000000       0.040404040
##   Strategy          0.000000000 0.000000000 0.000000000       0.055555556
##               Publisher
## Genre          Electronic Arts Electronic Arts Victor         Elf
##   Action           0.135455218            0.500000000 0.000000000
##   Adventure        0.009622502            0.000000000 0.500000000
##   Fighting         0.028867506            0.000000000 0.000000000
##   Misc             0.034048853            0.000000000 0.000000000
##   Platform         0.011843079            0.000000000 0.000000000
##   Puzzle           0.005181347            0.000000000 0.000000000
##   Racing           0.117690600            0.000000000 0.000000000
##   Role-Playing     0.025906736            0.000000000 0.000000000
##   Shooter          0.102886751            0.000000000 0.000000000
##   Simulation       0.085862324            0.000000000 0.000000000
##   Sports           0.415247964            0.500000000 0.000000000
##   Strategy         0.027387121            0.000000000 0.500000000
##               Publisher
## Genre                Elite Empire Interactive      Encore Enix Corporation
##   Action       0.000000000        0.096153846 0.250000000      0.033333333
##   Adventure    0.000000000        0.057692308 0.000000000      0.000000000
##   Fighting     0.000000000        0.019230769 0.000000000      0.000000000
##   Misc         0.000000000        0.115384615 0.000000000      0.066666667
##   Platform     0.000000000        0.000000000 0.000000000      0.000000000
##   Puzzle       0.000000000        0.153846154 0.000000000      0.000000000
##   Racing       0.000000000        0.403846154 0.500000000      0.000000000
##   Role-Playing 0.000000000        0.019230769 0.250000000      0.766666667
##   Shooter      0.000000000        0.096153846 0.000000000      0.000000000
##   Simulation   1.000000000        0.019230769 0.000000000      0.066666667
##   Sports       0.000000000        0.019230769 0.000000000      0.066666667
##   Strategy     0.000000000        0.000000000 0.000000000      0.000000000
##               Publisher
## Genre          Enjoy Gaming ltd.  Enterbrain EON Digital Entertainment
##   Action             0.000000000 0.000000000               0.000000000
##   Adventure          0.000000000 0.200000000               0.000000000
##   Fighting           0.000000000 0.066666667               0.000000000
##   Misc               0.000000000 0.000000000               0.000000000
##   Platform           0.000000000 0.000000000               0.000000000
##   Puzzle             0.000000000 0.000000000               0.000000000
##   Racing             0.000000000 0.000000000               0.000000000
##   Role-Playing       0.000000000 0.400000000               0.000000000
##   Shooter            1.000000000 0.000000000               0.000000000
##   Simulation         0.000000000 0.066666667               0.000000000
##   Sports             0.000000000 0.266666667               0.000000000
##   Strategy           0.000000000 0.000000000               1.000000000
##               Publisher
## Genre           Epic Games       Epoch      Ertain         ESP
##   Action       1.000000000 0.000000000 0.000000000 0.000000000
##   Adventure    0.000000000 0.000000000 0.000000000 0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000 0.200000000
##   Misc         0.000000000 0.142857143 0.000000000 0.000000000
##   Platform     0.000000000 0.285714286 0.000000000 0.200000000
##   Puzzle       0.000000000 0.000000000 0.000000000 0.000000000
##   Racing       0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing 0.000000000 0.285714286 0.000000000 0.200000000
##   Shooter      0.000000000 0.000000000 0.000000000 0.200000000
##   Simulation   0.000000000 0.000000000 1.000000000 0.200000000
##   Sports       0.000000000 0.285714286 0.000000000 0.000000000
##   Strategy     0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Essential Games Evolution Games Evolved Games
##   Action           0.333333333     1.000000000   0.000000000
##   Adventure        0.000000000     0.000000000   0.000000000
##   Fighting         0.000000000     0.000000000   0.000000000
##   Misc             0.000000000     0.000000000   0.000000000
##   Platform         0.000000000     0.000000000   0.250000000
##   Puzzle           0.000000000     0.000000000   0.000000000
##   Racing           0.000000000     0.000000000   0.500000000
##   Role-Playing     0.000000000     0.000000000   0.000000000
##   Shooter          0.333333333     0.000000000   0.250000000
##   Simulation       0.000000000     0.000000000   0.000000000
##   Sports           0.000000000     0.000000000   0.000000000
##   Strategy         0.333333333     0.000000000   0.000000000
##               Publisher
## Genre          Excalibur Publishing Experience Inc.
##   Action                0.250000000     0.000000000
##   Adventure             0.000000000     0.000000000
##   Fighting              0.000000000     0.000000000
##   Misc                  0.000000000     0.000000000
##   Platform              0.000000000     0.000000000
##   Puzzle                0.000000000     0.000000000
##   Racing                0.000000000     0.000000000
##   Role-Playing          0.000000000     1.000000000
##   Shooter               0.000000000     0.000000000
##   Simulation            0.750000000     0.000000000
##   Sports                0.000000000     0.000000000
##   Strategy              0.000000000     0.000000000
##               Publisher
## Genre          Extreme Entertainment Group Falcom Corporation      Fields
##   Action                       0.000000000        0.000000000 0.000000000
##   Adventure                    0.000000000        0.000000000 0.000000000
##   Fighting                     0.000000000        0.062500000 0.000000000
##   Misc                         0.000000000        0.000000000 1.000000000
##   Platform                     0.000000000        0.000000000 0.000000000
##   Puzzle                       0.000000000        0.000000000 0.000000000
##   Racing                       0.000000000        0.000000000 0.000000000
##   Role-Playing                 1.000000000        0.937500000 0.000000000
##   Shooter                      0.000000000        0.000000000 0.000000000
##   Simulation                   0.000000000        0.000000000 0.000000000
##   Sports                       0.000000000        0.000000000 0.000000000
##   Strategy                     0.000000000        0.000000000 0.000000000
##               Publisher
## Genre          Flashpoint Games Flight-Plan Focus Home Interactive
##   Action            0.500000000 0.000000000            0.017241379
##   Adventure         0.000000000 0.000000000            0.293103448
##   Fighting          0.000000000 0.000000000            0.000000000
##   Misc              0.000000000 0.000000000            0.017241379
##   Platform          0.500000000 0.000000000            0.034482759
##   Puzzle            0.000000000 0.000000000            0.103448276
##   Racing            0.000000000 0.000000000            0.051724138
##   Role-Playing      0.000000000 0.500000000            0.206896552
##   Shooter           0.000000000 0.000000000            0.000000000
##   Simulation        0.000000000 0.000000000            0.103448276
##   Sports            0.000000000 0.000000000            0.120689655
##   Strategy          0.000000000 0.500000000            0.051724138
##               Publisher
## Genre          Focus Multimedia      fonfun Foreign Media Games
##   Action            0.000000000 0.000000000         0.000000000
##   Adventure         0.000000000 0.000000000         0.111111111
##   Fighting          0.000000000 0.000000000         0.000000000
##   Misc              0.333333333 0.000000000         0.222222222
##   Platform          0.000000000 0.000000000         0.000000000
##   Puzzle            0.666666667 0.000000000         0.444444444
##   Racing            0.000000000 0.000000000         0.000000000
##   Role-Playing      0.000000000 0.000000000         0.000000000
##   Shooter           0.000000000 0.000000000         0.000000000
##   Simulation        0.000000000 1.000000000         0.222222222
##   Sports            0.000000000 0.000000000         0.000000000
##   Strategy          0.000000000 0.000000000         0.000000000
##               Publisher
## Genre            Fortyfive Fox Interactive From Software        Fuji
##   Action       0.000000000     0.125000000   0.200000000 0.000000000
##   Adventure    1.000000000     0.000000000   0.066666667 1.000000000
##   Fighting     0.000000000     0.000000000   0.000000000 0.000000000
##   Misc         0.000000000     0.000000000   0.000000000 0.000000000
##   Platform     0.000000000     0.250000000   0.000000000 0.000000000
##   Puzzle       0.000000000     0.000000000   0.000000000 0.000000000
##   Racing       0.000000000     0.000000000   0.000000000 0.000000000
##   Role-Playing 0.000000000     0.000000000   0.266666667 0.000000000
##   Shooter      0.000000000     0.375000000   0.066666667 0.000000000
##   Simulation   0.000000000     0.000000000   0.400000000 0.000000000
##   Sports       0.000000000     0.250000000   0.000000000 0.000000000
##   Strategy     0.000000000     0.000000000   0.000000000 0.000000000
##               Publisher
## Genre          Funbox Media      Funcom     FunSoft      Funsta
##   Action        0.500000000 0.000000000 0.000000000 0.000000000
##   Adventure     0.166666667 0.000000000 0.000000000 0.000000000
##   Fighting      0.000000000 0.000000000 0.000000000 0.000000000
##   Misc          0.166666667 0.000000000 0.000000000 0.000000000
##   Platform      0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle        0.000000000 0.000000000 0.000000000 0.750000000
##   Racing        0.000000000 0.000000000 1.000000000 0.000000000
##   Role-Playing  0.000000000 1.000000000 0.000000000 0.000000000
##   Shooter       0.000000000 0.000000000 0.000000000 0.250000000
##   Simulation    0.000000000 0.000000000 0.000000000 0.000000000
##   Sports        0.000000000 0.000000000 0.000000000 0.000000000
##   Strategy      0.166666667 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre                FuRyu FuRyu Corporation       G.Rev        Gaga
##   Action       0.407407407       1.000000000 0.000000000 0.000000000
##   Adventure    0.111111111       0.000000000 0.000000000 0.000000000
##   Fighting     0.000000000       0.000000000 0.500000000 0.000000000
##   Misc         0.148148148       0.000000000 0.000000000 0.000000000
##   Platform     0.000000000       0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000       0.000000000 0.000000000 0.000000000
##   Racing       0.000000000       0.000000000 0.000000000 0.000000000
##   Role-Playing 0.296296296       0.000000000 0.000000000 0.000000000
##   Shooter      0.000000000       0.000000000 0.500000000 1.000000000
##   Simulation   0.037037037       0.000000000 0.000000000 0.000000000
##   Sports       0.000000000       0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000       0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Gainax Network Systems      Gakken   Game Arts Game Factory
##   Action                  0.000000000 0.000000000 0.000000000  0.250000000
##   Adventure               0.500000000 0.000000000 0.000000000  0.125000000
##   Fighting                0.000000000 0.000000000 0.000000000  0.062500000
##   Misc                    0.500000000 1.000000000 0.000000000  0.156250000
##   Platform                0.000000000 0.000000000 0.000000000  0.125000000
##   Puzzle                  0.000000000 0.000000000 0.000000000  0.125000000
##   Racing                  0.000000000 0.000000000 0.000000000  0.062500000
##   Role-Playing            0.000000000 0.000000000 1.000000000  0.031250000
##   Shooter                 0.000000000 0.000000000 0.000000000  0.000000000
##   Simulation              0.000000000 0.000000000 0.000000000  0.062500000
##   Sports                  0.000000000 0.000000000 0.000000000  0.000000000
##   Strategy                0.000000000 0.000000000 0.000000000  0.000000000
##               Publisher
## Genre            Game Life  Gamebridge    Gamecock    Gameloft
##   Action       0.000000000 1.000000000 0.250000000 0.000000000
##   Adventure    0.000000000 0.000000000 0.000000000 0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000 0.000000000
##   Misc         0.500000000 0.000000000 0.500000000 1.000000000
##   Platform     0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000 0.000000000
##   Racing       0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing 0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter      0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation   0.500000000 0.000000000 0.000000000 0.000000000
##   Sports       0.000000000 0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000 0.000000000 0.250000000 0.000000000
##               Publisher
## Genre          GameMill Entertainment     GameTek Gathering of Developers
##   Action                  0.375000000 0.000000000             0.000000000
##   Adventure               0.125000000 0.000000000             0.000000000
##   Fighting                0.000000000 0.000000000             0.000000000
##   Misc                    0.375000000 1.000000000             0.222222222
##   Platform                0.000000000 0.000000000             0.000000000
##   Puzzle                  0.000000000 0.000000000             0.000000000
##   Racing                  0.000000000 0.000000000             0.222222222
##   Role-Playing            0.000000000 0.000000000             0.000000000
##   Shooter                 0.000000000 0.000000000             0.333333333
##   Simulation              0.000000000 0.000000000             0.000000000
##   Sports                  0.125000000 0.000000000             0.000000000
##   Strategy                0.000000000 0.000000000             0.222222222
##               Publisher
## Genre          General Entertainment       Genki Genterprise  Ghostlight
##   Action                 0.000000000 0.250000000 0.000000000 0.000000000
##   Adventure              0.000000000 0.000000000 0.000000000 0.000000000
##   Fighting               0.000000000 0.000000000 0.000000000 0.000000000
##   Misc                   0.000000000 0.000000000 0.000000000 0.000000000
##   Platform               0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle                 0.000000000 0.000000000 1.000000000 0.000000000
##   Racing                 0.000000000 0.625000000 0.000000000 0.000000000
##   Role-Playing           0.000000000 0.000000000 0.000000000 0.600000000
##   Shooter                0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation             0.000000000 0.000000000 0.000000000 0.066666667
##   Sports                 0.000000000 0.125000000 0.000000000 0.200000000
##   Strategy               1.000000000 0.000000000 0.000000000 0.133333333
##               Publisher
## Genre                 Giga      Giza10       Glams Global A Entertainment
##   Action       0.000000000 1.000000000 0.000000000            0.000000000
##   Adventure    1.000000000 0.000000000 0.000000000            0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000            0.000000000
##   Misc         0.000000000 0.000000000 0.000000000            0.250000000
##   Platform     0.000000000 0.000000000 0.000000000            0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000            0.000000000
##   Racing       0.000000000 0.000000000 0.000000000            0.000000000
##   Role-Playing 0.000000000 0.000000000 0.000000000            0.750000000
##   Shooter      0.000000000 0.000000000 0.000000000            0.000000000
##   Simulation   0.000000000 0.000000000 0.000000000            0.000000000
##   Sports       0.000000000 0.000000000 0.000000000            0.000000000
##   Strategy     0.000000000 0.000000000 1.000000000            0.000000000
##               Publisher
## Genre          Global Star GN Software         GOA Gotham Games
##   Action       0.025641026 0.000000000 0.000000000  0.000000000
##   Adventure    0.153846154 1.000000000 0.000000000  0.000000000
##   Fighting     0.025641026 0.000000000 0.000000000  0.285714286
##   Misc         0.000000000 0.000000000 0.000000000  0.000000000
##   Platform     0.128205128 0.000000000 0.000000000  0.428571429
##   Puzzle       0.000000000 0.000000000 0.000000000  0.000000000
##   Racing       0.128205128 0.000000000 0.000000000  0.000000000
##   Role-Playing 0.000000000 0.000000000 1.000000000  0.000000000
##   Shooter      0.205128205 0.000000000 0.000000000  0.142857143
##   Simulation   0.051282051 0.000000000 0.000000000  0.000000000
##   Sports       0.256410256 0.000000000 0.000000000  0.142857143
##   Strategy     0.025641026 0.000000000 0.000000000  0.000000000
##               Publisher
## Genre             Graffiti Grand Prix Games Graphsim Entertainment
##   Action       0.000000000      0.000000000            0.000000000
##   Adventure    0.000000000      0.000000000            0.000000000
##   Fighting     0.000000000      1.000000000            0.000000000
##   Misc         0.333333333      0.000000000            0.000000000
##   Platform     0.000000000      0.000000000            0.000000000
##   Puzzle       0.000000000      0.000000000            0.000000000
##   Racing       0.000000000      0.000000000            0.000000000
##   Role-Playing 0.333333333      0.000000000            0.000000000
##   Shooter      0.166666667      0.000000000            0.000000000
##   Simulation   0.166666667      0.000000000            1.000000000
##   Sports       0.000000000      0.000000000            0.000000000
##   Strategy     0.000000000      0.000000000            0.000000000
##               Publisher
## Genre          Gremlin Interactive Ltd Griffin International Groove Games
##   Action                   0.111111111           0.000000000  0.000000000
##   Adventure                0.000000000           0.000000000  0.000000000
##   Fighting                 0.000000000           0.000000000  0.000000000
##   Misc                     0.000000000           0.000000000  0.000000000
##   Platform                 0.111111111           0.000000000  0.000000000
##   Puzzle                   0.000000000           0.000000000  0.000000000
##   Racing                   0.222222222           0.000000000  0.000000000
##   Role-Playing             0.000000000           0.000000000  0.000000000
##   Shooter                  0.111111111           0.000000000  1.000000000
##   Simulation               0.000000000           0.000000000  0.000000000
##   Sports                   0.444444444           1.000000000  0.000000000
##   Strategy                 0.000000000           0.000000000  0.000000000
##               Publisher
## Genre                  GSP GT Interactive      GungHo        Gust
##   Action       0.000000000    0.222222222 0.153846154 0.000000000
##   Adventure    0.375000000    0.000000000 0.076923077 0.076923077
##   Fighting     0.000000000    0.155555556 0.000000000 0.000000000
##   Misc         0.312500000    0.022222222 0.076923077 0.000000000
##   Platform     0.000000000    0.066666667 0.000000000 0.000000000
##   Puzzle       0.187500000    0.000000000 0.000000000 0.000000000
##   Racing       0.000000000    0.133333333 0.000000000 0.000000000
##   Role-Playing 0.000000000    0.000000000 0.692307692 0.846153846
##   Shooter      0.000000000    0.266666667 0.000000000 0.000000000
##   Simulation   0.125000000    0.022222222 0.000000000 0.000000000
##   Sports       0.000000000    0.111111111 0.000000000 0.000000000
##   Strategy     0.000000000    0.000000000 0.000000000 0.076923077
##               Publisher
## Genre            Hackberry HAL Laboratory Hamster Corporation    Happinet
##   Action       0.000000000    0.000000000         0.500000000 0.000000000
##   Adventure    0.000000000    0.000000000         0.000000000 0.600000000
##   Fighting     0.000000000    0.000000000         0.000000000 0.000000000
##   Misc         1.000000000    0.000000000         0.000000000 0.200000000
##   Platform     0.000000000    0.000000000         0.000000000 0.000000000
##   Puzzle       0.000000000    1.000000000         0.000000000 0.000000000
##   Racing       0.000000000    0.000000000         0.000000000 0.000000000
##   Role-Playing 0.000000000    0.000000000         0.000000000 0.000000000
##   Shooter      0.000000000    0.000000000         0.000000000 0.000000000
##   Simulation   0.000000000    0.000000000         0.500000000 0.200000000
##   Sports       0.000000000    0.000000000         0.000000000 0.000000000
##   Strategy     0.000000000    0.000000000         0.000000000 0.000000000
##               Publisher
## Genre          Harmonix Music Systems Hasbro Interactive Havas Interactive
##   Action                  0.000000000        0.125000000       0.000000000
##   Adventure               0.000000000        0.000000000       0.000000000
##   Fighting                0.000000000        0.000000000       0.000000000
##   Misc                    1.000000000        0.500000000       0.000000000
##   Platform                0.000000000        0.062500000       0.000000000
##   Puzzle                  0.000000000        0.125000000       0.000000000
##   Racing                  0.000000000        0.125000000       0.000000000
##   Role-Playing            0.000000000        0.000000000       1.000000000
##   Shooter                 0.000000000        0.062500000       0.000000000
##   Simulation              0.000000000        0.000000000       0.000000000
##   Sports                  0.000000000        0.000000000       0.000000000
##   Strategy                0.000000000        0.000000000       0.000000000
##               Publisher
## Genre          Headup Games Hearty Robin        Hect Hello Games
##   Action        0.000000000  0.000000000 0.000000000 1.000000000
##   Adventure     1.000000000  0.000000000 0.000000000 0.000000000
##   Fighting      0.000000000  0.000000000 0.000000000 0.000000000
##   Misc          0.000000000  0.000000000 0.000000000 0.000000000
##   Platform      0.000000000  0.000000000 0.000000000 0.000000000
##   Puzzle        0.000000000  0.000000000 0.000000000 0.000000000
##   Racing        0.000000000  0.000000000 0.000000000 0.000000000
##   Role-Playing  0.000000000  0.000000000 0.000000000 0.000000000
##   Shooter       0.000000000  0.000000000 0.000000000 0.000000000
##   Simulation    0.000000000  1.000000000 1.000000000 0.000000000
##   Sports        0.000000000  0.000000000 0.000000000 0.000000000
##   Strategy      0.000000000  0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Her Interactive Hip Interactive HMH Interactive
##   Action           0.000000000     0.800000000     0.000000000
##   Adventure        1.000000000     0.000000000     0.500000000
##   Fighting         0.000000000     0.000000000     0.000000000
##   Misc             0.000000000     0.000000000     0.500000000
##   Platform         0.000000000     0.000000000     0.000000000
##   Puzzle           0.000000000     0.000000000     0.000000000
##   Racing           0.000000000     0.000000000     0.000000000
##   Role-Playing     0.000000000     0.000000000     0.000000000
##   Shooter          0.000000000     0.200000000     0.000000000
##   Simulation       0.000000000     0.000000000     0.000000000
##   Sports           0.000000000     0.000000000     0.000000000
##   Strategy         0.000000000     0.000000000     0.000000000
##               Publisher
## Genre          Home Entertainment Suppliers Hudson Entertainment
##   Action                        0.000000000          0.000000000
##   Adventure                     0.000000000          0.000000000
##   Fighting                      0.000000000          0.000000000
##   Misc                          0.000000000          0.272727273
##   Platform                      0.000000000          0.090909091
##   Puzzle                        0.000000000          0.181818182
##   Racing                        0.000000000          0.000000000
##   Role-Playing                  0.000000000          0.181818182
##   Shooter                       0.000000000          0.090909091
##   Simulation                    0.000000000          0.090909091
##   Sports                        1.000000000          0.090909091
##   Strategy                      0.000000000          0.000000000
##               Publisher
## Genre          Hudson Soft Human Entertainment       HuneX
##   Action       0.074074074         0.000000000 0.500000000
##   Adventure    0.037037037         0.153846154 0.500000000
##   Fighting     0.049382716         0.461538462 0.000000000
##   Misc         0.259259259         0.000000000 0.000000000
##   Platform     0.037037037         0.000000000 0.000000000
##   Puzzle       0.148148148         0.000000000 0.000000000
##   Racing       0.000000000         0.076923077 0.000000000
##   Role-Playing 0.148148148         0.000000000 0.000000000
##   Shooter      0.049382716         0.000000000 0.000000000
##   Simulation   0.037037037         0.076923077 0.000000000
##   Sports       0.148148148         0.153846154 0.000000000
##   Strategy     0.012345679         0.076923077 0.000000000
##               Publisher
## Genre          Iceberg Interactive id Software Idea Factory
##   Action               0.000000000 0.000000000  0.217054264
##   Adventure            0.000000000 0.000000000  0.627906977
##   Fighting             0.000000000 0.000000000  0.000000000
##   Misc                 0.000000000 0.000000000  0.038759690
##   Platform             0.000000000 0.000000000  0.000000000
##   Puzzle               0.000000000 0.000000000  0.000000000
##   Racing               0.000000000 0.000000000  0.000000000
##   Role-Playing         0.333333333 0.000000000  0.100775194
##   Shooter              0.000000000 1.000000000  0.000000000
##   Simulation           0.000000000 0.000000000  0.000000000
##   Sports               0.000000000 0.000000000  0.000000000
##   Strategy             0.666666667 0.000000000  0.015503876
##               Publisher
## Genre          Idea Factory International IE Institute
##   Action                      0.666666667  0.200000000
##   Adventure                   0.000000000  0.000000000
##   Fighting                    0.000000000  0.000000000
##   Misc                        0.000000000  0.800000000
##   Platform                    0.000000000  0.000000000
##   Puzzle                      0.000000000  0.000000000
##   Racing                      0.000000000  0.000000000
##   Role-Playing                0.333333333  0.000000000
##   Shooter                     0.000000000  0.000000000
##   Simulation                  0.000000000  0.000000000
##   Sports                      0.000000000  0.000000000
##   Strategy                    0.000000000  0.000000000
##               Publisher
## Genre          Ignition Entertainment Illusion Softworks      Imadio
##   Action                  0.081967213        1.000000000 0.000000000
##   Adventure               0.016393443        0.000000000 1.000000000
##   Fighting                0.344262295        0.000000000 0.000000000
##   Misc                    0.065573770        0.000000000 0.000000000
##   Platform                0.049180328        0.000000000 0.000000000
##   Puzzle                  0.131147541        0.000000000 0.000000000
##   Racing                  0.049180328        0.000000000 0.000000000
##   Role-Playing            0.049180328        0.000000000 0.000000000
##   Shooter                 0.098360656        0.000000000 0.000000000
##   Simulation              0.000000000        0.000000000 0.000000000
##   Sports                  0.098360656        0.000000000 0.000000000
##   Strategy                0.016393443        0.000000000 0.000000000
##               Publisher
## Genre          Image Epoch imageepoch Inc.  Imageworks      Imagic
##   Action       0.000000000     0.000000000 0.000000000 0.250000000
##   Adventure    0.000000000     0.500000000 0.000000000 0.000000000
##   Fighting     0.000000000     0.000000000 0.000000000 0.000000000
##   Misc         0.000000000     0.000000000 0.000000000 0.000000000
##   Platform     0.000000000     0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000     0.000000000 0.000000000 0.000000000
##   Racing       0.000000000     0.000000000 0.000000000 0.000000000
##   Role-Playing 1.000000000     0.500000000 0.000000000 0.000000000
##   Shooter      0.000000000     0.000000000 0.000000000 0.750000000
##   Simulation   0.000000000     0.000000000 1.000000000 0.000000000
##   Sports       0.000000000     0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000     0.000000000 0.000000000 0.000000000
##               Publisher
## Genre            Imagineer        Imax Indie Games  Infogrames
##   Action       0.000000000 0.000000000 0.000000000 0.080645161
##   Adventure    0.187500000 0.000000000 0.666666667 0.064516129
##   Fighting     0.062500000 0.000000000 0.000000000 0.032258065
##   Misc         0.000000000 1.000000000 0.000000000 0.112903226
##   Platform     0.000000000 0.000000000 0.000000000 0.161290323
##   Puzzle       0.000000000 0.000000000 0.000000000 0.000000000
##   Racing       0.062500000 0.000000000 0.000000000 0.241935484
##   Role-Playing 0.250000000 0.000000000 0.000000000 0.032258065
##   Shooter      0.000000000 0.000000000 0.000000000 0.096774194
##   Simulation   0.062500000 0.000000000 0.333333333 0.016129032
##   Sports       0.375000000 0.000000000 0.000000000 0.112903226
##   Strategy     0.000000000 0.000000000 0.000000000 0.048387097
##               Publisher
## Genre          Insomniac Games Interchannel Interchannel-Holon   Intergrow
##   Action           1.000000000  0.000000000        0.000000000 0.000000000
##   Adventure        0.000000000  1.000000000        0.000000000 0.000000000
##   Fighting         0.000000000  0.000000000        0.000000000 0.000000000
##   Misc             0.000000000  0.000000000        0.000000000 0.000000000
##   Platform         0.000000000  0.000000000        0.000000000 1.000000000
##   Puzzle           0.000000000  0.000000000        0.000000000 0.000000000
##   Racing           0.000000000  0.000000000        0.000000000 0.000000000
##   Role-Playing     0.000000000  0.000000000        0.000000000 0.000000000
##   Shooter          0.000000000  0.000000000        0.000000000 0.000000000
##   Simulation       0.000000000  0.000000000        0.000000000 0.000000000
##   Sports           0.000000000  0.000000000        0.000000000 0.000000000
##   Strategy         0.000000000  0.000000000        1.000000000 0.000000000
##               Publisher
## Genre            Interplay Interplay Productions
##   Action       0.200000000           0.000000000
##   Adventure    0.033333333           0.000000000
##   Fighting     0.033333333           0.000000000
##   Misc         0.066666667           0.000000000
##   Platform     0.100000000           0.000000000
##   Puzzle       0.000000000           0.000000000
##   Racing       0.133333333           0.000000000
##   Role-Playing 0.100000000           0.000000000
##   Shooter      0.166666667           1.000000000
##   Simulation   0.066666667           0.000000000
##   Sports       0.100000000           0.000000000
##   Strategy     0.000000000           0.000000000
##               Publisher
## Genre          Interworks Unlimited, Inc. Inti Creates
##   Action                      0.000000000  1.000000000
##   Adventure                   0.000000000  0.000000000
##   Fighting                    0.000000000  0.000000000
##   Misc                        0.000000000  0.000000000
##   Platform                    0.000000000  0.000000000
##   Puzzle                      0.000000000  0.000000000
##   Racing                      0.000000000  0.000000000
##   Role-Playing                0.000000000  0.000000000
##   Shooter                     0.000000000  0.000000000
##   Simulation                  0.000000000  0.000000000
##   Sports                      1.000000000  0.000000000
##   Strategy                    0.000000000  0.000000000
##               Publisher
## Genre          Introversion Software inXile Entertainment
##   Action                 1.000000000          0.000000000
##   Adventure              0.000000000          0.000000000
##   Fighting               0.000000000          0.000000000
##   Misc                   0.000000000          0.000000000
##   Platform               0.000000000          0.000000000
##   Puzzle                 0.000000000          0.000000000
##   Racing                 0.000000000          0.000000000
##   Role-Playing           0.000000000          1.000000000
##   Shooter                0.000000000          0.000000000
##   Simulation             0.000000000          0.000000000
##   Sports                 0.000000000          0.000000000
##   Strategy               0.000000000          0.000000000
##               Publisher
## Genre          Irem Software Engineering ITT Family Games   Ivolgamus
##   Action                     0.250000000      1.000000000 0.000000000
##   Adventure                  0.000000000      0.000000000 0.000000000
##   Fighting                   0.083333333      0.000000000 0.000000000
##   Misc                       0.416666667      0.000000000 0.000000000
##   Platform                   0.000000000      0.000000000 0.000000000
##   Puzzle                     0.000000000      0.000000000 1.000000000
##   Racing                     0.000000000      0.000000000 0.000000000
##   Role-Playing               0.083333333      0.000000000 0.000000000
##   Shooter                    0.083333333      0.000000000 0.000000000
##   Simulation                 0.000000000      0.000000000 0.000000000
##   Sports                     0.000000000      0.000000000 0.000000000
##   Strategy                   0.083333333      0.000000000 0.000000000
##               Publisher
## Genre                 iWin Jack of All Games      Jaleco
##   Action       0.000000000       0.000000000 0.086956522
##   Adventure    0.000000000       0.000000000 0.000000000
##   Fighting     0.000000000       0.000000000 0.043478261
##   Misc         0.000000000       0.000000000 0.086956522
##   Platform     0.000000000       0.666666667 0.000000000
##   Puzzle       1.000000000       0.000000000 0.130434783
##   Racing       0.000000000       0.000000000 0.260869565
##   Role-Playing 0.000000000       0.000000000 0.000000000
##   Shooter      0.000000000       0.333333333 0.043478261
##   Simulation   0.000000000       0.000000000 0.000000000
##   Sports       0.000000000       0.000000000 0.217391304
##   Strategy     0.000000000       0.000000000 0.130434783
##               Publisher
## Genre          Jester Interactive     Jorudan JoWood Productions
##   Action              0.000000000 0.000000000        0.136363636
##   Adventure           0.000000000 0.000000000        0.136363636
##   Fighting            0.000000000 0.000000000        0.000000000
##   Misc                0.333333333 0.000000000        0.045454545
##   Platform            0.000000000 0.000000000        0.090909091
##   Puzzle              0.000000000 0.000000000        0.045454545
##   Racing              0.666666667 0.000000000        0.000000000
##   Role-Playing        0.000000000 0.000000000        0.227272727
##   Shooter             0.000000000 0.000000000        0.000000000
##   Simulation          0.000000000 1.000000000        0.090909091
##   Sports              0.000000000 0.000000000        0.045454545
##   Strategy            0.000000000 0.000000000        0.181818182
##               Publisher
## Genre          Just Flight         JVC Kadokawa Games Kadokawa Shoten
##   Action       0.000000000 0.125000000    0.333333333     0.040000000
##   Adventure    0.000000000 0.000000000    0.400000000     0.660000000
##   Fighting     0.000000000 0.125000000    0.000000000     0.000000000
##   Misc         0.000000000 0.125000000    0.066666667     0.020000000
##   Platform     0.000000000 0.000000000    0.000000000     0.000000000
##   Puzzle       0.000000000 0.125000000    0.000000000     0.000000000
##   Racing       0.000000000 0.250000000    0.000000000     0.000000000
##   Role-Playing 0.000000000 0.000000000    0.133333333     0.220000000
##   Shooter      0.000000000 0.250000000    0.000000000     0.000000000
##   Simulation   1.000000000 0.000000000    0.066666667     0.020000000
##   Sports       0.000000000 0.000000000    0.000000000     0.020000000
##   Strategy     0.000000000 0.000000000    0.000000000     0.020000000
##               Publisher
## Genre          Kaga Create Kalypso Media       Kamui Kando Games
##   Action       0.500000000   0.103448276 0.000000000 0.000000000
##   Adventure    0.333333333   0.068965517 0.000000000 0.000000000
##   Fighting     0.000000000   0.000000000 0.000000000 0.000000000
##   Misc         0.166666667   0.034482759 1.000000000 0.000000000
##   Platform     0.000000000   0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000   0.000000000 0.000000000 0.000000000
##   Racing       0.000000000   0.000000000 0.000000000 0.000000000
##   Role-Playing 0.000000000   0.000000000 0.000000000 0.000000000
##   Shooter      0.000000000   0.000000000 0.000000000 0.000000000
##   Simulation   0.000000000   0.241379310 0.000000000 1.000000000
##   Sports       0.000000000   0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000   0.551724138 0.000000000 0.000000000
##               Publisher
## Genre          Karin Entertainment       Kemco         KID Kids Station
##   Action               0.000000000 0.285714286 0.000000000  0.000000000
##   Adventure            0.000000000 0.047619048 1.000000000  1.000000000
##   Fighting             0.000000000 0.000000000 0.000000000  0.000000000
##   Misc                 1.000000000 0.047619048 0.000000000  0.000000000
##   Platform             0.000000000 0.095238095 0.000000000  0.000000000
##   Puzzle               0.000000000 0.142857143 0.000000000  0.000000000
##   Racing               0.000000000 0.238095238 0.000000000  0.000000000
##   Role-Playing         0.000000000 0.047619048 0.000000000  0.000000000
##   Shooter              0.000000000 0.047619048 0.000000000  0.000000000
##   Simulation           0.000000000 0.000000000 0.000000000  0.000000000
##   Sports               0.000000000 0.047619048 0.000000000  0.000000000
##   Strategy             0.000000000 0.000000000 0.000000000  0.000000000
##               Publisher
## Genre          King Records Knowledge Adventure  Koch Media
##   Action        0.000000000         0.250000000 0.235294118
##   Adventure     0.000000000         0.250000000 0.117647059
##   Fighting      0.000000000         0.000000000 0.000000000
##   Misc          0.000000000         0.250000000 0.000000000
##   Platform      0.000000000         0.000000000 0.000000000
##   Puzzle        0.000000000         0.000000000 0.058823529
##   Racing        0.000000000         0.000000000 0.000000000
##   Role-Playing  1.000000000         0.000000000 0.058823529
##   Shooter       0.000000000         0.000000000 0.000000000
##   Simulation    0.000000000         0.000000000 0.352941176
##   Sports        0.000000000         0.250000000 0.117647059
##   Strategy      0.000000000         0.000000000 0.058823529
##               Publisher
## Genre          Kokopeli Digital Studios Konami Digital Entertainment
##   Action                    0.000000000                  0.177884615
##   Adventure                 0.000000000                  0.063701923
##   Fighting                  1.000000000                  0.024038462
##   Misc                      0.000000000                  0.092548077
##   Platform                  0.000000000                  0.048076923
##   Puzzle                    0.000000000                  0.012019231
##   Racing                    0.000000000                  0.015625000
##   Role-Playing              0.000000000                  0.044471154
##   Shooter                   0.000000000                  0.048076923
##   Simulation                0.000000000                  0.103365385
##   Sports                    0.000000000                  0.336538462
##   Strategy                  0.000000000                  0.033653846
##               Publisher
## Genre            Kool Kizz         KSS      Laguna Legacy Interactive
##   Action       0.000000000 0.000000000 0.250000000        0.000000000
##   Adventure    0.000000000 0.000000000 0.000000000        1.000000000
##   Fighting     0.000000000 0.000000000 0.000000000        0.000000000
##   Misc         0.000000000 1.000000000 0.000000000        0.000000000
##   Platform     0.000000000 0.000000000 0.500000000        0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000        0.000000000
##   Racing       0.000000000 0.000000000 0.000000000        0.000000000
##   Role-Playing 0.000000000 0.000000000 0.250000000        0.000000000
##   Shooter      0.000000000 0.000000000 0.000000000        0.000000000
##   Simulation   0.000000000 0.000000000 0.000000000        0.000000000
##   Sports       0.000000000 0.000000000 0.000000000        0.000000000
##   Strategy     1.000000000 0.000000000 0.000000000        0.000000000
##               Publisher
## Genre           LEGO Media     Level 5 Lexicon Entertainment Licensed 4U
##   Action       0.142857143 0.222222222           0.000000000 0.666666667
##   Adventure    0.142857143 0.148148148           0.000000000 0.000000000
##   Fighting     0.000000000 0.000000000           0.000000000 0.000000000
##   Misc         0.000000000 0.037037037           0.000000000 0.000000000
##   Platform     0.142857143 0.000000000           0.000000000 0.000000000
##   Puzzle       0.000000000 0.111111111           0.000000000 0.333333333
##   Racing       0.428571429 0.000000000           0.000000000 0.000000000
##   Role-Playing 0.000000000 0.407407407           0.000000000 0.000000000
##   Shooter      0.000000000 0.000000000           0.500000000 0.000000000
##   Simulation   0.000000000 0.000000000           0.500000000 0.000000000
##   Sports       0.000000000 0.037037037           0.000000000 0.000000000
##   Strategy     0.142857143 0.037037037           0.000000000 0.000000000
##               Publisher
## Genre          Lighthouse Interactive Liquid Games Little Orbit
##   Action                  0.000000000  0.000000000  0.653846154
##   Adventure               0.000000000  0.000000000  0.269230769
##   Fighting                0.000000000  0.000000000  0.000000000
##   Misc                    0.000000000  0.000000000  0.000000000
##   Platform                0.000000000  0.000000000  0.000000000
##   Puzzle                  0.000000000  0.500000000  0.000000000
##   Racing                  0.000000000  0.500000000  0.000000000
##   Role-Playing            0.000000000  0.000000000  0.000000000
##   Shooter                 0.000000000  0.000000000  0.000000000
##   Simulation              1.000000000  0.000000000  0.076923077
##   Sports                  0.000000000  0.000000000  0.000000000
##   Strategy                0.000000000  0.000000000  0.000000000
##               Publisher
## Genre                Locus   LSP Games   LucasArts    Mad Catz
##   Action       0.000000000 0.250000000 0.533333333 0.000000000
##   Adventure    0.000000000 0.000000000 0.033333333 0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000 0.000000000
##   Misc         0.000000000 0.000000000 0.000000000 0.333333333
##   Platform     0.000000000 0.500000000 0.000000000 0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000 0.000000000
##   Racing       0.000000000 0.000000000 0.022222222 0.000000000
##   Role-Playing 1.000000000 0.000000000 0.022222222 0.000000000
##   Shooter      0.000000000 0.250000000 0.211111111 0.000000000
##   Simulation   0.000000000 0.000000000 0.066666667 0.333333333
##   Sports       0.000000000 0.000000000 0.000000000 0.333333333
##   Strategy     0.000000000 0.000000000 0.111111111 0.000000000
##               Publisher
## Genre          Magical Company       Magix Majesco Entertainment
##   Action           0.000000000 0.000000000           0.163043478
##   Adventure        0.000000000 0.000000000           0.043478261
##   Fighting         0.000000000 0.000000000           0.032608696
##   Misc             0.000000000 1.000000000           0.228260870
##   Platform         0.000000000 0.000000000           0.043478261
##   Puzzle           0.000000000 0.000000000           0.097826087
##   Racing           0.000000000 0.000000000           0.054347826
##   Role-Playing     0.000000000 0.000000000           0.021739130
##   Shooter          0.000000000 0.000000000           0.097826087
##   Simulation       0.000000000 0.000000000           0.141304348
##   Sports           1.000000000 0.000000000           0.054347826
##   Strategy         0.000000000 0.000000000           0.021739130
##               Publisher
## Genre          Mamba Games Marvel Entertainment Marvelous Entertainment
##   Action       0.000000000          1.000000000             0.500000000
##   Adventure    0.500000000          0.000000000             0.000000000
##   Fighting     0.000000000          0.000000000             0.083333333
##   Misc         0.000000000          0.000000000             0.166666667
##   Platform     0.000000000          0.000000000             0.000000000
##   Puzzle       0.000000000          0.000000000             0.000000000
##   Racing       0.000000000          0.000000000             0.000000000
##   Role-Playing 0.000000000          0.000000000             0.166666667
##   Shooter      0.000000000          0.000000000             0.000000000
##   Simulation   0.000000000          0.000000000             0.083333333
##   Sports       0.000000000          0.000000000             0.000000000
##   Strategy     0.500000000          0.000000000             0.000000000
##               Publisher
## Genre          Marvelous Games Marvelous Interactive Masque Publishing
##   Action           0.000000000           0.178571429       0.000000000
##   Adventure        1.000000000           0.250000000       0.000000000
##   Fighting         0.000000000           0.160714286       0.000000000
##   Misc             0.000000000           0.035714286       0.000000000
##   Platform         0.000000000           0.000000000       0.000000000
##   Puzzle           0.000000000           0.000000000       0.000000000
##   Racing           0.000000000           0.000000000       0.000000000
##   Role-Playing     0.000000000           0.232142857       0.000000000
##   Shooter          0.000000000           0.000000000       0.000000000
##   Simulation       0.000000000           0.107142857       1.000000000
##   Sports           0.000000000           0.035714286       0.000000000
##   Strategy         0.000000000           0.000000000       0.000000000
##               Publisher
## Genre          Mastertronic     Mastiff Mattel Interactive    Max Five
##   Action        0.000000000 0.000000000        0.333333333 0.000000000
##   Adventure     0.076923077 0.062500000        0.166666667 0.000000000
##   Fighting      0.000000000 0.000000000        0.000000000 0.000000000
##   Misc          0.076923077 0.125000000        0.000000000 0.000000000
##   Platform      0.000000000 0.000000000        0.000000000 0.000000000
##   Puzzle        0.307692308 0.000000000        0.083333333 0.000000000
##   Racing        0.076923077 0.000000000        0.083333333 0.000000000
##   Role-Playing  0.000000000 0.000000000        0.000000000 1.000000000
##   Shooter       0.307692308 0.250000000        0.083333333 0.000000000
##   Simulation    0.000000000 0.062500000        0.000000000 0.000000000
##   Sports        0.076923077 0.500000000        0.250000000 0.000000000
##   Strategy      0.076923077 0.000000000        0.000000000 0.000000000
##               Publisher
## Genre          Maximum Family Games       Maxis MC2 Entertainment
##   Action                1.000000000 0.000000000       0.000000000
##   Adventure             0.000000000 0.000000000       0.666666667
##   Fighting              0.000000000 0.000000000       0.000000000
##   Misc                  0.000000000 0.000000000       0.000000000
##   Platform              0.000000000 0.000000000       0.000000000
##   Puzzle                0.000000000 0.000000000       0.000000000
##   Racing                0.000000000 0.000000000       0.000000000
##   Role-Playing          0.000000000 0.000000000       0.000000000
##   Shooter               0.000000000 0.000000000       0.333333333
##   Simulation            0.000000000 1.000000000       0.000000000
##   Sports                0.000000000 0.000000000       0.000000000
##   Strategy              0.000000000 0.000000000       0.000000000
##               Publisher
## Genre          Media Entertainment Media Factory Media Rings Media Works
##   Action               0.000000000   0.000000000 0.000000000 0.000000000
##   Adventure            0.000000000   0.500000000 0.000000000 0.400000000
##   Fighting             0.000000000   0.000000000 0.000000000 0.000000000
##   Misc                 1.000000000   0.000000000 0.000000000 0.200000000
##   Platform             0.000000000   0.000000000 0.000000000 0.000000000
##   Puzzle               0.000000000   0.000000000 0.000000000 0.000000000
##   Racing               0.000000000   0.000000000 0.333333333 0.000000000
##   Role-Playing         0.000000000   0.000000000 0.333333333 0.000000000
##   Shooter              0.000000000   0.000000000 0.000000000 0.000000000
##   Simulation           0.000000000   0.000000000 0.000000000 0.000000000
##   Sports               0.000000000   0.500000000 0.333333333 0.000000000
##   Strategy             0.000000000   0.000000000 0.000000000 0.400000000
##               Publisher
## Genre           MediaQuest Men-A-Vision Mentor Interactive Mercury Games
##   Action       0.000000000  1.000000000        0.000000000   0.000000000
##   Adventure    0.000000000  0.000000000        0.000000000   0.000000000
##   Fighting     0.000000000  0.000000000        0.000000000   0.000000000
##   Misc         0.000000000  0.000000000        1.000000000   0.000000000
##   Platform     0.000000000  0.000000000        0.000000000   0.000000000
##   Puzzle       1.000000000  0.000000000        0.000000000   0.000000000
##   Racing       0.000000000  0.000000000        0.000000000   0.000000000
##   Role-Playing 0.000000000  0.000000000        0.000000000   0.500000000
##   Shooter      0.000000000  0.000000000        0.000000000   0.000000000
##   Simulation   0.000000000  0.000000000        0.000000000   0.500000000
##   Sports       0.000000000  0.000000000        0.000000000   0.000000000
##   Strategy     0.000000000  0.000000000        0.000000000   0.000000000
##               Publisher
## Genre          Merscom LLC    Metro 3D Michaelsoft Micro Cabin    Microids
##   Action       0.000000000 0.000000000 0.000000000 0.000000000 0.300000000
##   Adventure    1.000000000 0.000000000 0.000000000 0.000000000 0.600000000
##   Fighting     0.000000000 0.083333333 0.000000000 0.000000000 0.000000000
##   Misc         0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Platform     0.000000000 0.083333333 0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000 0.333333333 0.000000000
##   Racing       0.000000000 0.333333333 0.000000000 0.000000000 0.000000000
##   Role-Playing 0.000000000 0.166666667 1.000000000 0.333333333 0.000000000
##   Shooter      0.000000000 0.083333333 0.000000000 0.000000000 0.000000000
##   Simulation   0.000000000 0.250000000 0.000000000 0.333333333 0.000000000
##   Sports       0.000000000 0.000000000 0.000000000 0.000000000 0.100000000
##   Strategy     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre           Microprose Microsoft Game Studios
##   Action       0.000000000            0.111111111
##   Adventure    0.000000000            0.015873016
##   Fighting     0.000000000            0.026455026
##   Misc         0.166666667            0.179894180
##   Platform     0.000000000            0.031746032
##   Puzzle       0.000000000            0.005291005
##   Racing       0.000000000            0.116402116
##   Role-Playing 0.000000000            0.084656085
##   Shooter      0.000000000            0.148148148
##   Simulation   0.166666667            0.095238095
##   Sports       0.000000000            0.089947090
##   Strategy     0.666666667            0.095238095
##               Publisher
## Genre          Midas Interactive Entertainment Midway Games   Milestone
##   Action                           0.083333333  0.136363636 0.000000000
##   Adventure                        0.000000000  0.020202020 0.000000000
##   Fighting                         0.041666667  0.126262626 0.000000000
##   Misc                             0.041666667  0.101010101 0.000000000
##   Platform                         0.041666667  0.070707071 0.000000000
##   Puzzle                           0.125000000  0.020202020 0.000000000
##   Racing                           0.125000000  0.126262626 0.000000000
##   Role-Playing                     0.041666667  0.020202020 0.000000000
##   Shooter                          0.166666667  0.085858586 1.000000000
##   Simulation                       0.041666667  0.000000000 0.000000000
##   Sports                           0.166666667  0.292929293 0.000000000
##   Strategy                         0.125000000  0.000000000 0.000000000
##               Publisher
## Genre          Milestone S.r.l Milestone S.r.l. Minato Station   Mindscape
##   Action           0.000000000      0.000000000    0.333333333 0.125000000
##   Adventure        0.000000000      0.000000000    0.666666667 0.031250000
##   Fighting         0.000000000      0.000000000    0.000000000 0.000000000
##   Misc             0.000000000      0.000000000    0.000000000 0.468750000
##   Platform         0.000000000      0.000000000    0.000000000 0.000000000
##   Puzzle           0.000000000      0.000000000    0.000000000 0.156250000
##   Racing           1.000000000      1.000000000    0.000000000 0.062500000
##   Role-Playing     0.000000000      0.000000000    0.000000000 0.031250000
##   Shooter          0.000000000      0.000000000    0.000000000 0.000000000
##   Simulation       0.000000000      0.000000000    0.000000000 0.000000000
##   Sports           0.000000000      0.000000000    0.000000000 0.031250000
##   Strategy         0.000000000      0.000000000    0.000000000 0.093750000
##               Publisher
## Genre          Mirai Shounen      Misawa      Mitsui   mixi, Inc
##   Action         0.000000000 0.000000000 0.000000000 1.000000000
##   Adventure      0.000000000 0.000000000 0.000000000 0.000000000
##   Fighting       0.000000000 0.000000000 0.000000000 0.000000000
##   Misc           1.000000000 0.000000000 0.000000000 0.000000000
##   Platform       0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle         0.000000000 0.000000000 0.000000000 0.000000000
##   Racing         0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing   0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter        0.000000000 0.000000000 1.000000000 0.000000000
##   Simulation     0.000000000 0.000000000 0.000000000 0.000000000
##   Sports         0.000000000 1.000000000 0.000000000 0.000000000
##   Strategy       0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre              MLB.com      Mojang Monte Christo Multimedia
##   Action       0.000000000 0.000000000              0.000000000
##   Adventure    0.000000000 1.000000000              0.000000000
##   Fighting     0.000000000 0.000000000              0.000000000
##   Misc         0.000000000 0.000000000              0.000000000
##   Platform     0.000000000 0.000000000              0.000000000
##   Puzzle       0.000000000 0.000000000              0.000000000
##   Racing       0.000000000 0.000000000              0.000000000
##   Role-Playing 0.000000000 0.000000000              0.000000000
##   Shooter      0.000000000 0.000000000              0.000000000
##   Simulation   0.000000000 0.000000000              1.000000000
##   Sports       1.000000000 0.000000000              0.000000000
##   Strategy     0.000000000 0.000000000              0.000000000
##               Publisher
## Genre                 Moss         MTO   MTV Games Mud Duck Productions
##   Action       0.000000000 0.375000000 0.000000000          0.000000000
##   Adventure    0.000000000 0.000000000 0.000000000          0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000          0.000000000
##   Misc         0.000000000 0.000000000 1.000000000          0.666666667
##   Platform     0.000000000 0.000000000 0.000000000          0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000          0.000000000
##   Racing       0.000000000 0.125000000 0.000000000          0.000000000
##   Role-Playing 0.000000000 0.000000000 0.000000000          0.000000000
##   Shooter      1.000000000 0.000000000 0.000000000          0.000000000
##   Simulation   0.000000000 0.500000000 0.000000000          0.000000000
##   Sports       0.000000000 0.000000000 0.000000000          0.333333333
##   Strategy     0.000000000 0.000000000 0.000000000          0.000000000
##               Publisher
## Genre          Mumbo Jumbo       Mycom Myelin Media    Mystique
##   Action       0.000000000 1.000000000  0.000000000 1.000000000
##   Adventure    0.000000000 0.000000000  0.000000000 0.000000000
##   Fighting     0.000000000 0.000000000  0.000000000 0.000000000
##   Misc         0.000000000 0.000000000  1.000000000 0.000000000
##   Platform     0.000000000 0.000000000  0.000000000 0.000000000
##   Puzzle       0.666666667 0.000000000  0.000000000 0.000000000
##   Racing       0.000000000 0.000000000  0.000000000 0.000000000
##   Role-Playing 0.000000000 0.000000000  0.000000000 0.000000000
##   Shooter      0.000000000 0.000000000  0.000000000 0.000000000
##   Simulation   0.000000000 0.000000000  0.000000000 0.000000000
##   Sports       0.166666667 0.000000000  0.000000000 0.000000000
##   Strategy     0.166666667 0.000000000  0.000000000 0.000000000
##               Publisher
## Genre                  N/A Namco Bandai Games     Natsume Navarre Corp
##   Action       0.120689655        0.266094421 0.000000000  0.000000000
##   Adventure    0.068965517        0.062231760 0.058823529  0.000000000
##   Fighting     0.034482759        0.143776824 0.058823529  0.000000000
##   Misc         0.465517241        0.104077253 0.058823529  0.000000000
##   Platform     0.034482759        0.020386266 0.058823529  0.000000000
##   Puzzle       0.017241379        0.021459227 0.117647059  0.000000000
##   Racing       0.017241379        0.028969957 0.000000000  0.000000000
##   Role-Playing 0.034482759        0.162017167 0.117647059  0.000000000
##   Shooter      0.034482759        0.039699571 0.000000000  0.000000000
##   Simulation   0.068965517        0.031115880 0.176470588  0.000000000
##   Sports       0.051724138        0.054721030 0.294117647  1.000000000
##   Strategy     0.051724138        0.065450644 0.058823529  0.000000000
##               Publisher
## Genre           Naxat Soft         NCS      NCSoft NDA Productions
##   Action       0.000000000 0.000000000 0.166666667     0.000000000
##   Adventure    0.000000000 0.000000000 0.000000000     0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000     0.000000000
##   Misc         1.000000000 0.000000000 0.000000000     0.000000000
##   Platform     0.000000000 0.000000000 0.000000000     0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000     0.000000000
##   Racing       0.000000000 0.000000000 0.000000000     0.000000000
##   Role-Playing 0.000000000 0.000000000 0.833333333     0.000000000
##   Shooter      0.000000000 0.000000000 0.000000000     1.000000000
##   Simulation   0.000000000 0.000000000 0.000000000     0.000000000
##   Sports       0.000000000 0.000000000 0.000000000     0.000000000
##   Strategy     0.000000000 1.000000000 0.000000000     0.000000000
##               Publisher
## Genre                  NEC NEC Interchannel Neko Entertainment     NetRevo
##   Action       0.000000000      0.000000000        0.142857143 0.500000000
##   Adventure    0.333333333      0.625000000        0.285714286 0.500000000
##   Fighting     0.000000000      0.000000000        0.000000000 0.000000000
##   Misc         0.000000000      0.000000000        0.142857143 0.000000000
##   Platform     0.000000000      0.000000000        0.000000000 0.000000000
##   Puzzle       0.000000000      0.000000000        0.142857143 0.000000000
##   Racing       0.000000000      0.000000000        0.000000000 0.000000000
##   Role-Playing 0.666666667      0.125000000        0.000000000 0.000000000
##   Shooter      0.000000000      0.000000000        0.285714286 0.000000000
##   Simulation   0.000000000      0.125000000        0.000000000 0.000000000
##   Sports       0.000000000      0.000000000        0.000000000 0.000000000
##   Strategy     0.000000000      0.125000000        0.000000000 0.000000000
##               Publisher
## Genre                  New New World Computing    NewKidCo       Nexon
##   Action       0.000000000         0.000000000 0.222222222 0.000000000
##   Adventure    0.000000000         0.000000000 0.111111111 0.000000000
##   Fighting     1.000000000         0.000000000 0.111111111 0.000000000
##   Misc         0.000000000         0.000000000 0.444444444 0.000000000
##   Platform     0.000000000         0.000000000 0.111111111 0.000000000
##   Puzzle       0.000000000         0.000000000 0.000000000 0.000000000
##   Racing       0.000000000         0.000000000 0.000000000 0.000000000
##   Role-Playing 0.000000000         0.000000000 0.000000000 1.000000000
##   Shooter      0.000000000         0.000000000 0.000000000 0.000000000
##   Simulation   0.000000000         0.000000000 0.000000000 0.000000000
##   Sports       0.000000000         0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000         1.000000000 0.000000000 0.000000000
##               Publisher
## Genre           Nichibutsu Nihon Falcom Corporation    Nintendo
##   Action       0.000000000              0.285714286 0.112375533
##   Adventure    0.000000000              0.000000000 0.049786629
##   Fighting     0.000000000              0.000000000 0.025604552
##   Misc         1.000000000              0.000000000 0.142247511
##   Platform     0.000000000              0.000000000 0.159317212
##   Puzzle       0.000000000              0.000000000 0.105263158
##   Racing       0.000000000              0.000000000 0.052631579
##   Role-Playing 0.000000000              0.714285714 0.150782361
##   Shooter      0.000000000              0.000000000 0.036984353
##   Simulation   0.000000000              0.000000000 0.041251778
##   Sports       0.000000000              0.000000000 0.078236131
##   Strategy     0.000000000              0.000000000 0.045519203
##               Publisher
## Genre          Nippon Amuse Nippon Columbia Nippon Ichi Software
##   Action        0.000000000     0.571428571          0.123809524
##   Adventure     0.000000000     0.000000000          0.114285714
##   Fighting      0.000000000     0.000000000          0.019047619
##   Misc          1.000000000     0.428571429          0.028571429
##   Platform      0.000000000     0.000000000          0.028571429
##   Puzzle        0.000000000     0.000000000          0.000000000
##   Racing        0.000000000     0.000000000          0.000000000
##   Role-Playing  0.000000000     0.000000000          0.657142857
##   Shooter       0.000000000     0.000000000          0.009523810
##   Simulation    0.000000000     0.000000000          0.000000000
##   Sports        0.000000000     0.000000000          0.000000000
##   Strategy      0.000000000     0.000000000          0.019047619
##               Publisher
## Genre          Nippon Telenet   Nitroplus     Nobilis Nordcurrent
##   Action          0.000000000 0.000000000 0.153846154 0.200000000
##   Adventure       0.000000000 0.500000000 0.153846154 0.000000000
##   Fighting        0.000000000 0.500000000 0.000000000 0.000000000
##   Misc            1.000000000 0.000000000 0.076923077 0.200000000
##   Platform        0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle          0.000000000 0.000000000 0.000000000 0.200000000
##   Racing          0.000000000 0.000000000 0.076923077 0.000000000
##   Role-Playing    0.000000000 0.000000000 0.153846154 0.000000000
##   Shooter         0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation      0.000000000 0.000000000 0.384615385 0.000000000
##   Sports          0.000000000 0.000000000 0.000000000 0.400000000
##   Strategy        0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Nordic Games   NovaLogic Number None     O-Games
##   Action        0.228571429 0.000000000 0.000000000 0.000000000
##   Adventure     0.057142857 0.000000000 0.000000000 0.058823529
##   Fighting      0.000000000 0.000000000 0.000000000 0.000000000
##   Misc          0.314285714 0.000000000 0.000000000 0.235294118
##   Platform      0.000000000 0.000000000 1.000000000 0.000000000
##   Puzzle        0.000000000 0.000000000 0.000000000 0.294117647
##   Racing        0.200000000 0.000000000 0.000000000 0.058823529
##   Role-Playing  0.028571429 0.000000000 0.000000000 0.000000000
##   Shooter       0.057142857 1.000000000 0.000000000 0.058823529
##   Simulation    0.000000000 0.000000000 0.000000000 0.000000000
##   Sports        0.057142857 0.000000000 0.000000000 0.294117647
##   Strategy      0.057142857 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          O3 Entertainment       Ocean Office Create   On Demand
##   Action            0.000000000 0.214285714   0.000000000 0.000000000
##   Adventure         0.000000000 0.000000000   0.000000000 0.000000000
##   Fighting          0.000000000 0.142857143   0.000000000 0.000000000
##   Misc              0.000000000 0.071428571   0.000000000 0.000000000
##   Platform          0.000000000 0.214285714   0.000000000 0.000000000
##   Puzzle            0.333333333 0.071428571   0.000000000 0.000000000
##   Racing            0.000000000 0.142857143   0.000000000 0.000000000
##   Role-Playing      0.000000000 0.000000000   0.000000000 1.000000000
##   Shooter           0.333333333 0.071428571   0.000000000 0.000000000
##   Simulation        0.333333333 0.000000000   1.000000000 0.000000000
##   Sports            0.000000000 0.071428571   0.000000000 0.000000000
##   Strategy          0.000000000 0.000000000   0.000000000 0.000000000
##               Publisher
## Genre            Ongakukan Origin Systems     Otomate Oxygen Interactive
##   Action       0.000000000    0.000000000 0.000000000        0.136363636
##   Adventure    0.000000000    0.000000000 1.000000000        0.090909091
##   Fighting     0.000000000    0.000000000 0.000000000        0.000000000
##   Misc         0.000000000    0.000000000 0.000000000        0.363636364
##   Platform     0.000000000    0.000000000 0.000000000        0.090909091
##   Puzzle       0.000000000    0.000000000 0.000000000        0.090909091
##   Racing       0.000000000    0.000000000 0.000000000        0.000000000
##   Role-Playing 0.000000000    0.000000000 0.000000000        0.000000000
##   Shooter      0.000000000    0.000000000 0.000000000        0.000000000
##   Simulation   1.000000000    1.000000000 0.000000000        0.000000000
##   Sports       0.000000000    0.000000000 0.000000000        0.227272727
##   Strategy     0.000000000    0.000000000 0.000000000        0.000000000
##               Publisher
## Genre             P2 Games Pacific Century Cyber Works Pack-In-Video
##   Action       0.000000000                 0.000000000   0.000000000
##   Adventure    0.000000000                 0.000000000   0.500000000
##   Fighting     0.000000000                 0.000000000   0.000000000
##   Misc         0.666666667                 1.000000000   0.000000000
##   Platform     0.000000000                 0.000000000   0.000000000
##   Puzzle       0.333333333                 0.000000000   0.000000000
##   Racing       0.000000000                 0.000000000   0.000000000
##   Role-Playing 0.000000000                 0.000000000   0.000000000
##   Shooter      0.000000000                 0.000000000   0.000000000
##   Simulation   0.000000000                 0.000000000   0.500000000
##   Sports       0.000000000                 0.000000000   0.000000000
##   Strategy     0.000000000                 0.000000000   0.000000000
##               Publisher
## Genre          Pack In Soft      Palcom Panther Software        Paon
##   Action        0.000000000 1.000000000      0.000000000 0.000000000
##   Adventure     0.000000000 0.000000000      0.000000000 0.000000000
##   Fighting      0.000000000 0.000000000      0.000000000 0.000000000
##   Misc          0.000000000 0.000000000      0.000000000 1.000000000
##   Platform      0.000000000 0.000000000      0.000000000 0.000000000
##   Puzzle        0.000000000 0.000000000      0.000000000 0.000000000
##   Racing        0.000000000 0.000000000      0.000000000 0.000000000
##   Role-Playing  0.000000000 0.000000000      1.000000000 0.000000000
##   Shooter       0.000000000 0.000000000      0.000000000 0.000000000
##   Simulation    1.000000000 0.000000000      0.000000000 0.000000000
##   Sports        0.000000000 0.000000000      0.000000000 0.000000000
##   Strategy      0.000000000 0.000000000      0.000000000 0.000000000
##               Publisher
## Genre          Paon Corporation Paradox Development Paradox Interactive
##   Action            0.000000000         0.000000000         0.000000000
##   Adventure         0.000000000         0.000000000         0.000000000
##   Fighting          0.000000000         0.000000000         0.000000000
##   Misc              1.000000000         0.000000000         0.043478261
##   Platform          0.000000000         0.000000000         0.000000000
##   Puzzle            0.000000000         0.000000000         0.000000000
##   Racing            0.000000000         0.000000000         0.000000000
##   Role-Playing      0.000000000         0.000000000         0.217391304
##   Shooter           0.000000000         0.000000000         0.000000000
##   Simulation        0.000000000         1.000000000         0.173913043
##   Sports            0.000000000         0.000000000         0.000000000
##   Strategy          0.000000000         0.000000000         0.565217391
##               Publisher
## Genre          Parker Bros. Performance Designed Products  Phantagram
##   Action        0.714285714                   0.000000000 0.000000000
##   Adventure     0.000000000                   0.000000000 0.000000000
##   Fighting      0.000000000                   0.000000000 0.000000000
##   Misc          0.000000000                   0.000000000 0.000000000
##   Platform      0.142857143                   0.000000000 0.000000000
##   Puzzle        0.142857143                   1.000000000 0.000000000
##   Racing        0.000000000                   0.000000000 0.000000000
##   Role-Playing  0.000000000                   0.000000000 0.000000000
##   Shooter       0.000000000                   0.000000000 0.000000000
##   Simulation    0.000000000                   0.000000000 1.000000000
##   Sports        0.000000000                   0.000000000 0.000000000
##   Strategy      0.000000000                   0.000000000 0.000000000
##               Publisher
## Genre          Phantom EFX  Phenomedia Phoenix Games      Piacci
##   Action       0.000000000 0.000000000   0.000000000 0.000000000
##   Adventure    0.000000000 0.000000000   0.000000000 1.000000000
##   Fighting     0.000000000 0.000000000   0.000000000 0.000000000
##   Misc         0.000000000 0.000000000   0.000000000 0.000000000
##   Platform     0.000000000 0.250000000   0.000000000 0.000000000
##   Puzzle       0.000000000 0.500000000   0.000000000 0.000000000
##   Racing       0.000000000 0.250000000   0.000000000 0.000000000
##   Role-Playing 0.000000000 0.000000000   0.000000000 0.000000000
##   Shooter      1.000000000 0.000000000   1.000000000 0.000000000
##   Simulation   0.000000000 0.000000000   0.000000000 0.000000000
##   Sports       0.000000000 0.000000000   0.000000000 0.000000000
##   Strategy     0.000000000 0.000000000   0.000000000 0.000000000
##               Publisher
## Genre             Pinnacle Pioneer LDC     Play It Playlogic Game Factory
##   Action       0.000000000 0.000000000 0.000000000            0.428571429
##   Adventure    0.000000000 0.750000000 0.000000000            0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000            0.000000000
##   Misc         0.400000000 0.000000000 0.285714286            0.071428571
##   Platform     0.000000000 0.000000000 0.071428571            0.000000000
##   Puzzle       0.200000000 0.000000000 0.000000000            0.142857143
##   Racing       0.000000000 0.250000000 0.285714286            0.000000000
##   Role-Playing 0.000000000 0.000000000 0.000000000            0.000000000
##   Shooter      0.000000000 0.000000000 0.285714286            0.142857143
##   Simulation   0.000000000 0.000000000 0.000000000            0.000000000
##   Sports       0.200000000 0.000000000 0.071428571            0.071428571
##   Strategy     0.200000000 0.000000000 0.000000000            0.142857143
##               Publisher
## Genre            Playmates    Playmore       PlayV      Plenty  PM Studios
##   Action       0.000000000 0.000000000 0.250000000 0.000000000 0.000000000
##   Adventure    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Fighting     0.000000000 1.000000000 0.000000000 0.000000000 0.000000000
##   Misc         0.000000000 0.000000000 0.250000000 1.000000000 1.000000000
##   Platform     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000 0.000000000 0.500000000 0.000000000 0.000000000
##   Racing       1.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter      0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Sports       0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Pony Canyon PopCap Games Popcorn Arcade PopTop Software
##   Action       0.000000000  0.000000000    0.100000000     0.000000000
##   Adventure    0.000000000  0.066666667    0.000000000     0.000000000
##   Fighting     0.000000000  0.000000000    0.000000000     0.000000000
##   Misc         1.000000000  0.133333333    0.000000000     0.000000000
##   Platform     0.000000000  0.000000000    0.200000000     0.000000000
##   Puzzle       0.000000000  0.600000000    0.200000000     0.000000000
##   Racing       0.000000000  0.000000000    0.400000000     0.000000000
##   Role-Playing 0.000000000  0.000000000    0.000000000     0.000000000
##   Shooter      0.000000000  0.000000000    0.100000000     0.000000000
##   Simulation   0.000000000  0.000000000    0.000000000     0.000000000
##   Sports       0.000000000  0.000000000    0.000000000     0.000000000
##   Strategy     0.000000000  0.200000000    0.000000000     1.000000000
##               Publisher
## Genre                  Pow       PQube Princess Soft   Prototype
##   Action       0.000000000 0.256410256   0.000000000 0.037037037
##   Adventure    0.000000000 0.128205128   1.000000000 0.962962963
##   Fighting     0.000000000 0.435897436   0.000000000 0.000000000
##   Misc         0.000000000 0.025641026   0.000000000 0.000000000
##   Platform     0.000000000 0.000000000   0.000000000 0.000000000
##   Puzzle       1.000000000 0.000000000   0.000000000 0.000000000
##   Racing       0.000000000 0.025641026   0.000000000 0.000000000
##   Role-Playing 0.000000000 0.000000000   0.000000000 0.000000000
##   Shooter      0.000000000 0.051282051   0.000000000 0.000000000
##   Simulation   0.000000000 0.025641026   0.000000000 0.000000000
##   Sports       0.000000000 0.051282051   0.000000000 0.000000000
##   Strategy     0.000000000 0.000000000   0.000000000 0.000000000
##               Publisher
## Genre            Psygnosis      Quelle       Quest    Quinrose     Quintet
##   Action       0.156250000 0.000000000 0.000000000 0.214285714 0.000000000
##   Adventure    0.187500000 0.000000000 0.000000000 0.785714286 1.000000000
##   Fighting     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Misc         0.031250000 1.000000000 0.000000000 0.000000000 0.000000000
##   Platform     0.031250000 0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle       0.031250000 0.000000000 0.000000000 0.000000000 0.000000000
##   Racing       0.250000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing 0.031250000 0.000000000 1.000000000 0.000000000 0.000000000
##   Shooter      0.093750000 0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation   0.125000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Sports       0.062500000 0.000000000 0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Rage Software  Rain Games   Rebellion
##   Action         0.000000000 0.000000000 0.000000000
##   Adventure      0.000000000 0.000000000 0.000000000
##   Fighting       0.428571429 0.000000000 0.000000000
##   Misc           0.000000000 0.000000000 0.000000000
##   Platform       0.000000000 1.000000000 0.000000000
##   Puzzle         0.142857143 0.000000000 0.000000000
##   Racing         0.285714286 0.000000000 1.000000000
##   Role-Playing   0.000000000 0.000000000 0.000000000
##   Shooter        0.142857143 0.000000000 0.000000000
##   Simulation     0.000000000 0.000000000 0.000000000
##   Sports         0.000000000 0.000000000 0.000000000
##   Strategy       0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Rebellion Developments RED Entertainment     Red Orb
##   Action                  0.000000000       0.000000000 0.000000000
##   Adventure               0.000000000       1.000000000 1.000000000
##   Fighting                0.000000000       0.000000000 0.000000000
##   Misc                    0.000000000       0.000000000 0.000000000
##   Platform                0.000000000       0.000000000 0.000000000
##   Puzzle                  0.000000000       0.000000000 0.000000000
##   Racing                  0.000000000       0.000000000 0.000000000
##   Role-Playing            0.000000000       0.000000000 0.000000000
##   Shooter                 1.000000000       0.000000000 0.000000000
##   Simulation              0.000000000       0.000000000 0.000000000
##   Sports                  0.000000000       0.000000000 0.000000000
##   Strategy                0.000000000       0.000000000 0.000000000
##               Publisher
## Genre          Red Storm Entertainment   RedOctane Reef Entertainment
##   Action                   0.333333333 0.000000000        0.000000000
##   Adventure                0.000000000 0.000000000        0.571428571
##   Fighting                 0.000000000 0.000000000        0.000000000
##   Misc                     0.000000000 1.000000000        0.000000000
##   Platform                 0.000000000 0.000000000        0.000000000
##   Puzzle                   0.000000000 0.000000000        0.000000000
##   Racing                   0.000000000 0.000000000        0.000000000
##   Role-Playing             0.000000000 0.000000000        0.000000000
##   Shooter                  0.666666667 0.000000000        0.285714286
##   Simulation               0.000000000 0.000000000        0.000000000
##   Sports                   0.000000000 0.000000000        0.142857143
##   Strategy                 0.000000000 0.000000000        0.000000000
##               Publisher
## Genre          responDESIGN Revolution (Japan) Revolution Software
##   Action        0.000000000        0.000000000         0.000000000
##   Adventure     0.000000000        1.000000000         1.000000000
##   Fighting      0.000000000        0.000000000         0.000000000
##   Misc          0.000000000        0.000000000         0.000000000
##   Platform      0.000000000        0.000000000         0.000000000
##   Puzzle        0.000000000        0.000000000         0.000000000
##   Racing        0.000000000        0.000000000         0.000000000
##   Role-Playing  0.000000000        0.000000000         0.000000000
##   Shooter       0.000000000        0.000000000         0.000000000
##   Simulation    0.000000000        0.000000000         0.000000000
##   Sports        1.000000000        0.000000000         0.000000000
##   Strategy      0.000000000        0.000000000         0.000000000
##               Publisher
## Genre          Rising Star Games Riverhillsoft Rocket Company  Rondomedia
##   Action             0.093023256   0.000000000    0.176470588 0.071428571
##   Adventure          0.058139535   0.000000000    0.058823529 0.214285714
##   Fighting           0.034883721   0.000000000    0.000000000 0.000000000
##   Misc               0.069767442   0.000000000    0.294117647 0.071428571
##   Platform           0.023255814   0.000000000    0.000000000 0.000000000
##   Puzzle             0.151162791   0.000000000    0.000000000 0.357142857
##   Racing             0.000000000   0.000000000    0.000000000 0.142857143
##   Role-Playing       0.302325581   0.000000000    0.352941176 0.000000000
##   Shooter            0.046511628   0.000000000    0.000000000 0.000000000
##   Simulation         0.127906977   1.000000000    0.058823529 0.142857143
##   Sports             0.046511628   0.000000000    0.058823529 0.000000000
##   Strategy           0.046511628   0.000000000    0.000000000 0.000000000
##               Publisher
## Genre                  RTL      Russel Sammy Corporation      Saurus
##   Action       0.000000000 0.333333333       0.000000000 1.000000000
##   Adventure    0.000000000 0.500000000       0.090909091 0.000000000
##   Fighting     0.000000000 0.000000000       0.363636364 0.000000000
##   Misc         0.000000000 0.000000000       0.363636364 0.000000000
##   Platform     0.000000000 0.000000000       0.000000000 0.000000000
##   Puzzle       0.000000000 0.000000000       0.000000000 0.000000000
##   Racing       0.125000000 0.000000000       0.000000000 0.000000000
##   Role-Playing 0.000000000 0.000000000       0.000000000 0.000000000
##   Shooter      0.000000000 0.000000000       0.000000000 0.000000000
##   Simulation   0.250000000 0.000000000       0.181818182 0.000000000
##   Sports       0.625000000 0.166666667       0.000000000 0.000000000
##   Strategy     0.000000000 0.000000000       0.000000000 0.000000000
##               Publisher
## Genre          Scholastic Inc.         SCi  Screenlife SCS Software
##   Action           0.100000000 0.294117647 0.500000000  1.000000000
##   Adventure        0.500000000 0.000000000 0.000000000  0.000000000
##   Fighting         0.000000000 0.000000000 0.166666667  0.000000000
##   Misc             0.100000000 0.000000000 0.000000000  0.000000000
##   Platform         0.000000000 0.117647059 0.000000000  0.000000000
##   Puzzle           0.300000000 0.000000000 0.000000000  0.000000000
##   Racing           0.000000000 0.117647059 0.000000000  0.000000000
##   Role-Playing     0.000000000 0.000000000 0.333333333  0.000000000
##   Shooter          0.000000000 0.470588235 0.000000000  0.000000000
##   Simulation       0.000000000 0.000000000 0.000000000  0.000000000
##   Sports           0.000000000 0.000000000 0.000000000  0.000000000
##   Strategy         0.000000000 0.000000000 0.000000000  0.000000000
##               Publisher
## Genre                Sears        Sega Seta Corporation Seventh Chord
##   Action       0.000000000 0.158059468      0.000000000   1.000000000
##   Adventure    0.000000000 0.048513302      0.000000000   0.000000000
##   Fighting     0.000000000 0.057902973      0.000000000   0.000000000
##   Misc         0.000000000 0.097026604      0.666666667   0.000000000
##   Platform     0.000000000 0.081377152      0.000000000   0.000000000
##   Puzzle       1.000000000 0.034428795      0.000000000   0.000000000
##   Racing       0.000000000 0.075117371      0.000000000   0.000000000
##   Role-Playing 0.000000000 0.100156495      0.166666667   0.000000000
##   Shooter      0.000000000 0.062597809      0.000000000   0.000000000
##   Simulation   0.000000000 0.018779343      0.000000000   0.000000000
##   Sports       0.000000000 0.211267606      0.166666667   0.000000000
##   Strategy     0.000000000 0.054773083      0.000000000   0.000000000
##               Publisher
## Genre           Shogakukan Simon & Schuster Interactive
##   Action       0.000000000                  0.000000000
##   Adventure    0.400000000                  0.000000000
##   Fighting     0.000000000                  0.000000000
##   Misc         0.600000000                  0.000000000
##   Platform     0.000000000                  0.000000000
##   Puzzle       0.000000000                  0.000000000
##   Racing       0.000000000                  0.000000000
##   Role-Playing 0.000000000                  0.000000000
##   Shooter      0.000000000                  0.000000000
##   Simulation   0.000000000                  0.000000000
##   Sports       0.000000000                  1.000000000
##   Strategy     0.000000000                  0.000000000
##               Publisher
## Genre          Slightly Mad Studios Slitherine Software         SNK
##   Action                0.000000000         0.000000000 0.000000000
##   Adventure             0.000000000         0.000000000 0.000000000
##   Fighting              0.000000000         0.000000000 1.000000000
##   Misc                  0.000000000         0.000000000 0.000000000
##   Platform              0.000000000         0.000000000 0.000000000
##   Puzzle                0.000000000         0.000000000 0.000000000
##   Racing                1.000000000         0.000000000 0.000000000
##   Role-Playing          0.000000000         0.000000000 0.000000000
##   Shooter               0.000000000         0.000000000 0.000000000
##   Simulation            0.000000000         0.000000000 0.000000000
##   Sports                0.000000000         0.000000000 0.000000000
##   Strategy              0.000000000         1.000000000 0.000000000
##               Publisher
## Genre          SNK Playmore     Societa    Sold Out      Sonnet
##   Action        0.000000000 0.000000000 1.000000000 0.000000000
##   Adventure     0.166666667 1.000000000 0.000000000 0.000000000
##   Fighting      0.666666667 0.000000000 0.000000000 0.000000000
##   Misc          0.000000000 0.000000000 0.000000000 1.000000000
##   Platform      0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle        0.000000000 0.000000000 0.000000000 0.000000000
##   Racing        0.000000000 0.000000000 0.000000000 0.000000000
##   Role-Playing  0.055555556 0.000000000 0.000000000 0.000000000
##   Shooter       0.111111111 0.000000000 0.000000000 0.000000000
##   Simulation    0.000000000 0.000000000 0.000000000 0.000000000
##   Sports        0.000000000 0.000000000 0.000000000 0.000000000
##   Strategy      0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          Sony Computer Entertainment
##   Action                       0.131771596
##   Adventure                    0.060029283
##   Fighting                     0.043923865
##   Misc                         0.187408492
##   Platform                     0.096632504
##   Puzzle                       0.017569546
##   Racing                       0.095168375
##   Role-Playing                 0.071742313
##   Shooter                      0.074670571
##   Simulation                   0.021961933
##   Sports                       0.181551977
##   Strategy                     0.017569546
##               Publisher
## Genre          Sony Computer Entertainment America
##   Action                               0.000000000
##   Adventure                            0.000000000
##   Fighting                             0.000000000
##   Misc                                 0.000000000
##   Platform                             0.000000000
##   Puzzle                               0.000000000
##   Racing                               0.000000000
##   Role-Playing                         0.000000000
##   Shooter                              0.000000000
##   Simulation                           0.000000000
##   Sports                               1.000000000
##   Strategy                             0.000000000
##               Publisher
## Genre          Sony Computer Entertainment Europe Sony Music Entertainment
##   Action                              0.066666667              0.000000000
##   Adventure                           0.200000000              0.000000000
##   Fighting                            0.000000000              0.000000000
##   Misc                                0.266666667              1.000000000
##   Platform                            0.266666667              0.000000000
##   Puzzle                              0.000000000              0.000000000
##   Racing                              0.000000000              0.000000000
##   Role-Playing                        0.000000000              0.000000000
##   Shooter                             0.066666667              0.000000000
##   Simulation                          0.133333333              0.000000000
##   Sports                              0.000000000              0.000000000
##   Strategy                            0.000000000              0.000000000
##               Publisher
## Genre          Sony Online Entertainment SouthPeak Games       Spike
##   Action                     0.000000000     0.243243243 0.270270270
##   Adventure                  0.000000000     0.054054054 0.081081081
##   Fighting                   0.000000000     0.081081081 0.054054054
##   Misc                       0.000000000     0.054054054 0.108108108
##   Platform                   0.000000000     0.000000000 0.000000000
##   Puzzle                     0.000000000     0.054054054 0.000000000
##   Racing                     0.000000000     0.081081081 0.000000000
##   Role-Playing               0.875000000     0.054054054 0.162162162
##   Shooter                    0.000000000     0.216216216 0.000000000
##   Simulation                 0.000000000     0.054054054 0.027027027
##   Sports                     0.000000000     0.081081081 0.297297297
##   Strategy                   0.125000000     0.027027027 0.000000000
##               Publisher
## Genre                  SPS      Square   Square EA Square Enix  SquareSoft
##   Action       0.000000000 0.000000000 0.000000000 0.223175966 0.000000000
##   Adventure    0.000000000 0.000000000 0.000000000 0.042918455 0.000000000
##   Fighting     0.000000000 0.000000000 0.000000000 0.012875536 0.076923077
##   Misc         0.000000000 0.000000000 0.000000000 0.025751073 0.000000000
##   Platform     0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle       0.000000000 0.000000000 0.000000000 0.017167382 0.000000000
##   Racing       0.000000000 0.166666667 0.000000000 0.000000000 0.019230769
##   Role-Playing 0.000000000 0.833333333 1.000000000 0.553648069 0.730769231
##   Shooter      0.000000000 0.000000000 0.000000000 0.068669528 0.019230769
##   Simulation   0.000000000 0.000000000 0.000000000 0.017167382 0.019230769
##   Sports       1.000000000 0.000000000 0.000000000 0.000000000 0.057692308
##   Strategy     0.000000000 0.000000000 0.000000000 0.038626609 0.076923077
##               Publisher
## Genre                  SSI Stainless Games    Starfish Starpath Corp.
##   Action       0.000000000     1.000000000 0.100000000    1.000000000
##   Adventure    0.000000000     0.000000000 0.000000000    0.000000000
##   Fighting     0.000000000     0.000000000 0.000000000    0.000000000
##   Misc         0.000000000     0.000000000 0.000000000    0.000000000
##   Platform     0.000000000     0.000000000 0.000000000    0.000000000
##   Puzzle       0.000000000     0.000000000 0.000000000    0.000000000
##   Racing       0.000000000     0.000000000 0.000000000    0.000000000
##   Role-Playing 0.000000000     0.000000000 0.500000000    0.000000000
##   Shooter      0.000000000     0.000000000 0.100000000    0.000000000
##   Simulation   0.000000000     0.000000000 0.000000000    0.000000000
##   Sports       0.000000000     0.000000000 0.300000000    0.000000000
##   Strategy     1.000000000     0.000000000 0.000000000    0.000000000
##               Publisher
## Genre                Sting Storm City Games Strategy First     Success
##   Action       0.000000000      0.052631579    0.000000000 0.052631579
##   Adventure    0.000000000      0.052631579    0.000000000 0.210526316
##   Fighting     0.000000000      0.000000000    0.000000000 0.000000000
##   Misc         0.000000000      0.052631579    0.000000000 0.105263158
##   Platform     0.000000000      0.052631579    0.000000000 0.000000000
##   Puzzle       0.000000000      0.368421053    0.000000000 0.052631579
##   Racing       0.000000000      0.315789474    0.000000000 0.000000000
##   Role-Playing 1.000000000      0.000000000    0.000000000 0.368421053
##   Shooter      0.000000000      0.000000000    0.000000000 0.052631579
##   Simulation   0.000000000      0.000000000    0.000000000 0.052631579
##   Sports       0.000000000      0.052631579    0.000000000 0.000000000
##   Strategy     0.000000000      0.052631579    1.000000000 0.105263158
##               Publisher
## Genre           Summitsoft  Sunflowers Sunrise Interactive     Sunsoft
##   Action       0.000000000 0.000000000         0.250000000 0.000000000
##   Adventure    0.000000000 0.000000000         0.000000000 0.200000000
##   Fighting     0.000000000 0.000000000         0.250000000 0.200000000
##   Misc         0.000000000 0.000000000         0.000000000 0.100000000
##   Platform     0.000000000 0.000000000         0.000000000 0.100000000
##   Puzzle       0.000000000 0.000000000         0.000000000 0.100000000
##   Racing       0.000000000 0.000000000         0.250000000 0.000000000
##   Role-Playing 0.000000000 0.000000000         0.250000000 0.200000000
##   Shooter      0.000000000 0.000000000         0.000000000 0.100000000
##   Simulation   0.000000000 0.000000000         0.000000000 0.000000000
##   Sports       1.000000000 0.000000000         0.000000000 0.000000000
##   Strategy     0.000000000 1.000000000         0.000000000 0.000000000
##               Publisher
## Genre               Sweets Swing! Entertainment      Syscom    System 3
##   Action       0.000000000          0.166666667 0.000000000 0.000000000
##   Adventure    1.000000000          0.166666667 0.000000000 0.000000000
##   Fighting     0.000000000          0.000000000 0.000000000 0.000000000
##   Misc         0.000000000          0.000000000 0.500000000 0.000000000
##   Platform     0.000000000          0.166666667 0.000000000 1.000000000
##   Puzzle       0.000000000          0.000000000 0.000000000 0.000000000
##   Racing       0.000000000          0.000000000 0.500000000 0.000000000
##   Role-Playing 0.000000000          0.000000000 0.000000000 0.000000000
##   Shooter      0.000000000          0.333333333 0.000000000 0.000000000
##   Simulation   0.000000000          0.166666667 0.000000000 0.000000000
##   Sports       0.000000000          0.000000000 0.000000000 0.000000000
##   Strategy     0.000000000          0.000000000 0.000000000 0.000000000
##               Publisher
## Genre          System 3 Arcade Software System Soft    T&E Soft
##   Action                    0.000000000 0.000000000 0.000000000
##   Adventure                 0.000000000 0.250000000 0.000000000
##   Fighting                  0.000000000 0.000000000 0.000000000
##   Misc                      0.214285714 0.000000000 0.000000000
##   Platform                  0.142857143 0.000000000 0.000000000
##   Puzzle                    0.071428571 0.000000000 0.000000000
##   Racing                    0.500000000 0.000000000 0.000000000
##   Role-Playing              0.000000000 0.000000000 0.000000000
##   Shooter                   0.000000000 0.000000000 0.000000000
##   Simulation                0.000000000 0.000000000 0.000000000
##   Sports                    0.071428571 0.000000000 1.000000000
##   Strategy                  0.000000000 0.750000000 0.000000000
##               Publisher
## Genre                Taito      Takara Takara Tomy Take-Two Interactive
##   Action       0.052631579 0.187500000 0.324324324          0.225181598
##   Adventure    0.052631579 0.000000000 0.000000000          0.029055690
##   Fighting     0.052631579 0.250000000 0.270270270          0.002421308
##   Misc         0.157894737 0.250000000 0.162162162          0.065375303
##   Platform     0.000000000 0.000000000 0.000000000          0.026634383
##   Puzzle       0.000000000 0.000000000 0.000000000          0.002421308
##   Racing       0.000000000 0.250000000 0.054054054          0.048426150
##   Role-Playing 0.105263158 0.062500000 0.081081081          0.014527845
##   Shooter      0.210526316 0.000000000 0.000000000          0.157384988
##   Simulation   0.368421053 0.000000000 0.000000000          0.009685230
##   Sports       0.000000000 0.000000000 0.081081081          0.365617433
##   Strategy     0.000000000 0.000000000 0.027027027          0.053268765
##               Publisher
## Genre               Takuyo   TalonSoft    TDK Core TDK Mediactive
##   Action       0.000000000 0.000000000 0.400000000    0.222222222
##   Adventure    1.000000000 0.000000000 0.000000000    0.055555556
##   Fighting     0.000000000 0.000000000 0.000000000    0.000000000
##   Misc         0.000000000 0.000000000 0.400000000    0.138888889
##   Platform     0.000000000 0.000000000 0.000000000    0.222222222
##   Puzzle       0.000000000 0.000000000 0.000000000    0.000000000
##   Racing       0.000000000 0.000000000 0.000000000    0.166666667
##   Role-Playing 0.000000000 0.000000000 0.000000000    0.000000000
##   Shooter      0.000000000 1.000000000 0.000000000    0.111111111
##   Simulation   0.000000000 0.000000000 0.200000000    0.000000000
##   Sports       0.000000000 0.000000000 0.000000000    0.083333333
##   Strategy     0.000000000 0.000000000 0.000000000    0.000000000
##               Publisher
## Genre          Team17 Software Technos Japan Corporation  TechnoSoft
##   Action           0.000000000               0.000000000 0.000000000
##   Adventure        0.000000000               0.000000000 0.000000000
##   Fighting         0.000000000               0.000000000 0.000000000
##   Misc             0.000000000               0.000000000 0.000000000
##   Platform         0.000000000               0.000000000 0.000000000
##   Puzzle           0.000000000               0.000000000 0.000000000
##   Racing           0.000000000               0.000000000 0.000000000
##   Role-Playing     0.000000000               0.000000000 0.000000000
##   Shooter          0.000000000               0.000000000 1.000000000
##   Simulation       0.000000000               0.000000000 0.000000000
##   Sports           0.000000000               1.000000000 0.000000000
##   Strategy         1.000000000               0.000000000 0.000000000
##               Publisher
## Genre           Tecmo Koei   Telegames Telltale Games     Telstar
##   Action       0.405325444 0.000000000    0.080000000 0.333333333
##   Adventure    0.050295858 0.000000000    0.920000000 0.000000000
##   Fighting     0.035502959 0.000000000    0.000000000 0.000000000
##   Misc         0.041420118 0.500000000    0.000000000 0.000000000
##   Platform     0.002958580 0.000000000    0.000000000 0.000000000
##   Puzzle       0.000000000 0.250000000    0.000000000 0.000000000
##   Racing       0.014792899 0.000000000    0.000000000 0.333333333
##   Role-Playing 0.139053254 0.000000000    0.000000000 0.000000000
##   Shooter      0.008875740 0.000000000    0.000000000 0.333333333
##   Simulation   0.038461538 0.125000000    0.000000000 0.000000000
##   Sports       0.115384615 0.000000000    0.000000000 0.000000000
##   Strategy     0.147928994 0.125000000    0.000000000 0.000000000
##               Publisher
## Genre          Tetris Online         TGL The Adventure Company
##   Action         0.000000000 0.000000000           0.000000000
##   Adventure      0.000000000 1.000000000           0.600000000
##   Fighting       0.000000000 0.000000000           0.000000000
##   Misc           0.000000000 0.000000000           0.000000000
##   Platform       0.000000000 0.000000000           0.000000000
##   Puzzle         1.000000000 0.000000000           0.400000000
##   Racing         0.000000000 0.000000000           0.000000000
##   Role-Playing   0.000000000 0.000000000           0.000000000
##   Shooter        0.000000000 0.000000000           0.000000000
##   Simulation     0.000000000 0.000000000           0.000000000
##   Sports         0.000000000 0.000000000           0.000000000
##   Strategy       0.000000000 0.000000000           0.000000000
##               Publisher
## Genre          The Learning Company         THQ Tigervision
##   Action                0.000000000 0.271328671 1.000000000
##   Adventure             0.000000000 0.065734266 0.000000000
##   Fighting              0.000000000 0.099300699 0.000000000
##   Misc                  0.000000000 0.092307692 0.000000000
##   Platform              0.000000000 0.118881119 0.000000000
##   Puzzle                0.000000000 0.023776224 0.000000000
##   Racing                1.000000000 0.141258741 0.000000000
##   Role-Playing          0.000000000 0.011188811 0.000000000
##   Shooter               0.000000000 0.050349650 0.000000000
##   Simulation            0.000000000 0.037762238 0.000000000
##   Sports                0.000000000 0.043356643 0.000000000
##   Strategy              0.000000000 0.044755245 0.000000000
##               Publisher
## Genre          Time Warner Interactive       Titus      Tivola        TOHO
##   Action                   0.000000000 0.210526316 0.000000000 0.000000000
##   Adventure                0.000000000 0.000000000 0.000000000 0.000000000
##   Fighting                 0.200000000 0.157894737 0.000000000 0.000000000
##   Misc                     0.000000000 0.052631579 1.000000000 0.000000000
##   Platform                 0.000000000 0.052631579 0.000000000 0.000000000
##   Puzzle                   0.000000000 0.000000000 0.000000000 0.000000000
##   Racing                   0.000000000 0.210526316 0.000000000 0.000000000
##   Role-Playing             0.000000000 0.052631579 0.000000000 1.000000000
##   Shooter                  0.200000000 0.105263158 0.000000000 0.000000000
##   Simulation               0.000000000 0.105263158 0.000000000 0.000000000
##   Sports                   0.400000000 0.000000000 0.000000000 0.000000000
##   Strategy                 0.200000000 0.052631579 0.000000000 0.000000000
##               Publisher
## Genre                Tommo Tomy Corporation TopWare Interactive
##   Action       0.000000000      0.111111111         0.000000000
##   Adventure    0.000000000      0.000000000         0.000000000
##   Fighting     0.000000000      0.555555556         0.000000000
##   Misc         0.600000000      0.055555556         0.750000000
##   Platform     0.000000000      0.000000000         0.000000000
##   Puzzle       0.000000000      0.000000000         0.000000000
##   Racing       0.000000000      0.055555556         0.000000000
##   Role-Playing 0.000000000      0.166666667         0.250000000
##   Shooter      0.200000000      0.000000000         0.000000000
##   Simulation   0.000000000      0.055555556         0.000000000
##   Sports       0.200000000      0.000000000         0.000000000
##   Strategy     0.000000000      0.000000000         0.000000000
##               Publisher
## Genre           Touchstone   Tradewest Trion Worlds Tripwire Interactive
##   Action       0.750000000 0.000000000  0.000000000          0.000000000
##   Adventure    0.000000000 0.000000000  0.000000000          0.000000000
##   Fighting     0.000000000 0.000000000  0.000000000          0.000000000
##   Misc         0.000000000 0.000000000  0.000000000          0.000000000
##   Platform     0.000000000 0.000000000  0.000000000          0.000000000
##   Puzzle       0.000000000 0.000000000  0.000000000          0.000000000
##   Racing       0.000000000 0.000000000  0.000000000          0.000000000
##   Role-Playing 0.000000000 0.000000000  0.000000000          0.000000000
##   Shooter      0.000000000 0.000000000  0.750000000          1.000000000
##   Simulation   0.250000000 0.000000000  0.000000000          0.000000000
##   Sports       0.000000000 1.000000000  0.000000000          0.000000000
##   Strategy     0.000000000 0.000000000  0.250000000          0.000000000
##               Publisher
## Genre          Tru Blu Entertainment    Tryfirst         TYO   Type-Moon
##   Action                 0.500000000 0.000000000 0.000000000 0.000000000
##   Adventure              0.000000000 0.000000000 0.000000000 1.000000000
##   Fighting               0.000000000 1.000000000 0.000000000 0.000000000
##   Misc                   0.000000000 0.000000000 0.000000000 0.000000000
##   Platform               0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle                 0.000000000 0.000000000 0.000000000 0.000000000
##   Racing                 0.000000000 0.000000000 1.000000000 0.000000000
##   Role-Playing           0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter                0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation             0.000000000 0.000000000 0.000000000 0.000000000
##   Sports                 0.500000000 0.000000000 0.000000000 0.000000000
##   Strategy               0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre            U.S. Gold     Ubisoft Ubisoft Annecy UEP Systems
##   Action       0.000000000 0.209554832    0.714285714 0.000000000
##   Adventure    0.000000000 0.064060803    0.000000000 0.000000000
##   Fighting     0.000000000 0.020629750    0.142857143 0.000000000
##   Misc         0.000000000 0.163952226    0.071428571 0.000000000
##   Platform     0.250000000 0.076004343    0.000000000 0.000000000
##   Puzzle       0.000000000 0.026058632    0.000000000 0.000000000
##   Racing       0.000000000 0.056460369    0.000000000 0.000000000
##   Role-Playing 0.000000000 0.044516830    0.071428571 0.000000000
##   Shooter      0.000000000 0.099891422    0.000000000 0.000000000
##   Simulation   0.000000000 0.129207383    0.000000000 0.000000000
##   Sports       0.750000000 0.078175896    0.000000000 1.000000000
##   Strategy     0.000000000 0.031487514    0.000000000 0.000000000
##               Publisher
## Genre          UFO Interactive UIG Entertainment Ultravision
##   Action           0.062500000       0.000000000 0.000000000
##   Adventure        0.000000000       0.000000000 0.000000000
##   Fighting         0.000000000       0.000000000 1.000000000
##   Misc             0.500000000       0.000000000 0.000000000
##   Platform         0.000000000       0.000000000 0.000000000
##   Puzzle           0.250000000       0.000000000 0.000000000
##   Racing           0.000000000       0.000000000 0.000000000
##   Role-Playing     0.000000000       0.000000000 0.000000000
##   Shooter          0.062500000       0.000000000 0.000000000
##   Simulation       0.000000000       1.000000000 0.000000000
##   Sports           0.125000000       0.000000000 0.000000000
##   Strategy         0.000000000       0.000000000 0.000000000
##               Publisher
## Genre          Universal Gamex Universal Interactive     Unknown
##   Action           1.000000000           0.391304348 0.137931034
##   Adventure        0.000000000           0.000000000 0.083743842
##   Fighting         0.000000000           0.043478261 0.029556650
##   Misc             0.000000000           0.043478261 0.152709360
##   Platform         0.000000000           0.304347826 0.049261084
##   Puzzle           0.000000000           0.000000000 0.083743842
##   Racing           0.000000000           0.000000000 0.064039409
##   Role-Playing     0.000000000           0.000000000 0.108374384
##   Shooter          0.000000000           0.173913043 0.064039409
##   Simulation       0.000000000           0.000000000 0.064039409
##   Sports           0.000000000           0.043478261 0.128078818
##   Strategy         0.000000000           0.000000000 0.034482759
##               Publisher
## Genre          Valcon Games    ValuSoft       Valve Valve Software
##   Action        0.000000000 0.000000000 0.000000000    0.000000000
##   Adventure     0.125000000 0.250000000 0.000000000    0.000000000
##   Fighting      0.000000000 0.000000000 0.000000000    0.000000000
##   Misc          0.000000000 0.000000000 0.000000000    0.000000000
##   Platform      0.000000000 0.000000000 0.000000000    0.000000000
##   Puzzle        0.000000000 0.500000000 0.000000000    0.000000000
##   Racing        0.375000000 0.250000000 0.000000000    0.000000000
##   Role-Playing  0.000000000 0.000000000 0.000000000    0.000000000
##   Shooter       0.125000000 0.000000000 1.000000000    1.000000000
##   Simulation    0.125000000 0.000000000 0.000000000    0.000000000
##   Sports        0.250000000 0.000000000 0.000000000    0.000000000
##   Strategy      0.000000000 0.000000000 0.000000000    0.000000000
##               Publisher
## Genre                  Vap Vatical Entertainment   Vic Tokai
##   Action       0.000000000           0.000000000 0.000000000
##   Adventure    0.000000000           0.000000000 0.000000000
##   Fighting     0.000000000           0.000000000 1.000000000
##   Misc         1.000000000           0.000000000 0.000000000
##   Platform     0.000000000           0.000000000 0.000000000
##   Puzzle       0.000000000           0.000000000 0.000000000
##   Racing       0.000000000           1.000000000 0.000000000
##   Role-Playing 0.000000000           0.000000000 0.000000000
##   Shooter      0.000000000           0.000000000 0.000000000
##   Simulation   0.000000000           0.000000000 0.000000000
##   Sports       0.000000000           0.000000000 0.000000000
##   Strategy     0.000000000           0.000000000 0.000000000
##               Publisher
## Genre          Victor Interactive Video System       Views Vir2L Studios
##   Action              0.000000000  0.250000000 0.500000000   0.333333333
##   Adventure           0.111111111  0.000000000 0.500000000   0.000000000
##   Fighting            0.000000000  0.000000000 0.000000000   0.000000000
##   Misc                0.111111111  0.000000000 0.000000000   0.000000000
##   Platform            0.000000000  0.000000000 0.000000000   0.000000000
##   Puzzle              0.000000000  0.000000000 0.000000000   0.000000000
##   Racing              0.000000000  0.750000000 0.000000000   0.333333333
##   Role-Playing        0.111111111  0.000000000 0.000000000   0.000000000
##   Shooter             0.000000000  0.000000000 0.000000000   0.000000000
##   Simulation          0.222222222  0.000000000 0.000000000   0.000000000
##   Sports              0.444444444  0.000000000 0.000000000   0.333333333
##   Strategy            0.000000000  0.000000000 0.000000000   0.000000000
##               Publisher
## Genre          Virgin Interactive Virtual Play Games       Visco
##   Action              0.193548387        0.000000000 0.000000000
##   Adventure           0.016129032        0.000000000 0.000000000
##   Fighting            0.306451613        0.000000000 0.000000000
##   Misc                0.016129032        0.500000000 0.000000000
##   Platform            0.096774194        0.000000000 0.000000000
##   Puzzle              0.032258065        0.000000000 0.000000000
##   Racing              0.016129032        0.000000000 0.000000000
##   Role-Playing        0.048387097        0.000000000 0.000000000
##   Shooter             0.112903226        0.000000000 1.000000000
##   Simulation          0.032258065        0.000000000 0.000000000
##   Sports              0.032258065        0.500000000 0.000000000
##   Strategy            0.096774194        0.000000000 0.000000000
##               Publisher
## Genre          Vivendi Games     Wanadoo     Warashi Wargaming.net
##   Action         0.280487805 0.400000000 0.000000000   0.000000000
##   Adventure      0.042682927 0.000000000 0.000000000   0.000000000
##   Fighting       0.024390244 0.000000000 0.000000000   0.000000000
##   Misc           0.048780488 0.000000000 0.000000000   0.000000000
##   Platform       0.225609756 0.400000000 0.000000000   0.000000000
##   Puzzle         0.012195122 0.000000000 0.000000000   0.000000000
##   Racing         0.085365854 0.200000000 0.000000000   0.000000000
##   Role-Playing   0.006097561 0.000000000 0.000000000   0.000000000
##   Shooter        0.182926829 0.000000000 1.000000000   1.000000000
##   Simulation     0.006097561 0.000000000 0.000000000   0.000000000
##   Sports         0.012195122 0.000000000 0.000000000   0.000000000
##   Strategy       0.073170732 0.000000000 0.000000000   0.000000000
##               Publisher
## Genre          Warner Bros. Interactive Entertainment        Warp
##   Action                                  0.711206897 0.000000000
##   Adventure                               0.012931034 1.000000000
##   Fighting                                0.047413793 0.000000000
##   Misc                                    0.094827586 0.000000000
##   Platform                                0.034482759 0.000000000
##   Puzzle                                  0.034482759 0.000000000
##   Racing                                  0.012931034 0.000000000
##   Role-Playing                            0.000000000 0.000000000
##   Shooter                                 0.043103448 0.000000000
##   Simulation                              0.000000000 0.000000000
##   Sports                                  0.000000000 0.000000000
##   Strategy                                0.008620690 0.000000000
##               Publisher
## Genre          WayForward Technologies Westwood Studios
##   Action                   0.000000000      0.000000000
##   Adventure                1.000000000      0.000000000
##   Fighting                 0.000000000      0.000000000
##   Misc                     0.000000000      0.000000000
##   Platform                 0.000000000      0.000000000
##   Puzzle                   0.000000000      0.000000000
##   Racing                   0.000000000      0.000000000
##   Role-Playing             0.000000000      0.000000000
##   Shooter                  0.000000000      0.000000000
##   Simulation               0.000000000      0.000000000
##   Sports                   0.000000000      0.000000000
##   Strategy                 0.000000000      1.000000000
##               Publisher
## Genre          White Park Bay Software Wizard Video Games
##   Action                   0.000000000        1.000000000
##   Adventure                0.000000000        0.000000000
##   Fighting                 0.000000000        0.000000000
##   Misc                     0.000000000        0.000000000
##   Platform                 0.000000000        0.000000000
##   Puzzle                   1.000000000        0.000000000
##   Racing                   0.000000000        0.000000000
##   Role-Playing             0.000000000        0.000000000
##   Shooter                  0.000000000        0.000000000
##   Simulation               0.000000000        0.000000000
##   Sports                   0.000000000        0.000000000
##   Strategy                 0.000000000        0.000000000
##               Publisher
## Genre          Xicat Interactive Xing Entertainment     Xplosiv
##   Action             0.000000000        0.000000000 0.000000000
##   Adventure          0.000000000        0.000000000 0.000000000
##   Fighting           0.000000000        1.000000000 0.000000000
##   Misc               0.000000000        0.000000000 0.300000000
##   Platform           0.000000000        0.000000000 0.000000000
##   Puzzle             0.000000000        0.000000000 0.200000000
##   Racing             0.333333333        0.000000000 0.500000000
##   Role-Playing       0.333333333        0.000000000 0.000000000
##   Shooter            0.000000000        0.000000000 0.000000000
##   Simulation         0.000000000        0.000000000 0.000000000
##   Sports             0.333333333        0.000000000 0.000000000
##   Strategy           0.000000000        0.000000000 0.000000000
##               Publisher
## Genre             XS Games Xseed Games Yacht Club Games
##   Action       0.000000000 0.250000000      0.000000000
##   Adventure    0.000000000 0.000000000      0.000000000
##   Fighting     0.000000000 0.000000000      0.000000000
##   Misc         0.166666667 0.000000000      0.000000000
##   Platform     0.000000000 0.000000000      1.000000000
##   Puzzle       0.000000000 0.000000000      0.000000000
##   Racing       0.416666667 0.000000000      0.000000000
##   Role-Playing 0.000000000 0.500000000      0.000000000
##   Shooter      0.000000000 0.250000000      0.000000000
##   Simulation   0.000000000 0.000000000      0.000000000
##   Sports       0.416666667 0.000000000      0.000000000
##   Strategy     0.000000000 0.000000000      0.000000000
##               Publisher
## Genre          Yamasa Entertainment        Yeti      Yuke's     Yumedia
##   Action                0.000000000 0.090909091 0.000000000 0.000000000
##   Adventure             0.000000000 0.818181818 0.000000000 1.000000000
##   Fighting              0.000000000 0.090909091 0.666666667 0.000000000
##   Misc                  1.000000000 0.000000000 0.000000000 0.000000000
##   Platform              0.000000000 0.000000000 0.000000000 0.000000000
##   Puzzle                0.000000000 0.000000000 0.000000000 0.000000000
##   Racing                0.000000000 0.000000000 0.333333333 0.000000000
##   Role-Playing          0.000000000 0.000000000 0.000000000 0.000000000
##   Shooter               0.000000000 0.000000000 0.000000000 0.000000000
##   Simulation            0.000000000 0.000000000 0.000000000 0.000000000
##   Sports                0.000000000 0.000000000 0.000000000 0.000000000
##   Strategy              0.000000000 0.000000000 0.000000000 0.000000000
##               Publisher
## Genre               Zenrin Zoo Digital Publishing   Zoo Games Zushi Games
##   Action       0.000000000            0.076923077 0.090909091 0.055555556
##   Adventure    0.000000000            0.067307692 0.030303030 0.055555556
##   Fighting     0.000000000            0.028846154 0.000000000 0.000000000
##   Misc         1.000000000            0.173076923 0.333333333 0.055555556
##   Platform     0.000000000            0.019230769 0.000000000 0.000000000
##   Puzzle       0.000000000            0.134615385 0.090909091 0.111111111
##   Racing       0.000000000            0.250000000 0.181818182 0.166666667
##   Role-Playing 0.000000000            0.000000000 0.000000000 0.055555556
##   Shooter      0.000000000            0.076923077 0.121212121 0.111111111
##   Simulation   0.000000000            0.009615385 0.030303030 0.111111111
##   Sports       0.000000000            0.153846154 0.121212121 0.166666667
##   Strategy     0.000000000            0.009615385 0.000000000 0.111111111

Atari, Interactive studios and ubisoft are the major contributors to action games.

BoxPlots

Draw a boxplot of the variables that belong to your study.

boxplot(NA_Sales,horizontal = TRUE,
        xlab = "NA Sales in millions",
        main = "North America Sales")

boxplot(EU_Sales,horizontal = TRUE,
        xlab = "EU Sales in millions",
        main = "Europe Sales")

boxplot(JP_Sales,horizontal = TRUE,
        xlab = "JP Sales in millions",
        main = "Japan Sales")

boxplot(Other_Sales,horizontal = TRUE,
        xlab = "Other Sales in millions",
        main = "Other Sales")

boxplot(Global_Sales,horizontal = TRUE,
        xlab = "Global Sales in millions",
        main = "Global Sales")

boxplot(NA_Sales~Platform,horizontal = TRUE,
        xlab = "NA Sales in millions",
        ylab = "Platform",
        main = "North America Sales based on platform")

boxplot(NA_Sales~Year,horizontal = TRUE,
        xlab = "NA Sales in millions",
        ylab = "Year",
        main = "North America Sales based on year")

boxplot(NA_Sales~Genre,horizontal = TRUE,
        xlab = "NA Sales in millions",
        ylab = "Genre",
        main = "North America Sales based on genre")

boxplot(NA_Sales~Publisher,horizontal = TRUE,
        xlab = "NA Sales in millions",
        ylab = "Publisher",
        main = "North America Sales based on publisher")

boxplot(EU_Sales~Platform,horizontal = TRUE,
        xlab = "EU Sales in millions",
        ylab = "Platform",
        main = "Europe Sales based on platform")

boxplot(EU_Sales~Year,horizontal = TRUE,
        xlab = "EU Sales in millions",
        ylab = "Year",
        main = "Europe Sales based on year")

boxplot(EU_Sales~Genre,horizontal = TRUE,
        xlab = "EU Sales in millions",
        ylab = "Genre",
        main = "Europe Sales based on genre")

boxplot(EU_Sales~Publisher,horizontal = TRUE,
        xlab = "EU Sales in millions",
        ylab = "Publisher",
        main = "Europe Sales based on publisher")

boxplot(JP_Sales~Platform,horizontal = TRUE,
        xlab = "JP Sales in millions",
        ylab = "Platform",
        main = "Japan Sales based on platform")

boxplot(JP_Sales~Year,horizontal = TRUE,
        xlab = "JP Sales in millions",
        ylab = "Year",
        main = "Japan Sales based on year")

boxplot(JP_Sales~Genre,horizontal = TRUE,
        xlab = "JP Sales in millions",
        ylab = "Genre",
        main = "Japan Sales based on genre")

boxplot(JP_Sales~Publisher,horizontal = TRUE,
        xlab = "JP Sales in millions",
        ylab = "Publisher",
        main = "Japan Sales based on publisher")

boxplot(Other_Sales~Platform,horizontal = TRUE,
        xlab = "Other Sales in millions",
        ylab = "Platform",
        main = "Other Sales based on platform")

boxplot(Other_Sales~Year,horizontal = TRUE,
        xlab = "Other Sales in millions",
        ylab = "Year",
        main = "Other Sales based on year")

boxplot(Other_Sales~Genre,horizontal = TRUE,
        xlab = "Other Sales in millions",
        ylab = "Genre",
        main = "Other Sales based on genre")

boxplot(Other_Sales~Publisher,horizontal = TRUE,
        xlab = "Global Sales in millions",
        ylab = "Publisher",
        main = "Global Sales based on publisher")

boxplot(Global_Sales~Platform,horizontal = TRUE,
        xlab = "Global Sales in millions",
        ylab = "Platform",
        main = "Global Sales based on platform")

boxplot(Global_Sales~Year,horizontal = TRUE,
        xlab = "Global Sales in millions",
        ylab = "Year",
        main = "Global Sales based on year")

boxplot(Global_Sales~Genre,horizontal = TRUE,
        xlab = "Global Sales in millions",
        ylab = "Genre",
        main = "Global Sales based on genre")

boxplot(Global_Sales~Publisher,horizontal = TRUE,
        xlab = "Global Sales in millions",
        ylab = "Publisher",
        main = "Global Sales based on publisher")

North america and europe have more sales for the PS, whereas japan has good sales for the nintendo and DS too. Sales have increased in all regions over the years, and have reached a high around 2012-2014. Action, misc, racing and sports are the popular genres.

Histograms

Draw Histograms for your suitable data fields.

hist(NA_Sales,
        xlab = "NA Sales in millions",
        ylab = "Count",
        xlim = c(0,10),
        col = "lightblue",
        main = "North America Sales")

hist(NA_Sales,
        xlab = "NA Sales in millions",
        ylab = "Count",
        col = "lightblue",
        main = "North America Sales")

hist(EU_Sales,
        xlab = "EU Sales in millions",
        ylab = "Count",
        xlim = c(0,10),
        col = "lightblue",
        main = "Europe Sales")

hist(EU_Sales,
        xlab = "EU Sales in millions",
        ylab = "Count",
        col = "lightblue",
        main = "Europe Sales")

hist(JP_Sales,
        xlab = "JP Sales in millions",
        ylab = "Count",
        xlim = c(0,10),
        col = "lightblue",
        main = "Japan Sales")

hist(JP_Sales,
        xlab = "JP Sales in millions",
        ylab = "Count",
        col = "lightblue",
        main = "Japan Sales")

hist(Other_Sales,
        xlab = "Other Sales in millions",
        ylab = "Count",
        xlim = c(0,10),
        col = "lightblue",
        main = "Other Sales")

hist(Other_Sales,
        xlab = "Other Sales in millions",
        ylab = "Count",
        col = "lightblue",
        main = "Other Sales")

hist(Global_Sales,
        xlab = "GLobal Sales in millions",
        ylab = "Count",
        xlim = c(0,20),
        col = "lightblue",
        main = "Global Sales")

hist(Global_Sales,
        xlab = "Global Sales in millions",
        ylab = "Count",
        col = "lightblue",
        main = "Global Sales")

Sales in North America and Europe range between 0-2 million, and those in Japan range from 0-1 million.

library(lattice)
## Warning: package 'lattice' was built under R version 3.4.3
histogram(~NA_Sales|Platform,type = "count")

histogram(~NA_Sales|Year,type = "count")

histogram(~NA_Sales|Genre,type = "count")

histogram(~EU_Sales|Platform,type = "count")

histogram(~EU_Sales|Year,type = "count")

histogram(~EU_Sales|Genre,type = "count")

histogram(~JP_Sales|Platform,type = "count")

histogram(~JP_Sales|Year,type = "count")

histogram(~JP_Sales|Genre,type = "count")

histogram(~Other_Sales|Platform,type = "count")

histogram(~Other_Sales|Year,type = "count")

histogram(~Other_Sales|Genre,type = "count")

histogram(~Global_Sales|Platform,type = "count")

histogram(~Global_Sales|Year,type = "count")

histogram(~Global_Sales|Genre,type = "count")

All regions show a similar gaming trend, with PS2 and DS being the popular consoles, and years 2007-11 being heavy on the industry.

Plots

Draw suitable plot for your data fields.

plot(NA_Sales,EU_Sales,
     main = "North America sales vs Europe sales",
     xlab = "NA Sales",
     ylab = "EU Sales")

plot(NA_Sales,JP_Sales,
     main = "North America sales vs Japan sales",
     xlab = "NA Sales",
     ylab = "JP Sales")

plot(NA_Sales,Other_Sales,
     main = "North America sales vs Other sales",
     xlab = "NA Sales",
     ylab = "Other Sales")

plot(EU_Sales,JP_Sales,
     main = "Europe sales vs Japan sales",
     xlab = "EU Sales",
     ylab = "JP Sales")

plot(EU_Sales,Other_Sales,
     main = "Europe sales vs Other sales",
     xlab = "EU Sales",
     ylab = "Other Sales")

plot(JP_Sales,Other_Sales,
     main = "Japan sales vs Other sales",
     xlab = "JP Sales",
     ylab = "Other Sales")

plot(Global_Sales,NA_Sales,
     main = "Global sales vs NA sales",
     xlab = "Global Sales",
     ylab = "NA Sales")

plot(Global_Sales,JP_Sales,
     main = "Global sales vs Japan sales",
     xlab = "Global Sales",
     ylab = "Japan Sales")

plot(Global_Sales,EU_Sales,
     main = "Global sales vs Europe sales",
     xlab = "Global Sales",
     ylab = "Europe Sales")

plot(Global_Sales,Other_Sales,
     main = "Global sales vs Other sales",
     xlab = "Global Sales",
     ylab = "Other Sales")

Comparing sales of different regions, America is the most intense consumer of video games, followed by Europe and then Japan.

barchart(NA_Sales~Platform)

barchart(NA_Sales~Genre)

barchart(NA_Sales~Year)

barchart(EU_Sales~Platform)

barchart(EU_Sales~Genre)

barchart(EU_Sales~Year)

barchart(JP_Sales~Platform)

barchart(JP_Sales~Genre)

barchart(JP_Sales~Year)

barchart(Other_Sales~Platform)

barchart(Other_Sales~Genre)

barchart(Other_Sales~Year)

barchart(Global_Sales~Platform)

barchart(Global_Sales~Genre)

barchart(Global_Sales~Year)

bwplot(Platform~NA_Sales,horizontal = TRUE)

bwplot(Genre~NA_Sales,horizontal = TRUE)

bwplot(Year~NA_Sales,horizontal = TRUE)

bwplot(Platform~EU_Sales,horizontal = TRUE)

bwplot(Genre~EU_Sales,horizontal = TRUE)

bwplot(Year~EU_Sales,horizontal = TRUE)

bwplot(Platform~JP_Sales,horizontal = TRUE)

bwplot(Genre~JP_Sales,horizontal = TRUE)

bwplot(Year~JP_Sales,horizontal = TRUE)

bwplot(Platform~Other_Sales,horizontal = TRUE)

bwplot(Genre~Other_Sales,horizontal = TRUE)

bwplot(Year~Other_Sales,horizontal = TRUE)

bwplot(Platform~Global_Sales,horizontal = TRUE)

bwplot(Genre~Global_Sales,horizontal = TRUE)

bwplot(Year~Global_Sales,horizontal = TRUE)

Sports is a popular category in North America and Europe, and role-playing is preffered in Japan. Other regions show more interest in action games. The trend in years is more or less similar in all regions. Japan uses more of DS consoles, whereas America and Europe use PS, Wii and DS(not to as much extend as Japan).

Correlation Matrix

Create a correlation matrix.

round(cor(game.df[,7:11]),2)
##              NA_Sales EU_Sales JP_Sales Other_Sales Global_Sales
## NA_Sales         1.00     0.77     0.45        0.63         0.94
## EU_Sales         0.77     1.00     0.44        0.73         0.90
## JP_Sales         0.45     0.44     1.00        0.29         0.61
## Other_Sales      0.63     0.73     0.29        1.00         0.75
## Global_Sales     0.94     0.90     0.61        0.75         1.00
library(corrplot)
## Warning: package 'corrplot' was built under R version 3.4.3
corrplot(cor(game.df[,7:11]),method = "circle")

Sales of all regions are inter-dependent and strongly correlated.

Corrgram

Visualize your correlation matrix using corrgram.

library(corrgram)
## Warning: package 'corrgram' was built under R version 3.4.3
corrgram(game.df,order=TRUE,
         lower.panel = panel.shade,
         upper.panel = panel.pie,
         text.panel = panel.txt,
         main = "Corrgram for video game sales"
         )

The sales of each region show relation with each other, but the rank is not necessarily related directly and is a seperate field.

ScatterPlot Matrix

Create a scatter plot matrix for your data set.

library(car)
## Warning: package 'car' was built under R version 3.4.3
scatterplotMatrix(game.df[,c(1,7:11)], spread=FALSE, smoother.args=list(lty=2), main="Scatter Plot Matrix")

The scatter plot matrix shows relations between all the sales, which is obvious since years where sales is higher shows increased sales across all regions of the world.

Running some tests

Run a suitable test to check your hypothesis for your suitable assumptions.

cor.test(Rank,NA_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Rank and NA_Sales
## t = -56.452, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  -0.4140474 -0.3885212
## sample estimates:
##        cor 
## -0.4013622
cor.test(Rank,EU_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Rank and EU_Sales
## t = -52.781, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  -0.3920755 -0.3660212
## sample estimates:
##        cor 
## -0.3791235
cor.test(Rank,JP_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Rank and JP_Sales
## t = -35.805, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  -0.2818498 -0.2536044
## sample estimates:
##        cor 
## -0.2677847
cor.test(Rank,Other_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Rank and Other_Sales
## t = -45.493, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  -0.3464448 -0.3193910
## sample estimates:
##        cor 
## -0.3329864
cor.test(Rank,Global_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Rank and Global_Sales
## t = -60.904, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  -0.4397605 -0.4148910
## sample estimates:
##        cor 
## -0.4274066

We reject the null hypothesis and the p-value less than 0.05 shows that rank of games is directly related to each of the regional sales.

cor.test(Global_Sales,NA_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Global_Sales and NA_Sales
## t = 358.38, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.9392812 0.9427637
## sample estimates:
##       cor 
## 0.9410474
cor.test(Global_Sales,EU_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Global_Sales and EU_Sales
## t = 270.49, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.8999839 0.9056105
## sample estimates:
##       cor 
## 0.9028358
cor.test(Global_Sales,JP_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Global_Sales and JP_Sales
## t = 99.643, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.6022073 0.6212465
## sample estimates:
##       cor 
## 0.6118155
cor.test(Global_Sales,Other_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Global_Sales and Other_Sales
## t = 145.33, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.7415599 0.7549494
## sample estimates:
##       cor 
## 0.7483308

We reject the null hypothesis and the p-value less than 0.05 shows that global sales is directly related to each of the regional sales.

cor.test(EU_Sales,NA_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  EU_Sales and NA_Sales
## t = 154.35, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.7614064 0.7739012
## sample estimates:
##       cor 
## 0.7677267
cor.test(JP_Sales,NA_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  JP_Sales and NA_Sales
## t = 64.877, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.4375682 0.4618405
## sample estimates:
##       cor 
## 0.4497874
cor.test(Other_Sales,NA_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Other_Sales and NA_Sales
## t = 105.82, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.6255647 0.6437344
## sample estimates:
##       cor 
## 0.6347373
cor.test(JP_Sales,EU_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  JP_Sales and EU_Sales
## t = 62.339, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.4231753 0.4478302
## sample estimates:
##       cor 
## 0.4355845
cor.test(Other_Sales,EU_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Other_Sales and EU_Sales
## t = 136.15, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.7191183 0.7334926
## sample estimates:
##       cor 
## 0.7263849
cor.test(Other_Sales,JP_Sales)
## 
##  Pearson's product-moment correlation
## 
## data:  Other_Sales and JP_Sales
## t = 39.064, df = 16596, p-value < 2.2e-16
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.2761922 0.3040573
## sample estimates:
##       cor 
## 0.2901862

We reject the null hypothesis and the p-value less than 0.05 shows that each of the regional sales are directly related to all of the other region’s sales.

mytable <- xtabs(~NA_Sales,Platform)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 566500, df = 408, p-value < 2.2e-16
mytable <- xtabs(~NA_Sales,Year)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 566500, df = 408, p-value < 2.2e-16
mytable <- xtabs(~NA_Sales,Genre)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 566500, df = 408, p-value < 2.2e-16
mytable <- xtabs(~NA_Sales,Publisher)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 566500, df = 408, p-value < 2.2e-16
mytable <- xtabs(~EU_Sales,Platform)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 706100, df = 304, p-value < 2.2e-16
mytable <- xtabs(~EU_Sales,Year)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 706100, df = 304, p-value < 2.2e-16
mytable <- xtabs(~EU_Sales,Genre)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 706100, df = 304, p-value < 2.2e-16
mytable <- xtabs(~EU_Sales,Publisher)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 706100, df = 304, p-value < 2.2e-16
mytable <- xtabs(~JP_Sales,Platform)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 1618700, df = 243, p-value < 2.2e-16
mytable <- xtabs(~JP_Sales,Year)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 1618700, df = 243, p-value < 2.2e-16
mytable <- xtabs(~JP_Sales,Genre)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 1618700, df = 243, p-value < 2.2e-16
mytable <- xtabs(~JP_Sales,Publisher)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 1618700, df = 243, p-value < 2.2e-16
mytable <- xtabs(~Other_Sales,Platform)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 535630, df = 156, p-value < 2.2e-16
mytable <- xtabs(~Other_Sales,Year)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 535630, df = 156, p-value < 2.2e-16
mytable <- xtabs(~Other_Sales,Genre)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 535630, df = 156, p-value < 2.2e-16
mytable <- xtabs(~Other_Sales,Publisher)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 535630, df = 156, p-value < 2.2e-16
mytable <- xtabs(~Global_Sales,Platform)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 194910, df = 622, p-value < 2.2e-16
mytable <- xtabs(~Global_Sales,Year)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 194910, df = 622, p-value < 2.2e-16
mytable <- xtabs(~Global_Sales,Genre)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 194910, df = 622, p-value < 2.2e-16
mytable <- xtabs(~Global_Sales,Publisher)
chisq.test(mytable)
## 
##  Chi-squared test for given probabilities
## 
## data:  mytable
## X-squared = 194910, df = 622, p-value < 2.2e-16

The chi-square tests help us to further establish our hypothesis that sales vary and depend on the different platforms, genres, year of the game and publisher. We reject the null hypothesis and the p-values less than 0.05 shows that all the fields are related. All the sales show some or the other correlation with platform, year, genre and publisher of the video games.

corr.test(game.df[,c(1,7:11)],use="complete")
## Call:corr.test(x = game.df[, c(1, 7:11)], use = "complete")
## Correlation matrix 
##               Rank NA_Sales EU_Sales JP_Sales Other_Sales Global_Sales
## Rank          1.00    -0.40    -0.38    -0.27       -0.33        -0.43
## NA_Sales     -0.40     1.00     0.77     0.45        0.63         0.94
## EU_Sales     -0.38     0.77     1.00     0.44        0.73         0.90
## JP_Sales     -0.27     0.45     0.44     1.00        0.29         0.61
## Other_Sales  -0.33     0.63     0.73     0.29        1.00         0.75
## Global_Sales -0.43     0.94     0.90     0.61        0.75         1.00
## Sample Size 
## [1] 16598
## Probability values (Entries above the diagonal are adjusted for multiple tests.) 
##              Rank NA_Sales EU_Sales JP_Sales Other_Sales Global_Sales
## Rank            0        0        0        0           0            0
## NA_Sales        0        0        0        0           0            0
## EU_Sales        0        0        0        0           0            0
## JP_Sales        0        0        0        0           0            0
## Other_Sales     0        0        0        0           0            0
## Global_Sales    0        0        0        0           0            0
## 
##  To see confidence intervals of the correlations, print with the short=FALSE option

Rank is negatively correlated to all the sales and each of the sales are highly positively correlated to global sales. America and Europe sales show high levels of correlation (0.77), and so do Europe and Other Sales, with a high positive correlation of 0.73.

Running T-tests

Run a t-test to analyse your hypothesis. To further prove the hypothesis that the fields are related, which is also indicated by the chi-square tests and cor.tests, we run the t-tests.

t.test(NA_Sales,EU_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  NA_Sales and EU_Sales
## t = 15.831, df = 27682, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.1034042 0.1326267
## sample estimates:
## mean of x mean of y 
## 0.2646674 0.1466520
t.test(NA_Sales,JP_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  NA_Sales and JP_Sales
## t = 27.571, df = 21262, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.1735995 0.2001720
## sample estimates:
##  mean of x  mean of y 
## 0.26466743 0.07778166
t.test(NA_Sales,Other_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  NA_Sales and Other_Sales
## t = 33.294, df = 18362, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.2038523 0.2293566
## sample estimates:
##  mean of x  mean of y 
## 0.26466743 0.04806302
t.test(NA_Sales,Global_Sales,paired = TRUE)
## 
##  Paired t-test
## 
## data:  NA_Sales and Global_Sales
## t = -42.157, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.2854559 -0.2600906
## sample estimates:
## mean of the differences 
##              -0.2727732
t.test(EU_Sales,JP_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  EU_Sales and JP_Sales
## t = 14.976, df = 27501, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.05985634 0.07788435
## sample estimates:
##  mean of x  mean of y 
## 0.14665201 0.07778166
t.test(EU_Sales,Other_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  EU_Sales and Other_Sales
## t = 23.548, df = 21132, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.09038262 0.10679535
## sample estimates:
##  mean of x  mean of y 
## 0.14665201 0.04806302
t.test(EU_Sales,Global_Sales,paired = TRUE)
## 
##  Paired t-test
## 
## data:  EU_Sales and Global_Sales
## t = -44.95, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.4078296 -0.3737477
## sample estimates:
## mean of the differences 
##              -0.3907886
t.test(JP_Sales,Other_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  JP_Sales and Other_Sales
## t = 10.569, df = 27439, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.02420739 0.03522989
## sample estimates:
##  mean of x  mean of y 
## 0.07778166 0.04806302
t.test(JP_Sales,Global_Sales,paired = TRUE)
## 
##  Paired t-test
## 
## data:  JP_Sales and Global_Sales
## t = -42.679, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.4807694 -0.4385486
## sample estimates:
## mean of the differences 
##               -0.459659
t.test(Other_Sales,Global_Sales,paired = TRUE)
## 
##  Paired t-test
## 
## data:  Other_Sales and Global_Sales
## t = -44.418, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.5109732 -0.4677821
## sample estimates:
## mean of the differences 
##              -0.4893776
t.test(Rank,NA_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  Rank and NA_Sales
## t = 223.16, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  8227.436 8373.245
## sample estimates:
##    mean of x    mean of y 
## 8300.6052536    0.2646674
t.test(Rank,EU_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  Rank and EU_Sales
## t = 223.17, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  8227.554 8373.363
## sample estimates:
##   mean of x   mean of y 
## 8300.605254    0.146652
t.test(Rank,JP_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  Rank and JP_Sales
## t = 223.17, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  8227.623 8373.432
## sample estimates:
##    mean of x    mean of y 
## 8.300605e+03 7.778166e-02
t.test(Rank,Other_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  Rank and Other_Sales
## t = 223.17, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  8227.653 8373.462
## sample estimates:
##    mean of x    mean of y 
## 8.300605e+03 4.806302e-02
t.test(Rank,Global_Sales)
## 
##  Welch Two Sample t-test
## 
## data:  Rank and Global_Sales
## t = 223.15, df = 16597, p-value < 2.2e-16
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  8227.163 8372.973
## sample estimates:
##    mean of x    mean of y 
## 8300.6052536    0.5374407

Hence, from all the tests that we have carried out, we can find out that, since the p-value is less than 0.05 (all of them being < 2.2e-16), we can reject the null hypothesis. So, the sales of each region are correlated to each other, as well as to the global sales and to the rank of the game. Also, there lie differences between different regional sales based on year and platform mostly, as seen from the graphs and plots.

Aggregate, By and apply methods

We aggregate various fields to find out relations and patterns between variables. Here, our main aim is to compare the different sales, based on the region, platform and year.

aggregate(NA_Sales,by=list(Platform = Platform),sum)
##    Platform      x
## 1      2600  90.60
## 2       3DO   0.00
## 3       3DS  78.87
## 4        DC   5.43
## 5        DS 390.71
## 6        GB 114.32
## 7       GBA 187.54
## 8        GC 133.46
## 9       GEN  19.27
## 10       GG   0.00
## 11      N64 139.02
## 12      NES 125.94
## 13       NG   0.00
## 14       PC  93.28
## 15     PCFX   0.00
## 16       PS 336.51
## 17      PS2 583.84
## 18      PS3 392.26
## 19      PS4  96.80
## 20      PSP 108.99
## 21      PSV  16.20
## 22      SAT   0.72
## 23      SCD   1.00
## 24     SNES  61.23
## 25     TG16   0.00
## 26      Wii 507.71
## 27     WiiU  38.32
## 28       WS   0.00
## 29     X360 601.05
## 30       XB 186.69
## 31     XOne  83.19
aggregate(NA_Sales,by=list(Platform = Platform),mean)
##    Platform          x
## 1      2600 0.68120301
## 2       3DO 0.00000000
## 3       3DS 0.15495088
## 4        DC 0.10442308
## 5        DS 0.18063338
## 6        GB 1.16653061
## 7       GBA 0.22815085
## 8        GC 0.24003597
## 9       GEN 0.71370370
## 10       GG 0.00000000
## 11      N64 0.43579937
## 12      NES 1.28510204
## 13       NG 0.00000000
## 14       PC 0.09716667
## 15     PCFX 0.00000000
## 16       PS 0.28136288
## 17      PS2 0.27017122
## 18      PS3 0.29515425
## 19      PS4 0.28809524
## 20      PSP 0.08985161
## 21      PSV 0.03922518
## 22      SAT 0.00416185
## 23      SCD 0.16666667
## 24     SNES 0.25619247
## 25     TG16 0.00000000
## 26      Wii 0.38317736
## 27     WiiU 0.26797203
## 28       WS 0.00000000
## 29     X360 0.47513834
## 30       XB 0.22656553
## 31     XOne 0.39056338
aggregate(NA_Sales,by=list(Year = Year),sum)
##    Year      x
## 1  1980  10.59
## 2  1981  33.40
## 3  1982  26.92
## 4  1983   7.76
## 5  1984  33.28
## 6  1985  33.73
## 7  1986  12.50
## 8  1987   8.46
## 9  1988  23.87
## 10 1989  45.15
## 11 1990  25.46
## 12 1991  12.76
## 13 1992  33.87
## 14 1993  15.12
## 15 1994  28.15
## 16 1995  24.82
## 17 1996  86.76
## 18 1997  94.75
## 19 1998 128.36
## 20 1999 126.06
## 21 2000  94.49
## 22 2001 173.98
## 23 2002 216.19
## 24 2003 193.59
## 25 2004 222.59
## 26 2005 242.61
## 27 2006 263.12
## 28 2007 312.05
## 29 2008 351.44
## 30 2009 338.85
## 31 2010 304.24
## 32 2011 241.06
## 33 2012 154.96
## 34 2013 154.77
## 35 2014 131.97
## 36 2015 102.82
## 37 2016  22.66
## 38 2017   0.00
## 39 2020   0.27
## 40  N/A  59.52
aggregate(NA_Sales,by=list(Year = Year),mean)
##    Year          x
## 1  1980 1.17666667
## 2  1981 0.72608696
## 3  1982 0.74777778
## 4  1983 0.45647059
## 5  1984 2.37714286
## 6  1985 2.40928571
## 7  1986 0.59523810
## 8  1987 0.52875000
## 9  1988 1.59133333
## 10 1989 2.65588235
## 11 1990 1.59125000
## 12 1991 0.31121951
## 13 1992 0.78767442
## 14 1993 0.25200000
## 15 1994 0.23264463
## 16 1995 0.11333333
## 17 1996 0.32988593
## 18 1997 0.32785467
## 19 1998 0.33868074
## 20 1999 0.37295858
## 21 2000 0.27074499
## 22 2001 0.36095436
## 23 2002 0.26078408
## 24 2003 0.24979355
## 25 2004 0.29173001
## 26 2005 0.25782147
## 27 2006 0.26103175
## 28 2007 0.25960899
## 29 2008 0.24610644
## 30 2009 0.23679245
## 31 2010 0.24165210
## 32 2011 0.21164179
## 33 2012 0.23585997
## 34 2013 0.28346154
## 35 2014 0.22675258
## 36 2015 0.16745928
## 37 2016 0.06587209
## 38 2017 0.00000000
## 39 2020 0.27000000
## 40  N/A 0.21963100
aggregate(NA_Sales,by=list(Genre = Genre),sum)
##           Genre      x
## 1        Action 877.83
## 2     Adventure 105.80
## 3      Fighting 223.59
## 4          Misc 410.24
## 5      Platform 447.05
## 6        Puzzle 123.78
## 7        Racing 359.42
## 8  Role-Playing 327.28
## 9       Shooter 582.60
## 10   Simulation 183.31
## 11       Sports 683.35
## 12     Strategy  68.70
aggregate(NA_Sales,by=list(Genre = Genre),mean)
##           Genre          x
## 1        Action 0.26472557
## 2     Adventure 0.08227061
## 3      Fighting 0.26366745
## 4          Misc 0.23590569
## 5      Platform 0.50457111
## 6        Puzzle 0.21268041
## 7        Racing 0.28776621
## 8  Role-Playing 0.21994624
## 9       Shooter 0.44473282
## 10   Simulation 0.21143022
## 11       Sports 0.29128303
## 12     Strategy 0.10088106
aggregate(NA_Sales,by=list(Publisher = Publisher),sum)
##                                  Publisher      x
## 1                          10TACLE Studios   0.07
## 2                               1C Company   0.01
## 3             20th Century Fox Video Games   1.82
## 4                                   2D Boy   0.00
## 5                                      3DO   6.48
## 6                                  49Games   0.00
## 7                                505 Games  31.83
## 8                                      5pb   0.02
## 9                                 7G//AMES   0.00
## 10                              989 Sports   0.21
## 11                             989 Studios   9.23
## 12                                Abylight   0.07
## 13                   Acclaim Entertainment  42.75
## 14                                Accolade   1.25
## 15                             Ackkstudios   0.13
## 16                                 Acquire   0.14
## 17                              Activision 429.70
## 18                     Activision Blizzard   0.08
## 19                        Activision Value   5.53
## 20                        Adeline Software   0.10
## 21                                Aerosoft   0.01
## 22                  Agatsuma Entertainment   0.22
## 23                                  Agetec   0.78
## 24                             Aksys Games   0.19
## 25                    Alawar Entertainment   0.00
## 26                               Alchemist   0.59
## 27                    Alternative Software   0.00
## 28                                  Altron   0.05
## 29                                  Alvion   0.00
## 30                      American Softworks   0.13
## 31                           Angel Studios   0.00
## 32                         Answer Software   0.46
## 33                          AQ Interactive   0.34
## 34                               Aqua Plus   0.05
## 35                                   Aques   0.00
## 36                        Arc System Works   0.78
## 37                     Arena Entertainment   3.70
## 38                                    Aria   0.00
## 39                                   Arika   0.04
## 40                                 ArtDink   0.07
## 41                              Aruze Corp   0.00
## 42                               ASC Games   1.12
## 43                   Ascaron Entertainment   0.00
## 44              Ascaron Entertainment GmbH   0.00
## 45                     ASCII Entertainment   0.70
## 46                       ASCII Media Works   0.00
## 47                                  Asgard   0.00
## 48                                     ASK   0.00
## 49                 Asmik Ace Entertainment   0.00
## 50                              Asmik Corp   0.00
## 51                                   Aspyr   0.55
## 52                                Astragon   0.24
## 53                    Asylum Entertainment   0.09
## 54                                   Atari 110.04
## 55                                  Athena   0.02
## 56                                   Atlus   4.20
## 57                      Avalon Interactive   0.34
## 58                               Avanquest   1.12
## 59                      Avanquest Software   0.95
## 60                                   Axela   0.00
## 61                      BAM! Entertainment   3.16
## 62                               Banpresto   0.41
## 63                                 Benesse   0.01
## 64                                Berkeley   0.02
## 65                      Bethesda Softworks  39.72
## 66                     Big Ben Interactive   0.78
## 67                          Big Fish Games   0.00
## 68                      Bigben Interactive   0.10
## 69                       bitComposer Games   0.16
## 70                        Black Bean Games   1.28
## 71                       Black Label Games   0.59
## 72                Blast! Entertainment Ltd   0.23
## 73                               Blue Byte   0.00
## 74           BMG Interactive Entertainment   0.67
## 75                     Bohemia Interactive   0.00
## 76                                    Bomb   0.21
## 77                                Boost On   0.00
## 78                                     BPS   0.00
## 79                     Brash Entertainment   0.89
## 80                                Broccoli   0.00
## 81                               BushiRoad   0.00
## 82                                  Capcom  78.59
## 83                                    Cave   0.14
## 84                         CBS Electronics   0.29
## 85                                     CCP   0.00
## 86              CDV Software Entertainment   0.11
## 87                                ChunSoft   0.37
## 88                        City Interactive   1.70
## 89        Cloud Imperium Games Corporation   0.08
## 90                          Coconuts Japan   0.01
## 91                             Codemasters  11.92
## 92                      Codemasters Online   0.00
## 93                       CokeM Interactive   0.29
## 94                                  Coleco   2.87
## 95                                 Comfort   0.00
## 96                                Commseed   0.00
## 97                                 Compile   0.00
## 98                           Compile Heart   0.50
## 99                Conspiracy Entertainment   0.63
## 100                       Core Design Ltd.   0.16
## 101                           CPG Products   0.50
## 102                    Crave Entertainment   6.91
## 103                          Creative Core   0.00
## 104                            Crimson Cow   0.00
## 105                       Crystal Dynamics   0.95
## 106                                CTO SpA   0.50
## 107                          Culture Brain   0.00
## 108                     Culture Publishers   0.05
## 109                             CyberFront   0.01
## 110                                Cygames   0.00
## 111                            D3Publisher  11.52
## 112                               Daedalic   0.00
## 113                 Daedalic Entertainment   0.00
## 114                                  Daito   0.00
## 115                               Data Age   0.66
## 116                Data Design Interactive   0.25
## 117                              Data East   0.00
## 118                         Datam Polystar   0.00
## 119                            Deep Silver  12.73
## 120              Destination Software, Inc   0.75
## 121                              Destineer   4.06
## 122                            Detn8 Games   0.21
## 123                       Devolver Digital   0.00
## 124                        DHM Interactive   0.16
## 125                               DigiCube   0.00
## 126             Disney Interactive Studios  71.34
## 127                                 Dorart   0.00
## 128                        dramatic create   0.00
## 129               DreamCatcher Interactive   0.75
## 130                 DreamWorks Interactive   0.07
## 131                              DSI Games   0.29
## 132                      DTP Entertainment   1.62
## 133               Dusenberry Martin Racing   0.05
## 134                               EA Games   0.07
## 135                       Easy Interactive   0.00
## 136                                  Ecole   0.00
## 137                                   Edia   0.00
## 138                      Eidos Interactive  49.19
## 139                        Electronic Arts 595.07
## 140                 Electronic Arts Victor   0.23
## 141                                    Elf   0.00
## 142                                  Elite   0.04
## 143                     Empire Interactive   6.03
## 144                                 Encore   0.04
## 145                       Enix Corporation   0.76
## 146                      Enjoy Gaming ltd.   0.09
## 147                             Enterbrain   0.12
## 148              EON Digital Entertainment   0.01
## 149                             Epic Games   0.01
## 150                                  Epoch   0.00
## 151                                 Ertain   0.05
## 152                                    ESP   0.03
## 153                        Essential Games   0.01
## 154                        Evolution Games   0.00
## 155                          Evolved Games   0.26
## 156                   Excalibur Publishing   0.00
## 157                        Experience Inc.   0.00
## 158            Extreme Entertainment Group   0.02
## 159                     Falcom Corporation   0.28
## 160                                 Fields   0.00
## 161                       Flashpoint Games   0.07
## 162                            Flight-Plan   0.00
## 163                 Focus Home Interactive   1.72
## 164                       Focus Multimedia   0.00
## 165                                 fonfun   0.00
## 166                    Foreign Media Games   0.27
## 167                              Fortyfive   0.00
## 168                        Fox Interactive   3.76
## 169                          From Software   0.35
## 170                                   Fuji   0.00
## 171                           Funbox Media   0.71
## 172                                 Funcom   0.07
## 173                                FunSoft   0.07
## 174                                 Funsta   0.13
## 175                                  FuRyu   0.11
## 176                      FuRyu Corporation   0.02
## 177                                  G.Rev   0.00
## 178                                   Gaga   0.00
## 179                 Gainax Network Systems   0.00
## 180                                 Gakken   0.00
## 181                              Game Arts   0.00
## 182                           Game Factory   3.31
## 183                              Game Life   0.13
## 184                             Gamebridge   0.30
## 185                               Gamecock   0.16
## 186                               Gameloft   0.10
## 187                 GameMill Entertainment   1.28
## 188                                GameTek   0.08
## 189                Gathering of Developers   0.61
## 190                  General Entertainment   0.00
## 191                                  Genki   0.49
## 192                            Genterprise   0.00
## 193                             Ghostlight   1.22
## 194                                   Giga   0.00
## 195                                 Giza10   0.00
## 196                                  Glams   0.00
## 197                 Global A Entertainment   0.13
## 198                            Global Star   5.25
## 199                            GN Software   0.00
## 200                                    GOA   0.00
## 201                           Gotham Games   2.27
## 202                               Graffiti   0.36
## 203                       Grand Prix Games   0.00
## 204                 Graphsim Entertainment   0.00
## 205                Gremlin Interactive Ltd   0.66
## 206                  Griffin International   0.08
## 207                           Groove Games   0.07
## 208                                    GSP   1.16
## 209                         GT Interactive  15.57
## 210                                 GungHo   0.84
## 211                                   Gust   0.15
## 212                              Hackberry   0.00
## 213                         HAL Laboratory   0.06
## 214                    Hamster Corporation   0.16
## 215                               Happinet   0.00
## 216                 Harmonix Music Systems   0.60
## 217                     Hasbro Interactive  10.99
## 218                      Havas Interactive   0.01
## 219                           Headup Games   0.00
## 220                           Hearty Robin   0.00
## 221                                   Hect   0.00
## 222                            Hello Games   0.58
## 223                        Her Interactive   0.03
## 224                        Hip Interactive   0.26
## 225                        HMH Interactive   0.00
## 226           Home Entertainment Suppliers   0.09
## 227                   Hudson Entertainment   0.33
## 228                            Hudson Soft   2.55
## 229                    Human Entertainment   0.06
## 230                                  HuneX   0.00
## 231                    Iceberg Interactive   0.02
## 232                            id Software   0.02
## 233                           Idea Factory   0.53
## 234             Idea Factory International   0.23
## 235                           IE Institute   0.00
## 236                 Ignition Entertainment   4.03
## 237                     Illusion Softworks   0.34
## 238                                 Imadio   0.00
## 239                            Image Epoch   0.00
## 240                        imageepoch Inc.   0.00
## 241                             Imageworks   0.00
## 242                                 Imagic   4.51
## 243                              Imagineer   0.09
## 244                                   Imax   0.00
## 245                            Indie Games   0.09
## 246                             Infogrames  10.50
## 247                        Insomniac Games   0.10
## 248                           Interchannel   0.00
## 249                     Interchannel-Holon   0.00
## 250                              Intergrow   0.00
## 251                              Interplay   3.86
## 252                  Interplay Productions   0.05
## 253             Interworks Unlimited, Inc.   0.01
## 254                           Inti Creates   0.00
## 255                  Introversion Software   0.01
## 256                   inXile Entertainment   0.02
## 257              Irem Software Engineering   0.12
## 258                       ITT Family Games   0.32
## 259                              Ivolgamus   0.03
## 260                                   iWin   0.00
## 261                      Jack of All Games   0.31
## 262                                 Jaleco   0.79
## 263                     Jester Interactive   0.70
## 264                                Jorudan   0.00
## 265                     JoWood Productions   0.87
## 266                            Just Flight   0.00
## 267                                    JVC   2.25
## 268                         Kadokawa Games   0.00
## 269                        Kadokawa Shoten   0.46
## 270                            Kaga Create   0.00
## 271                          Kalypso Media   1.00
## 272                                  Kamui   0.00
## 273                            Kando Games   0.02
## 274                    Karin Entertainment   0.00
## 275                                  Kemco   1.61
## 276                                    KID   0.00
## 277                           Kids Station   0.00
## 278                           King Records   0.00
## 279                    Knowledge Adventure   1.23
## 280                             Koch Media   2.31
## 281               Kokopeli Digital Studios   0.02
## 282           Konami Digital Entertainment  92.16
## 283                              Kool Kizz   0.03
## 284                                    KSS   0.00
## 285                                 Laguna   0.16
## 286                     Legacy Interactive   0.04
## 287                             LEGO Media   1.01
## 288                                Level 5   0.20
## 289                  Lexicon Entertainment   0.04
## 290                            Licensed 4U   0.00
## 291                 Lighthouse Interactive   0.00
## 292                           Liquid Games   0.19
## 293                           Little Orbit   0.53
## 294                                  Locus   0.00
## 295                              LSP Games   0.08
## 296                              LucasArts  49.97
## 297                               Mad Catz   0.24
## 298                        Magical Company   0.15
## 299                                  Magix   0.17
## 300                  Majesco Entertainment  12.08
## 301                            Mamba Games   0.00
## 302                   Marvel Entertainment   0.00
## 303                Marvelous Entertainment   0.80
## 304                        Marvelous Games   0.00
## 305                  Marvelous Interactive   1.61
## 306                      Masque Publishing   0.01
## 307                           Mastertronic   1.07
## 308                                Mastiff   2.04
## 309                     Mattel Interactive   3.05
## 310                               Max Five   0.03
## 311                   Maximum Family Games   0.03
## 312                                  Maxis   1.88
## 313                      MC2 Entertainment   0.03
## 314                    Media Entertainment   0.00
## 315                          Media Factory   0.00
## 316                            Media Rings   0.14
## 317                            Media Works   0.00
## 318                             MediaQuest   0.03
## 319                           Men-A-Vision   0.72
## 320                     Mentor Interactive   0.99
## 321                          Mercury Games   0.17
## 322                            Merscom LLC   0.00
## 323                               Metro 3D   0.77
## 324                            Michaelsoft   0.00
## 325                            Micro Cabin   0.00
## 326                               Microids   0.23
## 327                             Microprose   0.70
## 328                 Microsoft Game Studios 155.35
## 329        Midas Interactive Entertainment   1.34
## 330                           Midway Games  45.46
## 331                              Milestone   0.08
## 332                        Milestone S.r.l   0.00
## 333                       Milestone S.r.l.   0.23
## 334                         Minato Station   0.00
## 335                              Mindscape   4.64
## 336                          Mirai Shounen   0.00
## 337                                 Misawa   0.00
## 338                                 Mitsui   0.06
## 339                              mixi, Inc   0.00
## 340                                MLB.com   0.04
## 341                                 Mojang   1.25
## 342               Monte Christo Multimedia   0.00
## 343                                   Moss   0.10
## 344                                    MTO   0.00
## 345                              MTV Games  14.98
## 346                   Mud Duck Productions   0.52
## 347                            Mumbo Jumbo   0.53
## 348                                  Mycom   0.00
## 349                           Myelin Media   0.09
## 350                               Mystique   0.76
## 351                                    N/A   8.54
## 352                     Namco Bandai Games  69.52
## 353                                Natsume   2.52
## 354                           Navarre Corp   0.04
## 355                             Naxat Soft   0.00
## 356                                    NCS   0.00
## 357                                 NCSoft   1.05
## 358                        NDA Productions   0.09
## 359                                    NEC   0.00
## 360                       NEC Interchannel   0.00
## 361                     Neko Entertainment   0.20
## 362                                NetRevo   0.00
## 363                                    New   0.00
## 364                    New World Computing   0.01
## 365                               NewKidCo   0.89
## 366                                  Nexon   0.00
## 367                             Nichibutsu   0.00
## 368               Nihon Falcom Corporation   0.15
## 369                               Nintendo 816.87
## 370                           Nippon Amuse   0.00
## 371                        Nippon Columbia   0.00
## 372                   Nippon Ichi Software   5.22
## 373                         Nippon Telenet   0.00
## 374                              Nitroplus   0.00
## 375                                Nobilis   1.61
## 376                            Nordcurrent   0.39
## 377                           Nordic Games   0.76
## 378                              NovaLogic   0.48
## 379                            Number None   0.00
## 380                                O-Games   0.44
## 381                       O3 Entertainment   0.19
## 382                                  Ocean   2.06
## 383                          Office Create   0.00
## 384                              On Demand   0.12
## 385                              Ongakukan   0.00
## 386                         Origin Systems   0.05
## 387                                Otomate   0.00
## 388                     Oxygen Interactive   2.01
## 389                               P2 Games   0.02
## 390            Pacific Century Cyber Works   0.11
## 391                          Pack-In-Video   0.00
## 392                           Pack In Soft   0.25
## 393                                 Palcom   3.38
## 394                       Panther Software   0.02
## 395                                   Paon   0.00
## 396                       Paon Corporation   0.00
## 397                    Paradox Development   0.00
## 398                    Paradox Interactive   0.05
## 399                           Parker Bros.   4.65
## 400          Performance Designed Products   0.34
## 401                             Phantagram   0.03
## 402                            Phantom EFX   0.09
## 403                             Phenomedia   0.16
## 404                          Phoenix Games   0.02
## 405                                 Piacci   0.00
## 406                               Pinnacle   0.00
## 407                            Pioneer LDC   0.23
## 408                                Play It   2.53
## 409                 Playlogic Game Factory   0.94
## 410                              Playmates   0.16
## 411                               Playmore   0.00
## 412                                  PlayV   0.10
## 413                                 Plenty   0.00
## 414                             PM Studios   0.09
## 415                            Pony Canyon   0.03
## 416                           PopCap Games   1.10
## 417                         Popcorn Arcade   0.45
## 418                        PopTop Software   0.06
## 419                                    Pow   0.00
## 420                                  PQube   1.91
## 421                          Princess Soft   0.00
## 422                              Prototype   0.00
## 423                              Psygnosis   3.63
## 424                                 Quelle   0.81
## 425                                  Quest   0.00
## 426                               Quinrose   0.00
## 427                                Quintet   0.00
## 428                          Rage Software   0.81
## 429                             Rain Games   0.00
## 430                              Rebellion   0.35
## 431                 Rebellion Developments   0.08
## 432                      RED Entertainment   0.00
## 433                                Red Orb   1.54
## 434                Red Storm Entertainment   1.43
## 435                              RedOctane   6.44
## 436                     Reef Entertainment   0.17
## 437                           responDESIGN   0.09
## 438                     Revolution (Japan)   0.00
## 439                    Revolution Software   0.00
## 440                      Rising Star Games  10.50
## 441                          Riverhillsoft   0.00
## 442                         Rocket Company   0.00
## 443                             Rondomedia   1.17
## 444                                    RTL   0.83
## 445                                 Russel   0.00
## 446                      Sammy Corporation   0.41
## 447                                 Saurus   0.01
## 448                        Scholastic Inc.   2.67
## 449                                    SCi   2.01
## 450                             Screenlife   0.22
## 451                           SCS Software   0.00
## 452                                  Sears   0.20
## 453                                   Sega 109.40
## 454                       Seta Corporation   0.00
## 455                          Seventh Chord   0.00
## 456                             Shogakukan   0.00
## 457           Simon & Schuster Interactive   0.08
## 458                   Slightly Mad Studios   0.25
## 459                    Slitherine Software   0.08
## 460                                    SNK   0.04
## 461                           SNK Playmore   0.23
## 462                                Societa   0.00
## 463                               Sold Out   0.01
## 464                                 Sonnet   0.00
## 465            Sony Computer Entertainment 265.22
## 466    Sony Computer Entertainment America   1.04
## 467     Sony Computer Entertainment Europe   8.96
## 468               Sony Music Entertainment   0.00
## 469              Sony Online Entertainment   1.96
## 470                        SouthPeak Games   4.77
## 471                                  Spike   3.32
## 472                                    SPS   0.07
## 473                                 Square   0.53
## 474                              Square EA   0.45
## 475                            Square Enix  48.65
## 476                             SquareSoft  11.06
## 477                                    SSI   0.11
## 478                        Stainless Games   0.01
## 479                               Starfish   0.39
## 480                         Starpath Corp.   0.30
## 481                                  Sting   0.40
## 482                       Storm City Games   1.35
## 483                         Strategy First   0.00
## 484                                Success   1.12
## 485                             Summitsoft   0.03
## 486                             Sunflowers   0.00
## 487                    Sunrise Interactive   0.00
## 488                                Sunsoft   0.50
## 489                                 Sweets   0.00
## 490                   Swing! Entertainment   0.28
## 491                                 Syscom   0.06
## 492                               System 3   0.08
## 493               System 3 Arcade Software   0.96
## 494                            System Soft   0.00
## 495                               T&E Soft   0.00
## 496                                  Taito   0.41
## 497                                 Takara   0.16
## 498                            Takara Tomy   0.76
## 499                   Take-Two Interactive 220.49
## 500                                 Takuyo   0.00
## 501                              TalonSoft   0.49
## 502                               TDK Core   0.24
## 503                         TDK Mediactive   5.41
## 504                        Team17 Software   0.00
## 505              Technos Japan Corporation   0.00
## 506                             TechnoSoft   0.03
## 507                             Tecmo Koei  14.08
## 508                              Telegames   0.91
## 509                         Telltale Games   1.28
## 510                                Telstar   0.16
## 511                          Tetris Online   0.20
## 512                                    TGL   0.00
## 513                  The Adventure Company   0.34
## 514                   The Learning Company   0.03
## 515                                    THQ 208.77
## 516                            Tigervision   1.33
## 517                Time Warner Interactive   0.18
## 518                                  Titus   1.96
## 519                                 Tivola   0.08
## 520                                   TOHO   0.00
## 521                                  Tommo   0.20
## 522                       Tomy Corporation   1.84
## 523                    TopWare Interactive   0.00
## 524                             Touchstone   0.88
## 525                              Tradewest   0.02
## 526                           Trion Worlds   0.72
## 527                   Tripwire Interactive   0.04
## 528                  Tru Blu Entertainment   0.01
## 529                               Tryfirst   0.00
## 530                                    TYO   0.23
## 531                              Type-Moon   0.00
## 532                              U.S. Gold   0.19
## 533                                Ubisoft 253.43
## 534                         Ubisoft Annecy   1.27
## 535                            UEP Systems   1.52
## 536                        UFO Interactive   0.92
## 537                      UIG Entertainment   0.00
## 538                            Ultravision   0.44
## 539                        Universal Gamex   0.58
## 540                  Universal Interactive   9.08
## 541                                Unknown  18.49
## 542                           Valcon Games   0.31
## 543                               ValuSoft   0.26
## 544                                  Valve   0.83
## 545                         Valve Software   1.74
## 546                                    Vap   0.00
## 547                  Vatical Entertainment   0.14
## 548                              Vic Tokai   0.19
## 549                     Victor Interactive   0.11
## 550                           Video System   0.67
## 551                                  Views   0.00
## 552                          Vir2L Studios   0.22
## 553                     Virgin Interactive  18.99
## 554                     Virtual Play Games   0.06
## 555                                  Visco   0.02
## 556                          Vivendi Games  37.00
## 557                                Wanadoo   0.30
## 558                                Warashi   0.00
## 559                          Wargaming.net   0.00
## 560 Warner Bros. Interactive Entertainment  81.18
## 561                                   Warp   0.00
## 562                WayForward Technologies   0.05
## 563                       Westwood Studios   1.55
## 564                White Park Bay Software   0.13
## 565                     Wizard Video Games   0.58
## 566                      Xicat Interactive   0.09
## 567                     Xing Entertainment   0.04
## 568                                Xplosiv   0.61
## 569                               XS Games   1.18
## 570                            Xseed Games   0.41
## 571                       Yacht Club Games   0.16
## 572                   Yamasa Entertainment   0.00
## 573                                   Yeti   0.00
## 574                                 Yuke's   0.01
## 575                                Yumedia   0.00
## 576                                 Zenrin   0.00
## 577                 Zoo Digital Publishing   9.52
## 578                              Zoo Games   4.52
## 579                            Zushi Games   1.67
aggregate(NA_Sales,by=list(Publisher = Publisher),mean)
##                                  Publisher            x
## 1                          10TACLE Studios 0.0233333333
## 2                               1C Company 0.0033333333
## 3             20th Century Fox Video Games 0.3640000000
## 4                                   2D Boy 0.0000000000
## 5                                      3DO 0.1800000000
## 6                                  49Games 0.0000000000
## 7                                505 Games 0.1657812500
## 8                                      5pb 0.0003278689
## 9                                 7G//AMES 0.0000000000
## 10                              989 Sports 0.2100000000
## 11                             989 Studios 0.6592857143
## 12                                Abylight 0.0700000000
## 13                   Acclaim Entertainment 0.2323369565
## 14                                Accolade 0.4166666667
## 15                             Ackkstudios 0.0130000000
## 16                                 Acquire 0.0107692308
## 17                              Activision 0.4407179487
## 18                     Activision Blizzard 0.0800000000
## 19                        Activision Value 0.1906896552
## 20                        Adeline Software 0.1000000000
## 21                                Aerosoft 0.0050000000
## 22                  Agatsuma Entertainment 0.0733333333
## 23                                  Agetec 0.0975000000
## 24                             Aksys Games 0.0237500000
## 25                    Alawar Entertainment 0.0000000000
## 26                               Alchemist 0.0137209302
## 27                    Alternative Software 0.0000000000
## 28                                  Altron 0.0500000000
## 29                                  Alvion 0.0000000000
## 30                      American Softworks 0.1300000000
## 31                           Angel Studios 0.0000000000
## 32                         Answer Software 0.4600000000
## 33                          AQ Interactive 0.0680000000
## 34                               Aqua Plus 0.0021739130
## 35                                   Aques 0.0000000000
## 36                        Arc System Works 0.0300000000
## 37                     Arena Entertainment 1.8500000000
## 38                                    Aria 0.0000000000
## 39                                   Arika 0.0133333333
## 40                                 ArtDink 0.0077777778
## 41                              Aruze Corp 0.0000000000
## 42                               ASC Games 0.3733333333
## 43                   Ascaron Entertainment 0.0000000000
## 44              Ascaron Entertainment GmbH 0.0000000000
## 45                     ASCII Entertainment 0.0350000000
## 46                       ASCII Media Works 0.0000000000
## 47                                  Asgard 0.0000000000
## 48                                     ASK 0.0000000000
## 49                 Asmik Ace Entertainment 0.0000000000
## 50                              Asmik Corp 0.0000000000
## 51                                   Aspyr 0.0687500000
## 52                                Astragon 0.0400000000
## 53                    Asylum Entertainment 0.0150000000
## 54                                   Atari 0.3031404959
## 55                                  Athena 0.0100000000
## 56                                   Atlus 0.0626865672
## 57                      Avalon Interactive 0.0566666667
## 58                               Avanquest 0.0430769231
## 59                      Avanquest Software 0.1055555556
## 60                                   Axela 0.0000000000
## 61                      BAM! Entertainment 0.0902857143
## 62                               Banpresto 0.0056164384
## 63                                 Benesse 0.0016666667
## 64                                Berkeley 0.0200000000
## 65                      Bethesda Softworks 0.5594366197
## 66                     Big Ben Interactive 0.1114285714
## 67                          Big Fish Games 0.0000000000
## 68                      Bigben Interactive 0.0076923077
## 69                       bitComposer Games 0.0320000000
## 70                        Black Bean Games 0.0376470588
## 71                       Black Label Games 0.5900000000
## 72                Blast! Entertainment Ltd 0.0383333333
## 73                               Blue Byte 0.0000000000
## 74           BMG Interactive Entertainment 0.0957142857
## 75                     Bohemia Interactive 0.0000000000
## 76                                    Bomb 0.2100000000
## 77                                Boost On 0.0000000000
## 78                                     BPS 0.0000000000
## 79                     Brash Entertainment 0.0890000000
## 80                                Broccoli 0.0000000000
## 81                               BushiRoad 0.0000000000
## 82                                  Capcom 0.2062729659
## 83                                    Cave 0.0140000000
## 84                         CBS Electronics 0.2900000000
## 85                                     CCP 0.0000000000
## 86              CDV Software Entertainment 0.0183333333
## 87                                ChunSoft 0.0205555556
## 88                        City Interactive 0.0894736842
## 89        Cloud Imperium Games Corporation 0.0400000000
## 90                          Coconuts Japan 0.0050000000
## 91                             Codemasters 0.0784210526
## 92                      Codemasters Online 0.0000000000
## 93                       CokeM Interactive 0.2900000000
## 94                                  Coleco 0.5740000000
## 95                                 Comfort 0.0000000000
## 96                                Commseed 0.0000000000
## 97                                 Compile 0.0000000000
## 98                           Compile Heart 0.0250000000
## 99                Conspiracy Entertainment 0.0450000000
## 100                       Core Design Ltd. 0.0800000000
## 101                           CPG Products 0.5000000000
## 102                    Crave Entertainment 0.0973239437
## 103                          Creative Core 0.0000000000
## 104                            Crimson Cow 0.0000000000
## 105                       Crystal Dynamics 0.1900000000
## 106                                CTO SpA 0.2500000000
## 107                          Culture Brain 0.0000000000
## 108                     Culture Publishers 0.0500000000
## 109                             CyberFront 0.0007142857
## 110                                Cygames 0.0000000000
## 111                            D3Publisher 0.0626086957
## 112                               Daedalic 0.0000000000
## 113                 Daedalic Entertainment 0.0000000000
## 114                                  Daito 0.0000000000
## 115                               Data Age 0.3300000000
## 116                Data Design Interactive 0.0833333333
## 117                              Data East 0.0000000000
## 118                         Datam Polystar 0.0000000000
## 119                            Deep Silver 0.1043442623
## 120              Destination Software, Inc 0.0625000000
## 121                              Destineer 0.0902222222
## 122                            Detn8 Games 0.2100000000
## 123                       Devolver Digital 0.0000000000
## 124                        DHM Interactive 0.0533333333
## 125                               DigiCube 0.0000000000
## 126             Disney Interactive Studios 0.3272477064
## 127                                 Dorart 0.0000000000
## 128                        dramatic create 0.0000000000
## 129               DreamCatcher Interactive 0.0441176471
## 130                 DreamWorks Interactive 0.0700000000
## 131                              DSI Games 0.0483333333
## 132                      DTP Entertainment 0.0360000000
## 133               Dusenberry Martin Racing 0.0250000000
## 134                               EA Games 0.0700000000
## 135                       Easy Interactive 0.0000000000
## 136                                  Ecole 0.0000000000
## 137                                   Edia 0.0000000000
## 138                      Eidos Interactive 0.2484343434
## 139                        Electronic Arts 0.4404663212
## 140                 Electronic Arts Victor 0.1150000000
## 141                                    Elf 0.0000000000
## 142                                  Elite 0.0400000000
## 143                     Empire Interactive 0.1159615385
## 144                                 Encore 0.0100000000
## 145                       Enix Corporation 0.0253333333
## 146                      Enjoy Gaming ltd. 0.0900000000
## 147                             Enterbrain 0.0080000000
## 148              EON Digital Entertainment 0.0100000000
## 149                             Epic Games 0.0100000000
## 150                                  Epoch 0.0000000000
## 151                                 Ertain 0.0500000000
## 152                                    ESP 0.0060000000
## 153                        Essential Games 0.0033333333
## 154                        Evolution Games 0.0000000000
## 155                          Evolved Games 0.0325000000
## 156                   Excalibur Publishing 0.0000000000
## 157                        Experience Inc. 0.0000000000
## 158            Extreme Entertainment Group 0.0200000000
## 159                     Falcom Corporation 0.0175000000
## 160                                 Fields 0.0000000000
## 161                       Flashpoint Games 0.0350000000
## 162                            Flight-Plan 0.0000000000
## 163                 Focus Home Interactive 0.0296551724
## 164                       Focus Multimedia 0.0000000000
## 165                                 fonfun 0.0000000000
## 166                    Foreign Media Games 0.0300000000
## 167                              Fortyfive 0.0000000000
## 168                        Fox Interactive 0.4700000000
## 169                          From Software 0.0233333333
## 170                                   Fuji 0.0000000000
## 171                           Funbox Media 0.1183333333
## 172                                 Funcom 0.0350000000
## 173                                FunSoft 0.0700000000
## 174                                 Funsta 0.0325000000
## 175                                  FuRyu 0.0040740741
## 176                      FuRyu Corporation 0.0200000000
## 177                                  G.Rev 0.0000000000
## 178                                   Gaga 0.0000000000
## 179                 Gainax Network Systems 0.0000000000
## 180                                 Gakken 0.0000000000
## 181                              Game Arts 0.0000000000
## 182                           Game Factory 0.1034375000
## 183                              Game Life 0.0650000000
## 184                             Gamebridge 0.1500000000
## 185                               Gamecock 0.0400000000
## 186                               Gameloft 0.1000000000
## 187                 GameMill Entertainment 0.1600000000
## 188                                GameTek 0.0800000000
## 189                Gathering of Developers 0.0677777778
## 190                  General Entertainment 0.0000000000
## 191                                  Genki 0.0612500000
## 192                            Genterprise 0.0000000000
## 193                             Ghostlight 0.0813333333
## 194                                   Giga 0.0000000000
## 195                                 Giza10 0.0000000000
## 196                                  Glams 0.0000000000
## 197                 Global A Entertainment 0.0325000000
## 198                            Global Star 0.1346153846
## 199                            GN Software 0.0000000000
## 200                                    GOA 0.0000000000
## 201                           Gotham Games 0.3242857143
## 202                               Graffiti 0.0600000000
## 203                       Grand Prix Games 0.0000000000
## 204                 Graphsim Entertainment 0.0000000000
## 205                Gremlin Interactive Ltd 0.0733333333
## 206                  Griffin International 0.0800000000
## 207                           Groove Games 0.0350000000
## 208                                    GSP 0.0725000000
## 209                         GT Interactive 0.3460000000
## 210                                 GungHo 0.0646153846
## 211                                   Gust 0.0115384615
## 212                              Hackberry 0.0000000000
## 213                         HAL Laboratory 0.0600000000
## 214                    Hamster Corporation 0.0800000000
## 215                               Happinet 0.0000000000
## 216                 Harmonix Music Systems 0.3000000000
## 217                     Hasbro Interactive 0.6868750000
## 218                      Havas Interactive 0.0100000000
## 219                           Headup Games 0.0000000000
## 220                           Hearty Robin 0.0000000000
## 221                                   Hect 0.0000000000
## 222                            Hello Games 0.5800000000
## 223                        Her Interactive 0.0300000000
## 224                        Hip Interactive 0.0520000000
## 225                        HMH Interactive 0.0000000000
## 226           Home Entertainment Suppliers 0.0180000000
## 227                   Hudson Entertainment 0.0300000000
## 228                            Hudson Soft 0.0314814815
## 229                    Human Entertainment 0.0046153846
## 230                                  HuneX 0.0000000000
## 231                    Iceberg Interactive 0.0066666667
## 232                            id Software 0.0200000000
## 233                           Idea Factory 0.0041085271
## 234             Idea Factory International 0.0383333333
## 235                           IE Institute 0.0000000000
## 236                 Ignition Entertainment 0.0660655738
## 237                     Illusion Softworks 0.3400000000
## 238                                 Imadio 0.0000000000
## 239                            Image Epoch 0.0000000000
## 240                        imageepoch Inc. 0.0000000000
## 241                             Imageworks 0.0000000000
## 242                                 Imagic 1.1275000000
## 243                              Imagineer 0.0056250000
## 244                                   Imax 0.0000000000
## 245                            Indie Games 0.0300000000
## 246                             Infogrames 0.1693548387
## 247                        Insomniac Games 0.0333333333
## 248                           Interchannel 0.0000000000
## 249                     Interchannel-Holon 0.0000000000
## 250                              Intergrow 0.0000000000
## 251                              Interplay 0.1286666667
## 252                  Interplay Productions 0.0500000000
## 253             Interworks Unlimited, Inc. 0.0100000000
## 254                           Inti Creates 0.0000000000
## 255                  Introversion Software 0.0100000000
## 256                   inXile Entertainment 0.0200000000
## 257              Irem Software Engineering 0.0100000000
## 258                       ITT Family Games 0.3200000000
## 259                              Ivolgamus 0.0300000000
## 260                                   iWin 0.0000000000
## 261                      Jack of All Games 0.1033333333
## 262                                 Jaleco 0.0343478261
## 263                     Jester Interactive 0.2333333333
## 264                                Jorudan 0.0000000000
## 265                     JoWood Productions 0.0395454545
## 266                            Just Flight 0.0000000000
## 267                                    JVC 0.2812500000
## 268                         Kadokawa Games 0.0000000000
## 269                        Kadokawa Shoten 0.0092000000
## 270                            Kaga Create 0.0000000000
## 271                          Kalypso Media 0.0344827586
## 272                                  Kamui 0.0000000000
## 273                            Kando Games 0.0200000000
## 274                    Karin Entertainment 0.0000000000
## 275                                  Kemco 0.0766666667
## 276                                    KID 0.0000000000
## 277                           Kids Station 0.0000000000
## 278                           King Records 0.0000000000
## 279                    Knowledge Adventure 0.3075000000
## 280                             Koch Media 0.1358823529
## 281               Kokopeli Digital Studios 0.0200000000
## 282           Konami Digital Entertainment 0.1107692308
## 283                              Kool Kizz 0.0300000000
## 284                                    KSS 0.0000000000
## 285                                 Laguna 0.0400000000
## 286                     Legacy Interactive 0.0400000000
## 287                             LEGO Media 0.1442857143
## 288                                Level 5 0.0074074074
## 289                  Lexicon Entertainment 0.0200000000
## 290                            Licensed 4U 0.0000000000
## 291                 Lighthouse Interactive 0.0000000000
## 292                           Liquid Games 0.0950000000
## 293                           Little Orbit 0.0203846154
## 294                                  Locus 0.0000000000
## 295                              LSP Games 0.0200000000
## 296                              LucasArts 0.5552222222
## 297                               Mad Catz 0.0800000000
## 298                        Magical Company 0.1500000000
## 299                                  Magix 0.0850000000
## 300                  Majesco Entertainment 0.1313043478
## 301                            Mamba Games 0.0000000000
## 302                   Marvel Entertainment 0.0000000000
## 303                Marvelous Entertainment 0.0666666667
## 304                        Marvelous Games 0.0000000000
## 305                  Marvelous Interactive 0.0287500000
## 306                      Masque Publishing 0.0100000000
## 307                           Mastertronic 0.0823076923
## 308                                Mastiff 0.1275000000
## 309                     Mattel Interactive 0.2541666667
## 310                               Max Five 0.0300000000
## 311                   Maximum Family Games 0.0300000000
## 312                                  Maxis 0.6266666667
## 313                      MC2 Entertainment 0.0100000000
## 314                    Media Entertainment 0.0000000000
## 315                          Media Factory 0.0000000000
## 316                            Media Rings 0.0466666667
## 317                            Media Works 0.0000000000
## 318                             MediaQuest 0.0300000000
## 319                           Men-A-Vision 0.7200000000
## 320                     Mentor Interactive 0.1980000000
## 321                          Mercury Games 0.0425000000
## 322                            Merscom LLC 0.0000000000
## 323                               Metro 3D 0.0641666667
## 324                            Michaelsoft 0.0000000000
## 325                            Micro Cabin 0.0000000000
## 326                               Microids 0.0230000000
## 327                             Microprose 0.1166666667
## 328                 Microsoft Game Studios 0.8219576720
## 329        Midas Interactive Entertainment 0.0558333333
## 330                           Midway Games 0.2295959596
## 331                              Milestone 0.0800000000
## 332                        Milestone S.r.l 0.0000000000
## 333                       Milestone S.r.l. 0.0143750000
## 334                         Minato Station 0.0000000000
## 335                              Mindscape 0.1450000000
## 336                          Mirai Shounen 0.0000000000
## 337                                 Misawa 0.0000000000
## 338                                 Mitsui 0.0600000000
## 339                              mixi, Inc 0.0000000000
## 340                                MLB.com 0.0400000000
## 341                                 Mojang 0.2500000000
## 342               Monte Christo Multimedia 0.0000000000
## 343                                   Moss 0.0500000000
## 344                                    MTO 0.0000000000
## 345                              MTV Games 0.3653658537
## 346                   Mud Duck Productions 0.1733333333
## 347                            Mumbo Jumbo 0.0883333333
## 348                                  Mycom 0.0000000000
## 349                           Myelin Media 0.0300000000
## 350                               Mystique 0.7600000000
## 351                                    N/A 0.1472413793
## 352                     Namco Bandai Games 0.0745922747
## 353                                Natsume 0.1482352941
## 354                           Navarre Corp 0.0400000000
## 355                             Naxat Soft 0.0000000000
## 356                                    NCS 0.0000000000
## 357                                 NCSoft 0.1750000000
## 358                        NDA Productions 0.0900000000
## 359                                    NEC 0.0000000000
## 360                       NEC Interchannel 0.0000000000
## 361                     Neko Entertainment 0.0285714286
## 362                                NetRevo 0.0000000000
## 363                                    New 0.0000000000
## 364                    New World Computing 0.0100000000
## 365                               NewKidCo 0.0988888889
## 366                                  Nexon 0.0000000000
## 367                             Nichibutsu 0.0000000000
## 368               Nihon Falcom Corporation 0.0214285714
## 369                               Nintendo 1.1619772404
## 370                           Nippon Amuse 0.0000000000
## 371                        Nippon Columbia 0.0000000000
## 372                   Nippon Ichi Software 0.0497142857
## 373                         Nippon Telenet 0.0000000000
## 374                              Nitroplus 0.0000000000
## 375                                Nobilis 0.1238461538
## 376                            Nordcurrent 0.0780000000
## 377                           Nordic Games 0.0217142857
## 378                              NovaLogic 0.1600000000
## 379                            Number None 0.0000000000
## 380                                O-Games 0.0258823529
## 381                       O3 Entertainment 0.0633333333
## 382                                  Ocean 0.1471428571
## 383                          Office Create 0.0000000000
## 384                              On Demand 0.1200000000
## 385                              Ongakukan 0.0000000000
## 386                         Origin Systems 0.0500000000
## 387                                Otomate 0.0000000000
## 388                     Oxygen Interactive 0.0913636364
## 389                               P2 Games 0.0066666667
## 390            Pacific Century Cyber Works 0.1100000000
## 391                          Pack-In-Video 0.0000000000
## 392                           Pack In Soft 0.2500000000
## 393                                 Palcom 3.3800000000
## 394                       Panther Software 0.0200000000
## 395                                   Paon 0.0000000000
## 396                       Paon Corporation 0.0000000000
## 397                    Paradox Development 0.0000000000
## 398                    Paradox Interactive 0.0021739130
## 399                           Parker Bros. 0.6642857143
## 400          Performance Designed Products 0.1700000000
## 401                             Phantagram 0.0300000000
## 402                            Phantom EFX 0.0900000000
## 403                             Phenomedia 0.0400000000
## 404                          Phoenix Games 0.0200000000
## 405                                 Piacci 0.0000000000
## 406                               Pinnacle 0.0000000000
## 407                            Pioneer LDC 0.0575000000
## 408                                Play It 0.1807142857
## 409                 Playlogic Game Factory 0.0671428571
## 410                              Playmates 0.1600000000
## 411                               Playmore 0.0000000000
## 412                                  PlayV 0.0250000000
## 413                                 Plenty 0.0000000000
## 414                             PM Studios 0.0900000000
## 415                            Pony Canyon 0.0300000000
## 416                           PopCap Games 0.0733333333
## 417                         Popcorn Arcade 0.0450000000
## 418                        PopTop Software 0.0600000000
## 419                                    Pow 0.0000000000
## 420                                  PQube 0.0489743590
## 421                          Princess Soft 0.0000000000
## 422                              Prototype 0.0000000000
## 423                              Psygnosis 0.1134375000
## 424                                 Quelle 0.8100000000
## 425                                  Quest 0.0000000000
## 426                               Quinrose 0.0000000000
## 427                                Quintet 0.0000000000
## 428                          Rage Software 0.1157142857
## 429                             Rain Games 0.0000000000
## 430                              Rebellion 0.1750000000
## 431                 Rebellion Developments 0.0400000000
## 432                      RED Entertainment 0.0000000000
## 433                                Red Orb 0.7700000000
## 434                Red Storm Entertainment 0.4766666667
## 435                              RedOctane 1.6100000000
## 436                     Reef Entertainment 0.0242857143
## 437                           responDESIGN 0.0450000000
## 438                     Revolution (Japan) 0.0000000000
## 439                    Revolution Software 0.0000000000
## 440                      Rising Star Games 0.1220930233
## 441                          Riverhillsoft 0.0000000000
## 442                         Rocket Company 0.0000000000
## 443                             Rondomedia 0.0835714286
## 444                                    RTL 0.1037500000
## 445                                 Russel 0.0000000000
## 446                      Sammy Corporation 0.0372727273
## 447                                 Saurus 0.0100000000
## 448                        Scholastic Inc. 0.2670000000
## 449                                    SCi 0.1182352941
## 450                             Screenlife 0.0366666667
## 451                           SCS Software 0.0000000000
## 452                                  Sears 0.2000000000
## 453                                   Sega 0.1712050078
## 454                       Seta Corporation 0.0000000000
## 455                          Seventh Chord 0.0000000000
## 456                             Shogakukan 0.0000000000
## 457           Simon & Schuster Interactive 0.0800000000
## 458                   Slightly Mad Studios 0.0833333333
## 459                    Slitherine Software 0.0200000000
## 460                                    SNK 0.0018181818
## 461                           SNK Playmore 0.0127777778
## 462                                Societa 0.0000000000
## 463                               Sold Out 0.0100000000
## 464                                 Sonnet 0.0000000000
## 465            Sony Computer Entertainment 0.3883162518
## 466    Sony Computer Entertainment America 0.3466666667
## 467     Sony Computer Entertainment Europe 0.5973333333
## 468               Sony Music Entertainment 0.0000000000
## 469              Sony Online Entertainment 0.2450000000
## 470                        SouthPeak Games 0.1289189189
## 471                                  Spike 0.0897297297
## 472                                    SPS 0.0700000000
## 473                                 Square 0.0883333333
## 474                              Square EA 0.4500000000
## 475                            Square Enix 0.2087982833
## 476                             SquareSoft 0.2126923077
## 477                                    SSI 0.1100000000
## 478                        Stainless Games 0.0100000000
## 479                               Starfish 0.0390000000
## 480                         Starpath Corp. 0.3000000000
## 481                                  Sting 0.0444444444
## 482                       Storm City Games 0.0710526316
## 483                         Strategy First 0.0000000000
## 484                                Success 0.0589473684
## 485                             Summitsoft 0.0300000000
## 486                             Sunflowers 0.0000000000
## 487                    Sunrise Interactive 0.0000000000
## 488                                Sunsoft 0.0500000000
## 489                                 Sweets 0.0000000000
## 490                   Swing! Entertainment 0.0466666667
## 491                                 Syscom 0.0300000000
## 492                               System 3 0.0266666667
## 493               System 3 Arcade Software 0.0685714286
## 494                            System Soft 0.0000000000
## 495                               T&E Soft 0.0000000000
## 496                                  Taito 0.0215789474
## 497                                 Takara 0.0100000000
## 498                            Takara Tomy 0.0205405405
## 499                   Take-Two Interactive 0.5338740920
## 500                                 Takuyo 0.0000000000
## 501                              TalonSoft 0.4900000000
## 502                               TDK Core 0.0480000000
## 503                         TDK Mediactive 0.1502777778
## 504                        Team17 Software 0.0000000000
## 505              Technos Japan Corporation 0.0000000000
## 506                             TechnoSoft 0.0300000000
## 507                             Tecmo Koei 0.0416568047
## 508                              Telegames 0.1137500000
## 509                         Telltale Games 0.0512000000
## 510                                Telstar 0.0533333333
## 511                          Tetris Online 0.2000000000
## 512                                    TGL 0.0000000000
## 513                  The Adventure Company 0.0680000000
## 514                   The Learning Company 0.0300000000
## 515                                    THQ 0.2919860140
## 516                            Tigervision 0.4433333333
## 517                Time Warner Interactive 0.0360000000
## 518                                  Titus 0.1031578947
## 519                                 Tivola 0.0266666667
## 520                                   TOHO 0.0000000000
## 521                                  Tommo 0.0400000000
## 522                       Tomy Corporation 0.1022222222
## 523                    TopWare Interactive 0.0000000000
## 524                             Touchstone 0.2200000000
## 525                              Tradewest 0.0066666667
## 526                           Trion Worlds 0.1800000000
## 527                   Tripwire Interactive 0.0400000000
## 528                  Tru Blu Entertainment 0.0012500000
## 529                               Tryfirst 0.0000000000
## 530                                    TYO 0.2300000000
## 531                              Type-Moon 0.0000000000
## 532                              U.S. Gold 0.0475000000
## 533                                Ubisoft 0.2751682953
## 534                         Ubisoft Annecy 0.0907142857
## 535                            UEP Systems 1.5200000000
## 536                        UFO Interactive 0.0575000000
## 537                      UIG Entertainment 0.0000000000
## 538                            Ultravision 0.4400000000
## 539                        Universal Gamex 0.5800000000
## 540                  Universal Interactive 0.3947826087
## 541                                Unknown 0.0910837438
## 542                           Valcon Games 0.0387500000
## 543                               ValuSoft 0.0650000000
## 544                                  Valve 0.8300000000
## 545                         Valve Software 0.5800000000
## 546                                    Vap 0.0000000000
## 547                  Vatical Entertainment 0.0700000000
## 548                              Vic Tokai 0.0950000000
## 549                     Victor Interactive 0.0122222222
## 550                           Video System 0.1675000000
## 551                                  Views 0.0000000000
## 552                          Vir2L Studios 0.0733333333
## 553                     Virgin Interactive 0.3062903226
## 554                     Virtual Play Games 0.0300000000
## 555                                  Visco 0.0200000000
## 556                          Vivendi Games 0.2256097561
## 557                                Wanadoo 0.0600000000
## 558                                Warashi 0.0000000000
## 559                          Wargaming.net 0.0000000000
## 560 Warner Bros. Interactive Entertainment 0.3499137931
## 561                                   Warp 0.0000000000
## 562                WayForward Technologies 0.0500000000
## 563                       Westwood Studios 1.5500000000
## 564                White Park Bay Software 0.1300000000
## 565                     Wizard Video Games 0.5800000000
## 566                      Xicat Interactive 0.0300000000
## 567                     Xing Entertainment 0.0400000000
## 568                                Xplosiv 0.0610000000
## 569                               XS Games 0.0983333333
## 570                            Xseed Games 0.1025000000
## 571                       Yacht Club Games 0.0533333333
## 572                   Yamasa Entertainment 0.0000000000
## 573                                   Yeti 0.0000000000
## 574                                 Yuke's 0.0033333333
## 575                                Yumedia 0.0000000000
## 576                                 Zenrin 0.0000000000
## 577                 Zoo Digital Publishing 0.0915384615
## 578                              Zoo Games 0.1369696970
## 579                            Zushi Games 0.0927777778

DS, PS2, PS3 and Wii are widely used in the US. 2007-2010 have the highest sales in america, taking it to an all time high of 351.44 million. The sales have declined further on. Action, shooter and sports are the widely played categories.505 games, activision, disney interactive studios, electronic arts, konami digital entertainment are the high selling producers.

aggregate(EU_Sales,by=list(Platform = Platform),sum)
##    Platform      x
## 1      2600   5.47
## 2       3DO   0.00
## 3       3DS  58.52
## 4        DC   1.69
## 5        DS 194.65
## 6        GB  47.82
## 7       GBA  75.25
## 8        GC  38.71
## 9       GEN   5.52
## 10       GG   0.00
## 11      N64  41.06
## 12      NES  21.15
## 13       NG   0.00
## 14       PC 139.68
## 15     PCFX   0.00
## 16       PS 213.60
## 17      PS2 339.29
## 18      PS3 343.71
## 19      PS4 123.70
## 20      PSP  68.25
## 21      PSV  16.33
## 22      SAT   0.54
## 23      SCD   0.36
## 24     SNES  19.04
## 25     TG16   0.00
## 26      Wii 268.38
## 27     WiiU  24.23
## 28       WS   0.00
## 29     X360 280.58
## 30       XB  60.95
## 31     XOne  45.65
aggregate(EU_Sales,by=list(Platform = Platform),mean)
##    Platform           x
## 1      2600 0.041127820
## 2       3DO 0.000000000
## 3       3DS 0.114970530
## 4        DC 0.032500000
## 5        DS 0.089990754
## 6        GB 0.487959184
## 7       GBA 0.091545012
## 8        GC 0.069622302
## 9       GEN 0.204444444
## 10       GG 0.000000000
## 11      N64 0.128714734
## 12      NES 0.215816327
## 13       NG 0.000000000
## 14       PC 0.145500000
## 15     PCFX 0.000000000
## 16       PS 0.178595318
## 17      PS2 0.157006016
## 18      PS3 0.258623025
## 19      PS4 0.368154762
## 20      PSP 0.056265458
## 21      PSV 0.039539952
## 22      SAT 0.003121387
## 23      SCD 0.060000000
## 24     SNES 0.079665272
## 25     TG16 0.000000000
## 26      Wii 0.202550943
## 27     WiiU 0.169440559
## 28       WS 0.000000000
## 29     X360 0.221802372
## 30       XB 0.073968447
## 31     XOne 0.214319249
aggregate(EU_Sales,by=list(Year = Year),sum)
##    Year      x
## 1  1980   0.67
## 2  1981   1.96
## 3  1982   1.65
## 4  1983   0.80
## 5  1984   2.10
## 6  1985   4.74
## 7  1986   2.84
## 8  1987   1.41
## 9  1988   6.59
## 10 1989   8.44
## 11 1990   7.63
## 12 1991   3.95
## 13 1992  11.71
## 14 1993   4.65
## 15 1994  14.88
## 16 1995  14.90
## 17 1996  47.26
## 18 1997  48.32
## 19 1998  66.90
## 20 1999  62.67
## 21 2000  52.75
## 22 2001  94.89
## 23 2002 109.74
## 24 2003 103.81
## 25 2004 107.32
## 26 2005 121.94
## 27 2006 129.24
## 28 2007 160.50
## 29 2008 184.40
## 30 2009 191.59
## 31 2010 176.73
## 32 2011 167.44
## 33 2012 118.78
## 34 2013 125.80
## 35 2014 125.65
## 36 2015  97.71
## 37 2016  26.76
## 38 2017   0.00
## 39 2020   0.00
## 40  N/A  25.01
aggregate(EU_Sales,by=list(Year = Year),mean)
##    Year          x
## 1  1980 0.07444444
## 2  1981 0.04260870
## 3  1982 0.04583333
## 4  1983 0.04705882
## 5  1984 0.15000000
## 6  1985 0.33857143
## 7  1986 0.13523810
## 8  1987 0.08812500
## 9  1988 0.43933333
## 10 1989 0.49647059
## 11 1990 0.47687500
## 12 1991 0.09634146
## 13 1992 0.27232558
## 14 1993 0.07750000
## 15 1994 0.12297521
## 16 1995 0.06803653
## 17 1996 0.17969582
## 18 1997 0.16719723
## 19 1998 0.17651715
## 20 1999 0.18541420
## 21 2000 0.15114613
## 22 2001 0.19686722
## 23 2002 0.13237636
## 24 2003 0.13394839
## 25 2004 0.14065531
## 26 2005 0.12958555
## 27 2006 0.12821429
## 28 2007 0.13352745
## 29 2008 0.12913165
## 30 2009 0.13388539
## 31 2010 0.14037331
## 32 2011 0.14700615
## 33 2012 0.18079148
## 34 2013 0.23040293
## 35 2014 0.21589347
## 36 2015 0.15913681
## 37 2016 0.07779070
## 38 2017 0.00000000
## 39 2020 0.00000000
## 40  N/A 0.09228782
aggregate(EU_Sales,by=list(Genre = Genre),sum)
##           Genre      x
## 1        Action 525.00
## 2     Adventure  64.13
## 3      Fighting 101.32
## 4          Misc 215.98
## 5      Platform 201.63
## 6        Puzzle  50.78
## 7        Racing 238.39
## 8  Role-Playing 188.06
## 9       Shooter 313.27
## 10   Simulation 113.38
## 11       Sports 376.85
## 12     Strategy  45.34
aggregate(EU_Sales,by=list(Genre = Genre),mean)
##           Genre          x
## 1        Action 0.15832328
## 2     Adventure 0.04986781
## 3      Fighting 0.11948113
## 4          Misc 0.12419781
## 5      Platform 0.22757336
## 6        Puzzle 0.08725086
## 7        Racing 0.19086469
## 8  Role-Playing 0.12638441
## 9       Shooter 0.23913740
## 10   Simulation 0.13077278
## 11       Sports 0.16063512
## 12     Strategy 0.06657856
aggregate(EU_Sales,by=list(Publisher = Publisher),sum)
##                                  Publisher      x
## 1                          10TACLE Studios   0.04
## 2                               1C Company   0.07
## 3             20th Century Fox Video Games   0.10
## 4                                   2D Boy   0.03
## 5                                      3DO   3.04
## 6                                  49Games   0.04
## 7                                505 Games  16.43
## 8                                      5pb   0.00
## 9                                 7G//AMES   0.06
## 10                              989 Sports   0.14
## 11                             989 Studios   3.30
## 12                                Abylight   0.00
## 13                   Acclaim Entertainment  16.75
## 14                                Accolade   0.34
## 15                             Ackkstudios   0.04
## 16                                 Acquire   0.00
## 17                              Activision 215.53
## 18                     Activision Blizzard   0.36
## 19                        Activision Value   0.88
## 20                        Adeline Software   0.07
## 21                                Aerosoft   0.02
## 22                  Agatsuma Entertainment   0.02
## 23                                  Agetec   0.58
## 24                             Aksys Games   0.01
## 25                    Alawar Entertainment   0.04
## 26                               Alchemist   0.46
## 27                    Alternative Software   0.18
## 28                                  Altron   0.02
## 29                                  Alvion   0.00
## 30                      American Softworks   0.09
## 31                           Angel Studios   0.00
## 32                         Answer Software   0.03
## 33                          AQ Interactive   0.06
## 34                               Aqua Plus   0.00
## 35                                   Aques   0.00
## 36                        Arc System Works   0.00
## 37                     Arena Entertainment   0.88
## 38                                    Aria   0.00
## 39                                   Arika   0.03
## 40                                 ArtDink   0.05
## 41                              Aruze Corp   0.00
## 42                               ASC Games   0.77
## 43                   Ascaron Entertainment   0.01
## 44              Ascaron Entertainment GmbH   0.09
## 45                     ASCII Entertainment   0.44
## 46                       ASCII Media Works   0.00
## 47                                  Asgard   0.00
## 48                                     ASK   0.00
## 49                 Asmik Ace Entertainment   0.00
## 50                              Asmik Corp   0.00
## 51                                   Aspyr   0.04
## 52                                Astragon   0.32
## 53                    Asylum Entertainment   0.43
## 54                                   Atari  27.12
## 55                                  Athena   0.00
## 56                                   Atlus   1.10
## 57                      Avalon Interactive   0.12
## 58                               Avanquest   1.62
## 59                      Avanquest Software   0.53
## 60                                   Axela   0.00
## 61                      BAM! Entertainment   1.45
## 62                               Banpresto   0.20
## 63                                 Benesse   0.00
## 64                                Berkeley   0.01
## 65                      Bethesda Softworks  30.73
## 66                     Big Ben Interactive   0.13
## 67                          Big Fish Games   0.04
## 68                      Bigben Interactive   0.62
## 69                       bitComposer Games   0.20
## 70                        Black Bean Games   1.56
## 71                       Black Label Games   0.46
## 72                Blast! Entertainment Ltd   0.11
## 73                               Blue Byte   0.03
## 74           BMG Interactive Entertainment   0.44
## 75                     Bohemia Interactive   0.10
## 76                                    Bomb   0.01
## 77                                Boost On   0.00
## 78                                     BPS   0.00
## 79                     Brash Entertainment   0.21
## 80                                Broccoli   0.00
## 81                               BushiRoad   0.00
## 82                                  Capcom  39.22
## 83                                    Cave   0.00
## 84                         CBS Electronics   0.02
## 85                                     CCP   0.19
## 86              CDV Software Entertainment   0.06
## 87                                ChunSoft   0.00
## 88                        City Interactive   2.27
## 89        Cloud Imperium Games Corporation   0.00
## 90                          Coconuts Japan   0.01
## 91                             Codemasters  28.69
## 92                      Codemasters Online   0.02
## 93                       CokeM Interactive   0.00
## 94                                  Coleco   0.17
## 95                                 Comfort   0.00
## 96                                Commseed   0.00
## 97                                 Compile   0.00
## 98                           Compile Heart   0.03
## 99                Conspiracy Entertainment   0.14
## 100                       Core Design Ltd.   0.11
## 101                           CPG Products   0.03
## 102                    Crave Entertainment   1.87
## 103                          Creative Core   0.00
## 104                            Crimson Cow   0.06
## 105                       Crystal Dynamics   0.65
## 106                                CTO SpA   0.34
## 107                          Culture Brain   0.00
## 108                     Culture Publishers   0.03
## 109                             CyberFront   0.00
## 110                                Cygames   0.00
## 111                            D3Publisher   5.01
## 112                               Daedalic   0.24
## 113                 Daedalic Entertainment   0.11
## 114                                  Daito   0.00
## 115                               Data Age   0.04
## 116                Data Design Interactive   0.01
## 117                              Data East   0.00
## 118                         Datam Polystar   0.00
## 119                            Deep Silver   8.96
## 120              Destination Software, Inc   0.08
## 121                              Destineer   0.05
## 122                            Detn8 Games   0.00
## 123                       Devolver Digital   0.04
## 124                        DHM Interactive   0.00
## 125                               DigiCube   0.00
## 126             Disney Interactive Studios  34.64
## 127                                 Dorart   0.00
## 128                        dramatic create   0.00
## 129               DreamCatcher Interactive   0.14
## 130                 DreamWorks Interactive   0.05
## 131                              DSI Games   0.04
## 132                      DTP Entertainment   1.43
## 133               Dusenberry Martin Racing   0.00
## 134                               EA Games   0.06
## 135                       Easy Interactive   0.03
## 136                                  Ecole   0.00
## 137                                   Edia   0.00
## 138                      Eidos Interactive  35.63
## 139                        Electronic Arts 371.27
## 140                 Electronic Arts Victor   0.17
## 141                                    Elf   0.00
## 142                                  Elite   0.03
## 143                     Empire Interactive   3.77
## 144                                 Encore   0.03
## 145                       Enix Corporation   0.31
## 146                      Enjoy Gaming ltd.   0.00
## 147                             Enterbrain   0.10
## 148              EON Digital Entertainment   0.00
## 149                             Epic Games   0.00
## 150                                  Epoch   0.00
## 151                                 Ertain   0.00
## 152                                    ESP   0.02
## 153                        Essential Games   0.00
## 154                        Evolution Games   0.00
## 155                          Evolved Games   0.04
## 156                   Excalibur Publishing   0.24
## 157                        Experience Inc.   0.00
## 158            Extreme Entertainment Group   0.00
## 159                     Falcom Corporation   0.00
## 160                                 Fields   0.00
## 161                       Flashpoint Games   0.01
## 162                            Flight-Plan   0.00
## 163                 Focus Home Interactive   4.69
## 164                       Focus Multimedia   0.05
## 165                                 fonfun   0.00
## 166                    Foreign Media Games   0.30
## 167                              Fortyfive   0.00
## 168                        Fox Interactive   3.19
## 169                          From Software   0.21
## 170                                   Fuji   0.00
## 171                           Funbox Media   0.13
## 172                                 Funcom   0.10
## 173                                FunSoft   0.05
## 174                                 Funsta   0.05
## 175                                  FuRyu   0.02
## 176                      FuRyu Corporation   0.00
## 177                                  G.Rev   0.00
## 178                                   Gaga   0.00
## 179                 Gainax Network Systems   0.00
## 180                                 Gakken   0.00
## 181                              Game Arts   0.00
## 182                           Game Factory   0.20
## 183                              Game Life   0.13
## 184                             Gamebridge   0.13
## 185                               Gamecock   0.02
## 186                               Gameloft   0.00
## 187                 GameMill Entertainment   0.04
## 188                                GameTek   0.02
## 189                Gathering of Developers   0.47
## 190                  General Entertainment   0.00
## 191                                  Genki   0.35
## 192                            Genterprise   0.00
## 193                             Ghostlight   0.46
## 194                                   Giga   0.00
## 195                                 Giza10   0.00
## 196                                  Glams   0.00
## 197                 Global A Entertainment   0.00
## 198                            Global Star   1.71
## 199                            GN Software   0.00
## 200                                    GOA   0.02
## 201                           Gotham Games   1.24
## 202                               Graffiti   0.00
## 203                       Grand Prix Games   0.00
## 204                 Graphsim Entertainment   0.02
## 205                Gremlin Interactive Ltd   0.37
## 206                  Griffin International   0.00
## 207                           Groove Games   0.02
## 208                                    GSP   2.16
## 209                         GT Interactive   8.49
## 210                                 GungHo   0.02
## 211                                   Gust   0.05
## 212                              Hackberry   0.00
## 213                         HAL Laboratory   0.00
## 214                    Hamster Corporation   0.11
## 215                               Happinet   0.00
## 216                 Harmonix Music Systems   0.09
## 217                     Hasbro Interactive   3.58
## 218                      Havas Interactive   0.09
## 219                           Headup Games   0.03
## 220                           Hearty Robin   0.00
## 221                                   Hect   0.00
## 222                            Hello Games   0.74
## 223                        Her Interactive   0.00
## 224                        Hip Interactive   0.09
## 225                        HMH Interactive   0.11
## 226           Home Entertainment Suppliers   0.49
## 227                   Hudson Entertainment   0.05
## 228                            Hudson Soft   0.94
## 229                    Human Entertainment   0.04
## 230                                  HuneX   0.00
## 231                    Iceberg Interactive   0.05
## 232                            id Software   0.00
## 233                           Idea Factory   0.05
## 234             Idea Factory International   0.08
## 235                           IE Institute   0.00
## 236                 Ignition Entertainment   1.36
## 237                     Illusion Softworks   0.27
## 238                                 Imadio   0.00
## 239                            Image Epoch   0.00
## 240                        imageepoch Inc.   0.00
## 241                             Imageworks   0.00
## 242                                 Imagic   0.27
## 243                              Imagineer   0.03
## 244                                   Imax   0.00
## 245                            Indie Games   0.07
## 246                             Infogrames   4.60
## 247                        Insomniac Games   0.00
## 248                           Interchannel   0.00
## 249                     Interchannel-Holon   0.00
## 250                              Intergrow   0.00
## 251                              Interplay   2.27
## 252                  Interplay Productions   0.04
## 253             Interworks Unlimited, Inc.   0.00
## 254                           Inti Creates   0.00
## 255                  Introversion Software   0.01
## 256                   inXile Entertainment   0.06
## 257              Irem Software Engineering   0.01
## 258                       ITT Family Games   0.02
## 259                              Ivolgamus   0.00
## 260                                   iWin   0.05
## 261                      Jack of All Games   0.10
## 262                                 Jaleco   0.42
## 263                     Jester Interactive   0.29
## 264                                Jorudan   0.00
## 265                     JoWood Productions   0.48
## 266                            Just Flight   0.03
## 267                                    JVC   0.34
## 268                         Kadokawa Games   0.00
## 269                        Kadokawa Shoten   0.31
## 270                            Kaga Create   0.00
## 271                          Kalypso Media   1.06
## 272                                  Kamui   0.00
## 273                            Kando Games   0.01
## 274                    Karin Entertainment   0.00
## 275                                  Kemco   0.49
## 276                                    KID   0.00
## 277                           Kids Station   0.00
## 278                           King Records   0.00
## 279                    Knowledge Adventure   0.16
## 280                             Koch Media   1.60
## 281               Kokopeli Digital Studios   0.01
## 282           Konami Digital Entertainment  69.69
## 283                              Kool Kizz   0.01
## 284                                    KSS   0.00
## 285                                 Laguna   0.04
## 286                     Legacy Interactive   0.00
## 287                             LEGO Media   0.50
## 288                                Level 5   0.27
## 289                  Lexicon Entertainment   0.00
## 290                            Licensed 4U   0.06
## 291                 Lighthouse Interactive   0.01
## 292                           Liquid Games   0.07
## 293                           Little Orbit   1.31
## 294                                  Locus   0.00
## 295                              LSP Games   0.04
## 296                              LucasArts  26.63
## 297                               Mad Catz   0.05
## 298                        Magical Company   0.10
## 299                                  Magix   0.13
## 300                  Majesco Entertainment   2.91
## 301                            Mamba Games   0.04
## 302                   Marvel Entertainment   0.00
## 303                Marvelous Entertainment   0.22
## 304                        Marvelous Games   0.00
## 305                  Marvelous Interactive   0.17
## 306                      Masque Publishing   0.00
## 307                           Mastertronic   0.50
## 308                                Mastiff   0.05
## 309                     Mattel Interactive   0.37
## 310                               Max Five   0.02
## 311                   Maximum Family Games   0.00
## 312                                  Maxis   1.32
## 313                      MC2 Entertainment   0.03
## 314                    Media Entertainment   0.00
## 315                          Media Factory   0.00
## 316                            Media Rings   0.05
## 317                            Media Works   0.00
## 318                             MediaQuest   0.02
## 319                           Men-A-Vision   0.04
## 320                     Mentor Interactive   0.00
## 321                          Mercury Games   0.00
## 322                            Merscom LLC   0.17
## 323                               Metro 3D   0.47
## 324                            Michaelsoft   0.00
## 325                            Micro Cabin   0.00
## 326                               Microids   0.14
## 327                             Microprose   1.19
## 328                 Microsoft Game Studios  68.61
## 329        Midas Interactive Entertainment   0.97
## 330                           Midway Games  18.38
## 331                              Milestone   0.00
## 332                        Milestone S.r.l   0.05
## 333                       Milestone S.r.l.   0.78
## 334                         Minato Station   0.00
## 335                              Mindscape   2.51
## 336                          Mirai Shounen   0.00
## 337                                 Misawa   0.00
## 338                                 Mitsui   0.02
## 339                              mixi, Inc   0.00
## 340                                MLB.com   0.00
## 341                                 Mojang   1.30
## 342               Monte Christo Multimedia   0.04
## 343                                   Moss   0.00
## 344                                    MTO   0.00
## 345                              MTV Games   4.01
## 346                   Mud Duck Productions   0.25
## 347                            Mumbo Jumbo   0.00
## 348                                  Mycom   0.00
## 349                           Myelin Media   0.04
## 350                               Mystique   0.05
## 351                                    N/A   4.68
## 352                     Namco Bandai Games  42.63
## 353                                Natsume   0.66
## 354                           Navarre Corp   0.00
## 355                             Naxat Soft   0.00
## 356                                    NCS   0.00
## 357                                 NCSoft   1.19
## 358                        NDA Productions   0.02
## 359                                    NEC   0.00
## 360                       NEC Interchannel   0.00
## 361                     Neko Entertainment   0.08
## 362                                NetRevo   0.00
## 363                                    New   0.00
## 364                    New World Computing   0.00
## 365                               NewKidCo   0.38
## 366                                  Nexon   0.00
## 367                             Nichibutsu   0.00
## 368               Nihon Falcom Corporation   0.01
## 369                               Nintendo 418.74
## 370                           Nippon Amuse   0.00
## 371                        Nippon Columbia   0.00
## 372                   Nippon Ichi Software   1.93
## 373                         Nippon Telenet   0.00
## 374                              Nitroplus   0.00
## 375                                Nobilis   0.18
## 376                            Nordcurrent   0.14
## 377                           Nordic Games   3.18
## 378                              NovaLogic   0.24
## 379                            Number None   0.02
## 380                                O-Games   0.54
## 381                       O3 Entertainment   0.02
## 382                                  Ocean   1.00
## 383                          Office Create   0.00
## 384                              On Demand   0.08
## 385                              Ongakukan   0.00
## 386                         Origin Systems   0.03
## 387                                Otomate   0.00
## 388                     Oxygen Interactive   1.04
## 389                               P2 Games   0.33
## 390            Pacific Century Cyber Works   0.09
## 391                          Pack-In-Video   0.00
## 392                           Pack In Soft   0.06
## 393                                 Palcom   0.44
## 394                       Panther Software   0.02
## 395                                   Paon   0.00
## 396                       Paon Corporation   0.00
## 397                    Paradox Development   0.01
## 398                    Paradox Interactive   0.57
## 399                           Parker Bros.   0.27
## 400          Performance Designed Products   0.00
## 401                             Phantagram   0.01
## 402                            Phantom EFX   0.00
## 403                             Phenomedia   0.00
## 404                          Phoenix Games   0.00
## 405                                 Piacci   0.00
## 406                               Pinnacle   1.32
## 407                            Pioneer LDC   0.16
## 408                                Play It   1.23
## 409                 Playlogic Game Factory   0.16
## 410                              Playmates   0.11
## 411                               Playmore   0.00
## 412                                  PlayV   0.30
## 413                                 Plenty   0.00
## 414                             PM Studios   0.00
## 415                            Pony Canyon   0.02
## 416                           PopCap Games   0.34
## 417                         Popcorn Arcade   0.00
## 418                        PopTop Software   0.04
## 419                                    Pow   0.00
## 420                                  PQube   0.92
## 421                          Princess Soft   0.00
## 422                              Prototype   0.00
## 423                              Psygnosis   2.48
## 424                                 Quelle   0.05
## 425                                  Quest   0.00
## 426                               Quinrose   0.00
## 427                                Quintet   0.00
## 428                          Rage Software   0.47
## 429                             Rain Games   0.01
## 430                              Rebellion   0.13
## 431                 Rebellion Developments   0.17
## 432                      RED Entertainment   0.00
## 433                                Red Orb   3.61
## 434                Red Storm Entertainment   0.80
## 435                              RedOctane   1.31
## 436                     Reef Entertainment   0.13
## 437                           responDESIGN   0.04
## 438                     Revolution (Japan)   0.00
## 439                    Revolution Software   0.07
## 440                      Rising Star Games   2.98
## 441                          Riverhillsoft   0.00
## 442                         Rocket Company   0.00
## 443                             Rondomedia   1.13
## 444                                    RTL   0.98
## 445                                 Russel   1.12
## 446                      Sammy Corporation   0.31
## 447                                 Saurus   0.01
## 448                        Scholastic Inc.   0.03
## 449                                    SCi   1.23
## 450                             Screenlife   0.01
## 451                           SCS Software   0.12
## 452                                  Sears   0.01
## 453                                   Sega  82.00
## 454                       Seta Corporation   0.00
## 455                          Seventh Chord   0.00
## 456                             Shogakukan   0.00
## 457           Simon & Schuster Interactive   0.02
## 458                   Slightly Mad Studios   0.92
## 459                    Slitherine Software   0.10
## 460                                    SNK   0.03
## 461                           SNK Playmore   0.14
## 462                                Societa   0.00
## 463                               Sold Out   0.01
## 464                                 Sonnet   0.00
## 465            Sony Computer Entertainment 187.72
## 466    Sony Computer Entertainment America   0.00
## 467     Sony Computer Entertainment Europe   9.00
## 468               Sony Music Entertainment   0.00
## 469              Sony Online Entertainment   1.15
## 470                        SouthPeak Games   0.91
## 471                                  Spike   0.33
## 472                                    SPS   0.04
## 473                                 Square   0.29
## 474                              Square EA   0.30
## 475                            Square Enix  32.82
## 476                             SquareSoft   4.95
## 477                                    SSI   0.07
## 478                        Stainless Games   0.01
## 479                               Starfish   0.19
## 480                         Starpath Corp.   0.02
## 481                                  Sting   0.07
## 482                       Storm City Games   0.10
## 483                         Strategy First   0.02
## 484                                Success   0.49
## 485                             Summitsoft   0.01
## 486                             Sunflowers   0.02
## 487                    Sunrise Interactive   0.00
## 488                                Sunsoft   0.25
## 489                                 Sweets   0.00
## 490                   Swing! Entertainment   0.16
## 491                                 Syscom   0.04
## 492                               System 3   0.10
## 493               System 3 Arcade Software   0.63
## 494                            System Soft   0.00
## 495                               T&E Soft   0.00
## 496                                  Taito   0.09
## 497                                 Takara   0.06
## 498                            Takara Tomy   0.03
## 499                   Take-Two Interactive 118.14
## 500                                 Takuyo   0.00
## 501                              TalonSoft   0.33
## 502                               TDK Core   0.12
## 503                         TDK Mediactive   2.42
## 504                        Team17 Software   0.04
## 505              Technos Japan Corporation   0.00
## 506                             TechnoSoft   0.02
## 507                             Tecmo Koei   7.08
## 508                              Telegames   0.06
## 509                         Telltale Games   1.00
## 510                                Telstar   0.10
## 511                          Tetris Online   0.13
## 512                                    TGL   0.00
## 513                  The Adventure Company   0.13
## 514                   The Learning Company   0.02
## 515                                    THQ  94.73
## 516                            Tigervision   0.09
## 517                Time Warner Interactive   0.12
## 518                                  Titus   1.08
## 519                                 Tivola   0.07
## 520                                   TOHO   0.00
## 521                                  Tommo   0.00
## 522                       Tomy Corporation   0.75
## 523                    TopWare Interactive   0.10
## 524                             Touchstone   0.50
## 525                              Tradewest   0.06
## 526                           Trion Worlds   0.30
## 527                   Tripwire Interactive   0.07
## 528                  Tru Blu Entertainment   0.25
## 529                               Tryfirst   0.00
## 530                                    TYO   0.16
## 531                              Type-Moon   0.00
## 532                              U.S. Gold   0.13
## 533                                Ubisoft 163.32
## 534                         Ubisoft Annecy   0.66
## 535                            UEP Systems   0.46
## 536                        UFO Interactive   0.00
## 537                      UIG Entertainment   0.01
## 538                            Ultravision   0.03
## 539                        Universal Gamex   0.04
## 540                  Universal Interactive   6.73
## 541                                Unknown   7.53
## 542                           Valcon Games   0.08
## 543                               ValuSoft   0.09
## 544                                  Valve   0.63
## 545                         Valve Software   1.15
## 546                                    Vap   0.00
## 547                  Vatical Entertainment   0.07
## 548                              Vic Tokai   0.08
## 549                     Victor Interactive   0.08
## 550                           Video System   1.04
## 551                                  Views   0.00
## 552                          Vir2L Studios   0.01
## 553                     Virgin Interactive  12.94
## 554                     Virtual Play Games   0.00
## 555                                  Visco   0.00
## 556                          Vivendi Games  16.04
## 557                                Wanadoo   0.21
## 558                                Warashi   0.00
## 559                          Wargaming.net   0.23
## 560 Warner Bros. Interactive Entertainment  53.12
## 561                                   Warp   0.00
## 562                WayForward Technologies   0.00
## 563                       Westwood Studios   0.00
## 564                White Park Bay Software   0.01
## 565                     Wizard Video Games   0.03
## 566                      Xicat Interactive   0.06
## 567                     Xing Entertainment   0.03
## 568                                Xplosiv   0.86
## 569                               XS Games   0.17
## 570                            Xseed Games   0.04
## 571                       Yacht Club Games   0.11
## 572                   Yamasa Entertainment   0.00
## 573                                   Yeti   0.00
## 574                                 Yuke's   0.01
## 575                                Yumedia   0.00
## 576                                 Zenrin   0.00
## 577                 Zoo Digital Publishing   2.45
## 578                              Zoo Games   0.00
## 579                            Zushi Games   0.05
aggregate(EU_Sales,by=list(Publisher = Publisher),mean)
##                                  Publisher            x
## 1                          10TACLE Studios 0.0133333333
## 2                               1C Company 0.0233333333
## 3             20th Century Fox Video Games 0.0200000000
## 4                                   2D Boy 0.0300000000
## 5                                      3DO 0.0844444444
## 6                                  49Games 0.0400000000
## 7                                505 Games 0.0855729167
## 8                                      5pb 0.0000000000
## 9                                 7G//AMES 0.0150000000
## 10                              989 Sports 0.1400000000
## 11                             989 Studios 0.2357142857
## 12                                Abylight 0.0000000000
## 13                   Acclaim Entertainment 0.0910326087
## 14                                Accolade 0.1133333333
## 15                             Ackkstudios 0.0040000000
## 16                                 Acquire 0.0000000000
## 17                              Activision 0.2210564103
## 18                     Activision Blizzard 0.3600000000
## 19                        Activision Value 0.0303448276
## 20                        Adeline Software 0.0700000000
## 21                                Aerosoft 0.0100000000
## 22                  Agatsuma Entertainment 0.0066666667
## 23                                  Agetec 0.0725000000
## 24                             Aksys Games 0.0012500000
## 25                    Alawar Entertainment 0.0200000000
## 26                               Alchemist 0.0106976744
## 27                    Alternative Software 0.0300000000
## 28                                  Altron 0.0200000000
## 29                                  Alvion 0.0000000000
## 30                      American Softworks 0.0900000000
## 31                           Angel Studios 0.0000000000
## 32                         Answer Software 0.0300000000
## 33                          AQ Interactive 0.0120000000
## 34                               Aqua Plus 0.0000000000
## 35                                   Aques 0.0000000000
## 36                        Arc System Works 0.0000000000
## 37                     Arena Entertainment 0.4400000000
## 38                                    Aria 0.0000000000
## 39                                   Arika 0.0100000000
## 40                                 ArtDink 0.0055555556
## 41                              Aruze Corp 0.0000000000
## 42                               ASC Games 0.2566666667
## 43                   Ascaron Entertainment 0.0100000000
## 44              Ascaron Entertainment GmbH 0.0300000000
## 45                     ASCII Entertainment 0.0220000000
## 46                       ASCII Media Works 0.0000000000
## 47                                  Asgard 0.0000000000
## 48                                     ASK 0.0000000000
## 49                 Asmik Ace Entertainment 0.0000000000
## 50                              Asmik Corp 0.0000000000
## 51                                   Aspyr 0.0050000000
## 52                                Astragon 0.0533333333
## 53                    Asylum Entertainment 0.0716666667
## 54                                   Atari 0.0747107438
## 55                                  Athena 0.0000000000
## 56                                   Atlus 0.0164179104
## 57                      Avalon Interactive 0.0200000000
## 58                               Avanquest 0.0623076923
## 59                      Avanquest Software 0.0588888889
## 60                                   Axela 0.0000000000
## 61                      BAM! Entertainment 0.0414285714
## 62                               Banpresto 0.0027397260
## 63                                 Benesse 0.0000000000
## 64                                Berkeley 0.0100000000
## 65                      Bethesda Softworks 0.4328169014
## 66                     Big Ben Interactive 0.0185714286
## 67                          Big Fish Games 0.0200000000
## 68                      Bigben Interactive 0.0476923077
## 69                       bitComposer Games 0.0400000000
## 70                        Black Bean Games 0.0458823529
## 71                       Black Label Games 0.4600000000
## 72                Blast! Entertainment Ltd 0.0183333333
## 73                               Blue Byte 0.0150000000
## 74           BMG Interactive Entertainment 0.0628571429
## 75                     Bohemia Interactive 0.1000000000
## 76                                    Bomb 0.0100000000
## 77                                Boost On 0.0000000000
## 78                                     BPS 0.0000000000
## 79                     Brash Entertainment 0.0210000000
## 80                                Broccoli 0.0000000000
## 81                               BushiRoad 0.0000000000
## 82                                  Capcom 0.1029396325
## 83                                    Cave 0.0000000000
## 84                         CBS Electronics 0.0200000000
## 85                                     CCP 0.1900000000
## 86              CDV Software Entertainment 0.0100000000
## 87                                ChunSoft 0.0000000000
## 88                        City Interactive 0.1194736842
## 89        Cloud Imperium Games Corporation 0.0000000000
## 90                          Coconuts Japan 0.0050000000
## 91                             Codemasters 0.1887500000
## 92                      Codemasters Online 0.0200000000
## 93                       CokeM Interactive 0.0000000000
## 94                                  Coleco 0.0340000000
## 95                                 Comfort 0.0000000000
## 96                                Commseed 0.0000000000
## 97                                 Compile 0.0000000000
## 98                           Compile Heart 0.0015000000
## 99                Conspiracy Entertainment 0.0100000000
## 100                       Core Design Ltd. 0.0550000000
## 101                           CPG Products 0.0300000000
## 102                    Crave Entertainment 0.0263380282
## 103                          Creative Core 0.0000000000
## 104                            Crimson Cow 0.0300000000
## 105                       Crystal Dynamics 0.1300000000
## 106                                CTO SpA 0.1700000000
## 107                          Culture Brain 0.0000000000
## 108                     Culture Publishers 0.0300000000
## 109                             CyberFront 0.0000000000
## 110                                Cygames 0.0000000000
## 111                            D3Publisher 0.0272282609
## 112                               Daedalic 0.0800000000
## 113                 Daedalic Entertainment 0.0366666667
## 114                                  Daito 0.0000000000
## 115                               Data Age 0.0200000000
## 116                Data Design Interactive 0.0033333333
## 117                              Data East 0.0000000000
## 118                         Datam Polystar 0.0000000000
## 119                            Deep Silver 0.0734426230
## 120              Destination Software, Inc 0.0066666667
## 121                              Destineer 0.0011111111
## 122                            Detn8 Games 0.0000000000
## 123                       Devolver Digital 0.0200000000
## 124                        DHM Interactive 0.0000000000
## 125                               DigiCube 0.0000000000
## 126             Disney Interactive Studios 0.1588990826
## 127                                 Dorart 0.0000000000
## 128                        dramatic create 0.0000000000
## 129               DreamCatcher Interactive 0.0082352941
## 130                 DreamWorks Interactive 0.0500000000
## 131                              DSI Games 0.0066666667
## 132                      DTP Entertainment 0.0317777778
## 133               Dusenberry Martin Racing 0.0000000000
## 134                               EA Games 0.0600000000
## 135                       Easy Interactive 0.0150000000
## 136                                  Ecole 0.0000000000
## 137                                   Edia 0.0000000000
## 138                      Eidos Interactive 0.1799494949
## 139                        Electronic Arts 0.2748112509
## 140                 Electronic Arts Victor 0.0850000000
## 141                                    Elf 0.0000000000
## 142                                  Elite 0.0300000000
## 143                     Empire Interactive 0.0725000000
## 144                                 Encore 0.0075000000
## 145                       Enix Corporation 0.0103333333
## 146                      Enjoy Gaming ltd. 0.0000000000
## 147                             Enterbrain 0.0066666667
## 148              EON Digital Entertainment 0.0000000000
## 149                             Epic Games 0.0000000000
## 150                                  Epoch 0.0000000000
## 151                                 Ertain 0.0000000000
## 152                                    ESP 0.0040000000
## 153                        Essential Games 0.0000000000
## 154                        Evolution Games 0.0000000000
## 155                          Evolved Games 0.0050000000
## 156                   Excalibur Publishing 0.0600000000
## 157                        Experience Inc. 0.0000000000
## 158            Extreme Entertainment Group 0.0000000000
## 159                     Falcom Corporation 0.0000000000
## 160                                 Fields 0.0000000000
## 161                       Flashpoint Games 0.0050000000
## 162                            Flight-Plan 0.0000000000
## 163                 Focus Home Interactive 0.0808620690
## 164                       Focus Multimedia 0.0166666667
## 165                                 fonfun 0.0000000000
## 166                    Foreign Media Games 0.0333333333
## 167                              Fortyfive 0.0000000000
## 168                        Fox Interactive 0.3987500000
## 169                          From Software 0.0140000000
## 170                                   Fuji 0.0000000000
## 171                           Funbox Media 0.0216666667
## 172                                 Funcom 0.0500000000
## 173                                FunSoft 0.0500000000
## 174                                 Funsta 0.0125000000
## 175                                  FuRyu 0.0007407407
## 176                      FuRyu Corporation 0.0000000000
## 177                                  G.Rev 0.0000000000
## 178                                   Gaga 0.0000000000
## 179                 Gainax Network Systems 0.0000000000
## 180                                 Gakken 0.0000000000
## 181                              Game Arts 0.0000000000
## 182                           Game Factory 0.0062500000
## 183                              Game Life 0.0650000000
## 184                             Gamebridge 0.0650000000
## 185                               Gamecock 0.0050000000
## 186                               Gameloft 0.0000000000
## 187                 GameMill Entertainment 0.0050000000
## 188                                GameTek 0.0200000000
## 189                Gathering of Developers 0.0522222222
## 190                  General Entertainment 0.0000000000
## 191                                  Genki 0.0437500000
## 192                            Genterprise 0.0000000000
## 193                             Ghostlight 0.0306666667
## 194                                   Giga 0.0000000000
## 195                                 Giza10 0.0000000000
## 196                                  Glams 0.0000000000
## 197                 Global A Entertainment 0.0000000000
## 198                            Global Star 0.0438461538
## 199                            GN Software 0.0000000000
## 200                                    GOA 0.0200000000
## 201                           Gotham Games 0.1771428571
## 202                               Graffiti 0.0000000000
## 203                       Grand Prix Games 0.0000000000
## 204                 Graphsim Entertainment 0.0200000000
## 205                Gremlin Interactive Ltd 0.0411111111
## 206                  Griffin International 0.0000000000
## 207                           Groove Games 0.0100000000
## 208                                    GSP 0.1350000000
## 209                         GT Interactive 0.1886666667
## 210                                 GungHo 0.0015384615
## 211                                   Gust 0.0038461538
## 212                              Hackberry 0.0000000000
## 213                         HAL Laboratory 0.0000000000
## 214                    Hamster Corporation 0.0550000000
## 215                               Happinet 0.0000000000
## 216                 Harmonix Music Systems 0.0450000000
## 217                     Hasbro Interactive 0.2237500000
## 218                      Havas Interactive 0.0900000000
## 219                           Headup Games 0.0300000000
## 220                           Hearty Robin 0.0000000000
## 221                                   Hect 0.0000000000
## 222                            Hello Games 0.7400000000
## 223                        Her Interactive 0.0000000000
## 224                        Hip Interactive 0.0180000000
## 225                        HMH Interactive 0.0550000000
## 226           Home Entertainment Suppliers 0.0980000000
## 227                   Hudson Entertainment 0.0045454545
## 228                            Hudson Soft 0.0116049383
## 229                    Human Entertainment 0.0030769231
## 230                                  HuneX 0.0000000000
## 231                    Iceberg Interactive 0.0166666667
## 232                            id Software 0.0000000000
## 233                           Idea Factory 0.0003875969
## 234             Idea Factory International 0.0133333333
## 235                           IE Institute 0.0000000000
## 236                 Ignition Entertainment 0.0222950820
## 237                     Illusion Softworks 0.2700000000
## 238                                 Imadio 0.0000000000
## 239                            Image Epoch 0.0000000000
## 240                        imageepoch Inc. 0.0000000000
## 241                             Imageworks 0.0000000000
## 242                                 Imagic 0.0675000000
## 243                              Imagineer 0.0018750000
## 244                                   Imax 0.0000000000
## 245                            Indie Games 0.0233333333
## 246                             Infogrames 0.0741935484
## 247                        Insomniac Games 0.0000000000
## 248                           Interchannel 0.0000000000
## 249                     Interchannel-Holon 0.0000000000
## 250                              Intergrow 0.0000000000
## 251                              Interplay 0.0756666667
## 252                  Interplay Productions 0.0400000000
## 253             Interworks Unlimited, Inc. 0.0000000000
## 254                           Inti Creates 0.0000000000
## 255                  Introversion Software 0.0100000000
## 256                   inXile Entertainment 0.0600000000
## 257              Irem Software Engineering 0.0008333333
## 258                       ITT Family Games 0.0200000000
## 259                              Ivolgamus 0.0000000000
## 260                                   iWin 0.0500000000
## 261                      Jack of All Games 0.0333333333
## 262                                 Jaleco 0.0182608696
## 263                     Jester Interactive 0.0966666667
## 264                                Jorudan 0.0000000000
## 265                     JoWood Productions 0.0218181818
## 266                            Just Flight 0.0300000000
## 267                                    JVC 0.0425000000
## 268                         Kadokawa Games 0.0000000000
## 269                        Kadokawa Shoten 0.0062000000
## 270                            Kaga Create 0.0000000000
## 271                          Kalypso Media 0.0365517241
## 272                                  Kamui 0.0000000000
## 273                            Kando Games 0.0100000000
## 274                    Karin Entertainment 0.0000000000
## 275                                  Kemco 0.0233333333
## 276                                    KID 0.0000000000
## 277                           Kids Station 0.0000000000
## 278                           King Records 0.0000000000
## 279                    Knowledge Adventure 0.0400000000
## 280                             Koch Media 0.0941176471
## 281               Kokopeli Digital Studios 0.0100000000
## 282           Konami Digital Entertainment 0.0837620192
## 283                              Kool Kizz 0.0100000000
## 284                                    KSS 0.0000000000
## 285                                 Laguna 0.0100000000
## 286                     Legacy Interactive 0.0000000000
## 287                             LEGO Media 0.0714285714
## 288                                Level 5 0.0100000000
## 289                  Lexicon Entertainment 0.0000000000
## 290                            Licensed 4U 0.0200000000
## 291                 Lighthouse Interactive 0.0100000000
## 292                           Liquid Games 0.0350000000
## 293                           Little Orbit 0.0503846154
## 294                                  Locus 0.0000000000
## 295                              LSP Games 0.0100000000
## 296                              LucasArts 0.2958888889
## 297                               Mad Catz 0.0166666667
## 298                        Magical Company 0.1000000000
## 299                                  Magix 0.0650000000
## 300                  Majesco Entertainment 0.0316304348
## 301                            Mamba Games 0.0200000000
## 302                   Marvel Entertainment 0.0000000000
## 303                Marvelous Entertainment 0.0183333333
## 304                        Marvelous Games 0.0000000000
## 305                  Marvelous Interactive 0.0030357143
## 306                      Masque Publishing 0.0000000000
## 307                           Mastertronic 0.0384615385
## 308                                Mastiff 0.0031250000
## 309                     Mattel Interactive 0.0308333333
## 310                               Max Five 0.0200000000
## 311                   Maximum Family Games 0.0000000000
## 312                                  Maxis 0.4400000000
## 313                      MC2 Entertainment 0.0100000000
## 314                    Media Entertainment 0.0000000000
## 315                          Media Factory 0.0000000000
## 316                            Media Rings 0.0166666667
## 317                            Media Works 0.0000000000
## 318                             MediaQuest 0.0200000000
## 319                           Men-A-Vision 0.0400000000
## 320                     Mentor Interactive 0.0000000000
## 321                          Mercury Games 0.0000000000
## 322                            Merscom LLC 0.1700000000
## 323                               Metro 3D 0.0391666667
## 324                            Michaelsoft 0.0000000000
## 325                            Micro Cabin 0.0000000000
## 326                               Microids 0.0140000000
## 327                             Microprose 0.1983333333
## 328                 Microsoft Game Studios 0.3630158730
## 329        Midas Interactive Entertainment 0.0404166667
## 330                           Midway Games 0.0928282828
## 331                              Milestone 0.0000000000
## 332                        Milestone S.r.l 0.0250000000
## 333                       Milestone S.r.l. 0.0487500000
## 334                         Minato Station 0.0000000000
## 335                              Mindscape 0.0784375000
## 336                          Mirai Shounen 0.0000000000
## 337                                 Misawa 0.0000000000
## 338                                 Mitsui 0.0200000000
## 339                              mixi, Inc 0.0000000000
## 340                                MLB.com 0.0000000000
## 341                                 Mojang 0.2600000000
## 342               Monte Christo Multimedia 0.0400000000
## 343                                   Moss 0.0000000000
## 344                                    MTO 0.0000000000
## 345                              MTV Games 0.0978048780
## 346                   Mud Duck Productions 0.0833333333
## 347                            Mumbo Jumbo 0.0000000000
## 348                                  Mycom 0.0000000000
## 349                           Myelin Media 0.0133333333
## 350                               Mystique 0.0500000000
## 351                                    N/A 0.0806896552
## 352                     Namco Bandai Games 0.0457403433
## 353                                Natsume 0.0388235294
## 354                           Navarre Corp 0.0000000000
## 355                             Naxat Soft 0.0000000000
## 356                                    NCS 0.0000000000
## 357                                 NCSoft 0.1983333333
## 358                        NDA Productions 0.0200000000
## 359                                    NEC 0.0000000000
## 360                       NEC Interchannel 0.0000000000
## 361                     Neko Entertainment 0.0114285714
## 362                                NetRevo 0.0000000000
## 363                                    New 0.0000000000
## 364                    New World Computing 0.0000000000
## 365                               NewKidCo 0.0422222222
## 366                                  Nexon 0.0000000000
## 367                             Nichibutsu 0.0000000000
## 368               Nihon Falcom Corporation 0.0014285714
## 369                               Nintendo 0.5956472262
## 370                           Nippon Amuse 0.0000000000
## 371                        Nippon Columbia 0.0000000000
## 372                   Nippon Ichi Software 0.0183809524
## 373                         Nippon Telenet 0.0000000000
## 374                              Nitroplus 0.0000000000
## 375                                Nobilis 0.0138461538
## 376                            Nordcurrent 0.0280000000
## 377                           Nordic Games 0.0908571429
## 378                              NovaLogic 0.0800000000
## 379                            Number None 0.0200000000
## 380                                O-Games 0.0317647059
## 381                       O3 Entertainment 0.0066666667
## 382                                  Ocean 0.0714285714
## 383                          Office Create 0.0000000000
## 384                              On Demand 0.0800000000
## 385                              Ongakukan 0.0000000000
## 386                         Origin Systems 0.0300000000
## 387                                Otomate 0.0000000000
## 388                     Oxygen Interactive 0.0472727273
## 389                               P2 Games 0.1100000000
## 390            Pacific Century Cyber Works 0.0900000000
## 391                          Pack-In-Video 0.0000000000
## 392                           Pack In Soft 0.0600000000
## 393                                 Palcom 0.4400000000
## 394                       Panther Software 0.0200000000
## 395                                   Paon 0.0000000000
## 396                       Paon Corporation 0.0000000000
## 397                    Paradox Development 0.0100000000
## 398                    Paradox Interactive 0.0247826087
## 399                           Parker Bros. 0.0385714286
## 400          Performance Designed Products 0.0000000000
## 401                             Phantagram 0.0100000000
## 402                            Phantom EFX 0.0000000000
## 403                             Phenomedia 0.0000000000
## 404                          Phoenix Games 0.0000000000
## 405                                 Piacci 0.0000000000
## 406                               Pinnacle 0.2640000000
## 407                            Pioneer LDC 0.0400000000
## 408                                Play It 0.0878571429
## 409                 Playlogic Game Factory 0.0114285714
## 410                              Playmates 0.1100000000
## 411                               Playmore 0.0000000000
## 412                                  PlayV 0.0750000000
## 413                                 Plenty 0.0000000000
## 414                             PM Studios 0.0000000000
## 415                            Pony Canyon 0.0200000000
## 416                           PopCap Games 0.0226666667
## 417                         Popcorn Arcade 0.0000000000
## 418                        PopTop Software 0.0400000000
## 419                                    Pow 0.0000000000
## 420                                  PQube 0.0235897436
## 421                          Princess Soft 0.0000000000
## 422                              Prototype 0.0000000000
## 423                              Psygnosis 0.0775000000
## 424                                 Quelle 0.0500000000
## 425                                  Quest 0.0000000000
## 426                               Quinrose 0.0000000000
## 427                                Quintet 0.0000000000
## 428                          Rage Software 0.0671428571
## 429                             Rain Games 0.0100000000
## 430                              Rebellion 0.0650000000
## 431                 Rebellion Developments 0.0850000000
## 432                      RED Entertainment 0.0000000000
## 433                                Red Orb 1.8050000000
## 434                Red Storm Entertainment 0.2666666667
## 435                              RedOctane 0.3275000000
## 436                     Reef Entertainment 0.0185714286
## 437                           responDESIGN 0.0200000000
## 438                     Revolution (Japan) 0.0000000000
## 439                    Revolution Software 0.0350000000
## 440                      Rising Star Games 0.0346511628
## 441                          Riverhillsoft 0.0000000000
## 442                         Rocket Company 0.0000000000
## 443                             Rondomedia 0.0807142857
## 444                                    RTL 0.1225000000
## 445                                 Russel 0.1866666667
## 446                      Sammy Corporation 0.0281818182
## 447                                 Saurus 0.0100000000
## 448                        Scholastic Inc. 0.0030000000
## 449                                    SCi 0.0723529412
## 450                             Screenlife 0.0016666667
## 451                           SCS Software 0.1200000000
## 452                                  Sears 0.0100000000
## 453                                   Sega 0.1283255086
## 454                       Seta Corporation 0.0000000000
## 455                          Seventh Chord 0.0000000000
## 456                             Shogakukan 0.0000000000
## 457           Simon & Schuster Interactive 0.0200000000
## 458                   Slightly Mad Studios 0.3066666667
## 459                    Slitherine Software 0.0250000000
## 460                                    SNK 0.0013636364
## 461                           SNK Playmore 0.0077777778
## 462                                Societa 0.0000000000
## 463                               Sold Out 0.0100000000
## 464                                 Sonnet 0.0000000000
## 465            Sony Computer Entertainment 0.2748462665
## 466    Sony Computer Entertainment America 0.0000000000
## 467     Sony Computer Entertainment Europe 0.6000000000
## 468               Sony Music Entertainment 0.0000000000
## 469              Sony Online Entertainment 0.1437500000
## 470                        SouthPeak Games 0.0245945946
## 471                                  Spike 0.0089189189
## 472                                    SPS 0.0400000000
## 473                                 Square 0.0483333333
## 474                              Square EA 0.3000000000
## 475                            Square Enix 0.1408583691
## 476                             SquareSoft 0.0951923077
## 477                                    SSI 0.0700000000
## 478                        Stainless Games 0.0100000000
## 479                               Starfish 0.0190000000
## 480                         Starpath Corp. 0.0200000000
## 481                                  Sting 0.0077777778
## 482                       Storm City Games 0.0052631579
## 483                         Strategy First 0.0200000000
## 484                                Success 0.0257894737
## 485                             Summitsoft 0.0100000000
## 486                             Sunflowers 0.0200000000
## 487                    Sunrise Interactive 0.0000000000
## 488                                Sunsoft 0.0250000000
## 489                                 Sweets 0.0000000000
## 490                   Swing! Entertainment 0.0266666667
## 491                                 Syscom 0.0200000000
## 492                               System 3 0.0333333333
## 493               System 3 Arcade Software 0.0450000000
## 494                            System Soft 0.0000000000
## 495                               T&E Soft 0.0000000000
## 496                                  Taito 0.0047368421
## 497                                 Takara 0.0037500000
## 498                            Takara Tomy 0.0008108108
## 499                   Take-Two Interactive 0.2860532688
## 500                                 Takuyo 0.0000000000
## 501                              TalonSoft 0.3300000000
## 502                               TDK Core 0.0240000000
## 503                         TDK Mediactive 0.0672222222
## 504                        Team17 Software 0.0400000000
## 505              Technos Japan Corporation 0.0000000000
## 506                             TechnoSoft 0.0200000000
## 507                             Tecmo Koei 0.0209467456
## 508                              Telegames 0.0075000000
## 509                         Telltale Games 0.0400000000
## 510                                Telstar 0.0333333333
## 511                          Tetris Online 0.1300000000
## 512                                    TGL 0.0000000000
## 513                  The Adventure Company 0.0260000000
## 514                   The Learning Company 0.0200000000
## 515                                    THQ 0.1324895105
## 516                            Tigervision 0.0300000000
## 517                Time Warner Interactive 0.0240000000
## 518                                  Titus 0.0568421053
## 519                                 Tivola 0.0233333333
## 520                                   TOHO 0.0000000000
## 521                                  Tommo 0.0000000000
## 522                       Tomy Corporation 0.0416666667
## 523                    TopWare Interactive 0.0250000000
## 524                             Touchstone 0.1250000000
## 525                              Tradewest 0.0200000000
## 526                           Trion Worlds 0.0750000000
## 527                   Tripwire Interactive 0.0700000000
## 528                  Tru Blu Entertainment 0.0312500000
## 529                               Tryfirst 0.0000000000
## 530                                    TYO 0.1600000000
## 531                              Type-Moon 0.0000000000
## 532                              U.S. Gold 0.0325000000
## 533                                Ubisoft 0.1773289902
## 534                         Ubisoft Annecy 0.0471428571
## 535                            UEP Systems 0.4600000000
## 536                        UFO Interactive 0.0000000000
## 537                      UIG Entertainment 0.0100000000
## 538                            Ultravision 0.0300000000
## 539                        Universal Gamex 0.0400000000
## 540                  Universal Interactive 0.2926086957
## 541                                Unknown 0.0370935961
## 542                           Valcon Games 0.0100000000
## 543                               ValuSoft 0.0225000000
## 544                                  Valve 0.6300000000
## 545                         Valve Software 0.3833333333
## 546                                    Vap 0.0000000000
## 547                  Vatical Entertainment 0.0350000000
## 548                              Vic Tokai 0.0400000000
## 549                     Victor Interactive 0.0088888889
## 550                           Video System 0.2600000000
## 551                                  Views 0.0000000000
## 552                          Vir2L Studios 0.0033333333
## 553                     Virgin Interactive 0.2087096774
## 554                     Virtual Play Games 0.0000000000
## 555                                  Visco 0.0000000000
## 556                          Vivendi Games 0.0978048780
## 557                                Wanadoo 0.0420000000
## 558                                Warashi 0.0000000000
## 559                          Wargaming.net 0.2300000000
## 560 Warner Bros. Interactive Entertainment 0.2289655172
## 561                                   Warp 0.0000000000
## 562                WayForward Technologies 0.0000000000
## 563                       Westwood Studios 0.0000000000
## 564                White Park Bay Software 0.0100000000
## 565                     Wizard Video Games 0.0300000000
## 566                      Xicat Interactive 0.0200000000
## 567                     Xing Entertainment 0.0300000000
## 568                                Xplosiv 0.0860000000
## 569                               XS Games 0.0141666667
## 570                            Xseed Games 0.0100000000
## 571                       Yacht Club Games 0.0366666667
## 572                   Yamasa Entertainment 0.0000000000
## 573                                   Yeti 0.0000000000
## 574                                 Yuke's 0.0033333333
## 575                                Yumedia 0.0000000000
## 576                                 Zenrin 0.0000000000
## 577                 Zoo Digital Publishing 0.0235576923
## 578                              Zoo Games 0.0000000000
## 579                            Zushi Games 0.0027777778

PS2, PS3 and XBOX360 are widely used in Europe. 2007-2010 have the highest sales in europe, taking it to an all time high of 191.59 million. The sales have declined gradually further on. Action, shooter and sports are the widely played categories.Nintendo, activision, electronic arts, konami digital entertainment, microsoft game studios, sony computer entertainment, ubisoft are the high selling producers.

aggregate(JP_Sales,by=list(Platform = Platform),sum)
##    Platform      x
## 1      2600   0.00
## 2       3DO   0.10
## 3       3DS  97.35
## 4        DC   8.56
## 5        DS 175.57
## 6        GB  85.12
## 7       GBA  47.33
## 8        GC  21.58
## 9       GEN   2.67
## 10       GG   0.04
## 11      N64  34.22
## 12      NES  98.65
## 13       NG   1.44
## 14       PC   0.17
## 15     PCFX   0.03
## 16       PS 139.82
## 17      PS2 139.20
## 18      PS3  79.99
## 19      PS4  14.30
## 20      PSP  76.79
## 21      PSV  20.96
## 22      SAT  32.26
## 23      SCD   0.45
## 24     SNES 116.55
## 25     TG16   0.16
## 26      Wii  69.35
## 27     WiiU  12.79
## 28       WS   1.42
## 29     X360  12.43
## 30       XB   1.38
## 31     XOne   0.34
aggregate(JP_Sales,by=list(Platform = Platform),mean)
##    Platform            x
## 1      2600 0.0000000000
## 2       3DO 0.0333333333
## 3       3DS 0.1912573674
## 4        DC 0.1646153846
## 5        DS 0.0811696718
## 6        GB 0.8685714286
## 7       GBA 0.0575790754
## 8        GC 0.0388129496
## 9       GEN 0.0988888889
## 10       GG 0.0400000000
## 11      N64 0.1072727273
## 12      NES 1.0066326531
## 13       NG 0.1200000000
## 14       PC 0.0001770833
## 15     PCFX 0.0300000000
## 16       PS 0.1169063545
## 17      PS2 0.0644146229
## 18      PS3 0.0601881114
## 19      PS4 0.0425595238
## 20      PSP 0.0633058533
## 21      PSV 0.0507506053
## 22      SAT 0.1864739884
## 23      SCD 0.0750000000
## 24     SNES 0.4876569038
## 25     TG16 0.0800000000
## 26      Wii 0.0523396226
## 27     WiiU 0.0894405594
## 28       WS 0.2366666667
## 29     X360 0.0098260870
## 30       XB 0.0016747573
## 31     XOne 0.0015962441
aggregate(JP_Sales,by=list(Year = Year),sum)
##    Year     x
## 1  1980  0.00
## 2  1981  0.00
## 3  1982  0.00
## 4  1983  8.10
## 5  1984 14.27
## 6  1985 14.56
## 7  1986 19.81
## 8  1987 11.63
## 9  1988 15.76
## 10 1989 18.36
## 11 1990 14.88
## 12 1991 14.78
## 13 1992 28.91
## 14 1993 25.33
## 15 1994 33.99
## 16 1995 45.75
## 17 1996 57.44
## 18 1997 48.87
## 19 1998 50.04
## 20 1999 52.34
## 21 2000 42.77
## 22 2001 39.86
## 23 2002 41.76
## 24 2003 34.20
## 25 2004 41.65
## 26 2005 54.28
## 27 2006 73.73
## 28 2007 60.29
## 29 2008 60.26
## 30 2009 61.89
## 31 2010 59.49
## 32 2011 53.04
## 33 2012 51.74
## 34 2013 47.59
## 35 2014 39.46
## 36 2015 33.72
## 37 2016 13.70
## 38 2017  0.05
## 39 2020  0.00
## 40  N/A  6.72
aggregate(JP_Sales,by=list(Year = Year),mean)
##    Year          x
## 1  1980 0.00000000
## 2  1981 0.00000000
## 3  1982 0.00000000
## 4  1983 0.47647059
## 5  1984 1.01928571
## 6  1985 1.04000000
## 7  1986 0.94333333
## 8  1987 0.72687500
## 9  1988 1.05066667
## 10 1989 1.08000000
## 11 1990 0.93000000
## 12 1991 0.36048780
## 13 1992 0.67232558
## 14 1993 0.42216667
## 15 1994 0.28090909
## 16 1995 0.20890411
## 17 1996 0.21840304
## 18 1997 0.16910035
## 19 1998 0.13203166
## 20 1999 0.15485207
## 21 2000 0.12255014
## 22 2001 0.08269710
## 23 2002 0.05037394
## 24 2003 0.04412903
## 25 2004 0.05458716
## 26 2005 0.05768332
## 27 2006 0.07314484
## 28 2007 0.05015807
## 29 2008 0.04219888
## 30 2009 0.04324948
## 31 2010 0.04725179
## 32 2011 0.04656716
## 33 2012 0.07875190
## 34 2013 0.08716117
## 35 2014 0.06780069
## 36 2015 0.05491857
## 37 2016 0.03982558
## 38 2017 0.01666667
## 39 2020 0.00000000
## 40  N/A 0.02479705
aggregate(JP_Sales,by=list(Genre = Genre),sum)
##           Genre      x
## 1        Action 159.95
## 2     Adventure  52.07
## 3      Fighting  87.35
## 4          Misc 107.76
## 5      Platform 130.77
## 6        Puzzle  57.31
## 7        Racing  56.69
## 8  Role-Playing 352.31
## 9       Shooter  38.28
## 10   Simulation  63.70
## 11       Sports 135.37
## 12     Strategy  49.46
aggregate(JP_Sales,by=list(Genre = Genre),mean)
##           Genre          x
## 1        Action 0.04823583
## 2     Adventure 0.04048989
## 3      Fighting 0.10300708
## 4          Misc 0.06196665
## 5      Platform 0.14759594
## 6        Puzzle 0.09847079
## 7        Racing 0.04538831
## 8  Role-Playing 0.23676747
## 9       Shooter 0.02922137
## 10   Simulation 0.07347174
## 11       Sports 0.05770247
## 12     Strategy 0.07262849
aggregate(JP_Sales,by=list(Publisher = Publisher),sum)
##                                  Publisher      x
## 1                          10TACLE Studios   0.00
## 2                               1C Company   0.00
## 3             20th Century Fox Video Games   0.00
## 4                                   2D Boy   0.00
## 5                                      3DO   0.00
## 6                                  49Games   0.00
## 7                                505 Games   2.05
## 8                                      5pb   1.61
## 9                                 7G//AMES   0.00
## 10                              989 Sports   0.00
## 11                             989 Studios   0.10
## 12                                Abylight   0.00
## 13                   Acclaim Entertainment   1.14
## 14                                Accolade   0.00
## 15                             Ackkstudios   0.66
## 16                                 Acquire   0.91
## 17                              Activision   6.54
## 18                     Activision Blizzard   0.00
## 19                        Activision Value   0.00
## 20                        Adeline Software   0.00
## 21                                Aerosoft   0.00
## 22                  Agatsuma Entertainment   0.06
## 23                                  Agetec   0.38
## 24                             Aksys Games   0.18
## 25                    Alawar Entertainment   0.00
## 26                               Alchemist   1.42
## 27                    Alternative Software   0.00
## 28                                  Altron   0.00
## 29                                  Alvion   0.04
## 30                      American Softworks   0.00
## 31                           Angel Studios   0.44
## 32                         Answer Software   0.00
## 33                          AQ Interactive   0.11
## 34                               Aqua Plus   1.19
## 35                                   Aques   0.15
## 36                        Arc System Works   0.57
## 37                     Arena Entertainment   0.00
## 38                                    Aria   0.07
## 39                                   Arika   0.02
## 40                                 ArtDink   0.59
## 41                              Aruze Corp   1.09
## 42                               ASC Games   0.00
## 43                   Ascaron Entertainment   0.00
## 44              Ascaron Entertainment GmbH   0.00
## 45                     ASCII Entertainment   9.40
## 46                       ASCII Media Works   0.27
## 47                                  Asgard   0.25
## 48                                     ASK   0.03
## 49                 Asmik Ace Entertainment   0.22
## 50                              Asmik Corp   0.17
## 51                                   Aspyr   0.00
## 52                                Astragon   0.00
## 53                    Asylum Entertainment   0.00
## 54                                   Atari  10.71
## 55                                  Athena   0.07
## 56                                   Atlus   6.73
## 57                      Avalon Interactive   0.00
## 58                               Avanquest   0.00
## 59                      Avanquest Software   0.03
## 60                                   Axela   0.24
## 61                      BAM! Entertainment   0.03
## 62                               Banpresto  16.44
## 63                                 Benesse   0.32
## 64                                Berkeley   0.00
## 65                      Bethesda Softworks   1.45
## 66                     Big Ben Interactive   0.00
## 67                          Big Fish Games   0.00
## 68                      Bigben Interactive   0.00
## 69                       bitComposer Games   0.00
## 70                        Black Bean Games   0.01
## 71                       Black Label Games   0.00
## 72                Blast! Entertainment Ltd   0.00
## 73                               Blue Byte   0.00
## 74           BMG Interactive Entertainment   0.00
## 75                     Bohemia Interactive   0.00
## 76                                    Bomb   0.00
## 77                                Boost On   0.01
## 78                                     BPS   0.52
## 79                     Brash Entertainment   0.00
## 80                                Broccoli   0.96
## 81                               BushiRoad   0.03
## 82                                  Capcom  68.08
## 83                                    Cave   0.18
## 84                         CBS Electronics   0.00
## 85                                     CCP   0.00
## 86              CDV Software Entertainment   0.00
## 87                                ChunSoft   3.61
## 88                        City Interactive   0.07
## 89        Cloud Imperium Games Corporation   0.00
## 90                          Coconuts Japan   0.05
## 91                             Codemasters   0.83
## 92                      Codemasters Online   0.00
## 93                       CokeM Interactive   0.00
## 94                                  Coleco   0.00
## 95                                 Comfort   0.15
## 96                                Commseed   0.01
## 97                                 Compile   2.35
## 98                           Compile Heart   0.77
## 99                Conspiracy Entertainment   0.00
## 100                       Core Design Ltd.   0.00
## 101                           CPG Products   0.00
## 102                    Crave Entertainment   0.45
## 103                          Creative Core   0.10
## 104                            Crimson Cow   0.00
## 105                       Crystal Dynamics   0.00
## 106                                CTO SpA   0.00
## 107                          Culture Brain   0.27
## 108                     Culture Publishers   0.00
## 109                             CyberFront   0.26
## 110                                Cygames   0.03
## 111                            D3Publisher   4.65
## 112                               Daedalic   0.00
## 113                 Daedalic Entertainment   0.00
## 114                                  Daito   0.23
## 115                               Data Age   0.00
## 116                Data Design Interactive   0.00
## 117                              Data East   0.15
## 118                         Datam Polystar   0.03
## 119                            Deep Silver   1.09
## 120              Destination Software, Inc   0.00
## 121                              Destineer   0.00
## 122                            Detn8 Games   0.00
## 123                       Devolver Digital   0.00
## 124                        DHM Interactive   0.00
## 125                               DigiCube   0.06
## 126             Disney Interactive Studios   0.56
## 127                                 Dorart   0.03
## 128                        dramatic create   0.11
## 129               DreamCatcher Interactive   0.00
## 130                 DreamWorks Interactive   0.00
## 131                              DSI Games   0.00
## 132                      DTP Entertainment   0.02
## 133               Dusenberry Martin Racing   0.00
## 134                               EA Games   0.00
## 135                       Easy Interactive   0.00
## 136                                  Ecole   0.06
## 137                                   Edia   0.09
## 138                      Eidos Interactive   6.11
## 139                        Electronic Arts  14.04
## 140                 Electronic Arts Victor   0.00
## 141                                    Elf   0.64
## 142                                  Elite   0.00
## 143                     Empire Interactive   0.42
## 144                                 Encore   0.00
## 145                       Enix Corporation  32.40
## 146                      Enjoy Gaming ltd.   0.00
## 147                             Enterbrain   1.94
## 148              EON Digital Entertainment   0.00
## 149                             Epic Games   0.00
## 150                                  Epoch   0.99
## 151                                 Ertain   0.00
## 152                                    ESP   0.54
## 153                        Essential Games   0.22
## 154                        Evolution Games   0.06
## 155                          Evolved Games   0.00
## 156                   Excalibur Publishing   0.00
## 157                        Experience Inc.   0.06
## 158            Extreme Entertainment Group   0.01
## 159                     Falcom Corporation   0.91
## 160                                 Fields   0.03
## 161                       Flashpoint Games   0.00
## 162                            Flight-Plan   0.12
## 163                 Focus Home Interactive   0.04
## 164                       Focus Multimedia   0.00
## 165                                 fonfun   0.02
## 166                    Foreign Media Games   0.00
## 167                              Fortyfive   0.06
## 168                        Fox Interactive   0.00
## 169                          From Software   0.99
## 170                                   Fuji   0.03
## 171                           Funbox Media   0.00
## 172                                 Funcom   0.00
## 173                                FunSoft   0.00
## 174                                 Funsta   0.00
## 175                                  FuRyu   1.17
## 176                      FuRyu Corporation   0.00
## 177                                  G.Rev   0.04
## 178                                   Gaga   0.02
## 179                 Gainax Network Systems   0.16
## 180                                 Gakken   0.04
## 181                              Game Arts   0.14
## 182                           Game Factory   0.00
## 183                              Game Life   0.00
## 184                             Gamebridge   0.24
## 185                               Gamecock   0.00
## 186                               Gameloft   0.00
## 187                 GameMill Entertainment   0.00
## 188                                GameTek   0.00
## 189                Gathering of Developers   0.00
## 190                  General Entertainment   0.13
## 191                                  Genki   0.52
## 192                            Genterprise   0.01
## 193                             Ghostlight   0.89
## 194                                   Giga   0.02
## 195                                 Giza10   0.02
## 196                                  Glams   0.08
## 197                 Global A Entertainment   0.01
## 198                            Global Star   0.00
## 199                            GN Software   0.05
## 200                                    GOA   0.00
## 201                           Gotham Games   0.00
## 202                               Graffiti   0.00
## 203                       Grand Prix Games   0.06
## 204                 Graphsim Entertainment   0.00
## 205                Gremlin Interactive Ltd   0.00
## 206                  Griffin International   0.00
## 207                           Groove Games   0.00
## 208                                    GSP   0.00
## 209                         GT Interactive   0.02
## 210                                 GungHo   2.18
## 211                                   Gust   0.84
## 212                              Hackberry   0.31
## 213                         HAL Laboratory   0.00
## 214                    Hamster Corporation   0.02
## 215                               Happinet   0.18
## 216                 Harmonix Music Systems   0.00
## 217                     Hasbro Interactive   0.00
## 218                      Havas Interactive   0.00
## 219                           Headup Games   0.00
## 220                           Hearty Robin   0.08
## 221                                   Hect   0.50
## 222                            Hello Games   0.02
## 223                        Her Interactive   0.00
## 224                        Hip Interactive   0.00
## 225                        HMH Interactive   0.00
## 226           Home Entertainment Suppliers   0.00
## 227                   Hudson Entertainment   1.21
## 228                            Hudson Soft  19.21
## 229                    Human Entertainment   2.82
## 230                                  HuneX   0.03
## 231                    Iceberg Interactive   0.00
## 232                            id Software   0.00
## 233                           Idea Factory   3.32
## 234             Idea Factory International   0.20
## 235                           IE Institute   0.96
## 236                 Ignition Entertainment   0.68
## 237                     Illusion Softworks   0.00
## 238                                 Imadio   0.14
## 239                            Image Epoch   0.10
## 240                        imageepoch Inc.   0.04
## 241                             Imageworks   0.02
## 242                                 Imagic   0.00
## 243                              Imagineer   2.53
## 244                                   Imax   0.06
## 245                            Indie Games   0.14
## 246                             Infogrames   0.38
## 247                        Insomniac Games   0.00
## 248                           Interchannel   0.10
## 249                     Interchannel-Holon   0.01
## 250                              Intergrow   0.03
## 251                              Interplay   0.01
## 252                  Interplay Productions   0.00
## 253             Interworks Unlimited, Inc.   0.00
## 254                           Inti Creates   0.01
## 255                  Introversion Software   0.00
## 256                   inXile Entertainment   0.00
## 257              Irem Software Engineering   0.31
## 258                       ITT Family Games   0.00
## 259                              Ivolgamus   0.00
## 260                                   iWin   0.00
## 261                      Jack of All Games   0.00
## 262                                 Jaleco   0.64
## 263                     Jester Interactive   0.00
## 264                                Jorudan   0.93
## 265                     JoWood Productions   0.01
## 266                            Just Flight   0.00
## 267                                    JVC   0.12
## 268                         Kadokawa Games   0.58
## 269                        Kadokawa Shoten   2.93
## 270                            Kaga Create   0.14
## 271                          Kalypso Media   0.09
## 272                                  Kamui   0.03
## 273                            Kando Games   0.00
## 274                    Karin Entertainment   0.02
## 275                                  Kemco   0.05
## 276                                    KID   0.08
## 277                           Kids Station   0.03
## 278                           King Records   0.02
## 279                    Knowledge Adventure   0.00
## 280                             Koch Media   0.00
## 281               Kokopeli Digital Studios   0.00
## 282           Konami Digital Entertainment  91.30
## 283                              Kool Kizz   0.00
## 284                                    KSS   0.03
## 285                                 Laguna   1.34
## 286                     Legacy Interactive   0.00
## 287                             LEGO Media   0.00
## 288                                Level 5  11.65
## 289                  Lexicon Entertainment   0.00
## 290                            Licensed 4U   0.00
## 291                 Lighthouse Interactive   0.00
## 292                           Liquid Games   0.00
## 293                           Little Orbit   0.00
## 294                                  Locus   0.07
## 295                              LSP Games   0.00
## 296                              LucasArts   0.20
## 297                               Mad Catz   0.00
## 298                        Magical Company   0.12
## 299                                  Magix   0.00
## 300                  Majesco Entertainment   0.02
## 301                            Mamba Games   0.00
## 302                   Marvel Entertainment   0.05
## 303                Marvelous Entertainment   1.17
## 304                        Marvelous Games   0.02
## 305                  Marvelous Interactive   2.22
## 306                      Masque Publishing   0.00
## 307                           Mastertronic   0.00
## 308                                Mastiff   0.00
## 309                     Mattel Interactive   0.00
## 310                               Max Five   0.00
## 311                   Maximum Family Games   0.00
## 312                                  Maxis   0.00
## 313                      MC2 Entertainment   0.00
## 314                    Media Entertainment   0.01
## 315                          Media Factory   0.29
## 316                            Media Rings   0.46
## 317                            Media Works   0.18
## 318                             MediaQuest   0.00
## 319                           Men-A-Vision   0.00
## 320                     Mentor Interactive   0.00
## 321                          Mercury Games   0.02
## 322                            Merscom LLC   0.00
## 323                               Metro 3D   0.42
## 324                            Michaelsoft   0.01
## 325                            Micro Cabin   0.20
## 326                               Microids   0.00
## 327                             Microprose   0.00
## 328                 Microsoft Game Studios   3.26
## 329        Midas Interactive Entertainment   0.15
## 330                           Midway Games   0.12
## 331                              Milestone   0.00
## 332                        Milestone S.r.l   0.00
## 333                       Milestone S.r.l.   0.10
## 334                         Minato Station   0.05
## 335                              Mindscape   0.00
## 336                          Mirai Shounen   0.02
## 337                                 Misawa   0.07
## 338                                 Mitsui   0.00
## 339                              mixi, Inc   0.86
## 340                                MLB.com   0.00
## 341                                 Mojang   0.00
## 342               Monte Christo Multimedia   0.00
## 343                                   Moss   0.02
## 344                                    MTO   0.39
## 345                              MTV Games   0.01
## 346                   Mud Duck Productions   0.00
## 347                            Mumbo Jumbo   0.00
## 348                                  Mycom   0.02
## 349                           Myelin Media   0.00
## 350                               Mystique   0.00
## 351                                    N/A   0.93
## 352                     Namco Bandai Games 127.07
## 353                                Natsume   0.32
## 354                           Navarre Corp   0.00
## 355                             Naxat Soft   0.01
## 356                                    NCS   0.40
## 357                                 NCSoft   0.00
## 358                        NDA Productions   0.00
## 359                                    NEC   0.43
## 360                       NEC Interchannel   0.78
## 361                     Neko Entertainment   0.00
## 362                                NetRevo   0.03
## 363                                    New   0.33
## 364                    New World Computing   0.00
## 365                               NewKidCo   0.00
## 366                                  Nexon   0.03
## 367                             Nichibutsu   0.28
## 368               Nihon Falcom Corporation   0.58
## 369                               Nintendo 455.42
## 370                           Nippon Amuse   0.09
## 371                        Nippon Columbia   0.95
## 372                   Nippon Ichi Software   5.87
## 373                         Nippon Telenet   0.26
## 374                              Nitroplus   0.02
## 375                                Nobilis   0.02
## 376                            Nordcurrent   0.00
## 377                           Nordic Games   0.00
## 378                              NovaLogic   0.00
## 379                            Number None   0.00
## 380                                O-Games   0.00
## 381                       O3 Entertainment   0.00
## 382                                  Ocean   0.42
## 383                          Office Create   0.06
## 384                              On Demand   0.00
## 385                              Ongakukan   0.01
## 386                         Origin Systems   0.00
## 387                                Otomate   0.01
## 388                     Oxygen Interactive   0.00
## 389                               P2 Games   0.00
## 390            Pacific Century Cyber Works   0.03
## 391                          Pack-In-Video   0.11
## 392                           Pack In Soft   0.11
## 393                                 Palcom   0.31
## 394                       Panther Software   0.12
## 395                                   Paon   0.25
## 396                       Paon Corporation   0.03
## 397                    Paradox Development   0.00
## 398                    Paradox Interactive   0.00
## 399                           Parker Bros.   0.00
## 400          Performance Designed Products   0.00
## 401                             Phantagram   0.01
## 402                            Phantom EFX   0.00
## 403                             Phenomedia   0.00
## 404                          Phoenix Games   0.00
## 405                                 Piacci   0.01
## 406                               Pinnacle   0.00
## 407                            Pioneer LDC   0.32
## 408                                Play It   0.00
## 409                 Playlogic Game Factory   0.00
## 410                              Playmates   0.00
## 411                               Playmore   0.04
## 412                                  PlayV   0.00
## 413                                 Plenty   0.02
## 414                             PM Studios   0.00
## 415                            Pony Canyon   0.00
## 416                           PopCap Games   0.00
## 417                         Popcorn Arcade   0.00
## 418                        PopTop Software   0.00
## 419                                    Pow   0.05
## 420                                  PQube   1.05
## 421                          Princess Soft   0.07
## 422                              Prototype   0.61
## 423                              Psygnosis   0.72
## 424                                 Quelle   0.00
## 425                                  Quest   0.71
## 426                               Quinrose   0.22
## 427                                Quintet   0.02
## 428                          Rage Software   0.00
## 429                             Rain Games   0.00
## 430                              Rebellion   0.00
## 431                 Rebellion Developments   0.00
## 432                      RED Entertainment   0.02
## 433                                Red Orb   0.00
## 434                Red Storm Entertainment   0.00
## 435                              RedOctane   0.03
## 436                     Reef Entertainment   0.00
## 437                           responDESIGN   0.00
## 438                     Revolution (Japan)   0.02
## 439                    Revolution Software   0.00
## 440                      Rising Star Games   2.53
## 441                          Riverhillsoft   0.04
## 442                         Rocket Company   1.82
## 443                             Rondomedia   0.00
## 444                                    RTL   0.00
## 445                                 Russel   0.09
## 446                      Sammy Corporation   1.91
## 447                                 Saurus   0.00
## 448                        Scholastic Inc.   0.00
## 449                                    SCi   0.00
## 450                             Screenlife   0.66
## 451                           SCS Software   0.00
## 452                                  Sears   0.00
## 453                                   Sega  57.03
## 454                       Seta Corporation   0.59
## 455                          Seventh Chord   0.08
## 456                             Shogakukan   0.44
## 457           Simon & Schuster Interactive   0.00
## 458                   Slightly Mad Studios   0.02
## 459                    Slitherine Software   0.00
## 460                                    SNK   2.48
## 461                           SNK Playmore   0.56
## 462                                Societa   0.04
## 463                               Sold Out   0.00
## 464                                 Sonnet   0.06
## 465            Sony Computer Entertainment  74.10
## 466    Sony Computer Entertainment America   0.00
## 467     Sony Computer Entertainment Europe   2.50
## 468               Sony Music Entertainment   0.14
## 469              Sony Online Entertainment   0.00
## 470                        SouthPeak Games   0.07
## 471                                  Spike   2.12
## 472                                    SPS   0.00
## 473                                 Square   2.60
## 474                              Square EA   0.00
## 475                            Square Enix  49.88
## 476                             SquareSoft  40.13
## 477                                    SSI   0.00
## 478                        Stainless Games   0.00
## 479                               Starfish   0.10
## 480                         Starpath Corp.   0.00
## 481                                  Sting   0.15
## 482                       Storm City Games   0.00
## 483                         Strategy First   0.00
## 484                                Success   0.22
## 485                             Summitsoft   0.00
## 486                             Sunflowers   0.00
## 487                    Sunrise Interactive   0.17
## 488                                Sunsoft   0.17
## 489                                 Sweets   0.05
## 490                   Swing! Entertainment   0.00
## 491                                 Syscom   0.15
## 492                               System 3   0.00
## 493               System 3 Arcade Software   0.00
## 494                            System Soft   0.05
## 495                               T&E Soft   0.12
## 496                                  Taito   2.14
## 497                                 Takara   3.14
## 498                            Takara Tomy   1.85
## 499                   Take-Two Interactive   5.83
## 500                                 Takuyo   0.01
## 501                              TalonSoft   0.00
## 502                               TDK Core   0.25
## 503                         TDK Mediactive   0.00
## 504                        Team17 Software   0.00
## 505              Technos Japan Corporation   0.02
## 506                             TechnoSoft   0.00
## 507                             Tecmo Koei  29.21
## 508                              Telegames   0.00
## 509                         Telltale Games   0.03
## 510                                Telstar   0.00
## 511                          Tetris Online   0.06
## 512                                    TGL   0.10
## 513                  The Adventure Company   0.00
## 514                   The Learning Company   0.00
## 515                                    THQ   5.01
## 516                            Tigervision   0.00
## 517                Time Warner Interactive   0.00
## 518                                  Titus   0.07
## 519                                 Tivola   0.00
## 520                                   TOHO   0.11
## 521                                  Tommo   0.00
## 522                       Tomy Corporation   2.12
## 523                    TopWare Interactive   0.00
## 524                             Touchstone   0.02
## 525                              Tradewest   0.00
## 526                           Trion Worlds   0.00
## 527                   Tripwire Interactive   0.00
## 528                  Tru Blu Entertainment   0.00
## 529                               Tryfirst   0.03
## 530                                    TYO   0.00
## 531                              Type-Moon   0.10
## 532                              U.S. Gold   0.00
## 533                                Ubisoft   7.50
## 534                         Ubisoft Annecy   2.28
## 535                            UEP Systems   0.20
## 536                        UFO Interactive   0.00
## 537                      UIG Entertainment   0.00
## 538                            Ultravision   0.00
## 539                        Universal Gamex   0.00
## 540                  Universal Interactive   0.24
## 541                                Unknown   6.06
## 542                           Valcon Games   0.00
## 543                               ValuSoft   0.00
## 544                                  Valve   0.02
## 545                         Valve Software   0.01
## 546                                    Vap   0.05
## 547                  Vatical Entertainment   0.00
## 548                              Vic Tokai   0.00
## 549                     Victor Interactive   0.68
## 550                           Video System   0.37
## 551                                  Views   0.03
## 552                          Vir2L Studios   0.00
## 553                     Virgin Interactive   8.94
## 554                     Virtual Play Games   0.00
## 555                                  Visco   0.00
## 556                          Vivendi Games   0.23
## 557                                Wanadoo   0.06
## 558                                Warashi   0.02
## 559                          Wargaming.net   0.00
## 560 Warner Bros. Interactive Entertainment   1.04
## 561                                   Warp   0.07
## 562                WayForward Technologies   0.00
## 563                       Westwood Studios   0.00
## 564                White Park Bay Software   0.00
## 565                     Wizard Video Games   0.00
## 566                      Xicat Interactive   0.00
## 567                     Xing Entertainment   0.16
## 568                                Xplosiv   0.00
## 569                               XS Games   0.00
## 570                            Xseed Games   0.37
## 571                       Yacht Club Games   0.01
## 572                   Yamasa Entertainment   0.04
## 573                                   Yeti   0.24
## 574                                 Yuke's   0.05
## 575                                Yumedia   0.06
## 576                                 Zenrin   0.06
## 577                 Zoo Digital Publishing   0.14
## 578                              Zoo Games   0.00
## 579                            Zushi Games   0.01
aggregate(JP_Sales,by=list(Publisher = Publisher),mean)
##                                  Publisher            x
## 1                          10TACLE Studios 0.0000000000
## 2                               1C Company 0.0000000000
## 3             20th Century Fox Video Games 0.0000000000
## 4                                   2D Boy 0.0000000000
## 5                                      3DO 0.0000000000
## 6                                  49Games 0.0000000000
## 7                                505 Games 0.0106770833
## 8                                      5pb 0.0263934426
## 9                                 7G//AMES 0.0000000000
## 10                              989 Sports 0.0000000000
## 11                             989 Studios 0.0071428571
## 12                                Abylight 0.0000000000
## 13                   Acclaim Entertainment 0.0061956522
## 14                                Accolade 0.0000000000
## 15                             Ackkstudios 0.0660000000
## 16                                 Acquire 0.0700000000
## 17                              Activision 0.0067076923
## 18                     Activision Blizzard 0.0000000000
## 19                        Activision Value 0.0000000000
## 20                        Adeline Software 0.0000000000
## 21                                Aerosoft 0.0000000000
## 22                  Agatsuma Entertainment 0.0200000000
## 23                                  Agetec 0.0475000000
## 24                             Aksys Games 0.0225000000
## 25                    Alawar Entertainment 0.0000000000
## 26                               Alchemist 0.0330232558
## 27                    Alternative Software 0.0000000000
## 28                                  Altron 0.0000000000
## 29                                  Alvion 0.0200000000
## 30                      American Softworks 0.0000000000
## 31                           Angel Studios 0.1466666667
## 32                         Answer Software 0.0000000000
## 33                          AQ Interactive 0.0220000000
## 34                               Aqua Plus 0.0517391304
## 35                                   Aques 0.1500000000
## 36                        Arc System Works 0.0219230769
## 37                     Arena Entertainment 0.0000000000
## 38                                    Aria 0.0700000000
## 39                                   Arika 0.0066666667
## 40                                 ArtDink 0.0655555556
## 41                              Aruze Corp 0.3633333333
## 42                               ASC Games 0.0000000000
## 43                   Ascaron Entertainment 0.0000000000
## 44              Ascaron Entertainment GmbH 0.0000000000
## 45                     ASCII Entertainment 0.4700000000
## 46                       ASCII Media Works 0.0300000000
## 47                                  Asgard 0.0312500000
## 48                                     ASK 0.0300000000
## 49                 Asmik Ace Entertainment 0.0733333333
## 50                              Asmik Corp 0.0850000000
## 51                                   Aspyr 0.0000000000
## 52                                Astragon 0.0000000000
## 53                    Asylum Entertainment 0.0000000000
## 54                                   Atari 0.0295041322
## 55                                  Athena 0.0350000000
## 56                                   Atlus 0.1004477612
## 57                      Avalon Interactive 0.0000000000
## 58                               Avanquest 0.0000000000
## 59                      Avanquest Software 0.0033333333
## 60                                   Axela 0.2400000000
## 61                      BAM! Entertainment 0.0008571429
## 62                               Banpresto 0.2252054795
## 63                                 Benesse 0.0533333333
## 64                                Berkeley 0.0000000000
## 65                      Bethesda Softworks 0.0204225352
## 66                     Big Ben Interactive 0.0000000000
## 67                          Big Fish Games 0.0000000000
## 68                      Bigben Interactive 0.0000000000
## 69                       bitComposer Games 0.0000000000
## 70                        Black Bean Games 0.0002941176
## 71                       Black Label Games 0.0000000000
## 72                Blast! Entertainment Ltd 0.0000000000
## 73                               Blue Byte 0.0000000000
## 74           BMG Interactive Entertainment 0.0000000000
## 75                     Bohemia Interactive 0.0000000000
## 76                                    Bomb 0.0000000000
## 77                                Boost On 0.0100000000
## 78                                     BPS 0.2600000000
## 79                     Brash Entertainment 0.0000000000
## 80                                Broccoli 0.0436363636
## 81                               BushiRoad 0.0300000000
## 82                                  Capcom 0.1786876640
## 83                                    Cave 0.0180000000
## 84                         CBS Electronics 0.0000000000
## 85                                     CCP 0.0000000000
## 86              CDV Software Entertainment 0.0000000000
## 87                                ChunSoft 0.2005555556
## 88                        City Interactive 0.0036842105
## 89        Cloud Imperium Games Corporation 0.0000000000
## 90                          Coconuts Japan 0.0250000000
## 91                             Codemasters 0.0054605263
## 92                      Codemasters Online 0.0000000000
## 93                       CokeM Interactive 0.0000000000
## 94                                  Coleco 0.0000000000
## 95                                 Comfort 0.0250000000
## 96                                Commseed 0.0100000000
## 97                                 Compile 0.3916666667
## 98                           Compile Heart 0.0385000000
## 99                Conspiracy Entertainment 0.0000000000
## 100                       Core Design Ltd. 0.0000000000
## 101                           CPG Products 0.0000000000
## 102                    Crave Entertainment 0.0063380282
## 103                          Creative Core 0.0333333333
## 104                            Crimson Cow 0.0000000000
## 105                       Crystal Dynamics 0.0000000000
## 106                                CTO SpA 0.0000000000
## 107                          Culture Brain 0.0675000000
## 108                     Culture Publishers 0.0000000000
## 109                             CyberFront 0.0185714286
## 110                                Cygames 0.0300000000
## 111                            D3Publisher 0.0252717391
## 112                               Daedalic 0.0000000000
## 113                 Daedalic Entertainment 0.0000000000
## 114                                  Daito 0.0575000000
## 115                               Data Age 0.0000000000
## 116                Data Design Interactive 0.0000000000
## 117                              Data East 0.0750000000
## 118                         Datam Polystar 0.0150000000
## 119                            Deep Silver 0.0089344262
## 120              Destination Software, Inc 0.0000000000
## 121                              Destineer 0.0000000000
## 122                            Detn8 Games 0.0000000000
## 123                       Devolver Digital 0.0000000000
## 124                        DHM Interactive 0.0000000000
## 125                               DigiCube 0.0600000000
## 126             Disney Interactive Studios 0.0025688073
## 127                                 Dorart 0.0150000000
## 128                        dramatic create 0.0220000000
## 129               DreamCatcher Interactive 0.0000000000
## 130                 DreamWorks Interactive 0.0000000000
## 131                              DSI Games 0.0000000000
## 132                      DTP Entertainment 0.0004444444
## 133               Dusenberry Martin Racing 0.0000000000
## 134                               EA Games 0.0000000000
## 135                       Easy Interactive 0.0000000000
## 136                                  Ecole 0.0600000000
## 137                                   Edia 0.0450000000
## 138                      Eidos Interactive 0.0308585859
## 139                        Electronic Arts 0.0103923020
## 140                 Electronic Arts Victor 0.0000000000
## 141                                    Elf 0.3200000000
## 142                                  Elite 0.0000000000
## 143                     Empire Interactive 0.0080769231
## 144                                 Encore 0.0000000000
## 145                       Enix Corporation 1.0800000000
## 146                      Enjoy Gaming ltd. 0.0000000000
## 147                             Enterbrain 0.1293333333
## 148              EON Digital Entertainment 0.0000000000
## 149                             Epic Games 0.0000000000
## 150                                  Epoch 0.1414285714
## 151                                 Ertain 0.0000000000
## 152                                    ESP 0.1080000000
## 153                        Essential Games 0.0733333333
## 154                        Evolution Games 0.0600000000
## 155                          Evolved Games 0.0000000000
## 156                   Excalibur Publishing 0.0000000000
## 157                        Experience Inc. 0.0200000000
## 158            Extreme Entertainment Group 0.0100000000
## 159                     Falcom Corporation 0.0568750000
## 160                                 Fields 0.0300000000
## 161                       Flashpoint Games 0.0000000000
## 162                            Flight-Plan 0.0600000000
## 163                 Focus Home Interactive 0.0006896552
## 164                       Focus Multimedia 0.0000000000
## 165                                 fonfun 0.0200000000
## 166                    Foreign Media Games 0.0000000000
## 167                              Fortyfive 0.0600000000
## 168                        Fox Interactive 0.0000000000
## 169                          From Software 0.0660000000
## 170                                   Fuji 0.0300000000
## 171                           Funbox Media 0.0000000000
## 172                                 Funcom 0.0000000000
## 173                                FunSoft 0.0000000000
## 174                                 Funsta 0.0000000000
## 175                                  FuRyu 0.0433333333
## 176                      FuRyu Corporation 0.0000000000
## 177                                  G.Rev 0.0200000000
## 178                                   Gaga 0.0200000000
## 179                 Gainax Network Systems 0.0800000000
## 180                                 Gakken 0.0200000000
## 181                              Game Arts 0.1400000000
## 182                           Game Factory 0.0000000000
## 183                              Game Life 0.0000000000
## 184                             Gamebridge 0.1200000000
## 185                               Gamecock 0.0000000000
## 186                               Gameloft 0.0000000000
## 187                 GameMill Entertainment 0.0000000000
## 188                                GameTek 0.0000000000
## 189                Gathering of Developers 0.0000000000
## 190                  General Entertainment 0.1300000000
## 191                                  Genki 0.0650000000
## 192                            Genterprise 0.0100000000
## 193                             Ghostlight 0.0593333333
## 194                                   Giga 0.0200000000
## 195                                 Giza10 0.0200000000
## 196                                  Glams 0.0800000000
## 197                 Global A Entertainment 0.0025000000
## 198                            Global Star 0.0000000000
## 199                            GN Software 0.0166666667
## 200                                    GOA 0.0000000000
## 201                           Gotham Games 0.0000000000
## 202                               Graffiti 0.0000000000
## 203                       Grand Prix Games 0.0600000000
## 204                 Graphsim Entertainment 0.0000000000
## 205                Gremlin Interactive Ltd 0.0000000000
## 206                  Griffin International 0.0000000000
## 207                           Groove Games 0.0000000000
## 208                                    GSP 0.0000000000
## 209                         GT Interactive 0.0004444444
## 210                                 GungHo 0.1676923077
## 211                                   Gust 0.0646153846
## 212                              Hackberry 0.0442857143
## 213                         HAL Laboratory 0.0000000000
## 214                    Hamster Corporation 0.0100000000
## 215                               Happinet 0.0360000000
## 216                 Harmonix Music Systems 0.0000000000
## 217                     Hasbro Interactive 0.0000000000
## 218                      Havas Interactive 0.0000000000
## 219                           Headup Games 0.0000000000
## 220                           Hearty Robin 0.0800000000
## 221                                   Hect 0.1666666667
## 222                            Hello Games 0.0200000000
## 223                        Her Interactive 0.0000000000
## 224                        Hip Interactive 0.0000000000
## 225                        HMH Interactive 0.0000000000
## 226           Home Entertainment Suppliers 0.0000000000
## 227                   Hudson Entertainment 0.1100000000
## 228                            Hudson Soft 0.2371604938
## 229                    Human Entertainment 0.2169230769
## 230                                  HuneX 0.0150000000
## 231                    Iceberg Interactive 0.0000000000
## 232                            id Software 0.0000000000
## 233                           Idea Factory 0.0257364341
## 234             Idea Factory International 0.0333333333
## 235                           IE Institute 0.1920000000
## 236                 Ignition Entertainment 0.0111475410
## 237                     Illusion Softworks 0.0000000000
## 238                                 Imadio 0.1400000000
## 239                            Image Epoch 0.1000000000
## 240                        imageepoch Inc. 0.0200000000
## 241                             Imageworks 0.0200000000
## 242                                 Imagic 0.0000000000
## 243                              Imagineer 0.1581250000
## 244                                   Imax 0.0600000000
## 245                            Indie Games 0.0466666667
## 246                             Infogrames 0.0061290323
## 247                        Insomniac Games 0.0000000000
## 248                           Interchannel 0.0250000000
## 249                     Interchannel-Holon 0.0100000000
## 250                              Intergrow 0.0300000000
## 251                              Interplay 0.0003333333
## 252                  Interplay Productions 0.0000000000
## 253             Interworks Unlimited, Inc. 0.0000000000
## 254                           Inti Creates 0.0100000000
## 255                  Introversion Software 0.0000000000
## 256                   inXile Entertainment 0.0000000000
## 257              Irem Software Engineering 0.0258333333
## 258                       ITT Family Games 0.0000000000
## 259                              Ivolgamus 0.0000000000
## 260                                   iWin 0.0000000000
## 261                      Jack of All Games 0.0000000000
## 262                                 Jaleco 0.0278260870
## 263                     Jester Interactive 0.0000000000
## 264                                Jorudan 0.3100000000
## 265                     JoWood Productions 0.0004545455
## 266                            Just Flight 0.0000000000
## 267                                    JVC 0.0150000000
## 268                         Kadokawa Games 0.0386666667
## 269                        Kadokawa Shoten 0.0586000000
## 270                            Kaga Create 0.0233333333
## 271                          Kalypso Media 0.0031034483
## 272                                  Kamui 0.0300000000
## 273                            Kando Games 0.0000000000
## 274                    Karin Entertainment 0.0200000000
## 275                                  Kemco 0.0023809524
## 276                                    KID 0.0200000000
## 277                           Kids Station 0.0300000000
## 278                           King Records 0.0200000000
## 279                    Knowledge Adventure 0.0000000000
## 280                             Koch Media 0.0000000000
## 281               Kokopeli Digital Studios 0.0000000000
## 282           Konami Digital Entertainment 0.1097355769
## 283                              Kool Kizz 0.0000000000
## 284                                    KSS 0.0300000000
## 285                                 Laguna 0.3350000000
## 286                     Legacy Interactive 0.0000000000
## 287                             LEGO Media 0.0000000000
## 288                                Level 5 0.4314814815
## 289                  Lexicon Entertainment 0.0000000000
## 290                            Licensed 4U 0.0000000000
## 291                 Lighthouse Interactive 0.0000000000
## 292                           Liquid Games 0.0000000000
## 293                           Little Orbit 0.0000000000
## 294                                  Locus 0.0700000000
## 295                              LSP Games 0.0000000000
## 296                              LucasArts 0.0022222222
## 297                               Mad Catz 0.0000000000
## 298                        Magical Company 0.1200000000
## 299                                  Magix 0.0000000000
## 300                  Majesco Entertainment 0.0002173913
## 301                            Mamba Games 0.0000000000
## 302                   Marvel Entertainment 0.0500000000
## 303                Marvelous Entertainment 0.0975000000
## 304                        Marvelous Games 0.0200000000
## 305                  Marvelous Interactive 0.0396428571
## 306                      Masque Publishing 0.0000000000
## 307                           Mastertronic 0.0000000000
## 308                                Mastiff 0.0000000000
## 309                     Mattel Interactive 0.0000000000
## 310                               Max Five 0.0000000000
## 311                   Maximum Family Games 0.0000000000
## 312                                  Maxis 0.0000000000
## 313                      MC2 Entertainment 0.0000000000
## 314                    Media Entertainment 0.0100000000
## 315                          Media Factory 0.1450000000
## 316                            Media Rings 0.1533333333
## 317                            Media Works 0.0360000000
## 318                             MediaQuest 0.0000000000
## 319                           Men-A-Vision 0.0000000000
## 320                     Mentor Interactive 0.0000000000
## 321                          Mercury Games 0.0050000000
## 322                            Merscom LLC 0.0000000000
## 323                               Metro 3D 0.0350000000
## 324                            Michaelsoft 0.0100000000
## 325                            Micro Cabin 0.0666666667
## 326                               Microids 0.0000000000
## 327                             Microprose 0.0000000000
## 328                 Microsoft Game Studios 0.0172486772
## 329        Midas Interactive Entertainment 0.0062500000
## 330                           Midway Games 0.0006060606
## 331                              Milestone 0.0000000000
## 332                        Milestone S.r.l 0.0000000000
## 333                       Milestone S.r.l. 0.0062500000
## 334                         Minato Station 0.0166666667
## 335                              Mindscape 0.0000000000
## 336                          Mirai Shounen 0.0200000000
## 337                                 Misawa 0.0350000000
## 338                                 Mitsui 0.0000000000
## 339                              mixi, Inc 0.8600000000
## 340                                MLB.com 0.0000000000
## 341                                 Mojang 0.0000000000
## 342               Monte Christo Multimedia 0.0000000000
## 343                                   Moss 0.0100000000
## 344                                    MTO 0.0487500000
## 345                              MTV Games 0.0002439024
## 346                   Mud Duck Productions 0.0000000000
## 347                            Mumbo Jumbo 0.0000000000
## 348                                  Mycom 0.0200000000
## 349                           Myelin Media 0.0000000000
## 350                               Mystique 0.0000000000
## 351                                    N/A 0.0160344828
## 352                     Namco Bandai Games 0.1363412017
## 353                                Natsume 0.0188235294
## 354                           Navarre Corp 0.0000000000
## 355                             Naxat Soft 0.0100000000
## 356                                    NCS 0.1333333333
## 357                                 NCSoft 0.0000000000
## 358                        NDA Productions 0.0000000000
## 359                                    NEC 0.1433333333
## 360                       NEC Interchannel 0.0975000000
## 361                     Neko Entertainment 0.0000000000
## 362                                NetRevo 0.0150000000
## 363                                    New 0.3300000000
## 364                    New World Computing 0.0000000000
## 365                               NewKidCo 0.0000000000
## 366                                  Nexon 0.0300000000
## 367                             Nichibutsu 0.2800000000
## 368               Nihon Falcom Corporation 0.0828571429
## 369                               Nintendo 0.6478236131
## 370                           Nippon Amuse 0.0900000000
## 371                        Nippon Columbia 0.1357142857
## 372                   Nippon Ichi Software 0.0559047619
## 373                         Nippon Telenet 0.1300000000
## 374                              Nitroplus 0.0100000000
## 375                                Nobilis 0.0015384615
## 376                            Nordcurrent 0.0000000000
## 377                           Nordic Games 0.0000000000
## 378                              NovaLogic 0.0000000000
## 379                            Number None 0.0000000000
## 380                                O-Games 0.0000000000
## 381                       O3 Entertainment 0.0000000000
## 382                                  Ocean 0.0300000000
## 383                          Office Create 0.0300000000
## 384                              On Demand 0.0000000000
## 385                              Ongakukan 0.0100000000
## 386                         Origin Systems 0.0000000000
## 387                                Otomate 0.0100000000
## 388                     Oxygen Interactive 0.0000000000
## 389                               P2 Games 0.0000000000
## 390            Pacific Century Cyber Works 0.0300000000
## 391                          Pack-In-Video 0.0550000000
## 392                           Pack In Soft 0.1100000000
## 393                                 Palcom 0.3100000000
## 394                       Panther Software 0.1200000000
## 395                                   Paon 0.0416666667
## 396                       Paon Corporation 0.0300000000
## 397                    Paradox Development 0.0000000000
## 398                    Paradox Interactive 0.0000000000
## 399                           Parker Bros. 0.0000000000
## 400          Performance Designed Products 0.0000000000
## 401                             Phantagram 0.0100000000
## 402                            Phantom EFX 0.0000000000
## 403                             Phenomedia 0.0000000000
## 404                          Phoenix Games 0.0000000000
## 405                                 Piacci 0.0100000000
## 406                               Pinnacle 0.0000000000
## 407                            Pioneer LDC 0.0800000000
## 408                                Play It 0.0000000000
## 409                 Playlogic Game Factory 0.0000000000
## 410                              Playmates 0.0000000000
## 411                               Playmore 0.0400000000
## 412                                  PlayV 0.0000000000
## 413                                 Plenty 0.0200000000
## 414                             PM Studios 0.0000000000
## 415                            Pony Canyon 0.0000000000
## 416                           PopCap Games 0.0000000000
## 417                         Popcorn Arcade 0.0000000000
## 418                        PopTop Software 0.0000000000
## 419                                    Pow 0.0500000000
## 420                                  PQube 0.0269230769
## 421                          Princess Soft 0.0233333333
## 422                              Prototype 0.0225925926
## 423                              Psygnosis 0.0225000000
## 424                                 Quelle 0.0000000000
## 425                                  Quest 0.7100000000
## 426                               Quinrose 0.0157142857
## 427                                Quintet 0.0200000000
## 428                          Rage Software 0.0000000000
## 429                             Rain Games 0.0000000000
## 430                              Rebellion 0.0000000000
## 431                 Rebellion Developments 0.0000000000
## 432                      RED Entertainment 0.0200000000
## 433                                Red Orb 0.0000000000
## 434                Red Storm Entertainment 0.0000000000
## 435                              RedOctane 0.0075000000
## 436                     Reef Entertainment 0.0000000000
## 437                           responDESIGN 0.0000000000
## 438                     Revolution (Japan) 0.0200000000
## 439                    Revolution Software 0.0000000000
## 440                      Rising Star Games 0.0294186047
## 441                          Riverhillsoft 0.0400000000
## 442                         Rocket Company 0.1070588235
## 443                             Rondomedia 0.0000000000
## 444                                    RTL 0.0000000000
## 445                                 Russel 0.0150000000
## 446                      Sammy Corporation 0.1736363636
## 447                                 Saurus 0.0000000000
## 448                        Scholastic Inc. 0.0000000000
## 449                                    SCi 0.0000000000
## 450                             Screenlife 0.1100000000
## 451                           SCS Software 0.0000000000
## 452                                  Sears 0.0000000000
## 453                                   Sega 0.0892488263
## 454                       Seta Corporation 0.0983333333
## 455                          Seventh Chord 0.0800000000
## 456                             Shogakukan 0.0880000000
## 457           Simon & Schuster Interactive 0.0000000000
## 458                   Slightly Mad Studios 0.0066666667
## 459                    Slitherine Software 0.0000000000
## 460                                    SNK 0.1127272727
## 461                           SNK Playmore 0.0311111111
## 462                                Societa 0.0400000000
## 463                               Sold Out 0.0000000000
## 464                                 Sonnet 0.0300000000
## 465            Sony Computer Entertainment 0.1084919473
## 466    Sony Computer Entertainment America 0.0000000000
## 467     Sony Computer Entertainment Europe 0.1666666667
## 468               Sony Music Entertainment 0.1400000000
## 469              Sony Online Entertainment 0.0000000000
## 470                        SouthPeak Games 0.0018918919
## 471                                  Spike 0.0572972973
## 472                                    SPS 0.0000000000
## 473                                 Square 0.4333333333
## 474                              Square EA 0.0000000000
## 475                            Square Enix 0.2140772532
## 476                             SquareSoft 0.7717307692
## 477                                    SSI 0.0000000000
## 478                        Stainless Games 0.0000000000
## 479                               Starfish 0.0100000000
## 480                         Starpath Corp. 0.0000000000
## 481                                  Sting 0.0166666667
## 482                       Storm City Games 0.0000000000
## 483                         Strategy First 0.0000000000
## 484                                Success 0.0115789474
## 485                             Summitsoft 0.0000000000
## 486                             Sunflowers 0.0000000000
## 487                    Sunrise Interactive 0.0425000000
## 488                                Sunsoft 0.0170000000
## 489                                 Sweets 0.0250000000
## 490                   Swing! Entertainment 0.0000000000
## 491                                 Syscom 0.0750000000
## 492                               System 3 0.0000000000
## 493               System 3 Arcade Software 0.0000000000
## 494                            System Soft 0.0125000000
## 495                               T&E Soft 0.1200000000
## 496                                  Taito 0.1126315789
## 497                                 Takara 0.1962500000
## 498                            Takara Tomy 0.0500000000
## 499                   Take-Two Interactive 0.0141162228
## 500                                 Takuyo 0.0100000000
## 501                              TalonSoft 0.0000000000
## 502                               TDK Core 0.0500000000
## 503                         TDK Mediactive 0.0000000000
## 504                        Team17 Software 0.0000000000
## 505              Technos Japan Corporation 0.0200000000
## 506                             TechnoSoft 0.0000000000
## 507                             Tecmo Koei 0.0864201183
## 508                              Telegames 0.0000000000
## 509                         Telltale Games 0.0012000000
## 510                                Telstar 0.0000000000
## 511                          Tetris Online 0.0600000000
## 512                                    TGL 0.0250000000
## 513                  The Adventure Company 0.0000000000
## 514                   The Learning Company 0.0000000000
## 515                                    THQ 0.0070069930
## 516                            Tigervision 0.0000000000
## 517                Time Warner Interactive 0.0000000000
## 518                                  Titus 0.0036842105
## 519                                 Tivola 0.0000000000
## 520                                   TOHO 0.1100000000
## 521                                  Tommo 0.0000000000
## 522                       Tomy Corporation 0.1177777778
## 523                    TopWare Interactive 0.0000000000
## 524                             Touchstone 0.0050000000
## 525                              Tradewest 0.0000000000
## 526                           Trion Worlds 0.0000000000
## 527                   Tripwire Interactive 0.0000000000
## 528                  Tru Blu Entertainment 0.0000000000
## 529                               Tryfirst 0.0300000000
## 530                                    TYO 0.0000000000
## 531                              Type-Moon 0.1000000000
## 532                              U.S. Gold 0.0000000000
## 533                                Ubisoft 0.0081433225
## 534                         Ubisoft Annecy 0.1628571429
## 535                            UEP Systems 0.2000000000
## 536                        UFO Interactive 0.0000000000
## 537                      UIG Entertainment 0.0000000000
## 538                            Ultravision 0.0000000000
## 539                        Universal Gamex 0.0000000000
## 540                  Universal Interactive 0.0104347826
## 541                                Unknown 0.0298522167
## 542                           Valcon Games 0.0000000000
## 543                               ValuSoft 0.0000000000
## 544                                  Valve 0.0200000000
## 545                         Valve Software 0.0033333333
## 546                                    Vap 0.0500000000
## 547                  Vatical Entertainment 0.0000000000
## 548                              Vic Tokai 0.0000000000
## 549                     Victor Interactive 0.0755555556
## 550                           Video System 0.0925000000
## 551                                  Views 0.0150000000
## 552                          Vir2L Studios 0.0000000000
## 553                     Virgin Interactive 0.1441935484
## 554                     Virtual Play Games 0.0000000000
## 555                                  Visco 0.0000000000
## 556                          Vivendi Games 0.0014024390
## 557                                Wanadoo 0.0120000000
## 558                                Warashi 0.0200000000
## 559                          Wargaming.net 0.0000000000
## 560 Warner Bros. Interactive Entertainment 0.0044827586
## 561                                   Warp 0.0700000000
## 562                WayForward Technologies 0.0000000000
## 563                       Westwood Studios 0.0000000000
## 564                White Park Bay Software 0.0000000000
## 565                     Wizard Video Games 0.0000000000
## 566                      Xicat Interactive 0.0000000000
## 567                     Xing Entertainment 0.1600000000
## 568                                Xplosiv 0.0000000000
## 569                               XS Games 0.0000000000
## 570                            Xseed Games 0.0925000000
## 571                       Yacht Club Games 0.0033333333
## 572                   Yamasa Entertainment 0.0200000000
## 573                                   Yeti 0.0218181818
## 574                                 Yuke's 0.0166666667
## 575                                Yumedia 0.0600000000
## 576                                 Zenrin 0.0300000000
## 577                 Zoo Digital Publishing 0.0013461538
## 578                              Zoo Games 0.0000000000
## 579                            Zushi Games 0.0005555556

DS, PS2 and PS are widely used in Japan. 2006 had the highest sales in japan, with 73.73 million units and sales were high during 2007-10. The sales have declined gradually further on. Role-playing is the widely played category in Japan. A few play action and sports. Nintendo, capcom, namcom bandai games, konami digital entertainment, sega, sony computer entertainment are the high selling producers.

aggregate(Other_Sales,by=list(Platform = Platform),sum)
##    Platform      x
## 1      2600   0.91
## 2       3DO   0.00
## 3       3DS  12.63
## 4        DC   0.27
## 5        DS  60.53
## 6        GB   8.20
## 7       GBA   7.73
## 8        GC   5.18
## 9       GEN   0.89
## 10       GG   0.00
## 11      N64   4.38
## 12      NES   5.31
## 13       NG   0.00
## 14       PC  24.86
## 15     PCFX   0.00
## 16       PS  40.91
## 17      PS2 193.44
## 18      PS3 141.93
## 19      PS4  43.36
## 20      PSP  42.19
## 21      PSV   8.45
## 22      SAT   0.07
## 23      SCD   0.05
## 24     SNES   3.22
## 25     TG16   0.00
## 26      Wii  80.61
## 27     WiiU   6.45
## 28       WS   0.00
## 29     X360  85.54
## 30       XB   8.72
## 31     XOne  11.92
aggregate(Other_Sales,by=list(Platform = Platform),mean)
##    Platform            x
## 1      2600 0.0068421053
## 2       3DO 0.0000000000
## 3       3DS 0.0248133595
## 4        DC 0.0051923077
## 5        DS 0.0279842811
## 6        GB 0.0836734694
## 7       GBA 0.0094038929
## 8        GC 0.0093165468
## 9       GEN 0.0329629630
## 10       GG 0.0000000000
## 11      N64 0.0137304075
## 12      NES 0.0541836735
## 13       NG 0.0000000000
## 14       PC 0.0258958333
## 15     PCFX 0.0000000000
## 16       PS 0.0342056856
## 17      PS2 0.0895141138
## 18      PS3 0.1067945824
## 19      PS4 0.1290476190
## 20      PSP 0.0347815334
## 21      PSV 0.0204600484
## 22      SAT 0.0004046243
## 23      SCD 0.0083333333
## 24     SNES 0.0134728033
## 25     TG16 0.0000000000
## 26      Wii 0.0608377358
## 27     WiiU 0.0451048951
## 28       WS 0.0000000000
## 29     X360 0.0676205534
## 30       XB 0.0105825243
## 31     XOne 0.0559624413
aggregate(Other_Sales,by=list(Year = Year),sum)
##    Year     x
## 1  1980  0.12
## 2  1981  0.32
## 3  1982  0.31
## 4  1983  0.14
## 5  1984  0.70
## 6  1985  0.92
## 7  1986  1.93
## 8  1987  0.20
## 9  1988  0.99
## 10 1989  1.50
## 11 1990  1.40
## 12 1991  0.74
## 13 1992  1.65
## 14 1993  0.89
## 15 1994  2.20
## 16 1995  2.64
## 17 1996  7.69
## 18 1997  9.13
## 19 1998 11.03
## 20 1999 10.05
## 21 2000 11.62
## 22 2001 22.76
## 23 2002 27.28
## 24 2003 26.01
## 25 2004 47.29
## 26 2005 40.58
## 27 2006 54.43
## 28 2007 77.60
## 29 2008 82.39
## 30 2009 74.77
## 31 2010 59.90
## 32 2011 54.39
## 33 2012 37.82
## 34 2013 39.82
## 35 2014 40.02
## 36 2015 30.01
## 37 2016  7.75
## 38 2017  0.00
## 39 2020  0.02
## 40  N/A  8.74
aggregate(Other_Sales,by=list(Year = Year),mean)
##    Year           x
## 1  1980 0.013333333
## 2  1981 0.006956522
## 3  1982 0.008611111
## 4  1983 0.008235294
## 5  1984 0.050000000
## 6  1985 0.065714286
## 7  1986 0.091904762
## 8  1987 0.012500000
## 9  1988 0.066000000
## 10 1989 0.088235294
## 11 1990 0.087500000
## 12 1991 0.018048780
## 13 1992 0.038372093
## 14 1993 0.014833333
## 15 1994 0.018181818
## 16 1995 0.012054795
## 17 1996 0.029239544
## 18 1997 0.031591696
## 19 1998 0.029102902
## 20 1999 0.029733728
## 21 2000 0.033295129
## 22 2001 0.047219917
## 23 2002 0.032907117
## 24 2003 0.033561290
## 25 2004 0.061979030
## 26 2005 0.043124336
## 27 2006 0.053998016
## 28 2007 0.064559068
## 29 2008 0.057696078
## 30 2009 0.052250175
## 31 2010 0.047577442
## 32 2011 0.047752414
## 33 2012 0.057564688
## 34 2013 0.072930403
## 35 2014 0.068762887
## 36 2015 0.048876221
## 37 2016 0.022529070
## 38 2017 0.000000000
## 39 2020 0.020000000
## 40  N/A 0.032250923
aggregate(Other_Sales,by=list(Genre = Genre),sum)
##           Genre      x
## 1        Action 187.38
## 2     Adventure  16.81
## 3      Fighting  36.68
## 4          Misc  75.32
## 5      Platform  51.59
## 6        Puzzle  12.55
## 7        Racing  77.27
## 8  Role-Playing  59.61
## 9       Shooter 102.69
## 10   Simulation  31.52
## 11       Sports 134.97
## 12     Strategy  11.36
aggregate(Other_Sales,by=list(Genre = Genre),mean)
##           Genre          x
## 1        Action 0.05650784
## 2     Adventure 0.01307154
## 3      Fighting 0.04325472
## 4          Misc 0.04331225
## 5      Platform 0.05822799
## 6        Puzzle 0.02156357
## 7        Racing 0.06186549
## 8  Role-Playing 0.04006048
## 9       Shooter 0.07838931
## 10   Simulation 0.03635525
## 11       Sports 0.05753197
## 12     Strategy 0.01668135
aggregate(Other_Sales,by=list(Publisher = Publisher),sum)
##                                  Publisher      x
## 1                          10TACLE Studios   0.00
## 2                               1C Company   0.02
## 3             20th Century Fox Video Games   0.01
## 4                                   2D Boy   0.01
## 5                                      3DO   0.63
## 6                                  49Games   0.00
## 7                                505 Games   5.44
## 8                                      5pb   0.00
## 9                                 7G//AMES   0.00
## 10                              989 Sports   0.02
## 11                             989 Studios   0.67
## 12                                Abylight   0.01
## 13                   Acclaim Entertainment   3.37
## 14                                Accolade   0.07
## 15                             Ackkstudios   0.01
## 16                                 Acquire   0.03
## 17                              Activision  75.34
## 18                     Activision Blizzard   0.04
## 19                        Activision Value   0.57
## 20                        Adeline Software   0.01
## 21                                Aerosoft   0.00
## 22                  Agatsuma Entertainment   0.01
## 23                                  Agetec   0.19
## 24                             Aksys Games   0.05
## 25                    Alawar Entertainment   0.01
## 26                               Alchemist   0.15
## 27                    Alternative Software   0.03
## 28                                  Altron   0.00
## 29                                  Alvion   0.00
## 30                      American Softworks   0.02
## 31                           Angel Studios   0.00
## 32                         Answer Software   0.01
## 33                          AQ Interactive   0.05
## 34                               Aqua Plus   0.02
## 35                                   Aques   0.01
## 36                        Arc System Works   0.12
## 37                     Arena Entertainment   0.14
## 38                                    Aria   0.00
## 39                                   Arika   0.01
## 40                                 ArtDink   0.04
## 41                              Aruze Corp   0.08
## 42                               ASC Games   0.13
## 43                   Ascaron Entertainment   0.00
## 44              Ascaron Entertainment GmbH   0.02
## 45                     ASCII Entertainment   0.36
## 46                       ASCII Media Works   0.00
## 47                                  Asgard   0.00
## 48                                     ASK   0.00
## 49                 Asmik Ace Entertainment   0.01
## 50                              Asmik Corp   0.00
## 51                                   Aspyr   0.05
## 52                                Astragon   0.06
## 53                    Asylum Entertainment   0.06
## 54                                   Atari   9.01
## 55                                  Athena   0.00
## 56                                   Atlus   0.77
## 57                      Avalon Interactive   0.03
## 58                               Avanquest   0.25
## 59                      Avanquest Software   0.17
## 60                                   Axela   0.02
## 61                      BAM! Entertainment   0.24
## 62                               Banpresto   0.36
## 63                                 Benesse   0.00
## 64                                Berkeley   0.00
## 65                      Bethesda Softworks  10.16
## 66                     Big Ben Interactive   0.07
## 67                          Big Fish Games   0.00
## 68                      Bigben Interactive   0.13
## 69                       bitComposer Games   0.08
## 70                        Black Bean Games   0.41
## 71                       Black Label Games   0.15
## 72                Blast! Entertainment Ltd   0.03
## 73                               Blue Byte   0.00
## 74           BMG Interactive Entertainment   0.07
## 75                     Bohemia Interactive   0.02
## 76                                    Bomb   0.00
## 77                                Boost On   0.00
## 78                                     BPS   0.00
## 79                     Brash Entertainment   0.11
## 80                                Broccoli   0.00
## 81                               BushiRoad   0.00
## 82                                  Capcom  14.84
## 83                                    Cave   0.01
## 84                         CBS Electronics   0.00
## 85                                     CCP   0.02
## 86              CDV Software Entertainment   0.01
## 87                                ChunSoft   0.09
## 88                        City Interactive   0.53
## 89        Cloud Imperium Games Corporation   0.00
## 90                          Coconuts Japan   0.00
## 91                             Codemasters   6.30
## 92                      Codemasters Online   0.00
## 93                       CokeM Interactive   0.02
## 94                                  Coleco   0.03
## 95                                 Comfort   0.00
## 96                                Commseed   0.00
## 97                                 Compile   0.10
## 98                           Compile Heart   0.07
## 99                Conspiracy Entertainment   0.04
## 100                       Core Design Ltd.   0.02
## 101                           CPG Products   0.01
## 102                    Crave Entertainment   0.67
## 103                          Creative Core   0.00
## 104                            Crimson Cow   0.01
## 105                       Crystal Dynamics   0.12
## 106                                CTO SpA   0.06
## 107                          Culture Brain   0.00
## 108                     Culture Publishers   0.01
## 109                             CyberFront   0.00
## 110                                Cygames   0.00
## 111                            D3Publisher   2.88
## 112                               Daedalic   0.06
## 113                 Daedalic Entertainment   0.01
## 114                                  Daito   0.00
## 115                               Data Age   0.00
## 116                Data Design Interactive   0.02
## 117                              Data East   0.00
## 118                         Datam Polystar   0.00
## 119                            Deep Silver   2.88
## 120              Destination Software, Inc   0.03
## 121                              Destineer   0.26
## 122                            Detn8 Games   0.02
## 123                       Devolver Digital   0.00
## 124                        DHM Interactive   0.01
## 125                               DigiCube   0.00
## 126             Disney Interactive Studios  13.18
## 127                                 Dorart   0.00
## 128                        dramatic create   0.00
## 129               DreamCatcher Interactive   0.07
## 130                 DreamWorks Interactive   0.01
## 131                              DSI Games   0.01
## 132                      DTP Entertainment   0.49
## 133               Dusenberry Martin Racing   0.01
## 134                               EA Games   0.02
## 135                       Easy Interactive   0.00
## 136                                  Ecole   0.00
## 137                                   Edia   0.00
## 138                      Eidos Interactive   8.02
## 139                        Electronic Arts 129.77
## 140                 Electronic Arts Victor   0.03
## 141                                    Elf   0.00
## 142                                  Elite   0.00
## 143                     Empire Interactive   1.12
## 144                                 Encore   0.00
## 145                       Enix Corporation   0.27
## 146                      Enjoy Gaming ltd.   0.01
## 147                             Enterbrain   0.07
## 148              EON Digital Entertainment   0.00
## 149                             Epic Games   0.00
## 150                                  Epoch   0.06
## 151                                 Ertain   0.00
## 152                                    ESP   0.00
## 153                        Essential Games   0.00
## 154                        Evolution Games   0.00
## 155                          Evolved Games   0.03
## 156                   Excalibur Publishing   0.04
## 157                        Experience Inc.   0.00
## 158            Extreme Entertainment Group   0.00
## 159                     Falcom Corporation   0.03
## 160                                 Fields   0.00
## 161                       Flashpoint Games   0.00
## 162                            Flight-Plan   0.00
## 163                 Focus Home Interactive   1.04
## 164                       Focus Multimedia   0.00
## 165                                 fonfun   0.00
## 166                    Foreign Media Games   0.05
## 167                              Fortyfive   0.00
## 168                        Fox Interactive   0.43
## 169                          From Software   0.10
## 170                                   Fuji   0.00
## 171                           Funbox Media   0.06
## 172                                 Funcom   0.02
## 173                                FunSoft   0.01
## 174                                 Funsta   0.01
## 175                                  FuRyu   0.01
## 176                      FuRyu Corporation   0.01
## 177                                  G.Rev   0.00
## 178                                   Gaga   0.00
## 179                 Gainax Network Systems   0.01
## 180                                 Gakken   0.00
## 181                              Game Arts   0.00
## 182                           Game Factory   0.23
## 183                              Game Life   0.03
## 184                             Gamebridge   0.06
## 185                               Gamecock   0.00
## 186                               Gameloft   0.01
## 187                 GameMill Entertainment   0.09
## 188                                GameTek   0.00
## 189                Gathering of Developers   0.12
## 190                  General Entertainment   0.01
## 191                                  Genki   0.11
## 192                            Genterprise   0.00
## 193                             Ghostlight   0.22
## 194                                   Giga   0.00
## 195                                 Giza10   0.00
## 196                                  Glams   0.00
## 197                 Global A Entertainment   0.01
## 198                            Global Star   0.63
## 199                            GN Software   0.00
## 200                                    GOA   0.00
## 201                           Gotham Games   0.22
## 202                               Graffiti   0.01
## 203                       Grand Prix Games   0.00
## 204                 Graphsim Entertainment   0.00
## 205                Gremlin Interactive Ltd   0.05
## 206                  Griffin International   0.01
## 207                           Groove Games   0.00
## 208                                    GSP   0.37
## 209                         GT Interactive   1.14
## 210                                 GungHo   0.11
## 211                                   Gust   0.05
## 212                              Hackberry   0.00
## 213                         HAL Laboratory   0.00
## 214                    Hamster Corporation   0.02
## 215                               Happinet   0.00
## 216                 Harmonix Music Systems   0.11
## 217                     Hasbro Interactive   0.64
## 218                      Havas Interactive   0.02
## 219                           Headup Games   0.00
## 220                           Hearty Robin   0.01
## 221                                   Hect   0.00
## 222                            Hello Games   0.26
## 223                        Her Interactive   0.00
## 224                        Hip Interactive   0.00
## 225                        HMH Interactive   0.02
## 226           Home Entertainment Suppliers   0.12
## 227                   Hudson Entertainment   0.10
## 228                            Hudson Soft   0.32
## 229                    Human Entertainment   0.10
## 230                                  HuneX   0.00
## 231                    Iceberg Interactive   0.00
## 232                            id Software   0.00
## 233                           Idea Factory   0.10
## 234             Idea Factory International   0.09
## 235                           IE Institute   0.00
## 236                 Ignition Entertainment   0.59
## 237                     Illusion Softworks   0.09
## 238                                 Imadio   0.00
## 239                            Image Epoch   0.00
## 240                        imageepoch Inc.   0.00
## 241                             Imageworks   0.00
## 242                                 Imagic   0.04
## 243                              Imagineer   0.00
## 244                                   Imax   0.00
## 245                            Indie Games   0.02
## 246                             Infogrames   0.85
## 247                        Insomniac Games   0.01
## 248                           Interchannel   0.00
## 249                     Interchannel-Holon   0.00
## 250                              Intergrow   0.00
## 251                              Interplay   0.48
## 252                  Interplay Productions   0.01
## 253             Interworks Unlimited, Inc.   0.00
## 254                           Inti Creates   0.00
## 255                  Introversion Software   0.00
## 256                   inXile Entertainment   0.01
## 257              Irem Software Engineering   0.01
## 258                       ITT Family Games   0.00
## 259                              Ivolgamus   0.00
## 260                                   iWin   0.01
## 261                      Jack of All Games   0.01
## 262                                 Jaleco   0.10
## 263                     Jester Interactive   0.14
## 264                                Jorudan   0.02
## 265                     JoWood Productions   0.14
## 266                            Just Flight   0.01
## 267                                    JVC   0.07
## 268                         Kadokawa Games   0.00
## 269                        Kadokawa Shoten   0.07
## 270                            Kaga Create   0.00
## 271                          Kalypso Media   0.25
## 272                                  Kamui   0.00
## 273                            Kando Games   0.00
## 274                    Karin Entertainment   0.00
## 275                                  Kemco   0.04
## 276                                    KID   0.00
## 277                           Kids Station   0.00
## 278                           King Records   0.00
## 279                    Knowledge Adventure   0.07
## 280                             Koch Media   0.82
## 281               Kokopeli Digital Studios   0.00
## 282           Konami Digital Entertainment  30.31
## 283                              Kool Kizz   0.00
## 284                                    KSS   0.00
## 285                                 Laguna   0.01
## 286                     Legacy Interactive   0.00
## 287                             LEGO Media   0.05
## 288                                Level 5   0.04
## 289                  Lexicon Entertainment   0.00
## 290                            Licensed 4U   0.00
## 291                 Lighthouse Interactive   0.00
## 292                           Liquid Games   0.00
## 293                           Little Orbit   0.16
## 294                                  Locus   0.00
## 295                              LSP Games   0.01
## 296                              LucasArts  10.50
## 297                               Mad Catz   0.02
## 298                        Magical Company   0.03
## 299                                  Magix   0.04
## 300                  Majesco Entertainment   0.96
## 301                            Mamba Games   0.01
## 302                   Marvel Entertainment   0.00
## 303                Marvelous Entertainment   0.15
## 304                        Marvelous Games   0.00
## 305                  Marvelous Interactive   0.18
## 306                      Masque Publishing   0.00
## 307                           Mastertronic   0.13
## 308                                Mastiff   0.14
## 309                     Mattel Interactive   0.05
## 310                               Max Five   0.00
## 311                   Maximum Family Games   0.00
## 312                                  Maxis   0.19
## 313                      MC2 Entertainment   0.00
## 314                    Media Entertainment   0.00
## 315                          Media Factory   0.00
## 316                            Media Rings   0.00
## 317                            Media Works   0.00
## 318                             MediaQuest   0.00
## 319                           Men-A-Vision   0.01
## 320                     Mentor Interactive   0.07
## 321                          Mercury Games   0.02
## 322                            Merscom LLC   0.03
## 323                               Metro 3D   0.15
## 324                            Michaelsoft   0.00
## 325                            Micro Cabin   0.00
## 326                               Microids   0.01
## 327                             Microprose   0.16
## 328                 Microsoft Game Studios  18.56
## 329        Midas Interactive Entertainment   0.26
## 330                           Midway Games   5.74
## 331                              Milestone   0.00
## 332                        Milestone S.r.l   0.01
## 333                       Milestone S.r.l.   0.16
## 334                         Minato Station   0.00
## 335                              Mindscape   0.55
## 336                          Mirai Shounen   0.00
## 337                                 Misawa   0.00
## 338                                 Mitsui   0.00
## 339                              mixi, Inc   0.00
## 340                                MLB.com   0.00
## 341                                 Mojang   0.36
## 342               Monte Christo Multimedia   0.01
## 343                                   Moss   0.01
## 344                                    MTO   0.01
## 345                              MTV Games   2.03
## 346                   Mud Duck Productions   0.06
## 347                            Mumbo Jumbo   0.04
## 348                                  Mycom   0.00
## 349                           Myelin Media   0.01
## 350                               Mystique   0.01
## 351                                    N/A   0.67
## 352                     Namco Bandai Games  14.69
## 353                                Natsume   0.20
## 354                           Navarre Corp   0.00
## 355                             Naxat Soft   0.00
## 356                                    NCS   0.00
## 357                                 NCSoft   0.33
## 358                        NDA Productions   0.00
## 359                                    NEC   0.00
## 360                       NEC Interchannel   0.00
## 361                     Neko Entertainment   0.02
## 362                                NetRevo   0.00
## 363                                    New   0.02
## 364                    New World Computing   0.00
## 365                               NewKidCo   0.04
## 366                                  Nexon   0.00
## 367                             Nichibutsu   0.00
## 368               Nihon Falcom Corporation   0.04
## 369                               Nintendo  95.33
## 370                           Nippon Amuse   0.00
## 371                        Nippon Columbia   0.00
## 372                   Nippon Ichi Software   1.35
## 373                         Nippon Telenet   0.00
## 374                              Nitroplus   0.00
## 375                                Nobilis   0.14
## 376                            Nordcurrent   0.05
## 377                           Nordic Games   0.51
## 378                              NovaLogic   0.07
## 379                            Number None   0.01
## 380                                O-Games   0.12
## 381                       O3 Entertainment   0.01
## 382                                  Ocean   0.11
## 383                          Office Create   0.00
## 384                              On Demand   0.01
## 385                              Ongakukan   0.00
## 386                         Origin Systems   0.01
## 387                                Otomate   0.00
## 388                     Oxygen Interactive   0.36
## 389                               P2 Games   0.04
## 390            Pacific Century Cyber Works   0.03
## 391                          Pack-In-Video   0.00
## 392                           Pack In Soft   0.06
## 393                                 Palcom   0.04
## 394                       Panther Software   0.01
## 395                                   Paon   0.00
## 396                       Paon Corporation   0.00
## 397                    Paradox Development   0.00
## 398                    Paradox Interactive   0.08
## 399                           Parker Bros.   0.05
## 400          Performance Designed Products   0.02
## 401                             Phantagram   0.00
## 402                            Phantom EFX   0.01
## 403                             Phenomedia   0.00
## 404                          Phoenix Games   0.00
## 405                                 Piacci   0.00
## 406                               Pinnacle   0.10
## 407                            Pioneer LDC   0.04
## 408                                Play It   0.55
## 409                 Playlogic Game Factory   0.11
## 410                              Playmates   0.02
## 411                               Playmore   0.00
## 412                                  PlayV   0.05
## 413                                 Plenty   0.00
## 414                             PM Studios   0.01
## 415                            Pony Canyon   0.00
## 416                           PopCap Games   0.12
## 417                         Popcorn Arcade   0.01
## 418                        PopTop Software   0.01
## 419                                    Pow   0.00
## 420                                  PQube   0.40
## 421                          Princess Soft   0.00
## 422                              Prototype   0.00
## 423                              Psygnosis   0.45
## 424                                 Quelle   0.01
## 425                                  Quest   0.00
## 426                               Quinrose   0.00
## 427                                Quintet   0.00
## 428                          Rage Software   0.13
## 429                             Rain Games   0.00
## 430                              Rebellion   0.01
## 431                 Rebellion Developments   0.04
## 432                      RED Entertainment   0.00
## 433                                Red Orb   0.10
## 434                Red Storm Entertainment   0.09
## 435                              RedOctane   0.91
## 436                     Reef Entertainment   0.03
## 437                           responDESIGN   0.01
## 438                     Revolution (Japan)   0.00
## 439                    Revolution Software   0.01
## 440                      Rising Star Games   1.22
## 441                          Riverhillsoft   0.00
## 442                         Rocket Company   0.00
## 443                             Rondomedia   0.26
## 444                                    RTL   0.20
## 445                                 Russel   0.00
## 446                      Sammy Corporation   0.10
## 447                                 Saurus   0.00
## 448                        Scholastic Inc.   0.18
## 449                                    SCi   0.26
## 450                             Screenlife   0.03
## 451                           SCS Software   0.02
## 452                                  Sears   0.00
## 453                                   Sega  24.52
## 454                       Seta Corporation   0.04
## 455                          Seventh Chord   0.00
## 456                             Shogakukan   0.00
## 457           Simon & Schuster Interactive   0.00
## 458                   Slightly Mad Studios   0.18
## 459                    Slitherine Software   0.03
## 460                                    SNK   0.04
## 461                           SNK Playmore   0.03
## 462                                Societa   0.00
## 463                               Sold Out   0.00
## 464                                 Sonnet   0.00
## 465            Sony Computer Entertainment  80.45
## 466    Sony Computer Entertainment America   0.13
## 467     Sony Computer Entertainment Europe   3.42
## 468               Sony Music Entertainment   0.00
## 469              Sony Online Entertainment   0.40
## 470                        SouthPeak Games   0.56
## 471                                  Spike   0.37
## 472                                    SPS   0.01
## 473                                 Square   0.23
## 474                              Square EA   0.05
## 475                            Square Enix  13.89
## 476                             SquareSoft   1.54
## 477                                    SSI   0.01
## 478                        Stainless Games   0.00
## 479                               Starfish   0.03
## 480                         Starpath Corp.   0.00
## 481                                  Sting   0.03
## 482                       Storm City Games   0.08
## 483                         Strategy First   0.00
## 484                                Success   0.09
## 485                             Summitsoft   0.00
## 486                             Sunflowers   0.01
## 487                    Sunrise Interactive   0.00
## 488                                Sunsoft   0.04
## 489                                 Sweets   0.00
## 490                   Swing! Entertainment   0.04
## 491                                 Syscom   0.02
## 492                               System 3   0.03
## 493               System 3 Arcade Software   0.20
## 494                            System Soft   0.00
## 495                               T&E Soft   0.00
## 496                                  Taito   0.19
## 497                                 Takara   0.08
## 498                            Takara Tomy   0.08
## 499                   Take-Two Interactive  55.24
## 500                                 Takuyo   0.00
## 501                              TalonSoft   0.06
## 502                               TDK Core   0.01
## 503                         TDK Mediactive   0.45
## 504                        Team17 Software   0.01
## 505              Technos Japan Corporation   0.00
## 506                             TechnoSoft   0.00
## 507                             Tecmo Koei   3.18
## 508                              Telegames   0.06
## 509                         Telltale Games   0.39
## 510                                Telstar   0.02
## 511                          Tetris Online   0.03
## 512                                    TGL   0.00
## 513                  The Adventure Company   0.05
## 514                   The Learning Company   0.00
## 515                                    THQ  32.14
## 516                            Tigervision   0.01
## 517                Time Warner Interactive   0.03
## 518                                  Titus   0.20
## 519                                 Tivola   0.02
## 520                                   TOHO   0.00
## 521                                  Tommo   0.00
## 522                       Tomy Corporation   0.25
## 523                    TopWare Interactive   0.02
## 524                             Touchstone   0.19
## 525                              Tradewest   0.01
## 526                           Trion Worlds   0.11
## 527                   Tripwire Interactive   0.02
## 528                  Tru Blu Entertainment   0.02
## 529                               Tryfirst   0.00
## 530                                    TYO   0.03
## 531                              Type-Moon   0.00
## 532                              U.S. Gold   0.02
## 533                                Ubisoft  50.26
## 534                         Ubisoft Annecy   0.27
## 535                            UEP Systems   0.08
## 536                        UFO Interactive   0.04
## 537                      UIG Entertainment   0.00
## 538                            Ultravision   0.00
## 539                        Universal Gamex   0.01
## 540                  Universal Interactive   1.75
## 541                                Unknown   2.48
## 542                           Valcon Games   0.03
## 543                               ValuSoft   0.04
## 544                                  Valve   0.25
## 545                         Valve Software   0.32
## 546                                    Vap   0.00
## 547                  Vatical Entertainment   0.01
## 548                              Vic Tokai   0.01
## 549                     Victor Interactive   0.02
## 550                           Video System   0.09
## 551                                  Views   0.00
## 552                          Vir2L Studios   0.01
## 553                     Virgin Interactive   3.03
## 554                     Virtual Play Games   0.00
## 555                                  Visco   0.00
## 556                          Vivendi Games   4.88
## 557                                Wanadoo   0.07
## 558                                Warashi   0.00
## 559                          Wargaming.net   0.06
## 560 Warner Bros. Interactive Entertainment  18.56
## 561                                   Warp   0.00
## 562                WayForward Technologies   0.01
## 563                       Westwood Studios   0.00
## 564                White Park Bay Software   0.01
## 565                     Wizard Video Games   0.01
## 566                      Xicat Interactive   0.01
## 567                     Xing Entertainment   0.02
## 568                                Xplosiv   0.17
## 569                               XS Games   0.11
## 570                            Xseed Games   0.07
## 571                       Yacht Club Games   0.03
## 572                   Yamasa Entertainment   0.00
## 573                                   Yeti   0.00
## 574                                 Yuke's   0.00
## 575                                Yumedia   0.00
## 576                                 Zenrin   0.00
## 577                 Zoo Digital Publishing   0.78
## 578                              Zoo Games   0.27
## 579                            Zushi Games   0.11
aggregate(Other_Sales,by=list(Publisher = Publisher),mean)
##                                  Publisher            x
## 1                          10TACLE Studios 0.0000000000
## 2                               1C Company 0.0066666667
## 3             20th Century Fox Video Games 0.0020000000
## 4                                   2D Boy 0.0100000000
## 5                                      3DO 0.0175000000
## 6                                  49Games 0.0000000000
## 7                                505 Games 0.0283333333
## 8                                      5pb 0.0000000000
## 9                                 7G//AMES 0.0000000000
## 10                              989 Sports 0.0200000000
## 11                             989 Studios 0.0478571429
## 12                                Abylight 0.0100000000
## 13                   Acclaim Entertainment 0.0183152174
## 14                                Accolade 0.0233333333
## 15                             Ackkstudios 0.0010000000
## 16                                 Acquire 0.0023076923
## 17                              Activision 0.0772717949
## 18                     Activision Blizzard 0.0400000000
## 19                        Activision Value 0.0196551724
## 20                        Adeline Software 0.0100000000
## 21                                Aerosoft 0.0000000000
## 22                  Agatsuma Entertainment 0.0033333333
## 23                                  Agetec 0.0237500000
## 24                             Aksys Games 0.0062500000
## 25                    Alawar Entertainment 0.0050000000
## 26                               Alchemist 0.0034883721
## 27                    Alternative Software 0.0050000000
## 28                                  Altron 0.0000000000
## 29                                  Alvion 0.0000000000
## 30                      American Softworks 0.0200000000
## 31                           Angel Studios 0.0000000000
## 32                         Answer Software 0.0100000000
## 33                          AQ Interactive 0.0100000000
## 34                               Aqua Plus 0.0008695652
## 35                                   Aques 0.0100000000
## 36                        Arc System Works 0.0046153846
## 37                     Arena Entertainment 0.0700000000
## 38                                    Aria 0.0000000000
## 39                                   Arika 0.0033333333
## 40                                 ArtDink 0.0044444444
## 41                              Aruze Corp 0.0266666667
## 42                               ASC Games 0.0433333333
## 43                   Ascaron Entertainment 0.0000000000
## 44              Ascaron Entertainment GmbH 0.0066666667
## 45                     ASCII Entertainment 0.0180000000
## 46                       ASCII Media Works 0.0000000000
## 47                                  Asgard 0.0000000000
## 48                                     ASK 0.0000000000
## 49                 Asmik Ace Entertainment 0.0033333333
## 50                              Asmik Corp 0.0000000000
## 51                                   Aspyr 0.0062500000
## 52                                Astragon 0.0100000000
## 53                    Asylum Entertainment 0.0100000000
## 54                                   Atari 0.0248209366
## 55                                  Athena 0.0000000000
## 56                                   Atlus 0.0114925373
## 57                      Avalon Interactive 0.0050000000
## 58                               Avanquest 0.0096153846
## 59                      Avanquest Software 0.0188888889
## 60                                   Axela 0.0200000000
## 61                      BAM! Entertainment 0.0068571429
## 62                               Banpresto 0.0049315068
## 63                                 Benesse 0.0000000000
## 64                                Berkeley 0.0000000000
## 65                      Bethesda Softworks 0.1430985915
## 66                     Big Ben Interactive 0.0100000000
## 67                          Big Fish Games 0.0000000000
## 68                      Bigben Interactive 0.0100000000
## 69                       bitComposer Games 0.0160000000
## 70                        Black Bean Games 0.0120588235
## 71                       Black Label Games 0.1500000000
## 72                Blast! Entertainment Ltd 0.0050000000
## 73                               Blue Byte 0.0000000000
## 74           BMG Interactive Entertainment 0.0100000000
## 75                     Bohemia Interactive 0.0200000000
## 76                                    Bomb 0.0000000000
## 77                                Boost On 0.0000000000
## 78                                     BPS 0.0000000000
## 79                     Brash Entertainment 0.0110000000
## 80                                Broccoli 0.0000000000
## 81                               BushiRoad 0.0000000000
## 82                                  Capcom 0.0389501312
## 83                                    Cave 0.0010000000
## 84                         CBS Electronics 0.0000000000
## 85                                     CCP 0.0200000000
## 86              CDV Software Entertainment 0.0016666667
## 87                                ChunSoft 0.0050000000
## 88                        City Interactive 0.0278947368
## 89        Cloud Imperium Games Corporation 0.0000000000
## 90                          Coconuts Japan 0.0000000000
## 91                             Codemasters 0.0414473684
## 92                      Codemasters Online 0.0000000000
## 93                       CokeM Interactive 0.0200000000
## 94                                  Coleco 0.0060000000
## 95                                 Comfort 0.0000000000
## 96                                Commseed 0.0000000000
## 97                                 Compile 0.0166666667
## 98                           Compile Heart 0.0035000000
## 99                Conspiracy Entertainment 0.0028571429
## 100                       Core Design Ltd. 0.0100000000
## 101                           CPG Products 0.0100000000
## 102                    Crave Entertainment 0.0094366197
## 103                          Creative Core 0.0000000000
## 104                            Crimson Cow 0.0050000000
## 105                       Crystal Dynamics 0.0240000000
## 106                                CTO SpA 0.0300000000
## 107                          Culture Brain 0.0000000000
## 108                     Culture Publishers 0.0100000000
## 109                             CyberFront 0.0000000000
## 110                                Cygames 0.0000000000
## 111                            D3Publisher 0.0156521739
## 112                               Daedalic 0.0200000000
## 113                 Daedalic Entertainment 0.0033333333
## 114                                  Daito 0.0000000000
## 115                               Data Age 0.0000000000
## 116                Data Design Interactive 0.0066666667
## 117                              Data East 0.0000000000
## 118                         Datam Polystar 0.0000000000
## 119                            Deep Silver 0.0236065574
## 120              Destination Software, Inc 0.0025000000
## 121                              Destineer 0.0057777778
## 122                            Detn8 Games 0.0200000000
## 123                       Devolver Digital 0.0000000000
## 124                        DHM Interactive 0.0033333333
## 125                               DigiCube 0.0000000000
## 126             Disney Interactive Studios 0.0604587156
## 127                                 Dorart 0.0000000000
## 128                        dramatic create 0.0000000000
## 129               DreamCatcher Interactive 0.0041176471
## 130                 DreamWorks Interactive 0.0100000000
## 131                              DSI Games 0.0016666667
## 132                      DTP Entertainment 0.0108888889
## 133               Dusenberry Martin Racing 0.0050000000
## 134                               EA Games 0.0200000000
## 135                       Easy Interactive 0.0000000000
## 136                                  Ecole 0.0000000000
## 137                                   Edia 0.0000000000
## 138                      Eidos Interactive 0.0405050505
## 139                        Electronic Arts 0.0960547742
## 140                 Electronic Arts Victor 0.0150000000
## 141                                    Elf 0.0000000000
## 142                                  Elite 0.0000000000
## 143                     Empire Interactive 0.0215384615
## 144                                 Encore 0.0000000000
## 145                       Enix Corporation 0.0090000000
## 146                      Enjoy Gaming ltd. 0.0100000000
## 147                             Enterbrain 0.0046666667
## 148              EON Digital Entertainment 0.0000000000
## 149                             Epic Games 0.0000000000
## 150                                  Epoch 0.0085714286
## 151                                 Ertain 0.0000000000
## 152                                    ESP 0.0000000000
## 153                        Essential Games 0.0000000000
## 154                        Evolution Games 0.0000000000
## 155                          Evolved Games 0.0037500000
## 156                   Excalibur Publishing 0.0100000000
## 157                        Experience Inc. 0.0000000000
## 158            Extreme Entertainment Group 0.0000000000
## 159                     Falcom Corporation 0.0018750000
## 160                                 Fields 0.0000000000
## 161                       Flashpoint Games 0.0000000000
## 162                            Flight-Plan 0.0000000000
## 163                 Focus Home Interactive 0.0179310345
## 164                       Focus Multimedia 0.0000000000
## 165                                 fonfun 0.0000000000
## 166                    Foreign Media Games 0.0055555556
## 167                              Fortyfive 0.0000000000
## 168                        Fox Interactive 0.0537500000
## 169                          From Software 0.0066666667
## 170                                   Fuji 0.0000000000
## 171                           Funbox Media 0.0100000000
## 172                                 Funcom 0.0100000000
## 173                                FunSoft 0.0100000000
## 174                                 Funsta 0.0025000000
## 175                                  FuRyu 0.0003703704
## 176                      FuRyu Corporation 0.0100000000
## 177                                  G.Rev 0.0000000000
## 178                                   Gaga 0.0000000000
## 179                 Gainax Network Systems 0.0050000000
## 180                                 Gakken 0.0000000000
## 181                              Game Arts 0.0000000000
## 182                           Game Factory 0.0071875000
## 183                              Game Life 0.0150000000
## 184                             Gamebridge 0.0300000000
## 185                               Gamecock 0.0000000000
## 186                               Gameloft 0.0100000000
## 187                 GameMill Entertainment 0.0112500000
## 188                                GameTek 0.0000000000
## 189                Gathering of Developers 0.0133333333
## 190                  General Entertainment 0.0100000000
## 191                                  Genki 0.0137500000
## 192                            Genterprise 0.0000000000
## 193                             Ghostlight 0.0146666667
## 194                                   Giga 0.0000000000
## 195                                 Giza10 0.0000000000
## 196                                  Glams 0.0000000000
## 197                 Global A Entertainment 0.0025000000
## 198                            Global Star 0.0161538462
## 199                            GN Software 0.0000000000
## 200                                    GOA 0.0000000000
## 201                           Gotham Games 0.0314285714
## 202                               Graffiti 0.0016666667
## 203                       Grand Prix Games 0.0000000000
## 204                 Graphsim Entertainment 0.0000000000
## 205                Gremlin Interactive Ltd 0.0055555556
## 206                  Griffin International 0.0100000000
## 207                           Groove Games 0.0000000000
## 208                                    GSP 0.0231250000
## 209                         GT Interactive 0.0253333333
## 210                                 GungHo 0.0084615385
## 211                                   Gust 0.0038461538
## 212                              Hackberry 0.0000000000
## 213                         HAL Laboratory 0.0000000000
## 214                    Hamster Corporation 0.0100000000
## 215                               Happinet 0.0000000000
## 216                 Harmonix Music Systems 0.0550000000
## 217                     Hasbro Interactive 0.0400000000
## 218                      Havas Interactive 0.0200000000
## 219                           Headup Games 0.0000000000
## 220                           Hearty Robin 0.0100000000
## 221                                   Hect 0.0000000000
## 222                            Hello Games 0.2600000000
## 223                        Her Interactive 0.0000000000
## 224                        Hip Interactive 0.0000000000
## 225                        HMH Interactive 0.0100000000
## 226           Home Entertainment Suppliers 0.0240000000
## 227                   Hudson Entertainment 0.0090909091
## 228                            Hudson Soft 0.0039506173
## 229                    Human Entertainment 0.0076923077
## 230                                  HuneX 0.0000000000
## 231                    Iceberg Interactive 0.0000000000
## 232                            id Software 0.0000000000
## 233                           Idea Factory 0.0007751938
## 234             Idea Factory International 0.0150000000
## 235                           IE Institute 0.0000000000
## 236                 Ignition Entertainment 0.0096721311
## 237                     Illusion Softworks 0.0900000000
## 238                                 Imadio 0.0000000000
## 239                            Image Epoch 0.0000000000
## 240                        imageepoch Inc. 0.0000000000
## 241                             Imageworks 0.0000000000
## 242                                 Imagic 0.0100000000
## 243                              Imagineer 0.0000000000
## 244                                   Imax 0.0000000000
## 245                            Indie Games 0.0066666667
## 246                             Infogrames 0.0137096774
## 247                        Insomniac Games 0.0033333333
## 248                           Interchannel 0.0000000000
## 249                     Interchannel-Holon 0.0000000000
## 250                              Intergrow 0.0000000000
## 251                              Interplay 0.0160000000
## 252                  Interplay Productions 0.0100000000
## 253             Interworks Unlimited, Inc. 0.0000000000
## 254                           Inti Creates 0.0000000000
## 255                  Introversion Software 0.0000000000
## 256                   inXile Entertainment 0.0100000000
## 257              Irem Software Engineering 0.0008333333
## 258                       ITT Family Games 0.0000000000
## 259                              Ivolgamus 0.0000000000
## 260                                   iWin 0.0100000000
## 261                      Jack of All Games 0.0033333333
## 262                                 Jaleco 0.0043478261
## 263                     Jester Interactive 0.0466666667
## 264                                Jorudan 0.0066666667
## 265                     JoWood Productions 0.0063636364
## 266                            Just Flight 0.0100000000
## 267                                    JVC 0.0087500000
## 268                         Kadokawa Games 0.0000000000
## 269                        Kadokawa Shoten 0.0014000000
## 270                            Kaga Create 0.0000000000
## 271                          Kalypso Media 0.0086206897
## 272                                  Kamui 0.0000000000
## 273                            Kando Games 0.0000000000
## 274                    Karin Entertainment 0.0000000000
## 275                                  Kemco 0.0019047619
## 276                                    KID 0.0000000000
## 277                           Kids Station 0.0000000000
## 278                           King Records 0.0000000000
## 279                    Knowledge Adventure 0.0175000000
## 280                             Koch Media 0.0482352941
## 281               Kokopeli Digital Studios 0.0000000000
## 282           Konami Digital Entertainment 0.0364302885
## 283                              Kool Kizz 0.0000000000
## 284                                    KSS 0.0000000000
## 285                                 Laguna 0.0025000000
## 286                     Legacy Interactive 0.0000000000
## 287                             LEGO Media 0.0071428571
## 288                                Level 5 0.0014814815
## 289                  Lexicon Entertainment 0.0000000000
## 290                            Licensed 4U 0.0000000000
## 291                 Lighthouse Interactive 0.0000000000
## 292                           Liquid Games 0.0000000000
## 293                           Little Orbit 0.0061538462
## 294                                  Locus 0.0000000000
## 295                              LSP Games 0.0025000000
## 296                              LucasArts 0.1166666667
## 297                               Mad Catz 0.0066666667
## 298                        Magical Company 0.0300000000
## 299                                  Magix 0.0200000000
## 300                  Majesco Entertainment 0.0104347826
## 301                            Mamba Games 0.0050000000
## 302                   Marvel Entertainment 0.0000000000
## 303                Marvelous Entertainment 0.0125000000
## 304                        Marvelous Games 0.0000000000
## 305                  Marvelous Interactive 0.0032142857
## 306                      Masque Publishing 0.0000000000
## 307                           Mastertronic 0.0100000000
## 308                                Mastiff 0.0087500000
## 309                     Mattel Interactive 0.0041666667
## 310                               Max Five 0.0000000000
## 311                   Maximum Family Games 0.0000000000
## 312                                  Maxis 0.0633333333
## 313                      MC2 Entertainment 0.0000000000
## 314                    Media Entertainment 0.0000000000
## 315                          Media Factory 0.0000000000
## 316                            Media Rings 0.0000000000
## 317                            Media Works 0.0000000000
## 318                             MediaQuest 0.0000000000
## 319                           Men-A-Vision 0.0100000000
## 320                     Mentor Interactive 0.0140000000
## 321                          Mercury Games 0.0050000000
## 322                            Merscom LLC 0.0300000000
## 323                               Metro 3D 0.0125000000
## 324                            Michaelsoft 0.0000000000
## 325                            Micro Cabin 0.0000000000
## 326                               Microids 0.0010000000
## 327                             Microprose 0.0266666667
## 328                 Microsoft Game Studios 0.0982010582
## 329        Midas Interactive Entertainment 0.0108333333
## 330                           Midway Games 0.0289898990
## 331                              Milestone 0.0000000000
## 332                        Milestone S.r.l 0.0050000000
## 333                       Milestone S.r.l. 0.0100000000
## 334                         Minato Station 0.0000000000
## 335                              Mindscape 0.0171875000
## 336                          Mirai Shounen 0.0000000000
## 337                                 Misawa 0.0000000000
## 338                                 Mitsui 0.0000000000
## 339                              mixi, Inc 0.0000000000
## 340                                MLB.com 0.0000000000
## 341                                 Mojang 0.0720000000
## 342               Monte Christo Multimedia 0.0100000000
## 343                                   Moss 0.0050000000
## 344                                    MTO 0.0012500000
## 345                              MTV Games 0.0495121951
## 346                   Mud Duck Productions 0.0200000000
## 347                            Mumbo Jumbo 0.0066666667
## 348                                  Mycom 0.0000000000
## 349                           Myelin Media 0.0033333333
## 350                               Mystique 0.0100000000
## 351                                    N/A 0.0115517241
## 352                     Namco Bandai Games 0.0157618026
## 353                                Natsume 0.0117647059
## 354                           Navarre Corp 0.0000000000
## 355                             Naxat Soft 0.0000000000
## 356                                    NCS 0.0000000000
## 357                                 NCSoft 0.0550000000
## 358                        NDA Productions 0.0000000000
## 359                                    NEC 0.0000000000
## 360                       NEC Interchannel 0.0000000000
## 361                     Neko Entertainment 0.0028571429
## 362                                NetRevo 0.0000000000
## 363                                    New 0.0200000000
## 364                    New World Computing 0.0000000000
## 365                               NewKidCo 0.0044444444
## 366                                  Nexon 0.0000000000
## 367                             Nichibutsu 0.0000000000
## 368               Nihon Falcom Corporation 0.0057142857
## 369                               Nintendo 0.1356045519
## 370                           Nippon Amuse 0.0000000000
## 371                        Nippon Columbia 0.0000000000
## 372                   Nippon Ichi Software 0.0128571429
## 373                         Nippon Telenet 0.0000000000
## 374                              Nitroplus 0.0000000000
## 375                                Nobilis 0.0107692308
## 376                            Nordcurrent 0.0100000000
## 377                           Nordic Games 0.0145714286
## 378                              NovaLogic 0.0233333333
## 379                            Number None 0.0100000000
## 380                                O-Games 0.0070588235
## 381                       O3 Entertainment 0.0033333333
## 382                                  Ocean 0.0078571429
## 383                          Office Create 0.0000000000
## 384                              On Demand 0.0100000000
## 385                              Ongakukan 0.0000000000
## 386                         Origin Systems 0.0100000000
## 387                                Otomate 0.0000000000
## 388                     Oxygen Interactive 0.0163636364
## 389                               P2 Games 0.0133333333
## 390            Pacific Century Cyber Works 0.0300000000
## 391                          Pack-In-Video 0.0000000000
## 392                           Pack In Soft 0.0600000000
## 393                                 Palcom 0.0400000000
## 394                       Panther Software 0.0100000000
## 395                                   Paon 0.0000000000
## 396                       Paon Corporation 0.0000000000
## 397                    Paradox Development 0.0000000000
## 398                    Paradox Interactive 0.0034782609
## 399                           Parker Bros. 0.0071428571
## 400          Performance Designed Products 0.0100000000
## 401                             Phantagram 0.0000000000
## 402                            Phantom EFX 0.0100000000
## 403                             Phenomedia 0.0000000000
## 404                          Phoenix Games 0.0000000000
## 405                                 Piacci 0.0000000000
## 406                               Pinnacle 0.0200000000
## 407                            Pioneer LDC 0.0100000000
## 408                                Play It 0.0392857143
## 409                 Playlogic Game Factory 0.0078571429
## 410                              Playmates 0.0200000000
## 411                               Playmore 0.0000000000
## 412                                  PlayV 0.0125000000
## 413                                 Plenty 0.0000000000
## 414                             PM Studios 0.0100000000
## 415                            Pony Canyon 0.0000000000
## 416                           PopCap Games 0.0080000000
## 417                         Popcorn Arcade 0.0010000000
## 418                        PopTop Software 0.0100000000
## 419                                    Pow 0.0000000000
## 420                                  PQube 0.0102564103
## 421                          Princess Soft 0.0000000000
## 422                              Prototype 0.0000000000
## 423                              Psygnosis 0.0140625000
## 424                                 Quelle 0.0100000000
## 425                                  Quest 0.0000000000
## 426                               Quinrose 0.0000000000
## 427                                Quintet 0.0000000000
## 428                          Rage Software 0.0185714286
## 429                             Rain Games 0.0000000000
## 430                              Rebellion 0.0050000000
## 431                 Rebellion Developments 0.0200000000
## 432                      RED Entertainment 0.0000000000
## 433                                Red Orb 0.0500000000
## 434                Red Storm Entertainment 0.0300000000
## 435                              RedOctane 0.2275000000
## 436                     Reef Entertainment 0.0042857143
## 437                           responDESIGN 0.0050000000
## 438                     Revolution (Japan) 0.0000000000
## 439                    Revolution Software 0.0050000000
## 440                      Rising Star Games 0.0141860465
## 441                          Riverhillsoft 0.0000000000
## 442                         Rocket Company 0.0000000000
## 443                             Rondomedia 0.0185714286
## 444                                    RTL 0.0250000000
## 445                                 Russel 0.0000000000
## 446                      Sammy Corporation 0.0090909091
## 447                                 Saurus 0.0000000000
## 448                        Scholastic Inc. 0.0180000000
## 449                                    SCi 0.0152941176
## 450                             Screenlife 0.0050000000
## 451                           SCS Software 0.0200000000
## 452                                  Sears 0.0000000000
## 453                                   Sega 0.0383724570
## 454                       Seta Corporation 0.0066666667
## 455                          Seventh Chord 0.0000000000
## 456                             Shogakukan 0.0000000000
## 457           Simon & Schuster Interactive 0.0000000000
## 458                   Slightly Mad Studios 0.0600000000
## 459                    Slitherine Software 0.0075000000
## 460                                    SNK 0.0018181818
## 461                           SNK Playmore 0.0016666667
## 462                                Societa 0.0000000000
## 463                               Sold Out 0.0000000000
## 464                                 Sonnet 0.0000000000
## 465            Sony Computer Entertainment 0.1177891654
## 466    Sony Computer Entertainment America 0.0433333333
## 467     Sony Computer Entertainment Europe 0.2280000000
## 468               Sony Music Entertainment 0.0000000000
## 469              Sony Online Entertainment 0.0500000000
## 470                        SouthPeak Games 0.0151351351
## 471                                  Spike 0.0100000000
## 472                                    SPS 0.0100000000
## 473                                 Square 0.0383333333
## 474                              Square EA 0.0500000000
## 475                            Square Enix 0.0596137339
## 476                             SquareSoft 0.0296153846
## 477                                    SSI 0.0100000000
## 478                        Stainless Games 0.0000000000
## 479                               Starfish 0.0030000000
## 480                         Starpath Corp. 0.0000000000
## 481                                  Sting 0.0033333333
## 482                       Storm City Games 0.0042105263
## 483                         Strategy First 0.0000000000
## 484                                Success 0.0047368421
## 485                             Summitsoft 0.0000000000
## 486                             Sunflowers 0.0100000000
## 487                    Sunrise Interactive 0.0000000000
## 488                                Sunsoft 0.0040000000
## 489                                 Sweets 0.0000000000
## 490                   Swing! Entertainment 0.0066666667
## 491                                 Syscom 0.0100000000
## 492                               System 3 0.0100000000
## 493               System 3 Arcade Software 0.0142857143
## 494                            System Soft 0.0000000000
## 495                               T&E Soft 0.0000000000
## 496                                  Taito 0.0100000000
## 497                                 Takara 0.0050000000
## 498                            Takara Tomy 0.0021621622
## 499                   Take-Two Interactive 0.1337530266
## 500                                 Takuyo 0.0000000000
## 501                              TalonSoft 0.0600000000
## 502                               TDK Core 0.0020000000
## 503                         TDK Mediactive 0.0125000000
## 504                        Team17 Software 0.0100000000
## 505              Technos Japan Corporation 0.0000000000
## 506                             TechnoSoft 0.0000000000
## 507                             Tecmo Koei 0.0094082840
## 508                              Telegames 0.0075000000
## 509                         Telltale Games 0.0156000000
## 510                                Telstar 0.0066666667
## 511                          Tetris Online 0.0300000000
## 512                                    TGL 0.0000000000
## 513                  The Adventure Company 0.0100000000
## 514                   The Learning Company 0.0000000000
## 515                                    THQ 0.0449510490
## 516                            Tigervision 0.0033333333
## 517                Time Warner Interactive 0.0060000000
## 518                                  Titus 0.0105263158
## 519                                 Tivola 0.0066666667
## 520                                   TOHO 0.0000000000
## 521                                  Tommo 0.0000000000
## 522                       Tomy Corporation 0.0138888889
## 523                    TopWare Interactive 0.0050000000
## 524                             Touchstone 0.0475000000
## 525                              Tradewest 0.0033333333
## 526                           Trion Worlds 0.0275000000
## 527                   Tripwire Interactive 0.0200000000
## 528                  Tru Blu Entertainment 0.0025000000
## 529                               Tryfirst 0.0000000000
## 530                                    TYO 0.0300000000
## 531                              Type-Moon 0.0000000000
## 532                              U.S. Gold 0.0050000000
## 533                                Ubisoft 0.0545711183
## 534                         Ubisoft Annecy 0.0192857143
## 535                            UEP Systems 0.0800000000
## 536                        UFO Interactive 0.0025000000
## 537                      UIG Entertainment 0.0000000000
## 538                            Ultravision 0.0000000000
## 539                        Universal Gamex 0.0100000000
## 540                  Universal Interactive 0.0760869565
## 541                                Unknown 0.0122167488
## 542                           Valcon Games 0.0037500000
## 543                               ValuSoft 0.0100000000
## 544                                  Valve 0.2500000000
## 545                         Valve Software 0.1066666667
## 546                                    Vap 0.0000000000
## 547                  Vatical Entertainment 0.0050000000
## 548                              Vic Tokai 0.0050000000
## 549                     Victor Interactive 0.0022222222
## 550                           Video System 0.0225000000
## 551                                  Views 0.0000000000
## 552                          Vir2L Studios 0.0033333333
## 553                     Virgin Interactive 0.0488709677
## 554                     Virtual Play Games 0.0000000000
## 555                                  Visco 0.0000000000
## 556                          Vivendi Games 0.0297560976
## 557                                Wanadoo 0.0140000000
## 558                                Warashi 0.0000000000
## 559                          Wargaming.net 0.0600000000
## 560 Warner Bros. Interactive Entertainment 0.0800000000
## 561                                   Warp 0.0000000000
## 562                WayForward Technologies 0.0100000000
## 563                       Westwood Studios 0.0000000000
## 564                White Park Bay Software 0.0100000000
## 565                     Wizard Video Games 0.0100000000
## 566                      Xicat Interactive 0.0033333333
## 567                     Xing Entertainment 0.0200000000
## 568                                Xplosiv 0.0170000000
## 569                               XS Games 0.0091666667
## 570                            Xseed Games 0.0175000000
## 571                       Yacht Club Games 0.0100000000
## 572                   Yamasa Entertainment 0.0000000000
## 573                                   Yeti 0.0000000000
## 574                                 Yuke's 0.0000000000
## 575                                Yumedia 0.0000000000
## 576                                 Zenrin 0.0000000000
## 577                 Zoo Digital Publishing 0.0075000000
## 578                              Zoo Games 0.0081818182
## 579                            Zushi Games 0.0061111111

DS, PS2, PS3 and Wii are widely used in the Other areas. 2007-2010 have the highest sales in other regions, taking it to an all time high of 82.39 million. The sales have declined further on. Action, shooter and sports are the widely played categories. Activision, Take-Two interactive, THQ, disney interactive studios, electronic arts, konami digital entertainment, Nintendo, Sony entertainment, Ubisoft are the high selling producers.

aggregate(Global_Sales,by=list(Platform = Platform),sum)
##    Platform       x
## 1      2600   97.08
## 2       3DO    0.10
## 3       3DS  247.46
## 4        DC   15.97
## 5        DS  822.49
## 6        GB  255.45
## 7       GBA  318.50
## 8        GC  199.36
## 9       GEN   28.36
## 10       GG    0.04
## 11      N64  218.88
## 12      NES  251.07
## 13       NG    1.44
## 14       PC  258.82
## 15     PCFX    0.03
## 16       PS  730.66
## 17      PS2 1255.64
## 18      PS3  957.84
## 19      PS4  278.10
## 20      PSP  296.28
## 21      PSV   61.93
## 22      SAT   33.59
## 23      SCD    1.87
## 24     SNES  200.05
## 25     TG16    0.16
## 26      Wii  926.71
## 27     WiiU   81.86
## 28       WS    1.42
## 29     X360  979.96
## 30       XB  258.26
## 31     XOne  141.06
aggregate(Global_Sales,by=list(Platform = Platform),mean)
##    Platform          x
## 1      2600 0.72992481
## 2       3DO 0.03333333
## 3       3DS 0.48616896
## 4        DC 0.30711538
## 5        DS 0.38025428
## 6        GB 2.60663265
## 7       GBA 0.38746959
## 8        GC 0.35856115
## 9       GEN 1.05037037
## 10       GG 0.04000000
## 11      N64 0.68614420
## 12      NES 2.56193878
## 13       NG 0.12000000
## 14       PC 0.26960417
## 15     PCFX 0.03000000
## 16       PS 0.61091973
## 17      PS2 0.58104581
## 18      PS3 0.72072235
## 19      PS4 0.82767857
## 20      PSP 0.24425392
## 21      PSV 0.14995157
## 22      SAT 0.19416185
## 23      SCD 0.31166667
## 24     SNES 0.83702929
## 25     TG16 0.08000000
## 26      Wii 0.69940377
## 27     WiiU 0.57244755
## 28       WS 0.23666667
## 29     X360 0.77467194
## 30       XB 0.31342233
## 31     XOne 0.66225352
aggregate(Global_Sales,by=list(Year = Year),sum)
##    Year      x
## 1  1980  11.38
## 2  1981  35.77
## 3  1982  28.86
## 4  1983  16.79
## 5  1984  50.36
## 6  1985  53.94
## 7  1986  37.07
## 8  1987  21.74
## 9  1988  47.22
## 10 1989  73.45
## 11 1990  49.39
## 12 1991  32.23
## 13 1992  76.16
## 14 1993  45.98
## 15 1994  79.17
## 16 1995  88.11
## 17 1996 199.15
## 18 1997 200.98
## 19 1998 256.47
## 20 1999 251.27
## 21 2000 201.56
## 22 2001 331.47
## 23 2002 395.52
## 24 2003 357.85
## 25 2004 419.31
## 26 2005 459.94
## 27 2006 521.04
## 28 2007 611.13
## 29 2008 678.90
## 30 2009 667.30
## 31 2010 600.45
## 32 2011 515.99
## 33 2012 363.54
## 34 2013 368.11
## 35 2014 337.05
## 36 2015 264.44
## 37 2016  70.93
## 38 2017   0.05
## 39 2020   0.29
## 40  N/A 100.08
aggregate(Global_Sales,by=list(Year = Year),mean)
##    Year          x
## 1  1980 1.26444444
## 2  1981 0.77760870
## 3  1982 0.80166667
## 4  1983 0.98764706
## 5  1984 3.59714286
## 6  1985 3.85285714
## 7  1986 1.76523810
## 8  1987 1.35875000
## 9  1988 3.14800000
## 10 1989 4.32058824
## 11 1990 3.08687500
## 12 1991 0.78609756
## 13 1992 1.77116279
## 14 1993 0.76633333
## 15 1994 0.65429752
## 16 1995 0.40232877
## 17 1996 0.75722433
## 18 1997 0.69543253
## 19 1998 0.67670185
## 20 1999 0.74340237
## 21 2000 0.57753582
## 22 2001 0.68769710
## 23 2002 0.47710495
## 24 2003 0.46174194
## 25 2004 0.54955439
## 26 2005 0.48877790
## 27 2006 0.51690476
## 28 2007 0.50842762
## 29 2008 0.47542017
## 30 2009 0.46631726
## 31 2010 0.47692613
## 32 2011 0.45302019
## 33 2012 0.55333333
## 34 2013 0.67419414
## 35 2014 0.57912371
## 36 2015 0.43068404
## 37 2016 0.20619186
## 38 2017 0.01666667
## 39 2020 0.29000000
## 40  N/A 0.36929889
aggregate(Global_Sales,by=list(Genre = Genre),sum)
##           Genre       x
## 1        Action 1751.18
## 2     Adventure  239.04
## 3      Fighting  448.91
## 4          Misc  809.96
## 5      Platform  831.37
## 6        Puzzle  244.95
## 7        Racing  732.04
## 8  Role-Playing  927.37
## 9       Shooter 1037.37
## 10   Simulation  392.20
## 11       Sports 1330.93
## 12     Strategy  175.12
aggregate(Global_Sales,by=list(Genre = Genre),mean)
##           Genre         x
## 1        Action 0.5281001
## 2     Adventure 0.1858787
## 3      Fighting 0.5293750
## 4          Misc 0.4657619
## 5      Platform 0.9383409
## 6        Puzzle 0.4208763
## 7        Racing 0.5861009
## 8  Role-Playing 0.6232325
## 9       Shooter 0.7918855
## 10   Simulation 0.4523645
## 11       Sports 0.5673188
## 12     Strategy 0.2571512
aggregate(Global_Sales,by=list(Publisher = Publisher),sum)
##                                  Publisher       x
## 1                          10TACLE Studios    0.11
## 2                               1C Company    0.10
## 3             20th Century Fox Video Games    1.94
## 4                                   2D Boy    0.04
## 5                                      3DO   10.12
## 6                                  49Games    0.04
## 7                                505 Games   55.91
## 8                                      5pb    1.63
## 9                                 7G//AMES    0.08
## 10                              989 Sports    0.38
## 11                             989 Studios   13.32
## 12                                Abylight    0.08
## 13                   Acclaim Entertainment   64.14
## 14                                Accolade    1.68
## 15                             Ackkstudios    0.84
## 16                                 Acquire    1.07
## 17                              Activision  727.46
## 18                     Activision Blizzard    0.48
## 19                        Activision Value    6.96
## 20                        Adeline Software    0.17
## 21                                Aerosoft    0.03
## 22                  Agatsuma Entertainment    0.31
## 23                                  Agetec    1.94
## 24                             Aksys Games    0.44
## 25                    Alawar Entertainment    0.05
## 26                               Alchemist    2.63
## 27                    Alternative Software    0.20
## 28                                  Altron    0.07
## 29                                  Alvion    0.04
## 30                      American Softworks    0.23
## 31                           Angel Studios    0.44
## 32                         Answer Software    0.50
## 33                          AQ Interactive    0.53
## 34                               Aqua Plus    1.25
## 35                                   Aques    0.16
## 36                        Arc System Works    1.48
## 37                     Arena Entertainment    4.72
## 38                                    Aria    0.07
## 39                                   Arika    0.09
## 40                                 ArtDink    0.73
## 41                              Aruze Corp    1.18
## 42                               ASC Games    2.02
## 43                   Ascaron Entertainment    0.01
## 44              Ascaron Entertainment GmbH    0.11
## 45                     ASCII Entertainment   10.89
## 46                       ASCII Media Works    0.27
## 47                                  Asgard    0.25
## 48                                     ASK    0.03
## 49                 Asmik Ace Entertainment    0.23
## 50                              Asmik Corp    0.17
## 51                                   Aspyr    0.62
## 52                                Astragon    0.64
## 53                    Asylum Entertainment    0.59
## 54                                   Atari  157.22
## 55                                  Athena    0.09
## 56                                   Atlus   12.74
## 57                      Avalon Interactive    0.48
## 58                               Avanquest    3.00
## 59                      Avanquest Software    1.69
## 60                                   Axela    0.25
## 61                      BAM! Entertainment    4.95
## 62                               Banpresto   17.40
## 63                                 Benesse    0.33
## 64                                Berkeley    0.03
## 65                      Bethesda Softworks   82.14
## 66                     Big Ben Interactive    1.00
## 67                          Big Fish Games    0.05
## 68                      Bigben Interactive    0.84
## 69                       bitComposer Games    0.41
## 70                        Black Bean Games    3.29
## 71                       Black Label Games    1.20
## 72                Blast! Entertainment Ltd    0.38
## 73                               Blue Byte    0.03
## 74           BMG Interactive Entertainment    1.18
## 75                     Bohemia Interactive    0.12
## 76                                    Bomb    0.22
## 77                                Boost On    0.01
## 78                                     BPS    0.52
## 79                     Brash Entertainment    1.23
## 80                                Broccoli    0.96
## 81                               BushiRoad    0.03
## 82                                  Capcom  200.89
## 83                                    Cave    0.33
## 84                         CBS Electronics    0.31
## 85                                     CCP    0.22
## 86              CDV Software Entertainment    0.20
## 87                                ChunSoft    4.07
## 88                        City Interactive    4.61
## 89        Cloud Imperium Games Corporation    0.08
## 90                          Coconuts Japan    0.07
## 91                             Codemasters   47.87
## 92                      Codemasters Online    0.02
## 93                       CokeM Interactive    0.31
## 94                                  Coleco    3.06
## 95                                 Comfort    0.15
## 96                                Commseed    0.01
## 97                                 Compile    2.46
## 98                           Compile Heart    1.37
## 99                Conspiracy Entertainment    0.84
## 100                       Core Design Ltd.    0.29
## 101                           CPG Products    0.54
## 102                    Crave Entertainment    9.93
## 103                          Creative Core    0.10
## 104                            Crimson Cow    0.08
## 105                       Crystal Dynamics    1.71
## 106                                CTO SpA    0.90
## 107                          Culture Brain    0.27
## 108                     Culture Publishers    0.09
## 109                             CyberFront    0.27
## 110                                Cygames    0.03
## 111                            D3Publisher   24.13
## 112                               Daedalic    0.28
## 113                 Daedalic Entertainment    0.14
## 114                                  Daito    0.23
## 115                               Data Age    0.71
## 116                Data Design Interactive    0.29
## 117                              Data East    0.15
## 118                         Datam Polystar    0.03
## 119                            Deep Silver   25.67
## 120              Destination Software, Inc    0.88
## 121                              Destineer    4.36
## 122                            Detn8 Games    0.23
## 123                       Devolver Digital    0.04
## 124                        DHM Interactive    0.18
## 125                               DigiCube    0.06
## 126             Disney Interactive Studios  119.96
## 127                                 Dorart    0.03
## 128                        dramatic create    0.11
## 129               DreamCatcher Interactive    0.95
## 130                 DreamWorks Interactive    0.13
## 131                              DSI Games    0.35
## 132                      DTP Entertainment    3.59
## 133               Dusenberry Martin Racing    0.05
## 134                               EA Games    0.15
## 135                       Easy Interactive    0.05
## 136                                  Ecole    0.06
## 137                                   Edia    0.09
## 138                      Eidos Interactive   98.98
## 139                        Electronic Arts 1110.32
## 140                 Electronic Arts Victor    0.42
## 141                                    Elf    0.64
## 142                                  Elite    0.07
## 143                     Empire Interactive   11.29
## 144                                 Encore    0.07
## 145                       Enix Corporation   33.74
## 146                      Enjoy Gaming ltd.    0.10
## 147                             Enterbrain    2.23
## 148              EON Digital Entertainment    0.01
## 149                             Epic Games    0.01
## 150                                  Epoch    1.05
## 151                                 Ertain    0.05
## 152                                    ESP    0.59
## 153                        Essential Games    0.23
## 154                        Evolution Games    0.07
## 155                          Evolved Games    0.32
## 156                   Excalibur Publishing    0.28
## 157                        Experience Inc.    0.06
## 158            Extreme Entertainment Group    0.03
## 159                     Falcom Corporation    1.21
## 160                                 Fields    0.03
## 161                       Flashpoint Games    0.08
## 162                            Flight-Plan    0.12
## 163                 Focus Home Interactive    7.51
## 164                       Focus Multimedia    0.05
## 165                                 fonfun    0.02
## 166                    Foreign Media Games    0.63
## 167                              Fortyfive    0.06
## 168                        Fox Interactive    7.39
## 169                          From Software    1.63
## 170                                   Fuji    0.03
## 171                           Funbox Media    0.91
## 172                                 Funcom    0.20
## 173                                FunSoft    0.12
## 174                                 Funsta    0.20
## 175                                  FuRyu    1.32
## 176                      FuRyu Corporation    0.03
## 177                                  G.Rev    0.04
## 178                                   Gaga    0.02
## 179                 Gainax Network Systems    0.16
## 180                                 Gakken    0.04
## 181                              Game Arts    0.14
## 182                           Game Factory    3.79
## 183                              Game Life    0.30
## 184                             Gamebridge    0.73
## 185                               Gamecock    0.20
## 186                               Gameloft    0.11
## 187                 GameMill Entertainment    1.38
## 188                                GameTek    0.10
## 189                Gathering of Developers    1.19
## 190                  General Entertainment    0.14
## 191                                  Genki    1.46
## 192                            Genterprise    0.01
## 193                             Ghostlight    2.79
## 194                                   Giga    0.02
## 195                                 Giza10    0.02
## 196                                  Glams    0.08
## 197                 Global A Entertainment    0.15
## 198                            Global Star    7.65
## 199                            GN Software    0.05
## 200                                    GOA    0.02
## 201                           Gotham Games    3.72
## 202                               Graffiti    0.38
## 203                       Grand Prix Games    0.06
## 204                 Graphsim Entertainment    0.02
## 205                Gremlin Interactive Ltd    1.10
## 206                  Griffin International    0.09
## 207                           Groove Games    0.09
## 208                                    GSP    3.69
## 209                         GT Interactive   25.23
## 210                                 GungHo    3.15
## 211                                   Gust    1.10
## 212                              Hackberry    0.31
## 213                         HAL Laboratory    0.06
## 214                    Hamster Corporation    0.30
## 215                               Happinet    0.18
## 216                 Harmonix Music Systems    0.80
## 217                     Hasbro Interactive   15.22
## 218                      Havas Interactive    0.13
## 219                           Headup Games    0.03
## 220                           Hearty Robin    0.09
## 221                                   Hect    0.50
## 222                            Hello Games    1.60
## 223                        Her Interactive    0.03
## 224                        Hip Interactive    0.36
## 225                        HMH Interactive    0.14
## 226           Home Entertainment Suppliers    0.71
## 227                   Hudson Entertainment    1.69
## 228                            Hudson Soft   23.01
## 229                    Human Entertainment    3.00
## 230                                  HuneX    0.03
## 231                    Iceberg Interactive    0.08
## 232                            id Software    0.03
## 233                           Idea Factory    4.02
## 234             Idea Factory International    0.61
## 235                           IE Institute    0.96
## 236                 Ignition Entertainment    6.82
## 237                     Illusion Softworks    0.70
## 238                                 Imadio    0.14
## 239                            Image Epoch    0.10
## 240                        imageepoch Inc.    0.04
## 241                             Imageworks    0.02
## 242                                 Imagic    4.82
## 243                              Imagineer    2.65
## 244                                   Imax    0.06
## 245                            Indie Games    0.32
## 246                             Infogrames   16.34
## 247                        Insomniac Games    0.12
## 248                           Interchannel    0.10
## 249                     Interchannel-Holon    0.01
## 250                              Intergrow    0.03
## 251                              Interplay    6.66
## 252                  Interplay Productions    0.10
## 253             Interworks Unlimited, Inc.    0.01
## 254                           Inti Creates    0.01
## 255                  Introversion Software    0.02
## 256                   inXile Entertainment    0.10
## 257              Irem Software Engineering    0.46
## 258                       ITT Family Games    0.34
## 259                              Ivolgamus    0.04
## 260                                   iWin    0.06
## 261                      Jack of All Games    0.42
## 262                                 Jaleco    1.94
## 263                     Jester Interactive    1.15
## 264                                Jorudan    0.95
## 265                     JoWood Productions    1.49
## 266                            Just Flight    0.03
## 267                                    JVC    2.80
## 268                         Kadokawa Games    0.58
## 269                        Kadokawa Shoten    3.77
## 270                            Kaga Create    0.14
## 271                          Kalypso Media    2.45
## 272                                  Kamui    0.03
## 273                            Kando Games    0.03
## 274                    Karin Entertainment    0.02
## 275                                  Kemco    2.22
## 276                                    KID    0.08
## 277                           Kids Station    0.03
## 278                           King Records    0.02
## 279                    Knowledge Adventure    1.47
## 280                             Koch Media    4.71
## 281               Kokopeli Digital Studios    0.03
## 282           Konami Digital Entertainment  283.64
## 283                              Kool Kizz    0.04
## 284                                    KSS    0.03
## 285                                 Laguna    1.55
## 286                     Legacy Interactive    0.04
## 287                             LEGO Media    1.56
## 288                                Level 5   12.17
## 289                  Lexicon Entertainment    0.05
## 290                            Licensed 4U    0.07
## 291                 Lighthouse Interactive    0.02
## 292                           Liquid Games    0.27
## 293                           Little Orbit    2.04
## 294                                  Locus    0.07
## 295                              LSP Games    0.12
## 296                              LucasArts   87.34
## 297                               Mad Catz    0.30
## 298                        Magical Company    0.41
## 299                                  Magix    0.35
## 300                  Majesco Entertainment   16.08
## 301                            Mamba Games    0.05
## 302                   Marvel Entertainment    0.05
## 303                Marvelous Entertainment    2.33
## 304                        Marvelous Games    0.02
## 305                  Marvelous Interactive    4.17
## 306                      Masque Publishing    0.02
## 307                           Mastertronic    1.73
## 308                                Mastiff    2.23
## 309                     Mattel Interactive    3.51
## 310                               Max Five    0.05
## 311                   Maximum Family Games    0.03
## 312                                  Maxis    3.39
## 313                      MC2 Entertainment    0.08
## 314                    Media Entertainment    0.01
## 315                          Media Factory    0.29
## 316                            Media Rings    0.65
## 317                            Media Works    0.18
## 318                             MediaQuest    0.05
## 319                           Men-A-Vision    0.77
## 320                     Mentor Interactive    1.07
## 321                          Mercury Games    0.21
## 322                            Merscom LLC    0.20
## 323                               Metro 3D    1.84
## 324                            Michaelsoft    0.01
## 325                            Micro Cabin    0.20
## 326                               Microids    0.40
## 327                             Microprose    2.02
## 328                 Microsoft Game Studios  245.79
## 329        Midas Interactive Entertainment    2.72
## 330                           Midway Games   69.85
## 331                              Milestone    0.08
## 332                        Milestone S.r.l    0.05
## 333                       Milestone S.r.l.    1.28
## 334                         Minato Station    0.05
## 335                              Mindscape    7.74
## 336                          Mirai Shounen    0.02
## 337                                 Misawa    0.07
## 338                                 Mitsui    0.08
## 339                              mixi, Inc    0.86
## 340                                MLB.com    0.04
## 341                                 Mojang    2.89
## 342               Monte Christo Multimedia    0.05
## 343                                   Moss    0.13
## 344                                    MTO    0.40
## 345                              MTV Games   20.97
## 346                   Mud Duck Productions    0.85
## 347                            Mumbo Jumbo    0.58
## 348                                  Mycom    0.02
## 349                           Myelin Media    0.13
## 350                               Mystique    0.82
## 351                                    N/A   14.88
## 352                     Namco Bandai Games  254.09
## 353                                Natsume    3.69
## 354                           Navarre Corp    0.05
## 355                             Naxat Soft    0.01
## 356                                    NCS    0.40
## 357                                 NCSoft    2.59
## 358                        NDA Productions    0.12
## 359                                    NEC    0.43
## 360                       NEC Interchannel    0.78
## 361                     Neko Entertainment    0.31
## 362                                NetRevo    0.03
## 363                                    New    0.36
## 364                    New World Computing    0.01
## 365                               NewKidCo    1.33
## 366                                  Nexon    0.03
## 367                             Nichibutsu    0.28
## 368               Nihon Falcom Corporation    0.77
## 369                               Nintendo 1786.56
## 370                           Nippon Amuse    0.09
## 371                        Nippon Columbia    0.95
## 372                   Nippon Ichi Software   14.28
## 373                         Nippon Telenet    0.26
## 374                              Nitroplus    0.02
## 375                                Nobilis    1.94
## 376                            Nordcurrent    0.59
## 377                           Nordic Games    4.44
## 378                              NovaLogic    0.82
## 379                            Number None    0.03
## 380                                O-Games    1.08
## 381                       O3 Entertainment    0.22
## 382                                  Ocean    3.61
## 383                          Office Create    0.06
## 384                              On Demand    0.21
## 385                              Ongakukan    0.01
## 386                         Origin Systems    0.09
## 387                                Otomate    0.01
## 388                     Oxygen Interactive    3.46
## 389                               P2 Games    0.40
## 390            Pacific Century Cyber Works    0.26
## 391                          Pack-In-Video    0.11
## 392                           Pack In Soft    0.48
## 393                                 Palcom    4.17
## 394                       Panther Software    0.17
## 395                                   Paon    0.25
## 396                       Paon Corporation    0.03
## 397                    Paradox Development    0.01
## 398                    Paradox Interactive    0.76
## 399                           Parker Bros.    4.97
## 400          Performance Designed Products    0.36
## 401                             Phantagram    0.05
## 402                            Phantom EFX    0.09
## 403                             Phenomedia    0.19
## 404                          Phoenix Games    0.02
## 405                                 Piacci    0.01
## 406                               Pinnacle    1.42
## 407                            Pioneer LDC    0.74
## 408                                Play It    4.31
## 409                 Playlogic Game Factory    1.20
## 410                              Playmates    0.28
## 411                               Playmore    0.04
## 412                                  PlayV    0.44
## 413                                 Plenty    0.02
## 414                             PM Studios    0.10
## 415                            Pony Canyon    0.05
## 416                           PopCap Games    1.57
## 417                         Popcorn Arcade    0.49
## 418                        PopTop Software    0.11
## 419                                    Pow    0.05
## 420                                  PQube    4.27
## 421                          Princess Soft    0.07
## 422                              Prototype    0.61
## 423                              Psygnosis    7.27
## 424                                 Quelle    0.87
## 425                                  Quest    0.71
## 426                               Quinrose    0.22
## 427                                Quintet    0.02
## 428                          Rage Software    1.42
## 429                             Rain Games    0.01
## 430                              Rebellion    0.49
## 431                 Rebellion Developments    0.30
## 432                      RED Entertainment    0.02
## 433                                Red Orb    5.24
## 434                Red Storm Entertainment    2.32
## 435                              RedOctane    8.68
## 436                     Reef Entertainment    0.34
## 437                           responDESIGN    0.13
## 438                     Revolution (Japan)    0.02
## 439                    Revolution Software    0.07
## 440                      Rising Star Games   17.31
## 441                          Riverhillsoft    0.04
## 442                         Rocket Company    1.82
## 443                             Rondomedia    2.58
## 444                                    RTL    2.00
## 445                                 Russel    1.21
## 446                      Sammy Corporation    2.73
## 447                                 Saurus    0.02
## 448                        Scholastic Inc.    2.91
## 449                                    SCi    3.52
## 450                             Screenlife    0.92
## 451                           SCS Software    0.13
## 452                                  Sears    0.21
## 453                                   Sega  272.99
## 454                       Seta Corporation    0.63
## 455                          Seventh Chord    0.08
## 456                             Shogakukan    0.44
## 457           Simon & Schuster Interactive    0.11
## 458                   Slightly Mad Studios    1.38
## 459                    Slitherine Software    0.21
## 460                                    SNK    2.59
## 461                           SNK Playmore    0.96
## 462                                Societa    0.04
## 463                               Sold Out    0.02
## 464                                 Sonnet    0.06
## 465            Sony Computer Entertainment  607.50
## 466    Sony Computer Entertainment America    1.18
## 467     Sony Computer Entertainment Europe   23.89
## 468               Sony Music Entertainment    0.14
## 469              Sony Online Entertainment    3.53
## 470                        SouthPeak Games    6.35
## 471                                  Spike    6.15
## 472                                    SPS    0.12
## 473                                 Square    3.64
## 474                              Square EA    0.80
## 475                            Square Enix  145.18
## 476                             SquareSoft   57.65
## 477                                    SSI    0.19
## 478                        Stainless Games    0.01
## 479                               Starfish    0.72
## 480                         Starpath Corp.    0.33
## 481                                  Sting    0.65
## 482                       Storm City Games    1.56
## 483                         Strategy First    0.03
## 484                                Success    1.96
## 485                             Summitsoft    0.04
## 486                             Sunflowers    0.03
## 487                    Sunrise Interactive    0.17
## 488                                Sunsoft    0.95
## 489                                 Sweets    0.05
## 490                   Swing! Entertainment    0.48
## 491                                 Syscom    0.27
## 492                               System 3    0.22
## 493               System 3 Arcade Software    1.80
## 494                            System Soft    0.05
## 495                               T&E Soft    0.12
## 496                                  Taito    2.84
## 497                                 Takara    3.45
## 498                            Takara Tomy    2.70
## 499                   Take-Two Interactive  399.54
## 500                                 Takuyo    0.01
## 501                              TalonSoft    0.87
## 502                               TDK Core    0.62
## 503                         TDK Mediactive    8.31
## 504                        Team17 Software    0.05
## 505              Technos Japan Corporation    0.02
## 506                             TechnoSoft    0.05
## 507                             Tecmo Koei   53.55
## 508                              Telegames    1.03
## 509                         Telltale Games    2.72
## 510                                Telstar    0.27
## 511                          Tetris Online    0.43
## 512                                    TGL    0.10
## 513                  The Adventure Company    0.51
## 514                   The Learning Company    0.05
## 515                                    THQ  340.77
## 516                            Tigervision    1.42
## 517                Time Warner Interactive    0.35
## 518                                  Titus    3.32
## 519                                 Tivola    0.17
## 520                                   TOHO    0.11
## 521                                  Tommo    0.21
## 522                       Tomy Corporation    4.97
## 523                    TopWare Interactive    0.12
## 524                             Touchstone    1.58
## 525                              Tradewest    0.11
## 526                           Trion Worlds    1.15
## 527                   Tripwire Interactive    0.14
## 528                  Tru Blu Entertainment    0.28
## 529                               Tryfirst    0.03
## 530                                    TYO    0.42
## 531                              Type-Moon    0.10
## 532                              U.S. Gold    0.33
## 533                                Ubisoft  474.72
## 534                         Ubisoft Annecy    4.46
## 535                            UEP Systems    2.25
## 536                        UFO Interactive    0.96
## 537                      UIG Entertainment    0.01
## 538                            Ultravision    0.47
## 539                        Universal Gamex    0.63
## 540                  Universal Interactive   17.77
## 541                                Unknown   34.66
## 542                           Valcon Games    0.45
## 543                               ValuSoft    0.39
## 544                                  Valve    1.74
## 545                         Valve Software    3.23
## 546                                    Vap    0.05
## 547                  Vatical Entertainment    0.22
## 548                              Vic Tokai    0.27
## 549                     Victor Interactive    0.89
## 550                           Video System    2.18
## 551                                  Views    0.03
## 552                          Vir2L Studios    0.26
## 553                     Virgin Interactive   43.87
## 554                     Virtual Play Games    0.06
## 555                                  Visco    0.02
## 556                          Vivendi Games   58.21
## 557                                Wanadoo    0.65
## 558                                Warashi    0.02
## 559                          Wargaming.net    0.29
## 560 Warner Bros. Interactive Entertainment  153.89
## 561                                   Warp    0.07
## 562                WayForward Technologies    0.05
## 563                       Westwood Studios    1.55
## 564                White Park Bay Software    0.16
## 565                     Wizard Video Games    0.62
## 566                      Xicat Interactive    0.17
## 567                     Xing Entertainment    0.24
## 568                                Xplosiv    1.64
## 569                               XS Games    1.46
## 570                            Xseed Games    0.90
## 571                       Yacht Club Games    0.32
## 572                   Yamasa Entertainment    0.04
## 573                                   Yeti    0.24
## 574                                 Yuke's    0.08
## 575                                Yumedia    0.06
## 576                                 Zenrin    0.06
## 577                 Zoo Digital Publishing   12.87
## 578                              Zoo Games    4.82
## 579                            Zushi Games    1.89
aggregate(Global_Sales,by=list(Publisher = Publisher),mean)
##                                  Publisher          x
## 1                          10TACLE Studios 0.03666667
## 2                               1C Company 0.03333333
## 3             20th Century Fox Video Games 0.38800000
## 4                                   2D Boy 0.04000000
## 5                                      3DO 0.28111111
## 6                                  49Games 0.04000000
## 7                                505 Games 0.29119792
## 8                                      5pb 0.02672131
## 9                                 7G//AMES 0.02000000
## 10                              989 Sports 0.38000000
## 11                             989 Studios 0.95142857
## 12                                Abylight 0.08000000
## 13                   Acclaim Entertainment 0.34858696
## 14                                Accolade 0.56000000
## 15                             Ackkstudios 0.08400000
## 16                                 Acquire 0.08230769
## 17                              Activision 0.74611282
## 18                     Activision Blizzard 0.48000000
## 19                        Activision Value 0.24000000
## 20                        Adeline Software 0.17000000
## 21                                Aerosoft 0.01500000
## 22                  Agatsuma Entertainment 0.10333333
## 23                                  Agetec 0.24250000
## 24                             Aksys Games 0.05500000
## 25                    Alawar Entertainment 0.02500000
## 26                               Alchemist 0.06116279
## 27                    Alternative Software 0.03333333
## 28                                  Altron 0.07000000
## 29                                  Alvion 0.02000000
## 30                      American Softworks 0.23000000
## 31                           Angel Studios 0.14666667
## 32                         Answer Software 0.50000000
## 33                          AQ Interactive 0.10600000
## 34                               Aqua Plus 0.05434783
## 35                                   Aques 0.16000000
## 36                        Arc System Works 0.05692308
## 37                     Arena Entertainment 2.36000000
## 38                                    Aria 0.07000000
## 39                                   Arika 0.03000000
## 40                                 ArtDink 0.08111111
## 41                              Aruze Corp 0.39333333
## 42                               ASC Games 0.67333333
## 43                   Ascaron Entertainment 0.01000000
## 44              Ascaron Entertainment GmbH 0.03666667
## 45                     ASCII Entertainment 0.54450000
## 46                       ASCII Media Works 0.03000000
## 47                                  Asgard 0.03125000
## 48                                     ASK 0.03000000
## 49                 Asmik Ace Entertainment 0.07666667
## 50                              Asmik Corp 0.08500000
## 51                                   Aspyr 0.07750000
## 52                                Astragon 0.10666667
## 53                    Asylum Entertainment 0.09833333
## 54                                   Atari 0.43311295
## 55                                  Athena 0.04500000
## 56                                   Atlus 0.19014925
## 57                      Avalon Interactive 0.08000000
## 58                               Avanquest 0.11538462
## 59                      Avanquest Software 0.18777778
## 60                                   Axela 0.25000000
## 61                      BAM! Entertainment 0.14142857
## 62                               Banpresto 0.23835616
## 63                                 Benesse 0.05500000
## 64                                Berkeley 0.03000000
## 65                      Bethesda Softworks 1.15690141
## 66                     Big Ben Interactive 0.14285714
## 67                          Big Fish Games 0.02500000
## 68                      Bigben Interactive 0.06461538
## 69                       bitComposer Games 0.08200000
## 70                        Black Bean Games 0.09676471
## 71                       Black Label Games 1.20000000
## 72                Blast! Entertainment Ltd 0.06333333
## 73                               Blue Byte 0.01500000
## 74           BMG Interactive Entertainment 0.16857143
## 75                     Bohemia Interactive 0.12000000
## 76                                    Bomb 0.22000000
## 77                                Boost On 0.01000000
## 78                                     BPS 0.26000000
## 79                     Brash Entertainment 0.12300000
## 80                                Broccoli 0.04363636
## 81                               BushiRoad 0.03000000
## 82                                  Capcom 0.52727034
## 83                                    Cave 0.03300000
## 84                         CBS Electronics 0.31000000
## 85                                     CCP 0.22000000
## 86              CDV Software Entertainment 0.03333333
## 87                                ChunSoft 0.22611111
## 88                        City Interactive 0.24263158
## 89        Cloud Imperium Games Corporation 0.04000000
## 90                          Coconuts Japan 0.03500000
## 91                             Codemasters 0.31493421
## 92                      Codemasters Online 0.02000000
## 93                       CokeM Interactive 0.31000000
## 94                                  Coleco 0.61200000
## 95                                 Comfort 0.02500000
## 96                                Commseed 0.01000000
## 97                                 Compile 0.41000000
## 98                           Compile Heart 0.06850000
## 99                Conspiracy Entertainment 0.06000000
## 100                       Core Design Ltd. 0.14500000
## 101                           CPG Products 0.54000000
## 102                    Crave Entertainment 0.13985915
## 103                          Creative Core 0.03333333
## 104                            Crimson Cow 0.04000000
## 105                       Crystal Dynamics 0.34200000
## 106                                CTO SpA 0.45000000
## 107                          Culture Brain 0.06750000
## 108                     Culture Publishers 0.09000000
## 109                             CyberFront 0.01928571
## 110                                Cygames 0.03000000
## 111                            D3Publisher 0.13114130
## 112                               Daedalic 0.09333333
## 113                 Daedalic Entertainment 0.04666667
## 114                                  Daito 0.05750000
## 115                               Data Age 0.35500000
## 116                Data Design Interactive 0.09666667
## 117                              Data East 0.07500000
## 118                         Datam Polystar 0.01500000
## 119                            Deep Silver 0.21040984
## 120              Destination Software, Inc 0.07333333
## 121                              Destineer 0.09688889
## 122                            Detn8 Games 0.23000000
## 123                       Devolver Digital 0.02000000
## 124                        DHM Interactive 0.06000000
## 125                               DigiCube 0.06000000
## 126             Disney Interactive Studios 0.55027523
## 127                                 Dorart 0.01500000
## 128                        dramatic create 0.02200000
## 129               DreamCatcher Interactive 0.05588235
## 130                 DreamWorks Interactive 0.13000000
## 131                              DSI Games 0.05833333
## 132                      DTP Entertainment 0.07977778
## 133               Dusenberry Martin Racing 0.02500000
## 134                               EA Games 0.15000000
## 135                       Easy Interactive 0.02500000
## 136                                  Ecole 0.06000000
## 137                                   Edia 0.04500000
## 138                      Eidos Interactive 0.49989899
## 139                        Electronic Arts 0.82185048
## 140                 Electronic Arts Victor 0.21000000
## 141                                    Elf 0.32000000
## 142                                  Elite 0.07000000
## 143                     Empire Interactive 0.21711538
## 144                                 Encore 0.01750000
## 145                       Enix Corporation 1.12466667
## 146                      Enjoy Gaming ltd. 0.10000000
## 147                             Enterbrain 0.14866667
## 148              EON Digital Entertainment 0.01000000
## 149                             Epic Games 0.01000000
## 150                                  Epoch 0.15000000
## 151                                 Ertain 0.05000000
## 152                                    ESP 0.11800000
## 153                        Essential Games 0.07666667
## 154                        Evolution Games 0.07000000
## 155                          Evolved Games 0.04000000
## 156                   Excalibur Publishing 0.07000000
## 157                        Experience Inc. 0.02000000
## 158            Extreme Entertainment Group 0.03000000
## 159                     Falcom Corporation 0.07562500
## 160                                 Fields 0.03000000
## 161                       Flashpoint Games 0.04000000
## 162                            Flight-Plan 0.06000000
## 163                 Focus Home Interactive 0.12948276
## 164                       Focus Multimedia 0.01666667
## 165                                 fonfun 0.02000000
## 166                    Foreign Media Games 0.07000000
## 167                              Fortyfive 0.06000000
## 168                        Fox Interactive 0.92375000
## 169                          From Software 0.10866667
## 170                                   Fuji 0.03000000
## 171                           Funbox Media 0.15166667
## 172                                 Funcom 0.10000000
## 173                                FunSoft 0.12000000
## 174                                 Funsta 0.05000000
## 175                                  FuRyu 0.04888889
## 176                      FuRyu Corporation 0.03000000
## 177                                  G.Rev 0.02000000
## 178                                   Gaga 0.02000000
## 179                 Gainax Network Systems 0.08000000
## 180                                 Gakken 0.02000000
## 181                              Game Arts 0.14000000
## 182                           Game Factory 0.11843750
## 183                              Game Life 0.15000000
## 184                             Gamebridge 0.36500000
## 185                               Gamecock 0.05000000
## 186                               Gameloft 0.11000000
## 187                 GameMill Entertainment 0.17250000
## 188                                GameTek 0.10000000
## 189                Gathering of Developers 0.13222222
## 190                  General Entertainment 0.14000000
## 191                                  Genki 0.18250000
## 192                            Genterprise 0.01000000
## 193                             Ghostlight 0.18600000
## 194                                   Giga 0.02000000
## 195                                 Giza10 0.02000000
## 196                                  Glams 0.08000000
## 197                 Global A Entertainment 0.03750000
## 198                            Global Star 0.19615385
## 199                            GN Software 0.01666667
## 200                                    GOA 0.02000000
## 201                           Gotham Games 0.53142857
## 202                               Graffiti 0.06333333
## 203                       Grand Prix Games 0.06000000
## 204                 Graphsim Entertainment 0.02000000
## 205                Gremlin Interactive Ltd 0.12222222
## 206                  Griffin International 0.09000000
## 207                           Groove Games 0.04500000
## 208                                    GSP 0.23062500
## 209                         GT Interactive 0.56066667
## 210                                 GungHo 0.24230769
## 211                                   Gust 0.08461538
## 212                              Hackberry 0.04428571
## 213                         HAL Laboratory 0.06000000
## 214                    Hamster Corporation 0.15000000
## 215                               Happinet 0.03600000
## 216                 Harmonix Music Systems 0.40000000
## 217                     Hasbro Interactive 0.95125000
## 218                      Havas Interactive 0.13000000
## 219                           Headup Games 0.03000000
## 220                           Hearty Robin 0.09000000
## 221                                   Hect 0.16666667
## 222                            Hello Games 1.60000000
## 223                        Her Interactive 0.03000000
## 224                        Hip Interactive 0.07200000
## 225                        HMH Interactive 0.07000000
## 226           Home Entertainment Suppliers 0.14200000
## 227                   Hudson Entertainment 0.15363636
## 228                            Hudson Soft 0.28407407
## 229                    Human Entertainment 0.23076923
## 230                                  HuneX 0.01500000
## 231                    Iceberg Interactive 0.02666667
## 232                            id Software 0.03000000
## 233                           Idea Factory 0.03116279
## 234             Idea Factory International 0.10166667
## 235                           IE Institute 0.19200000
## 236                 Ignition Entertainment 0.11180328
## 237                     Illusion Softworks 0.70000000
## 238                                 Imadio 0.14000000
## 239                            Image Epoch 0.10000000
## 240                        imageepoch Inc. 0.02000000
## 241                             Imageworks 0.02000000
## 242                                 Imagic 1.20500000
## 243                              Imagineer 0.16562500
## 244                                   Imax 0.06000000
## 245                            Indie Games 0.10666667
## 246                             Infogrames 0.26354839
## 247                        Insomniac Games 0.04000000
## 248                           Interchannel 0.02500000
## 249                     Interchannel-Holon 0.01000000
## 250                              Intergrow 0.03000000
## 251                              Interplay 0.22200000
## 252                  Interplay Productions 0.10000000
## 253             Interworks Unlimited, Inc. 0.01000000
## 254                           Inti Creates 0.01000000
## 255                  Introversion Software 0.02000000
## 256                   inXile Entertainment 0.10000000
## 257              Irem Software Engineering 0.03833333
## 258                       ITT Family Games 0.34000000
## 259                              Ivolgamus 0.04000000
## 260                                   iWin 0.06000000
## 261                      Jack of All Games 0.14000000
## 262                                 Jaleco 0.08434783
## 263                     Jester Interactive 0.38333333
## 264                                Jorudan 0.31666667
## 265                     JoWood Productions 0.06772727
## 266                            Just Flight 0.03000000
## 267                                    JVC 0.35000000
## 268                         Kadokawa Games 0.03866667
## 269                        Kadokawa Shoten 0.07540000
## 270                            Kaga Create 0.02333333
## 271                          Kalypso Media 0.08448276
## 272                                  Kamui 0.03000000
## 273                            Kando Games 0.03000000
## 274                    Karin Entertainment 0.02000000
## 275                                  Kemco 0.10571429
## 276                                    KID 0.02000000
## 277                           Kids Station 0.03000000
## 278                           King Records 0.02000000
## 279                    Knowledge Adventure 0.36750000
## 280                             Koch Media 0.27705882
## 281               Kokopeli Digital Studios 0.03000000
## 282           Konami Digital Entertainment 0.34091346
## 283                              Kool Kizz 0.04000000
## 284                                    KSS 0.03000000
## 285                                 Laguna 0.38750000
## 286                     Legacy Interactive 0.04000000
## 287                             LEGO Media 0.22285714
## 288                                Level 5 0.45074074
## 289                  Lexicon Entertainment 0.02500000
## 290                            Licensed 4U 0.02333333
## 291                 Lighthouse Interactive 0.02000000
## 292                           Liquid Games 0.13500000
## 293                           Little Orbit 0.07846154
## 294                                  Locus 0.07000000
## 295                              LSP Games 0.03000000
## 296                              LucasArts 0.97044444
## 297                               Mad Catz 0.10000000
## 298                        Magical Company 0.41000000
## 299                                  Magix 0.17500000
## 300                  Majesco Entertainment 0.17478261
## 301                            Mamba Games 0.02500000
## 302                   Marvel Entertainment 0.05000000
## 303                Marvelous Entertainment 0.19416667
## 304                        Marvelous Games 0.02000000
## 305                  Marvelous Interactive 0.07446429
## 306                      Masque Publishing 0.02000000
## 307                           Mastertronic 0.13307692
## 308                                Mastiff 0.13937500
## 309                     Mattel Interactive 0.29250000
## 310                               Max Five 0.05000000
## 311                   Maximum Family Games 0.03000000
## 312                                  Maxis 1.13000000
## 313                      MC2 Entertainment 0.02666667
## 314                    Media Entertainment 0.01000000
## 315                          Media Factory 0.14500000
## 316                            Media Rings 0.21666667
## 317                            Media Works 0.03600000
## 318                             MediaQuest 0.05000000
## 319                           Men-A-Vision 0.77000000
## 320                     Mentor Interactive 0.21400000
## 321                          Mercury Games 0.05250000
## 322                            Merscom LLC 0.20000000
## 323                               Metro 3D 0.15333333
## 324                            Michaelsoft 0.01000000
## 325                            Micro Cabin 0.06666667
## 326                               Microids 0.04000000
## 327                             Microprose 0.33666667
## 328                 Microsoft Game Studios 1.30047619
## 329        Midas Interactive Entertainment 0.11333333
## 330                           Midway Games 0.35277778
## 331                              Milestone 0.08000000
## 332                        Milestone S.r.l 0.02500000
## 333                       Milestone S.r.l. 0.08000000
## 334                         Minato Station 0.01666667
## 335                              Mindscape 0.24187500
## 336                          Mirai Shounen 0.02000000
## 337                                 Misawa 0.03500000
## 338                                 Mitsui 0.08000000
## 339                              mixi, Inc 0.86000000
## 340                                MLB.com 0.04000000
## 341                                 Mojang 0.57800000
## 342               Monte Christo Multimedia 0.05000000
## 343                                   Moss 0.06500000
## 344                                    MTO 0.05000000
## 345                              MTV Games 0.51146341
## 346                   Mud Duck Productions 0.28333333
## 347                            Mumbo Jumbo 0.09666667
## 348                                  Mycom 0.02000000
## 349                           Myelin Media 0.04333333
## 350                               Mystique 0.82000000
## 351                                    N/A 0.25655172
## 352                     Namco Bandai Games 0.27262876
## 353                                Natsume 0.21705882
## 354                           Navarre Corp 0.05000000
## 355                             Naxat Soft 0.01000000
## 356                                    NCS 0.13333333
## 357                                 NCSoft 0.43166667
## 358                        NDA Productions 0.12000000
## 359                                    NEC 0.14333333
## 360                       NEC Interchannel 0.09750000
## 361                     Neko Entertainment 0.04428571
## 362                                NetRevo 0.01500000
## 363                                    New 0.36000000
## 364                    New World Computing 0.01000000
## 365                               NewKidCo 0.14777778
## 366                                  Nexon 0.03000000
## 367                             Nichibutsu 0.28000000
## 368               Nihon Falcom Corporation 0.11000000
## 369                               Nintendo 2.54133713
## 370                           Nippon Amuse 0.09000000
## 371                        Nippon Columbia 0.13571429
## 372                   Nippon Ichi Software 0.13600000
## 373                         Nippon Telenet 0.13000000
## 374                              Nitroplus 0.01000000
## 375                                Nobilis 0.14923077
## 376                            Nordcurrent 0.11800000
## 377                           Nordic Games 0.12685714
## 378                              NovaLogic 0.27333333
## 379                            Number None 0.03000000
## 380                                O-Games 0.06352941
## 381                       O3 Entertainment 0.07333333
## 382                                  Ocean 0.25785714
## 383                          Office Create 0.03000000
## 384                              On Demand 0.21000000
## 385                              Ongakukan 0.01000000
## 386                         Origin Systems 0.09000000
## 387                                Otomate 0.01000000
## 388                     Oxygen Interactive 0.15727273
## 389                               P2 Games 0.13333333
## 390            Pacific Century Cyber Works 0.26000000
## 391                          Pack-In-Video 0.05500000
## 392                           Pack In Soft 0.48000000
## 393                                 Palcom 4.17000000
## 394                       Panther Software 0.17000000
## 395                                   Paon 0.04166667
## 396                       Paon Corporation 0.03000000
## 397                    Paradox Development 0.01000000
## 398                    Paradox Interactive 0.03304348
## 399                           Parker Bros. 0.71000000
## 400          Performance Designed Products 0.18000000
## 401                             Phantagram 0.05000000
## 402                            Phantom EFX 0.09000000
## 403                             Phenomedia 0.04750000
## 404                          Phoenix Games 0.02000000
## 405                                 Piacci 0.01000000
## 406                               Pinnacle 0.28400000
## 407                            Pioneer LDC 0.18500000
## 408                                Play It 0.30785714
## 409                 Playlogic Game Factory 0.08571429
## 410                              Playmates 0.28000000
## 411                               Playmore 0.04000000
## 412                                  PlayV 0.11000000
## 413                                 Plenty 0.02000000
## 414                             PM Studios 0.10000000
## 415                            Pony Canyon 0.05000000
## 416                           PopCap Games 0.10466667
## 417                         Popcorn Arcade 0.04900000
## 418                        PopTop Software 0.11000000
## 419                                    Pow 0.05000000
## 420                                  PQube 0.10948718
## 421                          Princess Soft 0.02333333
## 422                              Prototype 0.02259259
## 423                              Psygnosis 0.22718750
## 424                                 Quelle 0.87000000
## 425                                  Quest 0.71000000
## 426                               Quinrose 0.01571429
## 427                                Quintet 0.02000000
## 428                          Rage Software 0.20285714
## 429                             Rain Games 0.01000000
## 430                              Rebellion 0.24500000
## 431                 Rebellion Developments 0.15000000
## 432                      RED Entertainment 0.02000000
## 433                                Red Orb 2.62000000
## 434                Red Storm Entertainment 0.77333333
## 435                              RedOctane 2.17000000
## 436                     Reef Entertainment 0.04857143
## 437                           responDESIGN 0.06500000
## 438                     Revolution (Japan) 0.02000000
## 439                    Revolution Software 0.03500000
## 440                      Rising Star Games 0.20127907
## 441                          Riverhillsoft 0.04000000
## 442                         Rocket Company 0.10705882
## 443                             Rondomedia 0.18428571
## 444                                    RTL 0.25000000
## 445                                 Russel 0.20166667
## 446                      Sammy Corporation 0.24818182
## 447                                 Saurus 0.02000000
## 448                        Scholastic Inc. 0.29100000
## 449                                    SCi 0.20705882
## 450                             Screenlife 0.15333333
## 451                           SCS Software 0.13000000
## 452                                  Sears 0.21000000
## 453                                   Sega 0.42721440
## 454                       Seta Corporation 0.10500000
## 455                          Seventh Chord 0.08000000
## 456                             Shogakukan 0.08800000
## 457           Simon & Schuster Interactive 0.11000000
## 458                   Slightly Mad Studios 0.46000000
## 459                    Slitherine Software 0.05250000
## 460                                    SNK 0.11772727
## 461                           SNK Playmore 0.05333333
## 462                                Societa 0.04000000
## 463                               Sold Out 0.02000000
## 464                                 Sonnet 0.03000000
## 465            Sony Computer Entertainment 0.88945827
## 466    Sony Computer Entertainment America 0.39333333
## 467     Sony Computer Entertainment Europe 1.59266667
## 468               Sony Music Entertainment 0.14000000
## 469              Sony Online Entertainment 0.44125000
## 470                        SouthPeak Games 0.17162162
## 471                                  Spike 0.16621622
## 472                                    SPS 0.12000000
## 473                                 Square 0.60666667
## 474                              Square EA 0.80000000
## 475                            Square Enix 0.62309013
## 476                             SquareSoft 1.10865385
## 477                                    SSI 0.19000000
## 478                        Stainless Games 0.01000000
## 479                               Starfish 0.07200000
## 480                         Starpath Corp. 0.33000000
## 481                                  Sting 0.07222222
## 482                       Storm City Games 0.08210526
## 483                         Strategy First 0.03000000
## 484                                Success 0.10315789
## 485                             Summitsoft 0.04000000
## 486                             Sunflowers 0.03000000
## 487                    Sunrise Interactive 0.04250000
## 488                                Sunsoft 0.09500000
## 489                                 Sweets 0.02500000
## 490                   Swing! Entertainment 0.08000000
## 491                                 Syscom 0.13500000
## 492                               System 3 0.07333333
## 493               System 3 Arcade Software 0.12857143
## 494                            System Soft 0.01250000
## 495                               T&E Soft 0.12000000
## 496                                  Taito 0.14947368
## 497                                 Takara 0.21562500
## 498                            Takara Tomy 0.07297297
## 499                   Take-Two Interactive 0.96740920
## 500                                 Takuyo 0.01000000
## 501                              TalonSoft 0.87000000
## 502                               TDK Core 0.12400000
## 503                         TDK Mediactive 0.23083333
## 504                        Team17 Software 0.05000000
## 505              Technos Japan Corporation 0.02000000
## 506                             TechnoSoft 0.05000000
## 507                             Tecmo Koei 0.15843195
## 508                              Telegames 0.12875000
## 509                         Telltale Games 0.10880000
## 510                                Telstar 0.09000000
## 511                          Tetris Online 0.43000000
## 512                                    TGL 0.02500000
## 513                  The Adventure Company 0.10200000
## 514                   The Learning Company 0.05000000
## 515                                    THQ 0.47660140
## 516                            Tigervision 0.47333333
## 517                Time Warner Interactive 0.07000000
## 518                                  Titus 0.17473684
## 519                                 Tivola 0.05666667
## 520                                   TOHO 0.11000000
## 521                                  Tommo 0.04200000
## 522                       Tomy Corporation 0.27611111
## 523                    TopWare Interactive 0.03000000
## 524                             Touchstone 0.39500000
## 525                              Tradewest 0.03666667
## 526                           Trion Worlds 0.28750000
## 527                   Tripwire Interactive 0.14000000
## 528                  Tru Blu Entertainment 0.03500000
## 529                               Tryfirst 0.03000000
## 530                                    TYO 0.42000000
## 531                              Type-Moon 0.10000000
## 532                              U.S. Gold 0.08250000
## 533                                Ubisoft 0.51543974
## 534                         Ubisoft Annecy 0.31857143
## 535                            UEP Systems 2.25000000
## 536                        UFO Interactive 0.06000000
## 537                      UIG Entertainment 0.01000000
## 538                            Ultravision 0.47000000
## 539                        Universal Gamex 0.63000000
## 540                  Universal Interactive 0.77260870
## 541                                Unknown 0.17073892
## 542                           Valcon Games 0.05625000
## 543                               ValuSoft 0.09750000
## 544                                  Valve 1.74000000
## 545                         Valve Software 1.07666667
## 546                                    Vap 0.05000000
## 547                  Vatical Entertainment 0.11000000
## 548                              Vic Tokai 0.13500000
## 549                     Victor Interactive 0.09888889
## 550                           Video System 0.54500000
## 551                                  Views 0.01500000
## 552                          Vir2L Studios 0.08666667
## 553                     Virgin Interactive 0.70758065
## 554                     Virtual Play Games 0.03000000
## 555                                  Visco 0.02000000
## 556                          Vivendi Games 0.35493902
## 557                                Wanadoo 0.13000000
## 558                                Warashi 0.02000000
## 559                          Wargaming.net 0.29000000
## 560 Warner Bros. Interactive Entertainment 0.66331897
## 561                                   Warp 0.07000000
## 562                WayForward Technologies 0.05000000
## 563                       Westwood Studios 1.55000000
## 564                White Park Bay Software 0.16000000
## 565                     Wizard Video Games 0.62000000
## 566                      Xicat Interactive 0.05666667
## 567                     Xing Entertainment 0.24000000
## 568                                Xplosiv 0.16400000
## 569                               XS Games 0.12166667
## 570                            Xseed Games 0.22500000
## 571                       Yacht Club Games 0.10666667
## 572                   Yamasa Entertainment 0.02000000
## 573                                   Yeti 0.02181818
## 574                                 Yuke's 0.02666667
## 575                                Yumedia 0.06000000
## 576                                 Zenrin 0.03000000
## 577                 Zoo Digital Publishing 0.12375000
## 578                              Zoo Games 0.14606061
## 579                            Zushi Games 0.10500000

DS, PS2, PS3, XBOX360 and Wii are widely used globally. 1996-2000 had high sales. 2007-2010 have the highest sales globally, taking it to an all time high of 678.90 million. The sales have declined gradually further on. Action, shooter and sports are the widely played categories. Activision, Atari, capcom, electronic arts, konami digital entertainment, nintendo, namcoi bandai, sony computer entertainment and ubisoft are the high selling producers.

Some more aggregated tables

aggregate(NA_Sales,by=list(Platform = Platform,Year = Year),sum)
##     Platform Year      x
## 1       2600 1980  10.59
## 2       2600 1981  33.40
## 3       2600 1982  26.92
## 4       2600 1983   5.44
## 5        NES 1983   2.32
## 6       2600 1984   0.26
## 7        NES 1984  33.02
## 8       2600 1985   0.42
## 9         DS 1985   0.00
## 10       NES 1985  33.31
## 11        PC 1985   0.00
## 12      2600 1986   0.63
## 13       NES 1986  11.87
## 14      2600 1987   1.84
## 15       NES 1987   6.62
## 16      2600 1988   0.69
## 17        GB 1988   0.82
## 18       NES 1988  22.36
## 19        PC 1988   0.00
## 20      2600 1989   0.59
## 21        GB 1989  39.81
## 22       NES 1989   4.75
## 23        GB 1990   2.24
## 24       GEN 1990   1.86
## 25       NES 1990   6.08
## 26      SNES 1990  15.28
## 27        GB 1991   1.43
## 28       GEN 1991   3.03
## 29       NES 1991   2.83
## 30      SNES 1991   5.47
## 31        GB 1992  13.10
## 32       GEN 1992   9.17
## 33        GG 1992   0.00
## 34       NES 1992   0.84
## 35        PC 1992   1.24
## 36      SNES 1992   9.52
## 37       GEN 1993   0.00
## 38       NES 1993   1.94
## 39        NG 1993   0.00
## 40       SCD 1993   1.00
## 41      SNES 1993  12.18
## 42       3DO 1994   0.00
## 43        GB 1994   6.03
## 44       GEN 1994   5.21
## 45       NES 1994   0.00
## 46        NG 1994   0.00
## 47        PC 1994   5.55
## 48        PS 1994   1.76
## 49       SAT 1994   0.17
## 50       SCD 1994   0.00
## 51      SNES 1994   9.43
## 52       3DO 1995   0.00
## 53        GB 1995   0.69
## 54        NG 1995   0.00
## 55        PC 1995   1.71
## 56        PS 1995  14.61
## 57       SAT 1995   0.55
## 58      SNES 1995   7.26
## 59      TG16 1995   0.00
## 60        GB 1996  12.66
## 61       N64 1996  21.03
## 62        NG 1996   0.00
## 63        PC 1996   5.56
## 64      PCFX 1996   0.00
## 65        PS 1996  45.42
## 66       SAT 1996   0.00
## 67      SNES 1996   2.09
## 68        GB 1997   2.09
## 69       N64 1997  25.84
## 70        PC 1997   8.76
## 71        PS 1997  58.06
## 72       SAT 1997   0.00
## 73      SNES 1997   0.00
## 74        DC 1998   1.26
## 75        GB 1998   9.44
## 76       N64 1998  31.39
## 77        PC 1998   3.05
## 78        PS 1998  83.22
## 79       SAT 1998   0.00
## 80      SNES 1998   0.00
## 81        DC 1999   1.64
## 82        GB 1999  16.21
## 83       N64 1999  38.77
## 84        PC 1999   3.50
## 85        PS 1999  65.94
## 86       SAT 1999   0.00
## 87      SNES 1999   0.00
## 88        WS 1999   0.00
## 89        DC 2000   2.53
## 90        GB 2000   6.39
## 91       GBA 2000   0.05
## 92       N64 2000  19.74
## 93        PC 2000   3.03
## 94        PS 2000  45.93
## 95       PS2 2000  16.08
## 96        WS 2000   0.00
## 97        XB 2000   0.74
## 98        DC 2001   0.00
## 99        GB 2001   2.73
## 100      GBA 2001  36.24
## 101       GC 2001  16.91
## 102      N64 2001   2.08
## 103       PC 2001   4.08
## 104       PS 2001  15.84
## 105      PS2 2001  79.49
## 106       WS 2001   0.00
## 107       XB 2001  16.61
## 108       DC 2002   0.00
## 109      GBA 2002  43.02
## 110       GC 2002  34.71
## 111      N64 2002   0.06
## 112       PC 2002   5.03
## 113       PS 2002   2.78
## 114      PS2 2002  96.54
## 115       XB 2002  34.05
## 116      GBA 2003  33.53
## 117       GC 2003  32.64
## 118       PC 2003   3.39
## 119       PS 2003   1.15
## 120      PS2 2003  83.54
## 121       XB 2003  39.34
## 122       DS 2004   8.42
## 123      GBA 2004  44.43
## 124       GC 2004  19.71
## 125       PC 2004   2.53
## 126      PS2 2004  96.78
## 127      PSP 2004   2.25
## 128       XB 2004  48.47
## 129       DS 2005  48.47
## 130      GBA 2005  21.70
## 131       GC 2005  19.25
## 132       PC 2005   1.38
## 133      PS2 2005  85.60
## 134      PSP 2005  24.48
## 135     X360 2005   6.89
## 136       XB 2005  34.84
## 137       DS 2006  50.63
## 138      GBA 2006   2.70
## 139       GC 2006   8.51
## 140       PC 2006   0.60
## 141      PS2 2006  49.93
## 142      PS3 2006   8.83
## 143      PSP 2006  27.99
## 144      Wii 2006  71.30
## 145     X360 2006  35.16
## 146       XB 2006   7.47
## 147       DC 2007   0.00
## 148       DS 2007  76.36
## 149      GBA 2007   2.45
## 150       GC 2007   0.21
## 151       PC 2007   2.76
## 152      PS2 2007  32.05
## 153      PS3 2007  32.15
## 154      PSP 2007  18.46
## 155      Wii 2007  84.25
## 156     X360 2007  62.95
## 157       XB 2007   0.41
## 158       DC 2008   0.00
## 159       DS 2008  79.40
## 160       PC 2008   0.57
## 161      PS2 2008  21.23
## 162      PS3 2008  57.18
## 163      PSP 2008  11.72
## 164      Wii 2008  98.77
## 165     X360 2008  82.44
## 166       XB 2008   0.13
## 167       DS 2009  62.41
## 168       PC 2009   1.33
## 169      PS2 2009   9.36
## 170      PS3 2009  62.63
## 171      PSP 2009  12.61
## 172      Wii 2009 116.54
## 173     X360 2009  73.97
## 174       DS 2010  42.36
## 175       PC 2010   9.13
## 176      PS2 2010   2.19
## 177      PS3 2010  60.92
## 178      PSP 2010   7.40
## 179      Wii 2010  75.03
## 180     X360 2010 107.21
## 181      3DS 2011  26.98
## 182       DS 2011  15.29
## 183       PC 2011  10.67
## 184      PS2 2011   0.13
## 185      PS3 2011  64.80
## 186      PSP 2011   2.05
## 187      PSV 2011   1.72
## 188      Wii 2011  32.72
## 189     X360 2011  86.70
## 190      3DS 2012  17.04
## 191       DS 2012   4.21
## 192       PC 2012   7.95
## 193      PS3 2012  39.80
## 194      PSP 2012   0.13
## 195      PSV 2012   6.92
## 196      Wii 2012  11.46
## 197     WiiU 2012   9.13
## 198     X360 2012  58.32
## 199      3DS 2013  15.33
## 200       DS 2013   0.72
## 201       PC 2013   3.84
## 202      PS3 2013  41.31
## 203      PS4 2013  10.09
## 204      PSP 2013   0.00
## 205      PSV 2013   3.49
## 206      Wii 2013   4.91
## 207     WiiU 2013  10.15
## 208     X360 2013  53.13
## 209     XOne 2013  11.80
## 210      3DS 2014  12.03
## 211       DS 2014   0.02
## 212       PC 2014   3.40
## 213      PS3 2014  16.12
## 214      PS4 2014  34.09
## 215      PSP 2014   0.00
## 216      PSV 2014   3.21
## 217      Wii 2014   1.82
## 218     WiiU 2014  10.78
## 219     X360 2014  20.09
## 220     XOne 2014  30.41
## 221      3DS 2015   5.82
## 222       PC 2015   2.20
## 223      PS3 2015   4.76
## 224      PS4 2015  40.76
## 225      PSP 2015   0.00
## 226      PSV 2015   0.54
## 227      Wii 2015   0.57
## 228     WiiU 2015   6.77
## 229     X360 2015   7.11
## 230     XOne 2015  34.29
## 231      3DS 2016   0.83
## 232       PC 2016   0.84
## 233      PS3 2016   0.40
## 234      PS4 2016  11.86
## 235      PSV 2016   0.19
## 236     WiiU 2016   1.49
## 237     X360 2016   0.36
## 238     XOne 2016   6.69
## 239      PS4 2017   0.00
## 240      PSV 2017   0.00
## 241       DS 2020   0.27
## 242     2600  N/A   9.82
## 243      3DS  N/A   0.84
## 244       DS  N/A   2.15
## 245       GB  N/A   0.68
## 246      GBA  N/A   3.42
## 247       GC  N/A   1.52
## 248      N64  N/A   0.11
## 249       PC  N/A   1.18
## 250       PS  N/A   1.80
## 251      PS2  N/A  10.92
## 252      PS3  N/A   3.36
## 253      PSP  N/A   1.90
## 254      PSV  N/A   0.13
## 255      Wii  N/A  10.34
## 256     X360  N/A   6.72
## 257       XB  N/A   4.63
aggregate(NA_Sales,by=list(Platform = Platform,Genre = Genre),sum)
##     Platform        Genre      x
## 1       2600       Action  27.39
## 2        3DS       Action  19.49
## 3         DC       Action   0.41
## 4         DS       Action  66.46
## 5         GB       Action   4.07
## 6        GBA       Action  37.13
## 7         GC       Action  26.11
## 8        GEN       Action   1.86
## 9        N64       Action  18.96
## 10       NES       Action  16.31
## 11        PC       Action   9.87
## 12        PS       Action  62.88
## 13       PS2       Action 127.82
## 14       PS3       Action 121.16
## 15       PS4       Action  29.70
## 16       PSP       Action  23.83
## 17       PSV       Action   4.95
## 18       SAT       Action   0.00
## 19      SNES       Action   4.09
## 20       Wii       Action  70.28
## 21      WiiU       Action   9.88
## 22      X360       Action 141.39
## 23        XB       Action  34.34
## 24      XOne       Action  19.45
## 25      2600    Adventure   1.59
## 26       3DO    Adventure   0.00
## 27       3DS    Adventure   1.10
## 28        DC    Adventure   0.52
## 29        DS    Adventure  25.52
## 30        GB    Adventure   8.88
## 31       GBA    Adventure   9.21
## 32        GC    Adventure   3.82
## 33       GEN    Adventure   0.00
## 34       N64    Adventure   0.23
## 35       NES    Adventure   2.19
## 36        PC    Adventure   1.75
## 37        PS    Adventure   8.51
## 38       PS2    Adventure   6.71
## 39       PS3    Adventure   8.74
## 40       PS4    Adventure   1.42
## 41       PSP    Adventure   1.68
## 42       PSV    Adventure   0.85
## 43       SAT    Adventure   0.00
## 44      SNES    Adventure   0.00
## 45      TG16    Adventure   0.00
## 46       Wii    Adventure  11.17
## 47      WiiU    Adventure   0.09
## 48      X360    Adventure   8.40
## 49        XB    Adventure   2.22
## 50      XOne    Adventure   1.20
## 51      2600     Fighting   1.16
## 52       3DS     Fighting   4.43
## 53        DC     Fighting   0.00
## 54        DS     Fighting   2.58
## 55       GBA     Fighting   2.90
## 56        GC     Fighting  11.29
## 57       GEN     Fighting   3.98
## 58       N64     Fighting  15.66
## 59       NES     Fighting   2.84
## 60        NG     Fighting   0.00
## 61        PC     Fighting   0.09
## 62        PS     Fighting  34.09
## 63       PS2     Fighting  44.98
## 64       PS3     Fighting  23.79
## 65       PS4     Fighting   3.40
## 66       PSP     Fighting   8.65
## 67       PSV     Fighting   1.33
## 68       SAT     Fighting   0.51
## 69      SNES     Fighting   9.34
## 70       Wii     Fighting  13.15
## 71      WiiU     Fighting   3.25
## 72      X360     Fighting  24.58
## 73        XB     Fighting  10.01
## 74      XOne     Fighting   1.58
## 75      2600         Misc   3.34
## 76       3DS         Misc   2.56
## 77        DS         Misc  54.99
## 78        GB         Misc   6.07
## 79       GBA         Misc  24.64
## 80        GC         Misc  10.07
## 81       GEN         Misc   0.00
## 82       N64         Misc   6.27
## 83       NES         Misc   0.01
## 84        PC         Misc   5.66
## 85        PS         Misc  20.76
## 86       PS2         Misc  40.73
## 87       PS3         Misc  22.53
## 88       PS4         Misc   2.83
## 89       PSP         Misc   5.29
## 90       PSV         Misc   1.02
## 91       SAT         Misc   0.00
## 92       SCD         Misc   0.00
## 93      SNES         Misc   1.43
## 94       Wii         Misc 121.49
## 95      WiiU         Misc   5.49
## 96      X360         Misc  63.43
## 97        XB         Misc   7.19
## 98      XOne         Misc   4.44
## 99      2600     Platform  12.38
## 100      3DS     Platform  13.19
## 101       DC     Platform   1.26
## 102       DS     Platform  37.72
## 103       GB     Platform  29.40
## 104      GBA     Platform  45.81
## 105       GC     Platform  20.40
## 106      GEN     Platform  10.73
## 107       GG     Platform   0.00
## 108      N64     Platform  21.23
## 109      NES     Platform  53.64
## 110       PC     Platform   0.05
## 111       PS     Platform  34.21
## 112      PS2     Platform  37.60
## 113      PS3     Platform  13.31
## 114      PS4     Platform   2.18
## 115      PSP     Platform   7.98
## 116      PSV     Platform   0.92
## 117      SAT     Platform   0.00
## 118      SCD     Platform   1.00
## 119     SNES     Platform  32.71
## 120      Wii     Platform  48.30
## 121     WiiU     Platform   9.97
## 122     X360     Platform   6.04
## 123       XB     Platform   6.58
## 124     XOne     Platform   0.44
## 125     2600       Puzzle  13.68
## 126      3DO       Puzzle   0.00
## 127      3DS       Puzzle   1.29
## 128       DS       Puzzle  35.39
## 129       GB       Puzzle  29.35
## 130      GBA       Puzzle   7.36
## 131       GC       Puzzle   2.95
## 132      N64       Puzzle   2.21
## 133      NES       Puzzle   9.14
## 134       PC       Puzzle   0.09
## 135       PS       Puzzle   5.29
## 136      PS2       Puzzle   2.84
## 137      PS3       Puzzle   0.39
## 138      PS4       Puzzle   0.00
## 139      PSP       Puzzle   2.84
## 140      PSV       Puzzle   0.08
## 141      SAT       Puzzle   0.00
## 142     SNES       Puzzle   0.00
## 143      Wii       Puzzle   9.28
## 144     WiiU       Puzzle   0.66
## 145     X360       Puzzle   0.62
## 146       XB       Puzzle   0.32
## 147     2600       Racing   2.74
## 148      3DS       Racing   6.06
## 149       DC       Racing   1.10
## 150       DS       Racing  20.82
## 151       GB       Racing   2.31
## 152      GBA       Racing  11.73
## 153       GC       Racing  14.93
## 154      GEN       Racing   0.00
## 155      N64       Racing  26.68
## 156      NES       Racing   4.64
## 157       PC       Racing   0.44
## 158       PS       Racing  51.43
## 159      PS2       Racing  75.72
## 160      PS3       Racing  23.86
## 161      PS4       Racing   2.47
## 162      PSP       Racing  14.96
## 163      PSV       Racing   0.90
## 164      SAT       Racing   0.21
## 165      SCD       Racing   0.00
## 166     SNES       Racing   4.91
## 167      Wii       Racing  31.52
## 168     WiiU       Racing   3.47
## 169     X360       Racing  33.10
## 170       XB       Racing  21.48
## 171     XOne       Racing   3.94
## 172      3DS Role-Playing  20.18
## 173       DC Role-Playing   0.00
## 174       DS Role-Playing  47.46
## 175       GB Role-Playing  28.71
## 176      GBA Role-Playing  28.29
## 177       GC Role-Playing   7.91
## 178      GEN Role-Playing   0.00
## 179      N64 Role-Playing   1.34
## 180      NES Role-Playing   1.14
## 181       PC Role-Playing  17.21
## 182     PCFX Role-Playing   0.00
## 183       PS Role-Playing  20.73
## 184      PS2 Role-Playing  32.85
## 185      PS3 Role-Playing  29.85
## 186      PS4 Role-Playing   8.26
## 187      PSP Role-Playing  11.42
## 188      PSV Role-Playing   2.94
## 189      SAT Role-Playing   0.00
## 190      SCD Role-Playing   0.00
## 191     SNES Role-Playing   2.29
## 192      Wii Role-Playing   5.74
## 193     WiiU Role-Playing   0.86
## 194       WS Role-Playing   0.00
## 195     X360 Role-Playing  44.65
## 196       XB Role-Playing   9.89
## 197     XOne Role-Playing   5.56
## 198     2600      Shooter  24.68
## 199      3DS      Shooter   0.66
## 200       DC      Shooter   0.00
## 201       DS      Shooter   6.62
## 202       GB      Shooter   0.40
## 203      GBA      Shooter   2.35
## 204       GC      Shooter  10.01
## 205      GEN      Shooter   0.00
## 206      N64      Shooter  13.96
## 207      NES      Shooter  29.03
## 208       PC      Shooter  18.39
## 209       PS      Shooter  21.16
## 210      PS2      Shooter  57.53
## 211      PS3      Shooter  81.88
## 212      PS4      Shooter  28.02
## 213      PSP      Shooter  10.26
## 214      PSV      Shooter   1.77
## 215      SAT      Shooter   0.00
## 216     SNES      Shooter   2.67
## 217     TG16      Shooter   0.00
## 218      Wii      Shooter  18.67
## 219     WiiU      Shooter   2.38
## 220     X360      Shooter 174.22
## 221       XB      Shooter  46.16
## 222     XOne      Shooter  31.78
## 223     2600   Simulation   0.42
## 224      3DO   Simulation   0.00
## 225      3DS   Simulation   7.47
## 226       DC   Simulation   0.00
## 227       DS   Simulation  68.56
## 228       GB   Simulation   0.00
## 229      GBA   Simulation   3.61
## 230       GC   Simulation   5.37
## 231      N64   Simulation   5.77
## 232       PC   Simulation  19.94
## 233       PS   Simulation   6.79
## 234      PS2   Simulation  19.37
## 235      PS3   Simulation   4.30
## 236      PS4   Simulation   0.15
## 237      PSP   Simulation   1.90
## 238      PSV   Simulation   0.01
## 239      SAT   Simulation   0.00
## 240     SNES   Simulation   1.39
## 241      Wii   Simulation  23.90
## 242     WiiU   Simulation   0.15
## 243     X360   Simulation   8.50
## 244       XB   Simulation   5.43
## 245     XOne   Simulation   0.28
## 246     2600       Sports   3.22
## 247      3DS       Sports   1.66
## 248       DC       Sports   2.14
## 249       DS       Sports  15.68
## 250       GB       Sports   3.64
## 251      GBA       Sports  10.30
## 252       GC       Sports  18.37
## 253      GEN       Sports   2.70
## 254      N64       Sports  22.07
## 255      NES       Sports   7.00
## 256       NG       Sports   0.00
## 257       PC       Sports   0.34
## 258       PS       Sports  64.02
## 259      PS2       Sports 134.12
## 260      PS3       Sports  60.58
## 261      PS4       Sports  18.23
## 262      PSP       Sports  17.51
## 263      PSV       Sports   1.38
## 264      SAT       Sports   0.00
## 265     SNES       Sports   2.10
## 266      Wii       Sports 151.77
## 267     WiiU       Sports   1.61
## 268     X360       Sports  89.63
## 269       XB       Sports  41.02
## 270     XOne       Sports  14.26
## 271      3DS     Strategy   0.78
## 272       DS     Strategy   8.91
## 273       GB     Strategy   1.49
## 274      GBA     Strategy   4.21
## 275       GC     Strategy   2.23
## 276      GEN     Strategy   0.00
## 277      N64     Strategy   4.64
## 278       PC     Strategy  19.45
## 279       PS     Strategy   6.64
## 280      PS2     Strategy   3.57
## 281      PS3     Strategy   1.87
## 282      PS4     Strategy   0.14
## 283      PSP     Strategy   2.67
## 284      PSV     Strategy   0.05
## 285      SAT     Strategy   0.00
## 286      SCD     Strategy   0.00
## 287     SNES     Strategy   0.30
## 288      Wii     Strategy   2.44
## 289     WiiU     Strategy   0.51
## 290       WS     Strategy   0.00
## 291     X360     Strategy   6.49
## 292       XB     Strategy   2.05
## 293     XOne     Strategy   0.26
aggregate(NA_Sales,by=list(Platform = Platform,Publisher = Publisher),sum)
##      Platform                              Publisher      x
## 1          DS                        10TACLE Studios   0.06
## 2         PS2                        10TACLE Studios   0.01
## 3          PC                             1C Company   0.01
## 4        2600           20th Century Fox Video Games   1.82
## 5          PC                                 2D Boy   0.00
## 6          GC                                    3DO   0.01
## 7         N64                                    3DO   1.78
## 8          PS                                    3DO   3.69
## 9         PS2                                    3DO   0.94
## 10         XB                                    3DO   0.06
## 11       X360                                49Games   0.00
## 12        3DS                              505 Games   0.50
## 13         DS                              505 Games  12.51
## 14         PC                              505 Games   0.06
## 15        PS2                              505 Games   1.00
## 16        PS3                              505 Games   1.92
## 17        PS4                              505 Games   0.36
## 18        PSP                              505 Games   0.94
## 19        PSV                              505 Games   0.02
## 20        Wii                              505 Games   8.84
## 21       WiiU                              505 Games   0.00
## 22       X360                              505 Games   5.31
## 23         XB                              505 Games   0.04
## 24       XOne                              505 Games   0.33
## 25        3DS                                    5pb   0.00
## 26        PS2                                    5pb   0.00
## 27        PS3                                    5pb   0.00
## 28        PS4                                    5pb   0.00
## 29        PSP                                    5pb   0.00
## 30        PSV                                    5pb   0.00
## 31       X360                                    5pb   0.02
## 32       XOne                                    5pb   0.00
## 33         DS                               7G//AMES   0.00
## 34        Wii                               7G//AMES   0.00
## 35         PS                             989 Sports   0.21
## 36         PS                            989 Studios   9.23
## 37        PS3                               Abylight   0.07
## 38         DC                  Acclaim Entertainment   0.00
## 39        GBA                  Acclaim Entertainment   0.74
## 40         GC                  Acclaim Entertainment   2.73
## 41        GEN                  Acclaim Entertainment   1.98
## 42        N64                  Acclaim Entertainment  10.65
## 43         PC                  Acclaim Entertainment   0.01
## 44         PS                  Acclaim Entertainment  12.17
## 45        PS2                  Acclaim Entertainment   7.31
## 46        SAT                  Acclaim Entertainment   0.00
## 47       SNES                  Acclaim Entertainment   4.73
## 48         XB                  Acclaim Entertainment   2.43
## 49         PS                               Accolade   1.25
## 50        3DS                            Ackkstudios   0.00
## 51         DS                            Ackkstudios   0.07
## 52        PS3                            Ackkstudios   0.00
## 53        PSP                            Ackkstudios   0.00
## 54        Wii                            Ackkstudios   0.06
## 55        3DS                                Acquire   0.00
## 56        PS2                                Acquire   0.00
## 57        PS3                                Acquire   0.00
## 58        PS4                                Acquire   0.08
## 59        PSP                                Acquire   0.06
## 60       2600                             Activision  18.17
## 61        3DS                             Activision   2.95
## 62         DC                             Activision   0.00
## 63         DS                             Activision  30.51
## 64         GB                             Activision   0.90
## 65        GBA                             Activision  10.82
## 66         GC                             Activision  10.20
## 67        N64                             Activision   5.17
## 68         PC                             Activision  17.22
## 69         PS                             Activision  17.47
## 70        PS2                             Activision  49.20
## 71        PS3                             Activision  57.25
## 72        PS4                             Activision  16.37
## 73        PSP                             Activision   5.56
## 74        PSV                             Activision   0.88
## 75        Wii                             Activision  41.80
## 76       WiiU                             Activision   2.48
## 77       X360                             Activision 104.61
## 78         XB                             Activision  23.21
## 79       XOne                             Activision  14.93
## 80         PC                    Activision Blizzard   0.08
## 81        GBA                       Activision Value   0.07
## 82         GC                       Activision Value   0.04
## 83         PS                       Activision Value   0.12
## 84        PS2                       Activision Value   0.89
## 85        PS3                       Activision Value   0.85
## 86        PSP                       Activision Value   0.10
## 87        Wii                       Activision Value   2.40
## 88       X360                       Activision Value   0.85
## 89         XB                       Activision Value   0.21
## 90         PS                       Adeline Software   0.10
## 91         PC                               Aerosoft   0.01
## 92        3DS                 Agatsuma Entertainment   0.16
## 93        GBA                 Agatsuma Entertainment   0.06
## 94         PS                                 Agetec   0.08
## 95        PS2                                 Agetec   0.67
## 96        PSP                                 Agetec   0.03
## 97        3DS                            Aksys Games   0.04
## 98         DS                            Aksys Games   0.02
## 99        PS3                            Aksys Games   0.03
## 100       PS4                            Aksys Games   0.00
## 101       PSV                            Aksys Games   0.10
## 102        PC                   Alawar Entertainment   0.00
## 103       3DS                              Alchemist   0.00
## 104        DS                              Alchemist   0.00
## 105       PS2                              Alchemist   0.59
## 106       PS3                              Alchemist   0.00
## 107       PSP                              Alchemist   0.00
## 108      X360                              Alchemist   0.00
## 109        PC                   Alternative Software   0.00
## 110       PS3                   Alternative Software   0.00
## 111       PS4                   Alternative Software   0.00
## 112       Wii                   Alternative Software   0.00
## 113      X360                   Alternative Software   0.00
## 114      XOne                   Alternative Software   0.00
## 115       GBA                                 Altron   0.05
## 116        DS                                 Alvion   0.00
## 117        PS                     American Softworks   0.13
## 118      SNES                          Angel Studios   0.00
## 119      2600                        Answer Software   0.46
## 120        DS                         AQ Interactive   0.28
## 121       PS2                         AQ Interactive   0.06
## 122       PSP                         AQ Interactive   0.00
## 123        PS                              Aqua Plus   0.00
## 124       PS2                              Aqua Plus   0.00
## 125       PS3                              Aqua Plus   0.05
## 126       PS4                              Aqua Plus   0.00
## 127       PSP                              Aqua Plus   0.00
## 128       PSV                              Aqua Plus   0.00
## 129        PS                                  Aques   0.00
## 130       3DS                       Arc System Works   0.00
## 131        DS                       Arc System Works   0.29
## 132       PS3                       Arc System Works   0.25
## 133       PS4                       Arc System Works   0.10
## 134       PSP                       Arc System Works   0.00
## 135       PSV                       Arc System Works   0.14
## 136       GEN                    Arena Entertainment   3.70
## 137       PS2                                   Aria   0.00
## 138        DS                                  Arika   0.00
## 139       PS2                                  Arika   0.04
## 140       3DS                                ArtDink   0.00
## 141        DS                                ArtDink   0.00
## 142        PS                                ArtDink   0.07
## 143       PS2                                ArtDink   0.00
## 144       PSP                                ArtDink   0.00
## 145        PS                             Aruze Corp   0.00
## 146        PS                              ASC Games   1.12
## 147        PC                  Ascaron Entertainment   0.00
## 148        PC             Ascaron Entertainment GmbH   0.00
## 149        GB                    ASCII Entertainment   0.00
## 150       N64                    ASCII Entertainment   0.06
## 151        PS                    ASCII Entertainment   0.64
## 152       PS2                    ASCII Entertainment   0.00
## 153       SAT                    ASCII Entertainment   0.00
## 154      SNES                    ASCII Entertainment   0.00
## 155        DS                      ASCII Media Works   0.00
## 156       PS2                      ASCII Media Works   0.00
## 157       PSP                      ASCII Media Works   0.00
## 158       PSV                      ASCII Media Works   0.00
## 159       PSP                                 Asgard   0.00
## 160       PSV                                 Asgard   0.00
## 161       SAT                                    ASK   0.00
## 162        PS                Asmik Ace Entertainment   0.00
## 163       PS2                Asmik Ace Entertainment   0.00
## 164      SNES                             Asmik Corp   0.00
## 165        DS                                  Aspyr   0.38
## 166       GBA                                  Aspyr   0.01
## 167        PC                                  Aspyr   0.01
## 168      X360                                  Aspyr   0.15
## 169        DS                               Astragon   0.23
## 170        PC                               Astragon   0.01
## 171       3DS                   Asylum Entertainment   0.00
## 172        DS                   Asylum Entertainment   0.04
## 173       Wii                   Asylum Entertainment   0.05
## 174      2600                                  Atari  46.69
## 175       3DS                                  Atari   0.04
## 176        DS                                  Atari   4.45
## 177       GBA                                  Atari   9.12
## 178        GC                                  Atari   4.70
## 179        PC                                  Atari   1.59
## 180        PS                                  Atari   4.48
## 181       PS2                                  Atari  22.22
## 182       PS3                                  Atari   0.86
## 183       PSP                                  Atari   1.52
## 184       Wii                                  Atari   5.13
## 185      X360                                  Atari   3.83
## 186        XB                                  Atari   5.41
## 187       N64                                 Athena   0.02
## 188       PS2                                 Athena   0.00
## 189       3DS                                  Atlus   0.86
## 190        DS                                  Atlus   0.90
## 191       GBA                                  Atlus   0.12
## 192        GC                                  Atlus   0.02
## 193       N64                                  Atlus   0.25
## 194        PS                                  Atlus   0.18
## 195       PS2                                  Atlus   0.47
## 196       PS3                                  Atlus   0.30
## 197       PS4                                  Atlus   0.00
## 198       PSP                                  Atlus   0.41
## 199       PSV                                  Atlus   0.53
## 200       SAT                                  Atlus   0.00
## 201      SNES                                  Atlus   0.00
## 202      WiiU                                  Atlus   0.00
## 203      X360                                  Atlus   0.14
## 204        XB                                  Atlus   0.02
## 205      2600                     Avalon Interactive   0.15
## 206        PS                     Avalon Interactive   0.06
## 207       PS2                     Avalon Interactive   0.06
## 208        XB                     Avalon Interactive   0.07
## 209        DS                              Avanquest   0.84
## 210        PC                              Avanquest   0.01
## 211       PS4                              Avanquest   0.00
## 212       Wii                              Avanquest   0.27
## 213       3DS                     Avanquest Software   0.00
## 214        DS                     Avanquest Software   0.00
## 215        PC                     Avanquest Software   0.00
## 216       PS3                     Avanquest Software   0.40
## 217      X360                     Avanquest Software   0.55
## 218        PS                                  Axela   0.00
## 219       GBA                     BAM! Entertainment   1.58
## 220        GC                     BAM! Entertainment   0.34
## 221       N64                     BAM! Entertainment   0.13
## 222        PS                     BAM! Entertainment   0.20
## 223       PS2                     BAM! Entertainment   0.71
## 224        XB                     BAM! Entertainment   0.20
## 225        DS                              Banpresto   0.07
## 226        GB                              Banpresto   0.00
## 227       GBA                              Banpresto   0.10
## 228       N64                              Banpresto   0.00
## 229        PS                              Banpresto   0.04
## 230       PS2                              Banpresto   0.07
## 231       PSP                              Banpresto   0.00
## 232       SAT                              Banpresto   0.00
## 233      SNES                              Banpresto   0.00
## 234      X360                              Banpresto   0.13
## 235        DS                                Benesse   0.01
## 236        PS                               Berkeley   0.02
## 237        PC                     Bethesda Softworks   3.33
## 238       PS2                     Bethesda Softworks   0.97
## 239       PS3                     Bethesda Softworks   9.09
## 240       PS4                     Bethesda Softworks   4.84
## 241       Wii                     Bethesda Softworks   1.30
## 242      X360                     Bethesda Softworks  15.51
## 243        XB                     Bethesda Softworks   0.24
## 244      XOne                     Bethesda Softworks   4.44
## 245       3DS                    Big Ben Interactive   0.00
## 246        DS                    Big Ben Interactive   0.06
## 247       PS2                    Big Ben Interactive   0.04
## 248       Wii                    Big Ben Interactive   0.68
## 249        PC                         Big Fish Games   0.00
## 250       PS3                     Bigben Interactive   0.04
## 251       PS4                     Bigben Interactive   0.03
## 252       PSV                     Bigben Interactive   0.00
## 253      X360                     Bigben Interactive   0.00
## 254      XOne                     Bigben Interactive   0.03
## 255        PC                      bitComposer Games   0.00
## 256       PS3                      bitComposer Games   0.10
## 257      X360                      bitComposer Games   0.06
## 258        DS                       Black Bean Games   0.15
## 259        PC                       Black Bean Games   0.00
## 260       PS2                       Black Bean Games   0.05
## 261       PS3                       Black Bean Games   0.39
## 262       PSP                       Black Bean Games   0.04
## 263       Wii                       Black Bean Games   0.41
## 264      X360                       Black Bean Games   0.24
## 265       PS2                      Black Label Games   0.59
## 266        DS               Blast! Entertainment Ltd   0.13
## 267       PS2               Blast! Entertainment Ltd   0.08
## 268       Wii               Blast! Entertainment Ltd   0.02
## 269        PC                              Blue Byte   0.00
## 270        PS          BMG Interactive Entertainment   0.67
## 271        PC                    Bohemia Interactive   0.00
## 272      2600                                   Bomb   0.21
## 273       PSP                               Boost On   0.00
## 274       NES                                    BPS   0.00
## 275      SNES                                    BPS   0.00
## 276        DS                    Brash Entertainment   0.40
## 277       PS2                    Brash Entertainment   0.27
## 278       Wii                    Brash Entertainment   0.12
## 279      X360                    Brash Entertainment   0.10
## 280        DS                               Broccoli   0.00
## 281       PS2                               Broccoli   0.00
## 282       PSP                               Broccoli   0.00
## 283       PSV                               Broccoli   0.00
## 284       PSP                              BushiRoad   0.00
## 285       3DS                                 Capcom   1.39
## 286        DC                                 Capcom   0.00
## 287        DS                                 Capcom   4.22
## 288        GB                                 Capcom   0.82
## 289       GBA                                 Capcom   2.34
## 290        GC                                 Capcom   3.87
## 291       GEN                                 Capcom   0.00
## 292       N64                                 Capcom   0.14
## 293       NES                                 Capcom   7.42
## 294        PC                                 Capcom   0.24
## 295        PS                                 Capcom   3.52
## 296       PS2                                 Capcom  13.67
## 297       PS3                                 Capcom  10.55
## 298       PS4                                 Capcom   0.86
## 299       PSP                                 Capcom   2.71
## 300       PSV                                 Capcom   0.35
## 301       SAT                                 Capcom   0.00
## 302      SNES                                 Capcom   7.66
## 303       Wii                                 Capcom   4.43
## 304      WiiU                                 Capcom   0.12
## 305      X360                                 Capcom  13.09
## 306        XB                                 Capcom   0.95
## 307      XOne                                 Capcom   0.24
## 308        DS                                   Cave   0.10
## 309      X360                                   Cave   0.04
## 310      2600                        CBS Electronics   0.29
## 311        PC                                    CCP   0.00
## 312        DS             CDV Software Entertainment   0.02
## 313        PC             CDV Software Entertainment   0.00
## 314       Wii             CDV Software Entertainment   0.09
## 315       3DS                               ChunSoft   0.00
## 316        DS                               ChunSoft   0.37
## 317        GB                               ChunSoft   0.00
## 318       N64                               ChunSoft   0.00
## 319        PS                               ChunSoft   0.00
## 320       PS2                               ChunSoft   0.00
## 321       PSP                               ChunSoft   0.00
## 322       PSV                               ChunSoft   0.00
## 323       SAT                               ChunSoft   0.00
## 324      SNES                               ChunSoft   0.00
## 325      X360                               ChunSoft   0.00
## 326        DS                       City Interactive   0.59
## 327        PC                       City Interactive   0.02
## 328       PS3                       City Interactive   0.32
## 329       Wii                       City Interactive   0.17
## 330      X360                       City Interactive   0.60
## 331       PS3       Cloud Imperium Games Corporation   0.04
## 332      X360       Cloud Imperium Games Corporation   0.04
## 333        PS                         Coconuts Japan   0.01
## 334      SNES                         Coconuts Japan   0.00
## 335       3DS                            Codemasters   0.07
## 336        DS                            Codemasters   0.49
## 337       GBA                            Codemasters   0.17
## 338        GC                            Codemasters   0.04
## 339       N64                            Codemasters   0.11
## 340        PC                            Codemasters   0.03
## 341        PS                            Codemasters   0.68
## 342       PS2                            Codemasters   1.89
## 343       PS3                            Codemasters   2.94
## 344       PS4                            Codemasters   0.13
## 345       PSP                            Codemasters   0.16
## 346       PSV                            Codemasters   0.03
## 347       Wii                            Codemasters   0.48
## 348      X360                            Codemasters   3.85
## 349        XB                            Codemasters   0.73
## 350      XOne                            Codemasters   0.12
## 351        PC                     Codemasters Online   0.00
## 352        DS                      CokeM Interactive   0.29
## 353      2600                                 Coleco   2.87
## 354       PS2                                Comfort   0.00
## 355       PSP                                Comfort   0.00
## 356        DS                               Commseed   0.00
## 357       N64                                Compile   0.00
## 358        PS                                Compile   0.00
## 359       SAT                                Compile   0.00
## 360      SNES                                Compile   0.00
## 361       PS3                          Compile Heart   0.14
## 362       PS4                          Compile Heart   0.00
## 363       PSP                          Compile Heart   0.00
## 364       PSV                          Compile Heart   0.09
## 365      X360                          Compile Heart   0.27
## 366        DS               Conspiracy Entertainment   0.13
## 367       GBA               Conspiracy Entertainment   0.03
## 368        PS               Conspiracy Entertainment   0.15
## 369       PS2               Conspiracy Entertainment   0.04
## 370       PS3               Conspiracy Entertainment   0.04
## 371       PSP               Conspiracy Entertainment   0.04
## 372       Wii               Conspiracy Entertainment   0.16
## 373      X360               Conspiracy Entertainment   0.04
## 374        PS                       Core Design Ltd.   0.16
## 375      2600                           CPG Products   0.50
## 376       3DS                    Crave Entertainment   0.36
## 377        DS                    Crave Entertainment   0.36
## 378       GBA                    Crave Entertainment   0.43
## 379        GC                    Crave Entertainment   0.15
## 380       N64                    Crave Entertainment   0.53
## 381        PS                    Crave Entertainment   0.66
## 382       PS2                    Crave Entertainment   1.04
## 383       PS3                    Crave Entertainment   0.34
## 384       PSP                    Crave Entertainment   0.64
## 385       Wii                    Crave Entertainment   1.26
## 386      X360                    Crave Entertainment   0.35
## 387        XB                    Crave Entertainment   0.79
## 388        DS                          Creative Core   0.00
## 389        PC                            Crimson Cow   0.00
## 390        PS                       Crystal Dynamics   0.95
## 391        PS                                CTO SpA   0.50
## 392        DS                          Culture Brain   0.00
## 393      SNES                          Culture Brain   0.00
## 394        PS                     Culture Publishers   0.05
## 395       PS2                             CyberFront   0.00
## 396       PSP                             CyberFront   0.01
## 397       PSV                             CyberFront   0.00
## 398      X360                             CyberFront   0.00
## 399       PSV                                Cygames   0.00
## 400       3DS                            D3Publisher   0.22
## 401        DS                            D3Publisher   4.17
## 402       GBA                            D3Publisher   0.05
## 403        GC                            D3Publisher   0.12
## 404        PS                            D3Publisher   0.39
## 405       PS2                            D3Publisher   0.60
## 406       PS3                            D3Publisher   0.62
## 407       PS4                            D3Publisher   0.00
## 408       PSP                            D3Publisher   0.81
## 409       PSV                            D3Publisher   0.02
## 410       Wii                            D3Publisher   3.43
## 411      WiiU                            D3Publisher   0.03
## 412      X360                            D3Publisher   1.06
## 413        PC                               Daedalic   0.00
## 414        PC                 Daedalic Entertainment   0.00
## 415       PS2                                  Daito   0.00
## 416       PSP                                  Daito   0.00
## 417      2600                               Data Age   0.66
## 418       Wii                Data Design Interactive   0.25
## 419       SAT                              Data East   0.00
## 420      SNES                              Data East   0.00
## 421       PS2                         Datam Polystar   0.00
## 422       3DS                            Deep Silver   0.10
## 423        DS                            Deep Silver   1.51
## 424        PC                            Deep Silver   0.32
## 425       PS3                            Deep Silver   3.12
## 426       PS4                            Deep Silver   0.57
## 427       PSP                            Deep Silver   0.17
## 428       Wii                            Deep Silver   1.63
## 429      WiiU                            Deep Silver   0.01
## 430      X360                            Deep Silver   4.56
## 431        XB                            Deep Silver   0.37
## 432      XOne                            Deep Silver   0.37
## 433        DS              Destination Software, Inc   0.51
## 434       GBA              Destination Software, Inc   0.24
## 435        DS                              Destineer   1.81
## 436        PC                              Destineer   0.01
## 437       PS2                              Destineer   0.01
## 438       PSP                              Destineer   0.08
## 439       Wii                              Destineer   2.15
## 440       Wii                            Detn8 Games   0.21
## 441        PC                       Devolver Digital   0.00
## 442       PS4                       Devolver Digital   0.00
## 443        DS                        DHM Interactive   0.11
## 444       PSP                        DHM Interactive   0.05
## 445       PS2                               DigiCube   0.00
## 446       3DS             Disney Interactive Studios   1.34
## 447        DS             Disney Interactive Studios  22.70
## 448       GBA             Disney Interactive Studios   5.23
## 449        GC             Disney Interactive Studios   0.46
## 450        PC             Disney Interactive Studios   2.02
## 451       PS2             Disney Interactive Studios   3.04
## 452       PS3             Disney Interactive Studios   5.24
## 453       PS4             Disney Interactive Studios   0.47
## 454       PSP             Disney Interactive Studios   1.39
## 455       PSV             Disney Interactive Studios   0.05
## 456       Wii             Disney Interactive Studios  20.02
## 457      WiiU             Disney Interactive Studios   1.21
## 458      X360             Disney Interactive Studios   7.29
## 459        XB             Disney Interactive Studios   0.35
## 460      XOne             Disney Interactive Studios   0.53
## 461       PSP                                 Dorart   0.00
## 462       PSV                        dramatic create   0.00
## 463        DS               DreamCatcher Interactive   0.62
## 464        PC               DreamCatcher Interactive   0.00
## 465       PS2               DreamCatcher Interactive   0.06
## 466        XB               DreamCatcher Interactive   0.07
## 467        PS                 DreamWorks Interactive   0.07
## 468        DS                              DSI Games   0.17
## 469       GBA                              DSI Games   0.12
## 470       3DS                      DTP Entertainment   0.00
## 471        DS                      DTP Entertainment   0.48
## 472       GBA                      DTP Entertainment   0.17
## 473        PC                      DTP Entertainment   0.03
## 474       PS2                      DTP Entertainment   0.00
## 475       PS3                      DTP Entertainment   0.14
## 476       Wii                      DTP Entertainment   0.29
## 477      X360                      DTP Entertainment   0.51
## 478       PS4               Dusenberry Martin Racing   0.03
## 479      XOne               Dusenberry Martin Racing   0.02
## 480       PS3                               EA Games   0.07
## 481        DS                       Easy Interactive   0.00
## 482       PS2                                  Ecole   0.00
## 483       PSP                                   Edia   0.00
## 484        DC                      Eidos Interactive   0.41
## 485        DS                      Eidos Interactive   2.07
## 486        GB                      Eidos Interactive   0.00
## 487       GBA                      Eidos Interactive   0.84
## 488        GC                      Eidos Interactive   1.80
## 489        PC                      Eidos Interactive   2.88
## 490        PS                      Eidos Interactive  17.15
## 491       PS2                      Eidos Interactive   9.59
## 492       PS3                      Eidos Interactive   3.77
## 493       PSP                      Eidos Interactive   0.68
## 494       Wii                      Eidos Interactive   1.42
## 495      X360                      Eidos Interactive   4.60
## 496        XB                      Eidos Interactive   3.98
## 497       3DS                        Electronic Arts   0.98
## 498        DS                        Electronic Arts  18.65
## 499        GB                        Electronic Arts   0.94
## 500       GBA                        Electronic Arts   9.65
## 501        GC                        Electronic Arts  21.02
## 502       N64                        Electronic Arts  10.14
## 503        PC                        Electronic Arts  28.88
## 504        PS                        Electronic Arts  54.06
## 505       PS2                        Electronic Arts 138.77
## 506       PS3                        Electronic Arts  69.66
## 507       PS4                        Electronic Arts  17.67
## 508       PSP                        Electronic Arts  18.74
## 509       PSV                        Electronic Arts   1.09
## 510       SAT                        Electronic Arts   0.00
## 511       Wii                        Electronic Arts  35.74
## 512      WiiU                        Electronic Arts   0.68
## 513      X360                        Electronic Arts 109.55
## 514        XB                        Electronic Arts  42.35
## 515      XOne                        Electronic Arts  16.50
## 516        PS                 Electronic Arts Victor   0.23
## 517       SAT                                    Elf   0.00
## 518        PS                                  Elite   0.04
## 519        DS                     Empire Interactive   0.74
## 520       GBA                     Empire Interactive   0.06
## 521        GC                     Empire Interactive   0.15
## 522        PC                     Empire Interactive   0.00
## 523        PS                     Empire Interactive   1.08
## 524       PS2                     Empire Interactive   2.78
## 525       PSP                     Empire Interactive   0.28
## 526      X360                     Empire Interactive   0.07
## 527        XB                     Empire Interactive   0.87
## 528        GC                                 Encore   0.01
## 529        PC                                 Encore   0.00
## 530        PS                                 Encore   0.02
## 531        XB                                 Encore   0.01
## 532        GB                       Enix Corporation   0.00
## 533       GBA                       Enix Corporation   0.00
## 534       N64                       Enix Corporation   0.00
## 535       NES                       Enix Corporation   0.33
## 536        PS                       Enix Corporation   0.33
## 537       PS2                       Enix Corporation   0.10
## 538      SNES                       Enix Corporation   0.00
## 539        DS                      Enjoy Gaming ltd.   0.09
## 540        DS                             Enterbrain   0.00
## 541       GBA                             Enterbrain   0.00
## 542        PS                             Enterbrain   0.00
## 543       PS2                             Enterbrain   0.12
## 544       PSP                             Enterbrain   0.00
## 545        PS              EON Digital Entertainment   0.01
## 546       PS4                             Epic Games   0.01
## 547       N64                                  Epoch   0.00
## 548      SNES                                  Epoch   0.00
## 549        DS                                 Ertain   0.05
## 550       GBA                                    ESP   0.00
## 551        PS                                    ESP   0.03
## 552       SAT                                    ESP   0.00
## 553       PS2                        Essential Games   0.01
## 554        PS                        Evolution Games   0.00
## 555        PC                          Evolved Games   0.01
## 556       PS2                          Evolved Games   0.04
## 557       PS3                          Evolved Games   0.05
## 558      X360                          Evolved Games   0.14
## 559        XB                          Evolved Games   0.02
## 560       3DS                   Excalibur Publishing   0.00
## 561        PC                   Excalibur Publishing   0.00
## 562       PSV                        Experience Inc.   0.00
## 563       3DS            Extreme Entertainment Group   0.02
## 564       PS3                     Falcom Corporation   0.00
## 565       PSP                     Falcom Corporation   0.28
## 566       PSV                     Falcom Corporation   0.00
## 567       PS3                                 Fields   0.00
## 568       GBA                       Flashpoint Games   0.03
## 569       Wii                       Flashpoint Games   0.04
## 570       PS2                            Flight-Plan   0.00
## 571        DS                 Focus Home Interactive   0.24
## 572        PC                 Focus Home Interactive   0.11
## 573       PS3                 Focus Home Interactive   0.18
## 574       PS4                 Focus Home Interactive   0.25
## 575       PSV                 Focus Home Interactive   0.01
## 576       Wii                 Focus Home Interactive   0.10
## 577      X360                 Focus Home Interactive   0.75
## 578      XOne                 Focus Home Interactive   0.08
## 579        PC                       Focus Multimedia   0.00
## 580       PSP                                 fonfun   0.00
## 581        DS                    Foreign Media Games   0.27
## 582        DC                              Fortyfive   0.00
## 583       N64                        Fox Interactive   0.20
## 584        PS                        Fox Interactive   3.56
## 585        DS                          From Software   0.03
## 586        PS                          From Software   0.25
## 587       PS2                          From Software   0.02
## 588       PS3                          From Software   0.00
## 589       PSP                          From Software   0.01
## 590        XB                          From Software   0.04
## 591        PS                                   Fuji   0.00
## 592       3DS                           Funbox Media   0.08
## 593       PS3                           Funbox Media   0.04
## 594       PSV                           Funbox Media   0.00
## 595       Wii                           Funbox Media   0.59
## 596        PC                                 Funcom   0.07
## 597        PS                                FunSoft   0.07
## 598        DS                                 Funsta   0.10
## 599       PSP                                 Funsta   0.02
## 600       Wii                                 Funsta   0.01
## 601       3DS                                  FuRyu   0.11
## 602        DS                                  FuRyu   0.00
## 603       PSP                                  FuRyu   0.00
## 604       PSV                                  FuRyu   0.00
## 605       PS4                      FuRyu Corporation   0.02
## 606      X360                                  G.Rev   0.00
## 607       SAT                                   Gaga   0.00
## 608        PS                 Gainax Network Systems   0.00
## 609        DS                                 Gakken   0.00
## 610       GEN                              Game Arts   0.00
## 611        DS                           Game Factory   2.20
## 612       GBA                           Game Factory   0.25
## 613       PS2                           Game Factory   0.04
## 614       PSP                           Game Factory   0.06
## 615       Wii                           Game Factory   0.76
## 616        DS                              Game Life   0.13
## 617       PS3                             Gamebridge   0.18
## 618      X360                             Gamebridge   0.12
## 619        DS                               Gamecock   0.06
## 620        PC                               Gamecock   0.00
## 621       PS3                               Gamecock   0.05
## 622      X360                               Gamecock   0.05
## 623        DS                               Gameloft   0.10
## 624        DS                 GameMill Entertainment   0.51
## 625       Wii                 GameMill Entertainment   0.61
## 626      X360                 GameMill Entertainment   0.16
## 627       N64                                GameTek   0.08
## 628        PC                Gathering of Developers   0.00
## 629       PS2                Gathering of Developers   0.32
## 630        XB                Gathering of Developers   0.29
## 631        PS                  General Entertainment   0.00
## 632       3DS                                  Genki   0.00
## 633        DC                                  Genki   0.00
## 634        DS                                  Genki   0.00
## 635       PS2                                  Genki   0.44
## 636       PS3                                  Genki   0.00
## 637       PSP                                  Genki   0.00
## 638        XB                                  Genki   0.05
## 639        DS                            Genterprise   0.00
## 640       3DS                             Ghostlight   0.28
## 641        DS                             Ghostlight   0.33
## 642       PS2                             Ghostlight   0.24
## 643       PS3                             Ghostlight   0.09
## 644       PSP                             Ghostlight   0.28
## 645       Wii                             Ghostlight   0.00
## 646       PSV                                   Giga   0.00
## 647       PSP                                 Giza10   0.00
## 648       SAT                                  Glams   0.00
## 649        DS                 Global A Entertainment   0.04
## 650       PSP                 Global A Entertainment   0.09
## 651       GBA                            Global Star   0.29
## 652        GC                            Global Star   0.46
## 653       PS2                            Global Star   2.62
## 654        XB                            Global Star   1.88
## 655       PS2                            GN Software   0.00
## 656       PSP                            GN Software   0.00
## 657        PC                                    GOA   0.00
## 658       GBA                           Gotham Games   0.44
## 659        GC                           Gotham Games   0.04
## 660        PS                           Gotham Games   0.23
## 661       PS2                           Gotham Games   1.40
## 662        XB                           Gotham Games   0.16
## 663        DS                               Graffiti   0.12
## 664       PSP                               Graffiti   0.05
## 665       Wii                               Graffiti   0.19
## 666       PSP                       Grand Prix Games   0.00
## 667        PC                 Graphsim Entertainment   0.00
## 668       N64                Gremlin Interactive Ltd   0.16
## 669        PS                Gremlin Interactive Ltd   0.50
## 670      X360                  Griffin International   0.08
## 671        XB                           Groove Games   0.07
## 672        DS                                    GSP   1.04
## 673        PC                                    GSP   0.00
## 674       Wii                                    GSP   0.12
## 675       N64                         GT Interactive   4.77
## 676        PS                         GT Interactive  10.80
## 677       3DS                                 GungHo   0.00
## 678        DS                                 GungHo   0.23
## 679       PS3                                 GungHo   0.03
## 680       PSP                                 GungHo   0.28
## 681       PSV                                 GungHo   0.30
## 682        DS                                   Gust   0.08
## 683        PS                                   Gust   0.00
## 684       PS2                                   Gust   0.07
## 685       PSP                                   Gust   0.00
## 686       PSV                                   Gust   0.00
## 687       PS2                              Hackberry   0.00
## 688       NES                         HAL Laboratory   0.06
## 689        PS                    Hamster Corporation   0.16
## 690       PS2                    Hamster Corporation   0.00
## 691       3DS                               Happinet   0.00
## 692       PS4                 Harmonix Music Systems   0.25
## 693      XOne                 Harmonix Music Systems   0.35
## 694       GBA                     Hasbro Interactive   0.01
## 695       N64                     Hasbro Interactive   0.89
## 696        PC                     Hasbro Interactive   1.49
## 697        PS                     Hasbro Interactive   8.60
## 698        PC                      Havas Interactive   0.01
## 699        PC                           Headup Games   0.00
## 700        PS                           Hearty Robin   0.00
## 701        PS                                   Hect   0.00
## 702      SNES                                   Hect   0.00
## 703       PS4                            Hello Games   0.58
## 704        PC                        Her Interactive   0.03
## 705       GBA                        Hip Interactive   0.13
## 706       PS2                        Hip Interactive   0.02
## 707        XB                        Hip Interactive   0.11
## 708        DS                        HMH Interactive   0.00
## 709        PC                        HMH Interactive   0.00
## 710        PC           Home Entertainment Suppliers   0.00
## 711       PS3           Home Entertainment Suppliers   0.00
## 712      X360           Home Entertainment Suppliers   0.09
## 713        DS                   Hudson Entertainment   0.00
## 714       GBA                   Hudson Entertainment   0.13
## 715       N64                   Hudson Entertainment   0.05
## 716        PS                   Hudson Entertainment   0.00
## 717       PSP                   Hudson Entertainment   0.06
## 718       Wii                   Hudson Entertainment   0.09
## 719       3DS                            Hudson Soft   0.13
## 720        DS                            Hudson Soft   0.16
## 721       GBA                            Hudson Soft   0.00
## 722        GC                            Hudson Soft   0.06
## 723       N64                            Hudson Soft   0.59
## 724       NES                            Hudson Soft   0.66
## 725        NG                            Hudson Soft   0.00
## 726        PS                            Hudson Soft   0.02
## 727       PS2                            Hudson Soft   0.00
## 728       PS3                            Hudson Soft   0.02
## 729       PSP                            Hudson Soft   0.00
## 730       SAT                            Hudson Soft   0.00
## 731      SNES                            Hudson Soft   0.00
## 732      TG16                            Hudson Soft   0.00
## 733       Wii                            Hudson Soft   0.61
## 734      X360                            Hudson Soft   0.27
## 735        XB                            Hudson Soft   0.03
## 736        PS                    Human Entertainment   0.06
## 737       SAT                    Human Entertainment   0.00
## 738      SNES                    Human Entertainment   0.00
## 739       PSV                                  HuneX   0.00
## 740        PC                    Iceberg Interactive   0.02
## 741        PC                            id Software   0.02
## 742        DS                           Idea Factory   0.00
## 743       PS2                           Idea Factory   0.00
## 744       PS3                           Idea Factory   0.02
## 745       PS4                           Idea Factory   0.00
## 746       PSP                           Idea Factory   0.24
## 747       PSV                           Idea Factory   0.19
## 748      X360                           Idea Factory   0.08
## 749       PS4             Idea Factory International   0.02
## 750       PSV             Idea Factory International   0.21
## 751       3DS                           IE Institute   0.00
## 752        DS                           IE Institute   0.00
## 753        DS                 Ignition Entertainment   1.12
## 754       GBA                 Ignition Entertainment   0.20
## 755        GC                 Ignition Entertainment   0.05
## 756       PS2                 Ignition Entertainment   1.00
## 757       PS3                 Ignition Entertainment   0.27
## 758       PSP                 Ignition Entertainment   0.52
## 759       Wii                 Ignition Entertainment   0.53
## 760      X360                 Ignition Entertainment   0.16
## 761        XB                 Ignition Entertainment   0.18
## 762       PS2                     Illusion Softworks   0.34
## 763       SAT                                 Imadio   0.00
## 764       PSP                            Image Epoch   0.00
## 765       3DS                        imageepoch Inc.   0.00
## 766       3DO                             Imageworks   0.00
## 767      2600                                 Imagic   4.51
## 768        GB                              Imagineer   0.00
## 769       N64                              Imagineer   0.09
## 770        PS                              Imagineer   0.00
## 771       SAT                              Imagineer   0.00
## 772      SNES                              Imagineer   0.00
## 773      SNES                                   Imax   0.00
## 774       PS2                            Indie Games   0.09
## 775        DC                             Infogrames   0.00
## 776       GBA                             Infogrames   3.08
## 777        GC                             Infogrames   2.28
## 778       N64                             Infogrames   0.36
## 779        PC                             Infogrames   0.01
## 780        PS                             Infogrames   2.67
## 781       PS2                             Infogrames   1.33
## 782        XB                             Infogrames   0.77
## 783        PC                        Insomniac Games   0.02
## 784       PS4                        Insomniac Games   0.05
## 785      XOne                        Insomniac Games   0.03
## 786       PS2                           Interchannel   0.00
## 787       PS2                     Interchannel-Holon   0.00
## 788       3DS                              Intergrow   0.00
## 789       GBA                              Interplay   0.40
## 790       N64                              Interplay   0.35
## 791        PC                              Interplay   0.01
## 792        PS                              Interplay   2.01
## 793       PS2                              Interplay   0.68
## 794      SNES                              Interplay   0.00
## 795        XB                              Interplay   0.41
## 796        PS                  Interplay Productions   0.05
## 797       PS3             Interworks Unlimited, Inc.   0.01
## 798       3DS                           Inti Creates   0.00
## 799       PS4                  Introversion Software   0.01
## 800        PC                   inXile Entertainment   0.02
## 801       3DS              Irem Software Engineering   0.00
## 802        PS              Irem Software Engineering   0.01
## 803       PS2              Irem Software Engineering   0.00
## 804       PS3              Irem Software Engineering   0.00
## 805       PSP              Irem Software Engineering   0.11
## 806      2600                       ITT Family Games   0.32
## 807       PSP                              Ivolgamus   0.03
## 808        DS                                   iWin   0.00
## 809        DS                      Jack of All Games   0.04
## 810       GBA                      Jack of All Games   0.27
## 811        DS                                 Jaleco   0.08
## 812       GBA                                 Jaleco   0.01
## 813        GC                                 Jaleco   0.05
## 814        PS                                 Jaleco   0.39
## 815       PS2                                 Jaleco   0.10
## 816       SAT                                 Jaleco   0.00
## 817       Wii                                 Jaleco   0.00
## 818        XB                                 Jaleco   0.16
## 819       PS2                     Jester Interactive   0.70
## 820        GB                                Jorudan   0.00
## 821       GBA                                Jorudan   0.00
## 822        DS                     JoWood Productions   0.25
## 823        GC                     JoWood Productions   0.03
## 824        PC                     JoWood Productions   0.09
## 825       PS2                     JoWood Productions   0.04
## 826       Wii                     JoWood Productions   0.41
## 827      X360                     JoWood Productions   0.03
## 828        XB                     JoWood Productions   0.02
## 829        PC                            Just Flight   0.00
## 830        PS                                    JVC   2.25
## 831       SAT                                    JVC   0.00
## 832       3DS                         Kadokawa Games   0.00
## 833       PS3                         Kadokawa Games   0.00
## 834       PSP                         Kadokawa Games   0.00
## 835       PSV                         Kadokawa Games   0.00
## 836       3DS                        Kadokawa Shoten   0.00
## 837        DS                        Kadokawa Shoten   0.00
## 838        PS                        Kadokawa Shoten   0.46
## 839       PS2                        Kadokawa Shoten   0.00
## 840       PSP                        Kadokawa Shoten   0.00
## 841       PSV                        Kadokawa Shoten   0.00
## 842       SAT                        Kadokawa Shoten   0.00
## 843       Wii                        Kadokawa Shoten   0.00
## 844       PS3                            Kaga Create   0.00
## 845       PSP                            Kaga Create   0.00
## 846       PSV                            Kaga Create   0.00
## 847        PC                          Kalypso Media   0.28
## 848       PS3                          Kalypso Media   0.06
## 849       PS4                          Kalypso Media   0.05
## 850      X360                          Kalypso Media   0.61
## 851        DS                                  Kamui   0.00
## 852       PS2                            Kando Games   0.02
## 853       PSP                    Karin Entertainment   0.00
## 854       GBA                                  Kemco   0.07
## 855        GC                                  Kemco   0.19
## 856       N64                                  Kemco   0.93
## 857        PS                                  Kemco   0.08
## 858       PS2                                  Kemco   0.13
## 859      SNES                                  Kemco   0.00
## 860        XB                                  Kemco   0.21
## 861       PS2                                    KID   0.00
## 862       SAT                                    KID   0.00
## 863        DS                           Kids Station   0.00
## 864       GBA                           King Records   0.00
## 865       GBA                    Knowledge Adventure   0.43
## 866       Wii                    Knowledge Adventure   0.80
## 867       3DS                             Koch Media   0.00
## 868        DS                             Koch Media   0.65
## 869        PC                             Koch Media   0.00
## 870       PS2                             Koch Media   0.22
## 871       PS3                             Koch Media   0.11
## 872       PS4                             Koch Media   0.10
## 873       PSP                             Koch Media   0.35
## 874       Wii                             Koch Media   0.57
## 875      X360                             Koch Media   0.21
## 876      XOne                             Koch Media   0.10
## 877        PS               Kokopeli Digital Studios   0.02
## 878       3DO           Konami Digital Entertainment   0.00
## 879       3DS           Konami Digital Entertainment   0.60
## 880        DC           Konami Digital Entertainment   0.00
## 881        DS           Konami Digital Entertainment   4.34
## 882        GB           Konami Digital Entertainment   0.00
## 883       GBA           Konami Digital Entertainment  12.14
## 884        GC           Konami Digital Entertainment   1.87
## 885       GEN           Konami Digital Entertainment   0.00
## 886       N64           Konami Digital Entertainment   2.26
## 887       NES           Konami Digital Entertainment   4.49
## 888        PC           Konami Digital Entertainment   0.01
## 889        PS           Konami Digital Entertainment   9.33
## 890       PS2           Konami Digital Entertainment  21.73
## 891       PS3           Konami Digital Entertainment   8.57
## 892       PS4           Konami Digital Entertainment   1.76
## 893       PSP           Konami Digital Entertainment   4.24
## 894       PSV           Konami Digital Entertainment   0.29
## 895       SAT           Konami Digital Entertainment   0.00
## 896      SNES           Konami Digital Entertainment   0.35
## 897       Wii           Konami Digital Entertainment  10.12
## 898      X360           Konami Digital Entertainment   6.29
## 899        XB           Konami Digital Entertainment   3.20
## 900      XOne           Konami Digital Entertainment   0.57
## 901        XB                              Kool Kizz   0.03
## 902      SNES                                    KSS   0.00
## 903      SNES                                 Laguna   0.16
## 904        DS                     Legacy Interactive   0.04
## 905       GBA                             LEGO Media   0.14
## 906       N64                             LEGO Media   0.51
## 907        PC                             LEGO Media   0.00
## 908        PS                             LEGO Media   0.36
## 909       3DS                                Level 5   0.20
## 910        DS                                Level 5   0.00
## 911       PSP                                Level 5   0.00
## 912       PSV                                Level 5   0.00
## 913       Wii                                Level 5   0.00
## 914      WiiU                                Level 5   0.00
## 915        DS                  Lexicon Entertainment   0.04
## 916       3DS                            Licensed 4U   0.00
## 917        DS                            Licensed 4U   0.00
## 918        PC                 Lighthouse Interactive   0.00
## 919       GBA                           Liquid Games   0.19
## 920       3DS                           Little Orbit   0.07
## 921        DS                           Little Orbit   0.06
## 922       PS3                           Little Orbit   0.05
## 923       PS4                           Little Orbit   0.03
## 924       Wii                           Little Orbit   0.13
## 925      WiiU                           Little Orbit   0.09
## 926      X360                           Little Orbit   0.08
## 927      XOne                           Little Orbit   0.02
## 928        PS                                  Locus   0.00
## 929       GBA                              LSP Games   0.05
## 930       PS2                              LSP Games   0.03
## 931       3DS                              LucasArts   0.61
## 932        DS                              LucasArts   6.52
## 933       GBA                              LucasArts   0.06
## 934        GC                              LucasArts   2.60
## 935       N64                              LucasArts   0.21
## 936        PC                              LucasArts   1.36
## 937        PS                              LucasArts   2.07
## 938       PS2                              LucasArts  10.90
## 939       PS3                              LucasArts   3.65
## 940       PSP                              LucasArts   4.18
## 941       Wii                              LucasArts  10.02
## 942      X360                              LucasArts   6.07
## 943        XB                              LucasArts   1.72
## 944        GC                               Mad Catz   0.15
## 945      X360                               Mad Catz   0.07
## 946        XB                               Mad Catz   0.02
## 947        PS                        Magical Company   0.15
## 948       PS2                                  Magix   0.17
## 949       3DS                  Majesco Entertainment   0.45
## 950        DS                  Majesco Entertainment   3.44
## 951       GBA                  Majesco Entertainment   3.15
## 952       PS2                  Majesco Entertainment   0.05
## 953       PS3                  Majesco Entertainment   0.03
## 954       PSP                  Majesco Entertainment   0.16
## 955       Wii                  Majesco Entertainment   4.23
## 956      X360                  Majesco Entertainment   0.36
## 957        XB                  Majesco Entertainment   0.04
## 958      XOne                  Majesco Entertainment   0.17
## 959        PC                            Mamba Games   0.00
## 960       PSV                   Marvel Entertainment   0.00
## 961       3DS                Marvelous Entertainment   0.54
## 962       PSP                Marvelous Entertainment   0.00
## 963       PSV                Marvelous Entertainment   0.26
## 964       PSV                        Marvelous Games   0.00
## 965       3DS                  Marvelous Interactive   0.12
## 966        DS                  Marvelous Interactive   0.30
## 967       GBA                  Marvelous Interactive   0.08
## 968        GC                  Marvelous Interactive   0.19
## 969       PS2                  Marvelous Interactive   0.00
## 970       PS3                  Marvelous Interactive   0.14
## 971       PS4                  Marvelous Interactive   0.08
## 972       PSP                  Marvelous Interactive   0.26
## 973       PSV                  Marvelous Interactive   0.17
## 974       Wii                  Marvelous Interactive   0.27
## 975      X360                  Marvelous Interactive   0.00
## 976        PC                      Masque Publishing   0.01
## 977        DS                           Mastertronic   1.05
## 978        PC                           Mastertronic   0.01
## 979       PS2                           Mastertronic   0.01
## 980       Wii                           Mastertronic   0.00
## 981      X360                           Mastertronic   0.00
## 982       3DS                                Mastiff   0.04
## 983        DS                                Mastiff   0.45
## 984       GBA                                Mastiff   0.07
## 985        PC                                Mastiff   0.02
## 986       PS2                                Mastiff   0.03
## 987       Wii                                Mastiff   1.42
## 988        XB                                Mastiff   0.01
## 989      2600                     Mattel Interactive   2.72
## 990        PS                     Mattel Interactive   0.33
## 991        PS                               Max Five   0.03
## 992       3DS                   Maximum Family Games   0.03
## 993        PC                                  Maxis   1.20
## 994        PS                                  Maxis   0.68
## 995        PC                      MC2 Entertainment   0.00
## 996        XB                      MC2 Entertainment   0.03
## 997       PS2                    Media Entertainment   0.00
## 998        GB                          Media Factory   0.00
## 999       N64                          Media Factory   0.00
## 1000      GBA                            Media Rings   0.14
## 1001     SNES                            Media Rings   0.00
## 1002       PS                            Media Works   0.00
## 1003      PS2                            Media Works   0.00
## 1004      SAT                            Media Works   0.00
## 1005       PS                             MediaQuest   0.03
## 1006     2600                           Men-A-Vision   0.72
## 1007       DS                     Mentor Interactive   0.99
## 1008       DS                          Mercury Games   0.12
## 1009      PSP                          Mercury Games   0.05
## 1010       PC                            Merscom LLC   0.00
## 1011      PS2                               Metro 3D   0.61
## 1012      Wii                               Metro 3D   0.14
## 1013       XB                               Metro 3D   0.02
## 1014      PS2                            Michaelsoft   0.00
## 1015      3DO                            Micro Cabin   0.00
## 1016      SAT                            Micro Cabin   0.00
## 1017      GBA                               Microids   0.01
## 1018       PC                               Microids   0.00
## 1019      PS2                               Microids   0.03
## 1020      PS4                               Microids   0.01
## 1021       XB                               Microids   0.18
## 1022       PC                             Microprose   0.02
## 1023       PS                             Microprose   0.68
## 1024       PC                 Microsoft Game Studios   3.53
## 1025     WiiU                 Microsoft Game Studios   0.18
## 1026     X360                 Microsoft Game Studios 101.67
## 1027       XB                 Microsoft Game Studios  34.87
## 1028     XOne                 Microsoft Game Studios  15.10
## 1029       DS        Midas Interactive Entertainment   0.09
## 1030       PS        Midas Interactive Entertainment   0.31
## 1031      PS2        Midas Interactive Entertainment   0.83
## 1032      PSP        Midas Interactive Entertainment   0.05
## 1033      Wii        Midas Interactive Entertainment   0.06
## 1034       DS                           Midway Games   1.57
## 1035      GBA                           Midway Games   0.35
## 1036       GC                           Midway Games   2.66
## 1037      N64                           Midway Games   6.13
## 1038       PC                           Midway Games   0.00
## 1039       PS                           Midway Games   4.45
## 1040      PS2                           Midway Games  13.54
## 1041      PS3                           Midway Games   2.57
## 1042      PSP                           Midway Games   1.19
## 1043      Wii                           Midway Games   3.71
## 1044     X360                           Midway Games   3.23
## 1045       XB                           Midway Games   6.06
## 1046      Wii                              Milestone   0.08
## 1047      PS4                        Milestone S.r.l   0.00
## 1048     XOne                        Milestone S.r.l   0.00
## 1049       PC                       Milestone S.r.l.   0.00
## 1050      PS3                       Milestone S.r.l.   0.04
## 1051      PS4                       Milestone S.r.l.   0.09
## 1052      PSV                       Milestone S.r.l.   0.00
## 1053     X360                       Milestone S.r.l.   0.04
## 1054     XOne                       Milestone S.r.l.   0.06
## 1055      PS2                         Minato Station   0.00
## 1056      PS3                         Minato Station   0.00
## 1057      PSV                         Minato Station   0.00
## 1058       DS                              Mindscape   1.87
## 1059      N64                              Mindscape   0.02
## 1060       PS                              Mindscape   0.51
## 1061      PS2                              Mindscape   0.07
## 1062      Wii                              Mindscape   2.03
## 1063     X360                              Mindscape   0.10
## 1064       XB                              Mindscape   0.04
## 1065       DS                          Mirai Shounen   0.00
## 1066     SNES                                 Misawa   0.00
## 1067      N64                                 Mitsui   0.06
## 1068      3DS                              mixi, Inc   0.00
## 1069     XOne                                MLB.com   0.04
## 1070       PC                                 Mojang   0.02
## 1071      PS3                                 Mojang   0.25
## 1072      PS4                                 Mojang   0.23
## 1073     X360                                 Mojang   0.46
## 1074     XOne                                 Mojang   0.29
## 1075       PC               Monte Christo Multimedia   0.00
## 1076     X360                                   Moss   0.10
## 1077       DS                                    MTO   0.00
## 1078       PS                                    MTO   0.00
## 1079       DS                              MTV Games   0.09
## 1080      PS2                              MTV Games   0.80
## 1081      PS3                              MTV Games   3.20
## 1082      PSP                              MTV Games   0.24
## 1083      Wii                              MTV Games   5.72
## 1084     X360                              MTV Games   4.93
## 1085      PS2                   Mud Duck Productions   0.20
## 1086       XB                   Mud Duck Productions   0.32
## 1087       DS                            Mumbo Jumbo   0.27
## 1088       PC                            Mumbo Jumbo   0.01
## 1089      PSP                            Mumbo Jumbo   0.09
## 1090      Wii                            Mumbo Jumbo   0.16
## 1091       DS                                  Mycom   0.00
## 1092      PS2                           Myelin Media   0.04
## 1093      PSP                           Myelin Media   0.03
## 1094       XB                           Myelin Media   0.02
## 1095     2600                               Mystique   0.76
## 1096      3DS                                    N/A   0.00
## 1097       DS                                    N/A   0.04
## 1098      GBA                                    N/A   5.69
## 1099       PC                                    N/A   0.06
## 1100       PS                                    N/A   0.86
## 1101      PS2                                    N/A   1.67
## 1102      PS3                                    N/A   0.00
## 1103      PSP                                    N/A   0.06
## 1104      PSV                                    N/A   0.00
## 1105      Wii                                    N/A   0.15
## 1106     X360                                    N/A   0.01
## 1107      3DS                     Namco Bandai Games   1.55
## 1108       DC                     Namco Bandai Games   0.00
## 1109       DS                     Namco Bandai Games   2.36
## 1110       GB                     Namco Bandai Games   0.00
## 1111      GBA                     Namco Bandai Games   3.81
## 1112       GC                     Namco Bandai Games   2.89
## 1113      N64                     Namco Bandai Games   1.42
## 1114      NES                     Namco Bandai Games   2.74
## 1115       PC                     Namco Bandai Games   0.54
## 1116       PS                     Namco Bandai Games   3.96
## 1117      PS2                     Namco Bandai Games  16.50
## 1118      PS3                     Namco Bandai Games  11.54
## 1119      PS4                     Namco Bandai Games   3.04
## 1120      PSP                     Namco Bandai Games   2.10
## 1121      PSV                     Namco Bandai Games   0.45
## 1122      SAT                     Namco Bandai Games   0.00
## 1123     SNES                     Namco Bandai Games   0.00
## 1124      Wii                     Namco Bandai Games   4.90
## 1125     WiiU                     Namco Bandai Games   0.68
## 1126       WS                     Namco Bandai Games   0.00
## 1127     X360                     Namco Bandai Games   7.72
## 1128       XB                     Namco Bandai Games   1.90
## 1129     XOne                     Namco Bandai Games   1.42
## 1130      3DS                                Natsume   0.12
## 1131       DS                                Natsume   0.52
## 1132      GBA                                Natsume   0.22
## 1133      N64                                Natsume   0.08
## 1134       PS                                Natsume   1.14
## 1135      PS2                                Natsume   0.32
## 1136      PSP                                Natsume   0.05
## 1137      Wii                                Natsume   0.07
## 1138     X360                           Navarre Corp   0.04
## 1139      PS2                             Naxat Soft   0.00
## 1140      SAT                                    NCS   0.00
## 1141       PC                                 NCSoft   1.05
## 1142       GC                        NDA Productions   0.09
## 1143     PCFX                                    NEC   0.00
## 1144      SAT                                    NEC   0.00
## 1145     TG16                                    NEC   0.00
## 1146       DC                       NEC Interchannel   0.00
## 1147      SAT                       NEC Interchannel   0.00
## 1148       DS                     Neko Entertainment   0.07
## 1149      Wii                     Neko Entertainment   0.13
## 1150      PSP                                NetRevo   0.00
## 1151       PS                                    New   0.00
## 1152       PC                    New World Computing   0.01
## 1153      GBA                               NewKidCo   0.25
## 1154       GC                               NewKidCo   0.05
## 1155      N64                               NewKidCo   0.29
## 1156       PS                               NewKidCo   0.30
## 1157       DS                                  Nexon   0.00
## 1158     SNES                             Nichibutsu   0.00
## 1159      PS4               Nihon Falcom Corporation   0.00
## 1160      PSP               Nihon Falcom Corporation   0.00
## 1161      PSV               Nihon Falcom Corporation   0.15
## 1162      3DS                               Nintendo  52.73
## 1163       DS                               Nintendo 118.39
## 1164       GB                               Nintendo 111.66
## 1165      GBA                               Nintendo  52.65
## 1166       GC                               Nintendo  46.60
## 1167      N64                               Nintendo  75.30
## 1168      NES                               Nintendo 106.29
## 1169     SNES                               Nintendo  45.14
## 1170      Wii                               Nintendo 182.02
## 1171     WiiU                               Nintendo  26.09
## 1172      PS2                           Nippon Amuse   0.00
## 1173      3DS                        Nippon Columbia   0.00
## 1174      3DS                   Nippon Ichi Software   0.54
## 1175       DS                   Nippon Ichi Software   0.13
## 1176       PS                   Nippon Ichi Software   0.02
## 1177      PS2                   Nippon Ichi Software   0.07
## 1178      PS3                   Nippon Ichi Software   2.10
## 1179      PS4                   Nippon Ichi Software   0.41
## 1180      PSP                   Nippon Ichi Software   0.44
## 1181      PSV                   Nippon Ichi Software   1.31
## 1182      Wii                   Nippon Ichi Software   0.12
## 1183     WiiU                   Nippon Ichi Software   0.08
## 1184     SNES                         Nippon Telenet   0.00
## 1185      PS3                              Nitroplus   0.00
## 1186      PSV                              Nitroplus   0.00
## 1187       DS                                Nobilis   1.55
## 1188       PC                                Nobilis   0.00
## 1189      Wii                                Nobilis   0.06
## 1190       DS                            Nordcurrent   0.13
## 1191      Wii                            Nordcurrent   0.26
## 1192       DS                           Nordic Games   0.25
## 1193       PC                           Nordic Games   0.03
## 1194      PS3                           Nordic Games   0.04
## 1195      PS4                           Nordic Games   0.15
## 1196      Wii                           Nordic Games   0.18
## 1197     WiiU                           Nordic Games   0.03
## 1198     X360                           Nordic Games   0.03
## 1199     XOne                           Nordic Games   0.05
## 1200       PC                              NovaLogic   0.01
## 1201      PS2                              NovaLogic   0.22
## 1202       XB                              NovaLogic   0.25
## 1203       PC                            Number None   0.00
## 1204       DS                                O-Games   0.20
## 1205      PS3                                O-Games   0.12
## 1206      Wii                                O-Games   0.11
## 1207     X360                                O-Games   0.01
## 1208       DS                       O3 Entertainment   0.12
## 1209       GC                       O3 Entertainment   0.07
## 1210      N64                                  Ocean   1.21
## 1211      NES                                  Ocean   0.25
## 1212       PS                                  Ocean   0.60
## 1213     SNES                                  Ocean   0.00
## 1214      3DS                          Office Create   0.00
## 1215       PS                              On Demand   0.12
## 1216      PS3                              Ongakukan   0.00
## 1217       PS                         Origin Systems   0.05
## 1218      PSP                                Otomate   0.00
## 1219       DS                     Oxygen Interactive   0.53
## 1220      PS2                     Oxygen Interactive   0.98
## 1221      PSP                     Oxygen Interactive   0.21
## 1222      Wii                     Oxygen Interactive   0.25
## 1223     X360                     Oxygen Interactive   0.04
## 1224       DS                               P2 Games   0.00
## 1225      Wii                               P2 Games   0.02
## 1226      PS2            Pacific Century Cyber Works   0.11
## 1227     SNES                          Pack-In-Video   0.00
## 1228      N64                           Pack In Soft   0.25
## 1229      NES                                 Palcom   3.38
## 1230       PS                       Panther Software   0.02
## 1231       DS                                   Paon   0.00
## 1232      PS2                                   Paon   0.00
## 1233      PSP                                   Paon   0.00
## 1234      PS3                       Paon Corporation   0.00
## 1235       PC                    Paradox Development   0.00
## 1236       PC                    Paradox Interactive   0.05
## 1237     2600                           Parker Bros.   4.65
## 1238       DS          Performance Designed Products   0.16
## 1239      Wii          Performance Designed Products   0.18
## 1240       XB                             Phantagram   0.03
## 1241     X360                            Phantom EFX   0.09
## 1242       DS                             Phenomedia   0.16
## 1243       DS                          Phoenix Games   0.02
## 1244      PSP                                 Piacci   0.00
## 1245       DS                               Pinnacle   0.00
## 1246       PC                               Pinnacle   0.00
## 1247      Wii                               Pinnacle   0.00
## 1248       PS                            Pioneer LDC   0.23
## 1249      GBA                                Play It   0.02
## 1250      PS2                                Play It   2.31
## 1251      PSP                                Play It   0.20
## 1252       DS                 Playlogic Game Factory   0.20
## 1253       PC                 Playlogic Game Factory   0.02
## 1254      PS2                 Playlogic Game Factory   0.06
## 1255      PS3                 Playlogic Game Factory   0.11
## 1256      PSP                 Playlogic Game Factory   0.05
## 1257      Wii                 Playlogic Game Factory   0.30
## 1258     X360                 Playlogic Game Factory   0.20
## 1259       PS                              Playmates   0.16
## 1260      PS2                               Playmore   0.00
## 1261       DS                                  PlayV   0.10
## 1262       DS                                 Plenty   0.00
## 1263      PSP                             PM Studios   0.09
## 1264       PS                            Pony Canyon   0.03
## 1265       DS                           PopCap Games   0.55
## 1266       PC                           PopCap Games   0.06
## 1267      PS3                           PopCap Games   0.18
## 1268     X360                           PopCap Games   0.31
## 1269      Wii                         Popcorn Arcade   0.45
## 1270       PS                        PopTop Software   0.06
## 1271     SNES                                    Pow   0.00
## 1272      3DS                                  PQube   0.05
## 1273       DS                                  PQube   0.10
## 1274       PC                                  PQube   0.00
## 1275      PS2                                  PQube   0.03
## 1276      PS3                                  PQube   0.74
## 1277      PS4                                  PQube   0.11
## 1278      PSP                                  PQube   0.18
## 1279      PSV                                  PQube   0.12
## 1280      Wii                                  PQube   0.09
## 1281     X360                                  PQube   0.44
## 1282     XOne                                  PQube   0.05
## 1283      PS2                          Princess Soft   0.00
## 1284      PS2                              Prototype   0.00
## 1285      PS3                              Prototype   0.00
## 1286      PSP                              Prototype   0.00
## 1287      PSV                              Prototype   0.00
## 1288     X360                              Prototype   0.00
## 1289       PS                              Psygnosis   3.63
## 1290     2600                                 Quelle   0.81
## 1291     SNES                                  Quest   0.00
## 1292      PSP                               Quinrose   0.00
## 1293      SAT                                Quintet   0.00
## 1294      GBA                          Rage Software   0.03
## 1295       GC                          Rage Software   0.07
## 1296      PS2                          Rage Software   0.47
## 1297       XB                          Rage Software   0.24
## 1298      PSV                             Rain Games   0.00
## 1299      GBA                              Rebellion   0.35
## 1300      PS4                 Rebellion Developments   0.04
## 1301     XOne                 Rebellion Developments   0.04
## 1302      PS2                      RED Entertainment   0.00
## 1303       PC                                Red Orb   1.54
## 1304      N64                Red Storm Entertainment   0.48
## 1305       PS                Red Storm Entertainment   0.95
## 1306      PS2                              RedOctane   6.44
## 1307       DS                     Reef Entertainment   0.00
## 1308       PC                     Reef Entertainment   0.00
## 1309      PS3                     Reef Entertainment   0.00
## 1310      Wii                     Reef Entertainment   0.17
## 1311      PS2                           responDESIGN   0.02
## 1312       XB                           responDESIGN   0.07
## 1313      PS2                     Revolution (Japan)   0.00
## 1314      PS4                    Revolution Software   0.00
## 1315     XOne                    Revolution Software   0.00
## 1316      3DS                      Rising Star Games   0.36
## 1317       DS                      Rising Star Games   4.97
## 1318       PC                      Rising Star Games   0.00
## 1319      PS2                      Rising Star Games   0.16
## 1320      PS3                      Rising Star Games   0.25
## 1321      PS4                      Rising Star Games   0.01
## 1322      PSP                      Rising Star Games   0.61
## 1323      PSV                      Rising Star Games   0.00
## 1324      Wii                      Rising Star Games   3.51
## 1325     X360                      Rising Star Games   0.63
## 1326       PS                          Riverhillsoft   0.00
## 1327      3DS                         Rocket Company   0.00
## 1328       DS                         Rocket Company   0.00
## 1329      Wii                         Rocket Company   0.00
## 1330       DS                             Rondomedia   0.50
## 1331       PC                             Rondomedia   0.08
## 1332      Wii                             Rondomedia   0.59
## 1333       DS                                    RTL   0.07
## 1334      Wii                                    RTL   0.67
## 1335     X360                                    RTL   0.09
## 1336       DS                                 Russel   0.00
## 1337       PC                                 Russel   0.00
## 1338      PS2                                 Russel   0.00
## 1339      PSP                                 Russel   0.00
## 1340      GBA                      Sammy Corporation   0.04
## 1341      PS2                      Sammy Corporation   0.37
## 1342     SNES                      Sammy Corporation   0.00
## 1343       PS                                 Saurus   0.01
## 1344       DS                        Scholastic Inc.   2.02
## 1345      PS2                        Scholastic Inc.   0.04
## 1346      Wii                        Scholastic Inc.   0.61
## 1347       GC                                    SCi   0.10
## 1348       PC                                    SCi   0.00
## 1349      PS2                                    SCi   0.83
## 1350       XB                                    SCi   1.08
## 1351      3DS                             Screenlife   0.09
## 1352      PSV                             Screenlife   0.13
## 1353       PC                           SCS Software   0.00
## 1354     2600                                  Sears   0.20
## 1355     2600                                   Sega   0.37
## 1356      3DS                                   Sega   2.03
## 1357       DC                                   Sega   5.02
## 1358       DS                                   Sega  11.67
## 1359      GBA                                   Sega   2.52
## 1360       GC                                   Sega   6.65
## 1361      GEN                                   Sega  12.62
## 1362       GG                                   Sega   0.00
## 1363       PC                                   Sega   0.64
## 1364      PS2                                   Sega  12.99
## 1365      PS3                                   Sega   9.94
## 1366      PS4                                   Sega   0.41
## 1367      PSP                                   Sega   3.43
## 1368      PSV                                   Sega   0.39
## 1369      SAT                                   Sega   0.72
## 1370      SCD                                   Sega   1.00
## 1371      Wii                                   Sega  18.49
## 1372     WiiU                                   Sega   0.65
## 1373     X360                                   Sega  12.40
## 1374       XB                                   Sega   7.24
## 1375     XOne                                   Sega   0.22
## 1376      N64                       Seta Corporation   0.00
## 1377       PS                       Seta Corporation   0.00
## 1378      SAT                       Seta Corporation   0.00
## 1379      3DS                          Seventh Chord   0.00
## 1380      3DS                             Shogakukan   0.00
## 1381       DS                             Shogakukan   0.00
## 1382      SAT                             Shogakukan   0.00
## 1383       XB           Simon & Schuster Interactive   0.08
## 1384       PC                   Slightly Mad Studios   0.00
## 1385      PS4                   Slightly Mad Studios   0.17
## 1386     XOne                   Slightly Mad Studios   0.08
## 1387       DS                    Slitherine Software   0.00
## 1388      PS3                    Slitherine Software   0.00
## 1389      PSP                    Slitherine Software   0.00
## 1390     X360                    Slitherine Software   0.08
## 1391       DC                                    SNK   0.00
## 1392       NG                                    SNK   0.00
## 1393       PS                                    SNK   0.01
## 1394      PS2                                    SNK   0.03
## 1395      SAT                                    SNK   0.00
## 1396       DS                           SNK Playmore   0.00
## 1397       PS                           SNK Playmore   0.08
## 1398      PS2                           SNK Playmore   0.08
## 1399      PSP                           SNK Playmore   0.00
## 1400      SAT                           SNK Playmore   0.00
## 1401       XB                           SNK Playmore   0.07
## 1402      SAT                                Societa   0.00
## 1403      PS4                               Sold Out   0.01
## 1404      SAT                                 Sonnet   0.00
## 1405       PS            Sony Computer Entertainment  86.75
## 1406      PS2            Sony Computer Entertainment  75.94
## 1407      PS3            Sony Computer Entertainment  64.54
## 1408      PS4            Sony Computer Entertainment  11.81
## 1409      PSP            Sony Computer Entertainment  22.51
## 1410      PSV            Sony Computer Entertainment   3.67
## 1411      PS3    Sony Computer Entertainment America   0.35
## 1412      PS4    Sony Computer Entertainment America   0.58
## 1413      PSV    Sony Computer Entertainment America   0.11
## 1414      PS2     Sony Computer Entertainment Europe   2.94
## 1415      PS3     Sony Computer Entertainment Europe   2.91
## 1416      PS4     Sony Computer Entertainment Europe   2.25
## 1417      PSV     Sony Computer Entertainment Europe   0.86
## 1418      PS2               Sony Music Entertainment   0.00
## 1419       PC              Sony Online Entertainment   0.22
## 1420      PS2              Sony Online Entertainment   1.25
## 1421      PS3              Sony Online Entertainment   0.35
## 1422      PSP              Sony Online Entertainment   0.14
## 1423       DS                        SouthPeak Games   1.15
## 1424       PC                        SouthPeak Games   0.01
## 1425       PS                        SouthPeak Games   0.06
## 1426      PS2                        SouthPeak Games   1.05
## 1427      PS3                        SouthPeak Games   0.48
## 1428      PSP                        SouthPeak Games   0.58
## 1429      Wii                        SouthPeak Games   0.63
## 1430     X360                        SouthPeak Games   0.81
## 1431       DS                                  Spike   0.15
## 1432      GBA                                  Spike   0.09
## 1433      PS2                                  Spike   0.74
## 1434      PS3                                  Spike   0.63
## 1435      PSP                                  Spike   0.14
## 1436     X360                                  Spike   1.57
## 1437       PS                                    SPS   0.07
## 1438      NES                                 Square   0.00
## 1439       PS                                 Square   0.29
## 1440     SNES                                 Square   0.24
## 1441       PS                              Square EA   0.45
## 1442      3DS                            Square Enix   1.53
## 1443       DS                            Square Enix   7.88
## 1444      GBA                            Square Enix   1.26
## 1445       PC                            Square Enix   1.44
## 1446      PS2                            Square Enix   7.80
## 1447      PS3                            Square Enix   9.36
## 1448      PS4                            Square Enix   3.07
## 1449      PSP                            Square Enix   4.95
## 1450      PSV                            Square Enix   0.40
## 1451      Wii                            Square Enix   0.62
## 1452     WiiU                            Square Enix   0.06
## 1453     X360                            Square Enix   8.14
## 1454     XOne                            Square Enix   2.14
## 1455       GB                             SquareSoft   0.00
## 1456      GBA                             SquareSoft   0.82
## 1457      NES                             SquareSoft   0.32
## 1458       PS                             SquareSoft   8.53
## 1459      PS2                             SquareSoft   0.00
## 1460     SNES                             SquareSoft   1.39
## 1461       WS                             SquareSoft   0.00
## 1462       PS                                    SSI   0.11
## 1463     XOne                        Stainless Games   0.01
## 1464       DS                               Starfish   0.06
## 1465      GBA                               Starfish   0.03
## 1466       PS                               Starfish   0.26
## 1467      PSP                               Starfish   0.00
## 1468      Wii                               Starfish   0.04
## 1469     2600                         Starpath Corp.   0.30
## 1470       DS                                  Sting   0.11
## 1471      GBA                                  Sting   0.07
## 1472      PS2                                  Sting   0.05
## 1473      PSP                                  Sting   0.05
## 1474      Wii                                  Sting   0.12
## 1475       DS                       Storm City Games   0.90
## 1476      Wii                       Storm City Games   0.45
## 1477       PC                         Strategy First   0.00
## 1478      3DS                                Success   0.00
## 1479       DS                                Success   0.33
## 1480       PS                                Success   0.71
## 1481      PS2                                Success   0.01
## 1482      PSP                                Success   0.00
## 1483     X360                                Success   0.07
## 1484      GBA                             Summitsoft   0.03
## 1485       PC                             Sunflowers   0.00
## 1486      PS2                    Sunrise Interactive   0.00
## 1487      3DS                                Sunsoft   0.07
## 1488      N64                                Sunsoft   0.09
## 1489       PS                                Sunsoft   0.34
## 1490      SAT                                Sunsoft   0.00
## 1491     SNES                                Sunsoft   0.00
## 1492      PS2                                 Sweets   0.00
## 1493      GBA                   Swing! Entertainment   0.02
## 1494       PS                   Swing! Entertainment   0.03
## 1495      PS2                   Swing! Entertainment   0.12
## 1496       XB                   Swing! Entertainment   0.11
## 1497       PS                                 Syscom   0.06
## 1498      PS3                               System 3   0.00
## 1499      PS4                               System 3   0.06
## 1500      PSV                               System 3   0.02
## 1501       DS               System 3 Arcade Software   0.18
## 1502      PS2               System 3 Arcade Software   0.06
## 1503      PS3               System 3 Arcade Software   0.00
## 1504      PSP               System 3 Arcade Software   0.09
## 1505      Wii               System 3 Arcade Software   0.63
## 1506      PSP                            System Soft   0.00
## 1507     SNES                               T&E Soft   0.00
## 1508     2600                                  Taito   0.22
## 1509       DS                                  Taito   0.00
## 1510      GBA                                  Taito   0.04
## 1511       GC                                  Taito   0.01
## 1512      N64                                  Taito   0.00
## 1513       PS                                  Taito   0.00
## 1514      PS2                                  Taito   0.09
## 1515      SAT                                  Taito   0.00
## 1516     SNES                                  Taito   0.00
## 1517      Wii                                  Taito   0.05
## 1518      GBA                                 Takara   0.16
## 1519      N64                                 Takara   0.00
## 1520       PS                                 Takara   0.00
## 1521      PS2                                 Takara   0.00
## 1522     SNES                                 Takara   0.00
## 1523      3DS                            Takara Tomy   0.00
## 1524       DS                            Takara Tomy   0.52
## 1525      PSP                            Takara Tomy   0.09
## 1526      Wii                            Takara Tomy   0.07
## 1527     X360                            Takara Tomy   0.08
## 1528      3DS                   Take-Two Interactive   0.12
## 1529       DS                   Take-Two Interactive   7.11
## 1530      GBA                   Take-Two Interactive   0.25
## 1531       GC                   Take-Two Interactive   0.30
## 1532      N64                   Take-Two Interactive   0.81
## 1533       PC                   Take-Two Interactive   4.01
## 1534       PS                   Take-Two Interactive   6.96
## 1535      PS2                   Take-Two Interactive  48.60
## 1536      PS3                   Take-Two Interactive  38.87
## 1537      PS4                   Take-Two Interactive  11.11
## 1538      PSP                   Take-Two Interactive   9.54
## 1539      PSV                   Take-Two Interactive   0.43
## 1540      Wii                   Take-Two Interactive  12.23
## 1541     WiiU                   Take-Two Interactive   0.08
## 1542     X360                   Take-Two Interactive  62.51
## 1543       XB                   Take-Two Interactive   9.06
## 1544     XOne                   Take-Two Interactive   8.50
## 1545      PSP                                 Takuyo   0.00
## 1546       PS                              TalonSoft   0.49
## 1547       DS                               TDK Core   0.00
## 1548      GBA                               TDK Core   0.14
## 1549       PS                               TDK Core   0.10
## 1550      GBA                         TDK Mediactive   2.48
## 1551       GC                         TDK Mediactive   0.47
## 1552       PS                         TDK Mediactive   0.17
## 1553      PS2                         TDK Mediactive   1.25
## 1554       XB                         TDK Mediactive   1.04
## 1555       PC                        Team17 Software   0.00
## 1556       NG              Technos Japan Corporation   0.00
## 1557       PS                             TechnoSoft   0.03
## 1558      3DS                             Tecmo Koei   0.12
## 1559       DS                             Tecmo Koei   0.81
## 1560      GBA                             Tecmo Koei   0.01
## 1561       GC                             Tecmo Koei   0.03
## 1562       PS                             Tecmo Koei   0.50
## 1563      PS2                             Tecmo Koei   4.36
## 1564      PS3                             Tecmo Koei   2.40
## 1565      PS4                             Tecmo Koei   0.65
## 1566      PSP                             Tecmo Koei   0.59
## 1567      PSV                             Tecmo Koei   0.36
## 1568      SAT                             Tecmo Koei   0.00
## 1569     SNES                             Tecmo Koei   0.30
## 1570      Wii                             Tecmo Koei   0.38
## 1571     WiiU                             Tecmo Koei   0.04
## 1572     X360                             Tecmo Koei   2.80
## 1573       XB                             Tecmo Koei   0.59
## 1574     XOne                             Tecmo Koei   0.14
## 1575       DS                              Telegames   0.74
## 1576      GBA                              Telegames   0.16
## 1577       PS                              Telegames   0.01
## 1578      PS3                         Telltale Games   0.23
## 1579      PS4                         Telltale Games   0.50
## 1580      PSV                         Telltale Games   0.15
## 1581      Wii                         Telltale Games   0.05
## 1582     X360                         Telltale Games   0.09
## 1583     XOne                         Telltale Games   0.26
## 1584       PS                                Telstar   0.16
## 1585      3DS                          Tetris Online   0.20
## 1586      PSP                                    TGL   0.00
## 1587      PSV                                    TGL   0.00
## 1588       DS                  The Adventure Company   0.07
## 1589      Wii                  The Adventure Company   0.27
## 1590       PS                   The Learning Company   0.03
## 1591      3DS                                    THQ   0.35
## 1592       DS                                    THQ  27.07
## 1593      GBA                                    THQ  32.71
## 1594       GC                                    THQ  10.86
## 1595      N64                                    THQ   8.57
## 1596       PC                                    THQ   0.72
## 1597       PS                                    THQ  15.87
## 1598      PS2                                    THQ  38.90
## 1599      PS3                                    THQ  12.76
## 1600      PSP                                    THQ   7.16
## 1601     SNES                                    THQ   0.00
## 1602      Wii                                    THQ  22.67
## 1603     WiiU                                    THQ   0.07
## 1604     X360                                    THQ  23.68
## 1605       XB                                    THQ   7.38
## 1606     2600                            Tigervision   1.33
## 1607       PS                Time Warner Interactive   0.18
## 1608      GBA                                  Titus   0.10
## 1609       GC                                  Titus   0.12
## 1610      N64                                  Titus   0.99
## 1611       PS                                  Titus   0.20
## 1612      PS2                                  Titus   0.54
## 1613     SNES                                  Titus   0.00
## 1614       XB                                  Titus   0.01
## 1615       DS                                 Tivola   0.08
## 1616     SNES                                   TOHO   0.00
## 1617       DS                                  Tommo   0.10
## 1618      Wii                                  Tommo   0.10
## 1619       DS                       Tomy Corporation   0.14
## 1620      GBA                       Tomy Corporation   0.22
## 1621       GC                       Tomy Corporation   0.65
## 1622       PS                       Tomy Corporation   0.04
## 1623      Wii                       Tomy Corporation   0.79
## 1624       PC                    TopWare Interactive   0.00
## 1625      PS3                    TopWare Interactive   0.00
## 1626      PS4                    TopWare Interactive   0.00
## 1627     X360                    TopWare Interactive   0.00
## 1628       DS                             Touchstone   0.07
## 1629       PC                             Touchstone   0.00
## 1630      PS3                             Touchstone   0.35
## 1631     X360                             Touchstone   0.46
## 1632      PS3                              Tradewest   0.00
## 1633      Wii                              Tradewest   0.02
## 1634     X360                              Tradewest   0.00
## 1635       PC                           Trion Worlds   0.15
## 1636      PS3                           Trion Worlds   0.19
## 1637     X360                           Trion Worlds   0.38
## 1638       PC                   Tripwire Interactive   0.04
## 1639      PS3                  Tru Blu Entertainment   0.00
## 1640      PS4                  Tru Blu Entertainment   0.01
## 1641     X360                  Tru Blu Entertainment   0.00
## 1642     XOne                  Tru Blu Entertainment   0.00
## 1643      PS2                               Tryfirst   0.00
## 1644       PS                                    TYO   0.23
## 1645      PSV                              Type-Moon   0.00
## 1646       PS                              U.S. Gold   0.19
## 1647      3DS                                Ubisoft   2.26
## 1648       DC                                Ubisoft   0.00
## 1649       DS                                Ubisoft  36.88
## 1650       GB                                Ubisoft   0.00
## 1651      GBA                                Ubisoft   6.88
## 1652       GC                                Ubisoft   3.40
## 1653      N64                                Ubisoft   1.39
## 1654       PC                                Ubisoft   2.84
## 1655       PS                                Ubisoft   5.04
## 1656      PS2                                Ubisoft  16.15
## 1657      PS3                                Ubisoft  28.74
## 1658      PS4                                Ubisoft   9.63
## 1659      PSP                                Ubisoft   5.00
## 1660      PSV                                Ubisoft   1.15
## 1661      Wii                                Ubisoft  55.21
## 1662     WiiU                                Ubisoft   2.98
## 1663     X360                                Ubisoft  49.78
## 1664       XB                                Ubisoft  15.60
## 1665     XOne                                Ubisoft  10.50
## 1666      3DS                         Ubisoft Annecy   0.13
## 1667      PS3                         Ubisoft Annecy   0.64
## 1668      PSP                         Ubisoft Annecy   0.15
## 1669     X360                         Ubisoft Annecy   0.35
## 1670       PS                            UEP Systems   1.52
## 1671      3DS                        UFO Interactive   0.01
## 1672       DS                        UFO Interactive   0.67
## 1673      Wii                        UFO Interactive   0.24
## 1674      PS4                      UIG Entertainment   0.00
## 1675     2600                            Ultravision   0.44
## 1676     2600                        Universal Gamex   0.58
## 1677      GBA                  Universal Interactive   2.00
## 1678       GC                  Universal Interactive   1.33
## 1679      PS2                  Universal Interactive   4.21
## 1680       XB                  Universal Interactive   1.54
## 1681     2600                                Unknown   0.27
## 1682      3DS                                Unknown   0.51
## 1683       DS                                Unknown   1.29
## 1684      GBA                                Unknown   1.53
## 1685       GC                                Unknown   0.72
## 1686      N64                                Unknown   0.11
## 1687       PC                                Unknown   0.86
## 1688       PS                                Unknown   0.81
## 1689      PS2                                Unknown   4.05
## 1690      PS3                                Unknown   1.48
## 1691      PS4                                Unknown   0.05
## 1692      PSP                                Unknown   0.93
## 1693      PSV                                Unknown   0.00
## 1694      Wii                                Unknown   2.40
## 1695     X360                                Unknown   1.59
## 1696       XB                                Unknown   1.87
## 1697     XOne                                Unknown   0.02
## 1698       DS                           Valcon Games   0.05
## 1699      PS2                           Valcon Games   0.06
## 1700      Wii                           Valcon Games   0.11
## 1701     X360                           Valcon Games   0.09
## 1702       DS                               ValuSoft   0.13
## 1703       PC                               ValuSoft   0.01
## 1704      PS2                               ValuSoft   0.12
## 1705      PS3                                  Valve   0.83
## 1706       PC                         Valve Software   0.33
## 1707     X360                         Valve Software   1.41
## 1708     SNES                                    Vap   0.00
## 1709      N64                  Vatical Entertainment   0.05
## 1710       PS                  Vatical Entertainment   0.09
## 1711      N64                              Vic Tokai   0.12
## 1712       PS                              Vic Tokai   0.07
## 1713       GB                     Victor Interactive   0.00
## 1714      GBA                     Victor Interactive   0.01
## 1715       PS                     Victor Interactive   0.10
## 1716      PS2                     Victor Interactive   0.00
## 1717      SAT                     Victor Interactive   0.00
## 1718     SNES                     Victor Interactive   0.00
## 1719      N64                           Video System   0.61
## 1720       PS                           Video System   0.06
## 1721     SNES                           Video System   0.00
## 1722      PS3                                  Views   0.00
## 1723      PSP                                  Views   0.00
## 1724       DS                          Vir2L Studios   0.08
## 1725      Wii                          Vir2L Studios   0.14
## 1726       DC                     Virgin Interactive   0.00
## 1727       GC                     Virgin Interactive   0.19
## 1728      GEN                     Virgin Interactive   0.97
## 1729      N64                     Virgin Interactive   0.61
## 1730       PC                     Virgin Interactive   3.43
## 1731       PS                     Virgin Interactive  10.18
## 1732      PS2                     Virgin Interactive   2.20
## 1733      SAT                     Virgin Interactive   0.00
## 1734     SNES                     Virgin Interactive   1.26
## 1735       XB                     Virgin Interactive   0.15
## 1736      Wii                     Virtual Play Games   0.06
## 1737       PC                                  Visco   0.02
## 1738       DS                          Vivendi Games   2.61
## 1739      GBA                          Vivendi Games   5.91
## 1740       GC                          Vivendi Games   2.41
## 1741       PC                          Vivendi Games   7.41
## 1742       PS                          Vivendi Games   0.28
## 1743      PS2                          Vivendi Games   9.02
## 1744      PS3                          Vivendi Games   0.81
## 1745      PSP                          Vivendi Games   0.91
## 1746      Wii                          Vivendi Games   1.83
## 1747     X360                          Vivendi Games   1.83
## 1748       XB                          Vivendi Games   3.98
## 1749      GBA                                Wanadoo   0.01
## 1750       GC                                Wanadoo   0.01
## 1751      PS2                                Wanadoo   0.27
## 1752       XB                                Wanadoo   0.01
## 1753       DC                                Warashi   0.00
## 1754       PC                          Wargaming.net   0.00
## 1755      3DS Warner Bros. Interactive Entertainment   3.38
## 1756       DS Warner Bros. Interactive Entertainment  13.11
## 1757       GC Warner Bros. Interactive Entertainment   0.13
## 1758       PC Warner Bros. Interactive Entertainment   1.00
## 1759      PS2 Warner Bros. Interactive Entertainment   1.54
## 1760      PS3 Warner Bros. Interactive Entertainment  13.12
## 1761      PS4 Warner Bros. Interactive Entertainment   7.63
## 1762      PSP Warner Bros. Interactive Entertainment   1.15
## 1763      PSV Warner Bros. Interactive Entertainment   1.69
## 1764      Wii Warner Bros. Interactive Entertainment  11.24
## 1765     WiiU Warner Bros. Interactive Entertainment   2.70
## 1766     X360 Warner Bros. Interactive Entertainment  19.05
## 1767     XOne Warner Bros. Interactive Entertainment   5.44
## 1768      SAT                                   Warp   0.00
## 1769      3DS                WayForward Technologies   0.05
## 1770       PC                       Westwood Studios   1.55
## 1771       DS                White Park Bay Software   0.13
## 1772     2600                     Wizard Video Games   0.58
## 1773      PS2                      Xicat Interactive   0.05
## 1774       XB                      Xicat Interactive   0.04
## 1775       PS                     Xing Entertainment   0.04
## 1776      PS2                                Xplosiv   0.21
## 1777      PSP                                Xplosiv   0.20
## 1778      Wii                                Xplosiv   0.20
## 1779      GBA                               XS Games   0.02
## 1780       PS                               XS Games   0.13
## 1781      PS2                               XS Games   0.09
## 1782      Wii                               XS Games   0.71
## 1783     X360                               XS Games   0.20
## 1784       XB                               XS Games   0.03
## 1785      3DS                            Xseed Games   0.31
## 1786      PS4                            Xseed Games   0.02
## 1787      PSV                            Xseed Games   0.08
## 1788      3DS                       Yacht Club Games   0.07
## 1789      PS4                       Yacht Club Games   0.03
## 1790     WiiU                       Yacht Club Games   0.06
## 1791      PS2                   Yamasa Entertainment   0.00
## 1792      PSP                   Yamasa Entertainment   0.00
## 1793      PS2                                   Yeti   0.00
## 1794      PS4                                   Yeti   0.00
## 1795      PSP                                   Yeti   0.00
## 1796     X360                                   Yeti   0.00
## 1797      PS2                                 Yuke's   0.01
## 1798      SAT                                Yumedia   0.00
## 1799      PSP                                 Zenrin   0.00
## 1800       DS                 Zoo Digital Publishing   1.87
## 1801      GBA                 Zoo Digital Publishing   2.89
## 1802       GC                 Zoo Digital Publishing   0.02
## 1803      PS2                 Zoo Digital Publishing   1.60
## 1804      Wii                 Zoo Digital Publishing   2.14
## 1805       XB                 Zoo Digital Publishing   1.00
## 1806       DS                              Zoo Games   0.77
## 1807      Wii                              Zoo Games   3.45
## 1808     X360                              Zoo Games   0.30
## 1809       DS                            Zushi Games   0.17
## 1810      PSP                            Zushi Games   0.10
## 1811      Wii                            Zushi Games   1.20
## 1812     X360                            Zushi Games   0.20
aggregate(NA_Sales,by=list(Year = Year,Genre = Genre),sum)
##     Year        Genre     x
## 1   1980       Action  0.32
## 2   1981       Action 13.86
## 3   1982       Action  6.07
## 4   1983       Action  2.67
## 5   1984       Action  0.80
## 6   1985       Action  1.64
## 7   1986       Action  6.52
## 8   1987       Action  1.04
## 9   1988       Action  1.15
## 10  1989       Action  3.83
## 11  1990       Action  4.27
## 12  1991       Action  3.47
## 13  1992       Action  2.21
## 14  1993       Action  0.64
## 15  1994       Action  0.57
## 16  1995       Action  1.73
## 17  1996       Action 10.65
## 18  1997       Action 14.40
## 19  1998       Action 20.15
## 20  1999       Action 14.91
## 21  2000       Action 17.79
## 22  2001       Action 29.81
## 23  2002       Action 47.81
## 24  2003       Action 37.74
## 25  2004       Action 39.08
## 26  2005       Action 49.62
## 27  2006       Action 38.37
## 28  2007       Action 58.90
## 29  2008       Action 72.39
## 30  2009       Action 71.61
## 31  2010       Action 60.32
## 32  2011       Action 53.73
## 33  2012       Action 52.51
## 34  2013       Action 53.79
## 35  2014       Action 38.73
## 36  2015       Action 22.83
## 37  2016       Action  5.87
## 38  2017       Action  0.00
## 39   N/A       Action 16.03
## 40  1983    Adventure  0.38
## 41  1987    Adventure  2.19
## 42  1991    Adventure  0.85
## 43  1992    Adventure  6.17
## 44  1993    Adventure  0.00
## 45  1994    Adventure  0.06
## 46  1995    Adventure  0.02
## 47  1996    Adventure  0.86
## 48  1997    Adventure  2.36
## 49  1998    Adventure  3.17
## 50  1999    Adventure  3.32
## 51  2000    Adventure  1.01
## 52  2001    Adventure  3.92
## 53  2002    Adventure  4.72
## 54  2003    Adventure  0.96
## 55  2004    Adventure  4.96
## 56  2005    Adventure  5.10
## 57  2006    Adventure  5.16
## 58  2007    Adventure 13.06
## 59  2008    Adventure 13.01
## 60  2009    Adventure 10.14
## 61  2010    Adventure  6.30
## 62  2011    Adventure  5.89
## 63  2012    Adventure  1.78
## 64  2013    Adventure  1.63
## 65  2014    Adventure  1.94
## 66  2015    Adventure  2.76
## 67  2016    Adventure  0.34
## 68   N/A    Adventure  3.74
## 69  1980     Fighting  0.72
## 70  1985     Fighting  0.00
## 71  1987     Fighting  2.80
## 72  1991     Fighting  0.00
## 73  1992     Fighting  6.88
## 74  1993     Fighting  2.00
## 75  1994     Fighting  2.85
## 76  1995     Fighting  4.39
## 77  1996     Fighting  7.12
## 78  1997     Fighting  6.03
## 79  1998     Fighting 18.43
## 80  1999     Fighting  8.51
## 81  2000     Fighting  9.69
## 82  2001     Fighting  9.19
## 83  2002     Fighting 14.00
## 84  2003     Fighting 13.32
## 85  2004     Fighting  9.94
## 86  2005     Fighting 10.33
## 87  2006     Fighting 12.48
## 88  2007     Fighting  7.33
## 89  2008     Fighting 18.23
## 90  2009     Fighting 17.55
## 91  2010     Fighting  7.46
## 92  2011     Fighting 11.88
## 93  2012     Fighting  4.34
## 94  2013     Fighting  3.18
## 95  2014     Fighting  6.89
## 96  2015     Fighting  3.60
## 97  2016     Fighting  1.60
## 98   N/A     Fighting  2.85
## 99  1980         Misc  2.53
## 100 1982         Misc  0.81
## 101 1983         Misc  0.01
## 102 1984         Misc  0.00
## 103 1989         Misc  0.00
## 104 1991         Misc  0.00
## 105 1992         Misc  2.30
## 106 1993         Misc  0.00
## 107 1994         Misc  1.49
## 108 1995         Misc  2.31
## 109 1996         Misc  4.08
## 110 1997         Misc  3.28
## 111 1998         Misc  5.53
## 112 1999         Misc 11.95
## 113 2000         Misc  7.14
## 114 2001         Misc  9.96
## 115 2002         Misc  8.49
## 116 2003         Misc 10.71
## 117 2004         Misc 17.15
## 118 2005         Misc 26.80
## 119 2006         Misc 26.05
## 120 2007         Misc 47.90
## 121 2008         Misc 47.63
## 122 2009         Misc 41.10
## 123 2010         Misc 54.97
## 124 2011         Misc 32.31
## 125 2012         Misc 10.99
## 126 2013         Misc 12.53
## 127 2014         Misc  9.43
## 128 2015         Misc  4.81
## 129 2016         Misc  0.22
## 130  N/A         Misc  7.76
## 131 1981     Platform  6.47
## 132 1982     Platform  4.69
## 133 1983     Platform  2.80
## 134 1984     Platform  0.00
## 135 1985     Platform 29.93
## 136 1986     Platform  1.07
## 137 1987     Platform  0.90
## 138 1988     Platform 16.34
## 139 1989     Platform 12.14
## 140 1990     Platform 14.14
## 141 1991     Platform  4.36
## 142 1992     Platform  8.23
## 143 1993     Platform  9.66
## 144 1994     Platform 14.88
## 145 1995     Platform  6.61
## 146 1996     Platform 13.81
## 147 1997     Platform 10.81
## 148 1998     Platform 17.05
## 149 1999     Platform 13.00
## 150 2000     Platform  7.87
## 151 2001     Platform 21.61
## 152 2002     Platform 26.73
## 153 2003     Platform 25.31
## 154 2004     Platform 26.35
## 155 2005     Platform 15.58
## 156 2006     Platform 23.32
## 157 2007     Platform 19.02
## 158 2008     Platform 17.57
## 159 2009     Platform 20.27
## 160 2010     Platform 17.16
## 161 2011     Platform 13.06
## 162 2012     Platform  7.32
## 163 2013     Platform 11.62
## 164 2014     Platform  3.02
## 165 2015     Platform  2.50
## 166 2016     Platform  0.79
## 167  N/A     Platform  1.06
## 168 1981       Puzzle  2.09
## 169 1982       Puzzle  9.35
## 170 1983       Puzzle  0.72
## 171 1984       Puzzle  0.69
## 172 1985       Puzzle  1.33
## 173 1988       Puzzle  2.97
## 174 1989       Puzzle 26.54
## 175 1990       Puzzle  3.13
## 176 1991       Puzzle  0.86
## 177 1992       Puzzle  1.56
## 178 1993       Puzzle  0.62
## 179 1994       Puzzle  0.00
## 180 1995       Puzzle  0.21
## 181 1996       Puzzle  2.18
## 182 1997       Puzzle  1.34
## 183 1998       Puzzle  2.58
## 184 1999       Puzzle  0.81
## 185 2000       Puzzle  1.73
## 186 2001       Puzzle  5.22
## 187 2002       Puzzle  3.41
## 188 2003       Puzzle  0.93
## 189 2004       Puzzle  3.84
## 190 2005       Puzzle  6.56
## 191 2006       Puzzle  4.40
## 192 2007       Puzzle 10.03
## 193 2008       Puzzle  8.18
## 194 2009       Puzzle 11.34
## 195 2010       Puzzle  6.55
## 196 2011       Puzzle  1.68
## 197 2012       Puzzle  0.30
## 198 2013       Puzzle  0.19
## 199 2014       Puzzle  0.62
## 200 2015       Puzzle  0.05
## 201  N/A       Puzzle  1.77
## 202 1981       Racing  0.45
## 203 1982       Racing  1.47
## 204 1984       Racing  2.30
## 205 1986       Racing  1.13
## 206 1988       Racing  1.47
## 207 1990       Racing  3.10
## 208 1991       Racing  0.58
## 209 1992       Racing  3.54
## 210 1993       Racing  0.00
## 211 1994       Racing  0.00
## 212 1995       Racing  2.27
## 213 1996       Racing 16.94
## 214 1997       Racing 15.52
## 215 1998       Racing 14.63
## 216 1999       Racing 21.15
## 217 2000       Racing 11.00
## 218 2001       Racing 29.40
## 219 2002       Racing 18.49
## 220 2003       Racing 27.65
## 221 2004       Racing 22.19
## 222 2005       Racing 30.75
## 223 2006       Racing 20.28
## 224 2007       Racing 18.46
## 225 2008       Racing 33.50
## 226 2009       Racing 15.04
## 227 2010       Racing 14.26
## 228 2011       Racing 14.61
## 229 2012       Racing  4.38
## 230 2013       Racing  4.21
## 231 2014       Racing  5.86
## 232 2015       Racing  1.97
## 233 2016       Racing  0.33
## 234  N/A       Racing  2.49
## 235 1986 Role-Playing  0.49
## 236 1987 Role-Playing  0.47
## 237 1988 Role-Playing  0.10
## 238 1989 Role-Playing  0.00
## 239 1990 Role-Playing  0.08
## 240 1991 Role-Playing  0.24
## 241 1992 Role-Playing  0.00
## 242 1993 Role-Playing  0.25
## 243 1994 Role-Playing  0.86
## 244 1995 Role-Playing  0.71
## 245 1996 Role-Playing 12.78
## 246 1997 Role-Playing  5.31
## 247 1998 Role-Playing  9.16
## 248 1999 Role-Playing 17.29
## 249 2000 Role-Playing  7.20
## 250 2001 Role-Playing  7.46
## 251 2002 Role-Playing 20.43
## 252 2003 Role-Playing 13.80
## 253 2004 Role-Playing 21.55
## 254 2005 Role-Playing 12.26
## 255 2006 Role-Playing 24.38
## 256 2007 Role-Playing 19.80
## 257 2008 Role-Playing 25.25
## 258 2009 Role-Playing 19.06
## 259 2010 Role-Playing 28.55
## 260 2011 Role-Playing 19.78
## 261 2012 Role-Playing 17.85
## 262 2013 Role-Playing 13.09
## 263 2014 Role-Playing 13.56
## 264 2015 Role-Playing 13.35
## 265 2016 Role-Playing  1.39
## 266 2017 Role-Playing  0.00
## 267  N/A Role-Playing  0.78
## 268 1980      Shooter  6.56
## 269 1981      Shooter  9.37
## 270 1982      Shooter  3.55
## 271 1983      Shooter  0.45
## 272 1984      Shooter 27.79
## 273 1985      Shooter  0.65
## 274 1986      Shooter  0.94
## 275 1987      Shooter  0.66
## 276 1988      Shooter  0.47
## 277 1989      Shooter  0.40
## 278 1991      Shooter  1.06
## 279 1992      Shooter  0.02
## 280 1993      Shooter  1.61
## 281 1994      Shooter  3.71
## 282 1995      Shooter  0.70
## 283 1996      Shooter  3.28
## 284 1997      Shooter 15.00
## 285 1998      Shooter  5.61
## 286 1999      Shooter  7.77
## 287 2000      Shooter  4.00
## 288 2001      Shooter 15.11
## 289 2002      Shooter 28.69
## 290 2003      Shooter 16.12
## 291 2004      Shooter 30.33
## 292 2005      Shooter 27.82
## 293 2006      Shooter 23.04
## 294 2007      Shooter 38.88
## 295 2008      Shooter 34.95
## 296 2009      Shooter 38.99
## 297 2010      Shooter 43.10
## 298 2011      Shooter 49.82
## 299 2012      Shooter 35.06
## 300 2013      Shooter 30.70
## 301 2014      Shooter 30.72
## 302 2015      Shooter 30.79
## 303 2016      Shooter  7.44
## 304  N/A      Shooter  7.44
## 305 1981   Simulation  0.42
## 306 1985   Simulation  0.00
## 307 1988   Simulation  0.00
## 308 1990   Simulation  0.46
## 309 1991   Simulation  0.93
## 310 1992   Simulation  1.20
## 311 1993   Simulation  0.00
## 312 1994   Simulation  0.34
## 313 1995   Simulation  1.36
## 314 1996   Simulation  5.42
## 315 1997   Simulation  1.90
## 316 1998   Simulation  2.79
## 317 1999   Simulation  3.41
## 318 2000   Simulation  1.11
## 319 2001   Simulation 10.30
## 320 2002   Simulation  6.01
## 321 2003   Simulation 12.06
## 322 2004   Simulation  5.75
## 323 2005   Simulation 19.27
## 324 2006   Simulation 10.66
## 325 2007   Simulation 27.07
## 326 2008   Simulation 26.97
## 327 2009   Simulation 17.66
## 328 2010   Simulation 11.23
## 329 2011   Simulation  7.49
## 330 2012   Simulation  3.09
## 331 2013   Simulation  2.26
## 332 2014   Simulation  1.22
## 333 2015   Simulation  1.13
## 334 2016   Simulation  0.00
## 335 2020   Simulation  0.27
## 336  N/A   Simulation  1.53
## 337 1980       Sports  0.46
## 338 1981       Sports  0.74
## 339 1982       Sports  0.98
## 340 1983       Sports  0.73
## 341 1984       Sports  1.70
## 342 1985       Sports  0.18
## 343 1986       Sports  2.35
## 344 1987       Sports  0.40
## 345 1988       Sports  1.37
## 346 1989       Sports  2.24
## 347 1990       Sports  0.28
## 348 1991       Sports  0.41
## 349 1992       Sports  1.75
## 350 1993       Sports  0.04
## 351 1994       Sports  2.50
## 352 1995       Sports  2.56
## 353 1996       Sports  7.78
## 354 1997       Sports 15.55
## 355 1998       Sports 24.70
## 356 1999       Sports 15.09
## 357 2000       Sports 22.75
## 358 2001       Sports 28.80
## 359 2002       Sports 35.17
## 360 2003       Sports 31.45
## 361 2004       Sports 38.52
## 362 2005       Sports 36.06
## 363 2006       Sports 72.91
## 364 2007       Sports 47.79
## 365 2008       Sports 48.92
## 366 2009       Sports 71.47
## 367 2010       Sports 48.56
## 368 2011       Sports 27.45
## 369 2012       Sports 16.40
## 370 2013       Sports 19.18
## 371 2014       Sports 19.82
## 372 2015       Sports 18.46
## 373 2016       Sports  4.57
## 374  N/A       Sports 13.26
## 375 1991     Strategy  0.00
## 376 1992     Strategy  0.01
## 377 1993     Strategy  0.30
## 378 1994     Strategy  0.89
## 379 1995     Strategy  1.95
## 380 1996     Strategy  1.86
## 381 1997     Strategy  3.25
## 382 1998     Strategy  4.56
## 383 1999     Strategy  8.85
## 384 2000     Strategy  3.20
## 385 2001     Strategy  3.20
## 386 2002     Strategy  2.24
## 387 2003     Strategy  3.54
## 388 2004     Strategy  2.93
## 389 2005     Strategy  2.46
## 390 2006     Strategy  2.07
## 391 2007     Strategy  3.81
## 392 2008     Strategy  4.84
## 393 2009     Strategy  4.62
## 394 2010     Strategy  5.78
## 395 2011     Strategy  3.36
## 396 2012     Strategy  0.94
## 397 2013     Strategy  2.39
## 398 2014     Strategy  0.16
## 399 2015     Strategy  0.57
## 400 2016     Strategy  0.11
## 401  N/A     Strategy  0.81
aggregate(NA_Sales,by=list(Year = Year,Publisher = Publisher),sum)
##      Year                              Publisher     x
## 1    2006                        10TACLE Studios  0.01
## 2    2007                        10TACLE Studios  0.06
## 3    2009                             1C Company  0.00
## 4    2011                             1C Company  0.01
## 5    1981           20th Century Fox Video Games  1.27
## 6    1982           20th Century Fox Video Games  0.55
## 7    2008                                 2D Boy  0.00
## 8    1998                                    3DO  0.30
## 9    1999                                    3DO  3.01
## 10   2000                                    3DO  1.86
## 11   2001                                    3DO  0.76
## 12   2002                                    3DO  0.30
## 13   2003                                    3DO  0.25
## 14   2009                                49Games  0.00
## 15   2002                              505 Games  0.02
## 16   2003                              505 Games  0.05
## 17   2004                              505 Games  0.49
## 18   2005                              505 Games  0.89
## 19   2006                              505 Games  4.15
## 20   2007                              505 Games  6.08
## 21   2008                              505 Games  2.09
## 22   2009                              505 Games  4.73
## 23   2010                              505 Games  8.50
## 24   2011                              505 Games  1.98
## 25   2012                              505 Games  0.89
## 26   2013                              505 Games  1.00
## 27   2014                              505 Games  0.67
## 28   2015                              505 Games  0.23
## 29   2016                              505 Games  0.06
## 30   2008                                    5pb  0.00
## 31   2009                                    5pb  0.00
## 32   2010                                    5pb  0.00
## 33   2011                                    5pb  0.02
## 34   2012                                    5pb  0.00
## 35   2013                                    5pb  0.00
## 36   2014                                    5pb  0.00
## 37   2015                                    5pb  0.00
## 38   2016                                    5pb  0.00
## 39   2010                               7G//AMES  0.00
## 40   2011                               7G//AMES  0.00
## 41   1999                             989 Sports  0.21
## 42   1997                            989 Studios  0.29
## 43   1998                            989 Studios  5.66
## 44   1999                            989 Studios  3.28
## 45   2010                               Abylight  0.07
## 46   1993                  Acclaim Entertainment  1.48
## 47   1994                  Acclaim Entertainment  4.43
## 48   1995                  Acclaim Entertainment  1.45
## 49   1996                  Acclaim Entertainment  1.71
## 50   1997                  Acclaim Entertainment  3.39
## 51   1998                  Acclaim Entertainment 10.31
## 52   1999                  Acclaim Entertainment  3.00
## 53   2000                  Acclaim Entertainment  3.60
## 54   2001                  Acclaim Entertainment  5.11
## 55   2002                  Acclaim Entertainment  4.70
## 56   2003                  Acclaim Entertainment  2.94
## 57   2004                  Acclaim Entertainment  0.63
## 58   1996                               Accolade  0.10
## 59   1997                               Accolade  1.05
## 60   1999                               Accolade  0.10
## 61   2009                            Ackkstudios  0.07
## 62   2010                            Ackkstudios  0.06
## 63   2011                            Ackkstudios  0.00
## 64   2012                            Ackkstudios  0.00
## 65   2006                                Acquire  0.00
## 66   2008                                Acquire  0.06
## 67   2009                                Acquire  0.00
## 68   2010                                Acquire  0.00
## 69   2011                                Acquire  0.00
## 70   2012                                Acquire  0.00
## 71   2014                                Acquire  0.08
## 72   1980                             Activision  2.82
## 73   1981                             Activision  7.95
## 74   1982                             Activision  1.75
## 75   1983                             Activision  1.81
## 76   1984                             Activision  0.26
## 77   1985                             Activision  0.42
## 78   1987                             Activision  1.04
## 79   1988                             Activision  0.69
## 80   1989                             Activision  0.45
## 81   1994                             Activision  0.89
## 82   1995                             Activision  1.70
## 83   1996                             Activision  0.27
## 84   1997                             Activision  1.28
## 85   1998                             Activision  4.41
## 86   1999                             Activision  5.09
## 87   2000                             Activision  9.31
## 88   2001                             Activision 10.96
## 89   2002                             Activision 16.34
## 90   2003                             Activision 13.16
## 91   2004                             Activision 20.73
## 92   2005                             Activision 24.87
## 93   2006                             Activision 13.01
## 94   2007                             Activision 42.09
## 95   2008                             Activision 40.83
## 96   2009                             Activision 45.63
## 97   2010                             Activision 39.49
## 98   2011                             Activision 28.97
## 99   2012                             Activision 26.37
## 100  2013                             Activision 23.25
## 101  2014                             Activision 21.55
## 102  2015                             Activision 16.95
## 103  2016                             Activision  1.67
## 104   N/A                             Activision  3.69
## 105  2014                    Activision Blizzard  0.08
## 106  2001                       Activision Value  0.12
## 107  2002                       Activision Value  0.07
## 108  2003                       Activision Value  0.53
## 109  2004                       Activision Value  0.05
## 110  2005                       Activision Value  0.04
## 111  2006                       Activision Value  0.23
## 112  2007                       Activision Value  0.33
## 113  2008                       Activision Value  1.16
## 114  2009                       Activision Value  3.00
## 115  1996                       Adeline Software  0.10
## 116  2010                               Aerosoft  0.01
## 117  2013                               Aerosoft  0.00
## 118  2004                 Agatsuma Entertainment  0.06
## 119  2012                 Agatsuma Entertainment  0.16
## 120  2013                 Agatsuma Entertainment  0.00
## 121  1997                                 Agetec  0.02
## 122  1998                                 Agetec  0.06
## 123  2002                                 Agetec  0.56
## 124  2003                                 Agetec  0.11
## 125  2009                                 Agetec  0.03
## 126  2008                            Aksys Games  0.02
## 127  2014                            Aksys Games  0.09
## 128  2015                            Aksys Games  0.01
## 129  2016                            Aksys Games  0.07
## 130  2009                   Alawar Entertainment  0.00
## 131  2015                   Alawar Entertainment  0.00
## 132  2006                              Alchemist  0.59
## 133  2007                              Alchemist  0.00
## 134  2008                              Alchemist  0.00
## 135  2009                              Alchemist  0.00
## 136  2010                              Alchemist  0.00
## 137  2011                              Alchemist  0.00
## 138  2012                              Alchemist  0.00
## 139  2013                              Alchemist  0.00
## 140  2015                              Alchemist  0.00
## 141  2010                   Alternative Software  0.00
## 142  2015                   Alternative Software  0.00
## 143  2016                   Alternative Software  0.00
## 144  2001                                 Altron  0.05
## 145  2009                                 Alvion  0.00
## 146  2010                                 Alvion  0.00
## 147  1996                     American Softworks  0.13
## 148  1991                          Angel Studios  0.00
## 149  1994                          Angel Studios  0.00
## 150  1995                          Angel Studios  0.00
## 151  1982                        Answer Software  0.46
## 152  2007                         AQ Interactive  0.06
## 153  2008                         AQ Interactive  0.20
## 154  2009                         AQ Interactive  0.08
## 155  1999                              Aqua Plus  0.00
## 156  2006                              Aqua Plus  0.00
## 157  2007                              Aqua Plus  0.00
## 158  2008                              Aqua Plus  0.00
## 159  2009                              Aqua Plus  0.00
## 160  2010                              Aqua Plus  0.00
## 161  2011                              Aqua Plus  0.00
## 162  2012                              Aqua Plus  0.05
## 163  2013                              Aqua Plus  0.00
## 164  2015                              Aqua Plus  0.00
## 165  2016                              Aqua Plus  0.00
## 166  1997                                  Aques  0.00
## 167  2008                       Arc System Works  0.19
## 168  2009                       Arc System Works  0.05
## 169  2010                       Arc System Works  0.05
## 170  2012                       Arc System Works  0.00
## 171  2013                       Arc System Works  0.18
## 172  2014                       Arc System Works  0.28
## 173  2015                       Arc System Works  0.03
## 174  1992                    Arena Entertainment  3.70
## 175  2006                                   Aria  0.00
## 176  2002                                  Arika  0.01
## 177  2004                                  Arika  0.03
## 178  2008                                  Arika  0.00
## 179  1994                                ArtDink  0.00
## 180  1996                                ArtDink  0.07
## 181  1998                                ArtDink  0.00
## 182  2001                                ArtDink  0.00
## 183  2009                                ArtDink  0.00
## 184  2010                                ArtDink  0.00
## 185  2014                                ArtDink  0.00
## 186  1999                             Aruze Corp  0.00
## 187  2000                             Aruze Corp  0.00
## 188  1996                              ASC Games  0.73
## 189  1998                              ASC Games  0.36
## 190  1999                              ASC Games  0.03
## 191  2012                  Ascaron Entertainment  0.00
## 192  2004             Ascaron Entertainment GmbH  0.00
## 193  2008             Ascaron Entertainment GmbH  0.00
## 194  1994                    ASCII Entertainment  0.00
## 195  1995                    ASCII Entertainment  0.00
## 196  1996                    ASCII Entertainment  0.07
## 197  1997                    ASCII Entertainment  0.23
## 198  1998                    ASCII Entertainment  0.19
## 199  1999                    ASCII Entertainment  0.21
## 200  2001                    ASCII Entertainment  0.00
## 201  2008                      ASCII Media Works  0.00
## 202  2009                      ASCII Media Works  0.00
## 203  2010                      ASCII Media Works  0.00
## 204  2011                      ASCII Media Works  0.00
## 205  2014                      ASCII Media Works  0.00
## 206  2010                                 Asgard  0.00
## 207  2011                                 Asgard  0.00
## 208  2012                                 Asgard  0.00
## 209  2013                                 Asgard  0.00
## 210  2015                                 Asgard  0.00
## 211  1996                                    ASK  0.00
## 212  1996                Asmik Ace Entertainment  0.00
## 213  2000                Asmik Ace Entertainment  0.00
## 214  2006                Asmik Ace Entertainment  0.00
## 215  1994                             Asmik Corp  0.00
## 216  1995                             Asmik Corp  0.00
## 217  2003                                  Aspyr  0.01
## 218  2007                                  Aspyr  0.01
## 219  2008                                  Aspyr  0.10
## 220  2009                                  Aspyr  0.43
## 221  2009                               Astragon  0.03
## 222  2010                               Astragon  0.20
## 223  2011                               Astragon  0.01
## 224  2016                               Astragon  0.00
## 225  2010                   Asylum Entertainment  0.09
## 226  2011                   Asylum Entertainment  0.00
## 227  1980                                  Atari  7.77
## 228  1981                                  Atari  7.87
## 229  1982                                  Atari 18.11
## 230  1983                                  Atari  3.17
## 231  1986                                  Atari  0.63
## 232  1987                                  Atari  0.80
## 233  1989                                  Atari  0.14
## 234  1998                                  Atari  0.81
## 235  1999                                  Atari  1.27
## 236  2000                                  Atari  2.40
## 237  2001                                  Atari  4.32
## 238  2002                                  Atari 13.73
## 239  2003                                  Atari 10.70
## 240  2004                                  Atari  6.63
## 241  2005                                  Atari  4.49
## 242  2006                                  Atari  2.90
## 243  2007                                  Atari  6.43
## 244  2008                                  Atari  4.54
## 245  2009                                  Atari  2.94
## 246  2010                                  Atari  1.32
## 247  2011                                  Atari  0.22
## 248  2012                                  Atari  0.04
## 249  2016                                  Atari  0.00
## 250   N/A                                  Atari  8.81
## 251  1999                                 Athena  0.02
## 252  2001                                 Athena  0.00
## 253  1994                                  Atlus  0.00
## 254  1995                                  Atlus  0.00
## 255  1996                                  Atlus  0.16
## 256  1997                                  Atlus  0.04
## 257  1998                                  Atlus  0.11
## 258  1999                                  Atlus  0.09
## 259  2000                                  Atlus  0.03
## 260  2001                                  Atlus  0.00
## 261  2002                                  Atlus  0.04
## 262  2003                                  Atlus  0.11
## 263  2004                                  Atlus  0.07
## 264  2006                                  Atlus  0.00
## 265  2007                                  Atlus  0.05
## 266  2008                                  Atlus  0.61
## 267  2009                                  Atlus  0.43
## 268  2010                                  Atlus  0.43
## 269  2011                                  Atlus  0.20
## 270  2012                                  Atlus  1.09
## 271  2013                                  Atlus  0.38
## 272  2014                                  Atlus  0.20
## 273  2015                                  Atlus  0.16
## 274  2016                                  Atlus  0.00
## 275  1982                     Avalon Interactive  0.15
## 276  1999                     Avalon Interactive  0.06
## 277  2002                     Avalon Interactive  0.03
## 278  2003                     Avalon Interactive  0.03
## 279  2004                     Avalon Interactive  0.07
## 280  2007                              Avanquest  0.05
## 281  2008                              Avanquest  0.18
## 282  2009                              Avanquest  0.49
## 283  2010                              Avanquest  0.25
## 284  2011                              Avanquest  0.15
## 285  2016                              Avanquest  0.00
## 286   N/A                              Avanquest  0.00
## 287  2012                     Avanquest Software  0.95
## 288  2013                     Avanquest Software  0.00
## 289  2015                     Avanquest Software  0.00
## 290  1998                                  Axela  0.00
## 291  2000                     BAM! Entertainment  0.06
## 292  2001                     BAM! Entertainment  0.82
## 293  2002                     BAM! Entertainment  1.81
## 294  2003                     BAM! Entertainment  0.40
## 295  2004                     BAM! Entertainment  0.07
## 296  1991                              Banpresto  0.00
## 297  1992                              Banpresto  0.00
## 298  1993                              Banpresto  0.00
## 299  1994                              Banpresto  0.00
## 300  1995                              Banpresto  0.00
## 301  1996                              Banpresto  0.00
## 302  1997                              Banpresto  0.00
## 303  1998                              Banpresto  0.00
## 304  1999                              Banpresto  0.00
## 305  2000                              Banpresto  0.00
## 306  2001                              Banpresto  0.04
## 307  2002                              Banpresto  0.06
## 308  2003                              Banpresto  0.04
## 309  2004                              Banpresto  0.00
## 310  2005                              Banpresto  0.00
## 311  2006                              Banpresto  0.00
## 312  2007                              Banpresto  0.07
## 313  2008                              Banpresto  0.07
## 314  2009                              Banpresto  0.13
## 315  2011                              Banpresto  0.00
## 316  2007                                Benesse  0.01
## 317  2008                                Benesse  0.00
## 318  2001                               Berkeley  0.02
## 319  2002                     Bethesda Softworks  0.64
## 320  2003                     Bethesda Softworks  0.15
## 321  2004                     Bethesda Softworks  0.13
## 322  2005                     Bethesda Softworks  0.11
## 323  2006                     Bethesda Softworks  0.05
## 324  2007                     Bethesda Softworks  0.96
## 325  2008                     Bethesda Softworks  6.80
## 326  2009                     Bethesda Softworks  0.68
## 327  2010                     Bethesda Softworks  4.75
## 328  2011                     Bethesda Softworks 11.38
## 329  2012                     Bethesda Softworks  2.58
## 330  2014                     Bethesda Softworks  3.06
## 331  2015                     Bethesda Softworks  7.20
## 332  2016                     Bethesda Softworks  0.94
## 333   N/A                     Bethesda Softworks  0.29
## 334  2002                    Big Ben Interactive  0.04
## 335  2004                    Big Ben Interactive  0.04
## 336  2008                    Big Ben Interactive  0.02
## 337  2009                    Big Ben Interactive  0.67
## 338  2011                    Big Ben Interactive  0.01
## 339  2013                    Big Ben Interactive  0.00
## 340  2008                         Big Fish Games  0.00
## 341  2014                         Big Fish Games  0.00
## 342  2015                     Bigben Interactive  0.10
## 343  2009                      bitComposer Games  0.00
## 344  2011                      bitComposer Games  0.16
## 345  2005                       Black Bean Games  0.01
## 346  2007                       Black Bean Games  0.06
## 347  2008                       Black Bean Games  0.30
## 348  2009                       Black Bean Games  0.19
## 349  2010                       Black Bean Games  0.54
## 350  2011                       Black Bean Games  0.18
## 351   N/A                       Black Bean Games  0.00
## 352  2002                      Black Label Games  0.59
## 353  2007               Blast! Entertainment Ltd  0.08
## 354  2008               Blast! Entertainment Ltd  0.02
## 355  2009               Blast! Entertainment Ltd  0.13
## 356  2001                              Blue Byte  0.00
## 357  1996          BMG Interactive Entertainment  0.16
## 358  1997          BMG Interactive Entertainment  0.19
## 359  1998          BMG Interactive Entertainment  0.32
## 360  2013                    Bohemia Interactive  0.00
## 361  1982                                   Bomb  0.21
## 362  2013                               Boost On  0.00
## 363  1991                                    BPS  0.00
## 364  1994                                    BPS  0.00
## 365  2007                    Brash Entertainment  0.16
## 366  2008                    Brash Entertainment  0.73
## 367  2006                               Broccoli  0.00
## 368  2007                               Broccoli  0.00
## 369  2008                               Broccoli  0.00
## 370  2009                               Broccoli  0.00
## 371  2010                               Broccoli  0.00
## 372  2011                               Broccoli  0.00
## 373  2012                               Broccoli  0.00
## 374  2013                               Broccoli  0.00
## 375  2015                               Broccoli  0.00
## 376  2016                               Broccoli  0.00
## 377  2012                              BushiRoad  0.00
## 378  1985                                 Capcom  0.65
## 379  1986                                 Capcom  1.94
## 380  1987                                 Capcom  0.45
## 381  1988                                 Capcom  1.75
## 382  1989                                 Capcom  0.91
## 383  1990                                 Capcom  2.03
## 384  1991                                 Capcom  1.01
## 385  1992                                 Capcom  4.94
## 386  1993                                 Capcom  2.22
## 387  1994                                 Capcom  0.00
## 388  1996                                 Capcom  0.44
## 389  1997                                 Capcom  0.88
## 390  1998                                 Capcom  1.04
## 391  1999                                 Capcom  0.43
## 392  2000                                 Capcom  0.72
## 393  2001                                 Capcom  3.33
## 394  2002                                 Capcom  3.85
## 395  2003                                 Capcom  3.89
## 396  2004                                 Capcom  3.05
## 397  2005                                 Capcom  6.24
## 398  2006                                 Capcom  5.90
## 399  2007                                 Capcom  3.77
## 400  2008                                 Capcom  4.25
## 401  2009                                 Capcom  9.21
## 402  2010                                 Capcom  3.67
## 403  2011                                 Capcom  2.87
## 404  2012                                 Capcom  6.15
## 405  2013                                 Capcom  1.26
## 406  2014                                 Capcom  0.00
## 407  2015                                 Capcom  0.77
## 408  2016                                 Capcom  0.83
## 409   N/A                                 Capcom  0.14
## 410  2008                                   Cave  0.10
## 411  2009                                   Cave  0.00
## 412  2010                                   Cave  0.00
## 413  2011                                   Cave  0.04
## 414  2012                                   Cave  0.00
## 415  2013                                   Cave  0.00
## 416  1982                        CBS Electronics  0.29
## 417  2003                                    CCP  0.00
## 418  2005             CDV Software Entertainment  0.00
## 419  2008             CDV Software Entertainment  0.09
## 420  2009             CDV Software Entertainment  0.00
## 421  2011             CDV Software Entertainment  0.02
## 422  1992                               ChunSoft  0.00
## 423  1993                               ChunSoft  0.00
## 424  1994                               ChunSoft  0.00
## 425  1995                               ChunSoft  0.00
## 426  1996                               ChunSoft  0.00
## 427  1998                               ChunSoft  0.00
## 428  1999                               ChunSoft  0.00
## 429  2000                               ChunSoft  0.00
## 430  2002                               ChunSoft  0.00
## 431  2006                               ChunSoft  0.00
## 432  2009                               ChunSoft  0.37
## 433  2010                               ChunSoft  0.00
## 434  2011                               ChunSoft  0.00
## 435  2012                               ChunSoft  0.00
## 436  2008                       City Interactive  0.00
## 437  2009                       City Interactive  0.30
## 438  2010                       City Interactive  0.86
## 439  2011                       City Interactive  0.38
## 440  2013                       City Interactive  0.13
## 441  2014                       City Interactive  0.01
## 442   N/A                       City Interactive  0.02
## 443  2012       Cloud Imperium Games Corporation  0.08
## 444  1993                         Coconuts Japan  0.00
## 445  1996                         Coconuts Japan  0.01
## 446  1997                            Codemasters  0.13
## 447  1998                            Codemasters  0.21
## 448  1999                            Codemasters  0.37
## 449  2000                            Codemasters  0.08
## 450  2001                            Codemasters  0.78
## 451  2002                            Codemasters  0.24
## 452  2003                            Codemasters  0.79
## 453  2004                            Codemasters  0.62
## 454  2005                            Codemasters  0.30
## 455  2006                            Codemasters  0.14
## 456  2007                            Codemasters  1.46
## 457  2008                            Codemasters  1.56
## 458  2009                            Codemasters  2.54
## 459  2010                            Codemasters  0.43
## 460  2011                            Codemasters  1.12
## 461  2012                            Codemasters  0.46
## 462  2013                            Codemasters  0.17
## 463  2014                            Codemasters  0.23
## 464  2015                            Codemasters  0.17
## 465  2016                            Codemasters  0.08
## 466   N/A                            Codemasters  0.04
## 467  2008                     Codemasters Online  0.00
## 468  2007                      CokeM Interactive  0.29
## 469  1981                                 Coleco  2.61
## 470  1982                                 Coleco  0.26
## 471  2010                                Comfort  0.00
## 472  2011                                Comfort  0.00
## 473  2012                                Comfort  0.00
## 474  2013                                Comfort  0.00
## 475  2008                               Commseed  0.00
## 476  1995                                Compile  0.00
## 477  1996                                Compile  0.00
## 478  1997                                Compile  0.00
## 479  1998                                Compile  0.00
## 480  2008                          Compile Heart  0.18
## 481  2009                          Compile Heart  0.00
## 482  2010                          Compile Heart  0.18
## 483  2011                          Compile Heart  0.00
## 484  2012                          Compile Heart  0.05
## 485  2013                          Compile Heart  0.09
## 486  2014                          Compile Heart  0.00
## 487  2015                          Compile Heart  0.00
## 488  2016                          Compile Heart  0.00
## 489  2001               Conspiracy Entertainment  0.16
## 490  2002               Conspiracy Entertainment  0.02
## 491  2007               Conspiracy Entertainment  0.07
## 492  2008               Conspiracy Entertainment  0.11
## 493  2009               Conspiracy Entertainment  0.07
## 494  2010               Conspiracy Entertainment  0.20
## 495  1994                       Core Design Ltd.  0.10
## 496  1995                       Core Design Ltd.  0.06
## 497  1982                           CPG Products  0.50
## 498  1998                    Crave Entertainment  0.23
## 499  1999                    Crave Entertainment  0.60
## 500  2000                    Crave Entertainment  1.02
## 501  2002                    Crave Entertainment  0.25
## 502  2003                    Crave Entertainment  0.05
## 503  2004                    Crave Entertainment  0.83
## 504  2005                    Crave Entertainment  0.47
## 505  2006                    Crave Entertainment  0.23
## 506  2007                    Crave Entertainment  0.39
## 507  2008                    Crave Entertainment  0.41
## 508  2009                    Crave Entertainment  0.52
## 509  2010                    Crave Entertainment  0.68
## 510  2011                    Crave Entertainment  1.23
## 511  2008                          Creative Core  0.00
## 512  2009                          Creative Core  0.00
## 513  2008                            Crimson Cow  0.00
## 514  2011                            Crimson Cow  0.00
## 515  1995                       Crystal Dynamics  0.62
## 516  1996                       Crystal Dynamics  0.33
## 517  1996                                CTO SpA  0.49
## 518  1997                                CTO SpA  0.01
## 519  1991                          Culture Brain  0.00
## 520  1994                          Culture Brain  0.00
## 521  2008                          Culture Brain  0.00
## 522  2010                          Culture Brain  0.00
## 523  1998                     Culture Publishers  0.05
## 524  2007                             CyberFront  0.00
## 525  2008                             CyberFront  0.00
## 526  2009                             CyberFront  0.00
## 527  2010                             CyberFront  0.01
## 528  2011                             CyberFront  0.00
## 529  2012                             CyberFront  0.00
## 530  2013                             CyberFront  0.00
## 531  2015                                Cygames  0.00
## 532  1998                            D3Publisher  0.00
## 533  2000                            D3Publisher  0.04
## 534  2001                            D3Publisher  0.35
## 535  2005                            D3Publisher  0.22
## 536  2006                            D3Publisher  0.80
## 537  2007                            D3Publisher  2.78
## 538  2008                            D3Publisher  1.00
## 539  2009                            D3Publisher  2.14
## 540  2010                            D3Publisher  2.85
## 541  2011                            D3Publisher  0.93
## 542  2012                            D3Publisher  0.02
## 543  2013                            D3Publisher  0.35
## 544  2014                            D3Publisher  0.00
## 545  2015                            D3Publisher  0.00
## 546  2016                            D3Publisher  0.00
## 547   N/A                            D3Publisher  0.04
## 548  2009                               Daedalic  0.00
## 549  2010                               Daedalic  0.00
## 550  2012                               Daedalic  0.00
## 551  2012                 Daedalic Entertainment  0.00
## 552  2013                 Daedalic Entertainment  0.00
## 553  2006                                  Daito  0.00
## 554  1981                               Data Age  0.36
## 555  1982                               Data Age  0.30
## 556  2007                Data Design Interactive  0.07
## 557  2008                Data Design Interactive  0.11
## 558  2009                Data Design Interactive  0.07
## 559  1995                              Data East  0.00
## 560  1998                              Data East  0.00
## 561  2002                         Datam Polystar  0.00
## 562  2007                         Datam Polystar  0.00
## 563  2004                            Deep Silver  0.24
## 564  2005                            Deep Silver  0.20
## 565  2006                            Deep Silver  0.00
## 566  2007                            Deep Silver  0.02
## 567  2008                            Deep Silver  2.25
## 568  2009                            Deep Silver  1.14
## 569  2010                            Deep Silver  0.69
## 570  2011                            Deep Silver  3.56
## 571  2012                            Deep Silver  0.09
## 572  2013                            Deep Silver  3.01
## 573  2014                            Deep Silver  0.77
## 574  2015                            Deep Silver  0.49
## 575  2016                            Deep Silver  0.27
## 576   N/A                            Deep Silver  0.00
## 577  2001              Destination Software, Inc  0.09
## 578  2002              Destination Software, Inc  0.01
## 579  2003              Destination Software, Inc  0.04
## 580  2004              Destination Software, Inc  0.03
## 581  2005              Destination Software, Inc  0.06
## 582  2006              Destination Software, Inc  0.06
## 583  2007              Destination Software, Inc  0.34
## 584  2008              Destination Software, Inc  0.12
## 585  2007                              Destineer  0.26
## 586  2008                              Destineer  1.43
## 587  2009                              Destineer  1.73
## 588  2010                              Destineer  0.56
## 589  2011                              Destineer  0.08
## 590  2007                            Detn8 Games  0.21
## 591  2010                       Devolver Digital  0.00
## 592  2015                       Devolver Digital  0.00
## 593  2007                        DHM Interactive  0.13
## 594  2009                        DHM Interactive  0.03
## 595  2002                               DigiCube  0.00
## 596  1999             Disney Interactive Studios  1.94
## 597  2002             Disney Interactive Studios  0.18
## 598  2003             Disney Interactive Studios  0.36
## 599  2004             Disney Interactive Studios  2.25
## 600  2005             Disney Interactive Studios  3.22
## 601  2006             Disney Interactive Studios  4.12
## 602  2007             Disney Interactive Studios 10.34
## 603  2008             Disney Interactive Studios 12.32
## 604  2009             Disney Interactive Studios  8.18
## 605  2010             Disney Interactive Studios 12.05
## 606  2011             Disney Interactive Studios  6.61
## 607  2012             Disney Interactive Studios  1.75
## 608  2013             Disney Interactive Studios  4.08
## 609  2014             Disney Interactive Studios  2.12
## 610  2015             Disney Interactive Studios  0.92
## 611   N/A             Disney Interactive Studios  0.90
## 612  2008                                 Dorart  0.00
## 613  2010                                 Dorart  0.00
## 614  2015                        dramatic create  0.00
## 615  2016                        dramatic create  0.00
## 616  2001               DreamCatcher Interactive  0.02
## 617  2003               DreamCatcher Interactive  0.06
## 618  2004               DreamCatcher Interactive  0.00
## 619  2005               DreamCatcher Interactive  0.02
## 620  2006               DreamCatcher Interactive  0.03
## 621  2008               DreamCatcher Interactive  0.07
## 622  2009               DreamCatcher Interactive  0.44
## 623  2010               DreamCatcher Interactive  0.11
## 624  1998                 DreamWorks Interactive  0.07
## 625  2005                              DSI Games  0.12
## 626  2006                              DSI Games  0.04
## 627  2007                              DSI Games  0.05
## 628  2008                              DSI Games  0.08
## 629  2005                      DTP Entertainment  0.17
## 630  2007                      DTP Entertainment  0.00
## 631  2008                      DTP Entertainment  0.35
## 632  2009                      DTP Entertainment  0.66
## 633  2010                      DTP Entertainment  0.23
## 634  2011                      DTP Entertainment  0.21
## 635  2012                      DTP Entertainment  0.00
## 636   N/A                      DTP Entertainment  0.00
## 637  2016               Dusenberry Martin Racing  0.05
## 638  2012                               EA Games  0.07
## 639  2012                       Easy Interactive  0.00
## 640  2009                                  Ecole  0.00
## 641  2006                                   Edia  0.00
## 642  2009                                   Edia  0.00
## 643  1996                      Eidos Interactive  3.38
## 644  1997                      Eidos Interactive  6.25
## 645  1998                      Eidos Interactive  3.09
## 646  1999                      Eidos Interactive  5.13
## 647  2000                      Eidos Interactive  2.11
## 648  2001                      Eidos Interactive  1.03
## 649  2002                      Eidos Interactive  3.35
## 650  2003                      Eidos Interactive  2.09
## 651  2004                      Eidos Interactive  1.72
## 652  2005                      Eidos Interactive  5.12
## 653  2006                      Eidos Interactive  2.69
## 654  2007                      Eidos Interactive  3.21
## 655  2008                      Eidos Interactive  3.04
## 656  2009                      Eidos Interactive  5.64
## 657   N/A                      Eidos Interactive  1.34
## 658  1992                        Electronic Arts  0.00
## 659  1994                        Electronic Arts  0.24
## 660  1995                        Electronic Arts  1.87
## 661  1996                        Electronic Arts  4.82
## 662  1997                        Electronic Arts 15.25
## 663  1998                        Electronic Arts 20.72
## 664  1999                        Electronic Arts 12.86
## 665  2000                        Electronic Arts 15.09
## 666  2001                        Electronic Arts 26.21
## 667  2002                        Electronic Arts 40.70
## 668  2003                        Electronic Arts 40.47
## 669  2004                        Electronic Arts 41.01
## 670  2005                        Electronic Arts 46.81
## 671  2006                        Electronic Arts 37.34
## 672  2007                        Electronic Arts 36.76
## 673  2008                        Electronic Arts 45.10
## 674  2009                        Electronic Arts 43.26
## 675  2010                        Electronic Arts 39.24
## 676  2011                        Electronic Arts 33.42
## 677  2012                        Electronic Arts 20.80
## 678  2013                        Electronic Arts 22.18
## 679  2014                        Electronic Arts 18.81
## 680  2015                        Electronic Arts 17.62
## 681  2016                        Electronic Arts  3.64
## 682   N/A                        Electronic Arts 10.85
## 683  1996                 Electronic Arts Victor  0.23
## 684  1996                                    Elf  0.00
## 685  1997                                    Elf  0.00
## 686  1996                                  Elite  0.04
## 687  1996                     Empire Interactive  0.23
## 688  1998                     Empire Interactive  0.02
## 689  1999                     Empire Interactive  0.00
## 690  2000                     Empire Interactive  0.41
## 691  2001                     Empire Interactive  0.56
## 692  2002                     Empire Interactive  0.74
## 693  2003                     Empire Interactive  1.30
## 694  2004                     Empire Interactive  1.04
## 695  2005                     Empire Interactive  0.26
## 696  2006                     Empire Interactive  0.15
## 697  2007                     Empire Interactive  0.39
## 698  2008                     Empire Interactive  0.86
## 699   N/A                     Empire Interactive  0.07
## 700  2001                                 Encore  0.02
## 701  2003                                 Encore  0.02
## 702  2005                                 Encore  0.00
## 703  1987                       Enix Corporation  0.15
## 704  1988                       Enix Corporation  0.10
## 705  1990                       Enix Corporation  0.08
## 706  1992                       Enix Corporation  0.00
## 707  1993                       Enix Corporation  0.00
## 708  1994                       Enix Corporation  0.00
## 709  1995                       Enix Corporation  0.00
## 710  1996                       Enix Corporation  0.00
## 711  1999                       Enix Corporation  0.13
## 712  2000                       Enix Corporation  0.20
## 713  2001                       Enix Corporation  0.00
## 714  2002                       Enix Corporation  0.10
## 715  2003                       Enix Corporation  0.00
## 716  2004                       Enix Corporation  0.00
## 717  2009                      Enjoy Gaming ltd.  0.09
## 718  2001                             Enterbrain  0.00
## 719  2002                             Enterbrain  0.09
## 720  2004                             Enterbrain  0.03
## 721  2006                             Enterbrain  0.00
## 722  2007                             Enterbrain  0.00
## 723  2008                             Enterbrain  0.00
## 724  2009                             Enterbrain  0.00
## 725  2010                             Enterbrain  0.00
## 726  1999              EON Digital Entertainment  0.01
## 727  2016                             Epic Games  0.01
## 728  1991                                  Epoch  0.00
## 729  1992                                  Epoch  0.00
## 730  1993                                  Epoch  0.00
## 731  1995                                  Epoch  0.00
## 732  1996                                  Epoch  0.00
## 733  2000                                  Epoch  0.00
## 734  2007                                 Ertain  0.05
## 735  1997                                    ESP  0.00
## 736  1998                                    ESP  0.03
## 737  2002                                    ESP  0.00
## 738  2005                        Essential Games  0.00
## 739  2006                        Essential Games  0.01
## 740  1998                        Evolution Games  0.00
## 741  2004                          Evolved Games  0.06
## 742  2009                          Evolved Games  0.09
## 743  2011                          Evolved Games  0.11
## 744  2011                   Excalibur Publishing  0.00
## 745  2012                   Excalibur Publishing  0.00
## 746  2014                        Experience Inc.  0.00
## 747  2015                        Experience Inc.  0.00
## 748  2016                        Experience Inc.  0.00
## 749  2015            Extreme Entertainment Group  0.02
## 750  2007                     Falcom Corporation  0.00
## 751  2008                     Falcom Corporation  0.00
## 752  2009                     Falcom Corporation  0.19
## 753  2010                     Falcom Corporation  0.09
## 754  2011                     Falcom Corporation  0.00
## 755  2012                     Falcom Corporation  0.00
## 756  2013                     Falcom Corporation  0.00
## 757  2012                                 Fields  0.00
## 758  2005                       Flashpoint Games  0.03
## 759  2010                       Flashpoint Games  0.04
## 760  2007                            Flight-Plan  0.00
## 761  2009                            Flight-Plan  0.00
## 762  2006                 Focus Home Interactive  0.00
## 763  2007                 Focus Home Interactive  0.01
## 764  2008                 Focus Home Interactive  0.06
## 765  2009                 Focus Home Interactive  0.36
## 766  2010                 Focus Home Interactive  0.28
## 767  2011                 Focus Home Interactive  0.01
## 768  2012                 Focus Home Interactive  0.30
## 769  2013                 Focus Home Interactive  0.22
## 770  2014                 Focus Home Interactive  0.33
## 771  2015                 Focus Home Interactive  0.13
## 772  2016                 Focus Home Interactive  0.02
## 773   N/A                 Focus Home Interactive  0.00
## 774  2012                       Focus Multimedia  0.00
## 775  2015                       Focus Multimedia  0.00
## 776  2008                                 fonfun  0.00
## 777  2010                    Foreign Media Games  0.27
## 778  1998                              Fortyfive  0.00
## 779  1996                        Fox Interactive  0.85
## 780  1997                        Fox Interactive  1.82
## 781  1998                        Fox Interactive  0.32
## 782  1999                        Fox Interactive  0.68
## 783  2000                        Fox Interactive  0.09
## 784  1994                          From Software  0.00
## 785  1996                          From Software  0.08
## 786  1997                          From Software  0.06
## 787  1998                          From Software  0.04
## 788  1999                          From Software  0.07
## 789  2001                          From Software  0.02
## 790  2002                          From Software  0.04
## 791  2006                          From Software  0.03
## 792  2009                          From Software  0.01
## 793  2010                          From Software  0.00
## 794  2013                          From Software  0.00
## 795  1995                                   Fuji  0.00
## 796  2011                           Funbox Media  0.71
## 797  2012                           Funbox Media  0.00
## 798  2015                           Funbox Media  0.00
## 799  2010                                 Funcom  0.00
## 800  2012                                 Funcom  0.07
## 801  1996                                FunSoft  0.07
## 802  2006                                 Funsta  0.02
## 803  2007                                 Funsta  0.10
## 804   N/A                                 Funsta  0.01
## 805  2010                                  FuRyu  0.00
## 806  2011                                  FuRyu  0.00
## 807  2012                                  FuRyu  0.00
## 808  2013                                  FuRyu  0.00
## 809  2014                                  FuRyu  0.00
## 810  2015                                  FuRyu  0.11
## 811  2016                                  FuRyu  0.00
## 812  2015                      FuRyu Corporation  0.02
## 813  2009                                  G.Rev  0.00
## 814  2010                                  G.Rev  0.00
## 815  1996                                   Gaga  0.00
## 816  1998                 Gainax Network Systems  0.00
## 817  2007                                 Gakken  0.00
## 818  1994                              Game Arts  0.00
## 819  2003                           Game Factory  0.03
## 820  2004                           Game Factory  0.17
## 821  2005                           Game Factory  0.04
## 822  2006                           Game Factory  0.19
## 823  2007                           Game Factory  1.37
## 824  2008                           Game Factory  1.37
## 825  2010                           Game Factory  0.14
## 826  2007                              Game Life  0.09
## 827  2009                              Game Life  0.04
## 828  2008                             Gamebridge  0.18
## 829  2009                             Gamebridge  0.12
## 830  2008                               Gamecock  0.16
## 831  2007                               Gameloft  0.10
## 832  2010                 GameMill Entertainment  0.17
## 833  2011                 GameMill Entertainment  0.95
## 834  2012                 GameMill Entertainment  0.16
## 835  1998                                GameTek  0.08
## 836  2001                Gathering of Developers  0.34
## 837  2003                Gathering of Developers  0.00
## 838  2004                Gathering of Developers  0.27
## 839  1998                  General Entertainment  0.00
## 840  1999                                  Genki  0.00
## 841  2001                                  Genki  0.05
## 842  2003                                  Genki  0.44
## 843  2007                                  Genki  0.00
## 844  2012                                  Genki  0.00
## 845  2009                            Genterprise  0.00
## 846  2003                             Ghostlight  0.07
## 847  2004                             Ghostlight  0.06
## 848  2005                             Ghostlight  0.11
## 849  2006                             Ghostlight  0.10
## 850  2007                             Ghostlight  0.08
## 851  2008                             Ghostlight  0.08
## 852  2009                             Ghostlight  0.18
## 853  2010                             Ghostlight  0.00
## 854  2011                             Ghostlight  0.45
## 855   N/A                             Ghostlight  0.09
## 856  2014                                   Giga  0.00
## 857  2012                                 Giza10  0.00
## 858  1995                                  Glams  0.00
## 859  2006                 Global A Entertainment  0.03
## 860  2007                 Global A Entertainment  0.06
## 861  2008                 Global A Entertainment  0.04
## 862  2004                            Global Star  3.95
## 863  2005                            Global Star  1.26
## 864  2006                            Global Star  0.04
## 865  2006                            GN Software  0.00
## 866  2008                            GN Software  0.00
## 867  2010                            GN Software  0.00
## 868  2008                                    GOA  0.00
## 869  2002                           Gotham Games  0.98
## 870  2003                           Gotham Games  0.85
## 871  2004                           Gotham Games  0.44
## 872  2008                               Graffiti  0.04
## 873  2009                               Graffiti  0.13
## 874  2010                               Graffiti  0.19
## 875  2007                       Grand Prix Games  0.00
## 876  2005                 Graphsim Entertainment  0.00
## 877  1996                Gremlin Interactive Ltd  0.21
## 878  1997                Gremlin Interactive Ltd  0.18
## 879  1998                Gremlin Interactive Ltd  0.27
## 880  2010                  Griffin International  0.08
## 881  2005                           Groove Games  0.05
## 882  2006                           Groove Games  0.02
## 883  2008                                    GSP  0.46
## 884  2009                                    GSP  0.43
## 885  2010                                    GSP  0.15
## 886  2011                                    GSP  0.12
## 887  1995                         GT Interactive  0.15
## 888  1996                         GT Interactive  3.83
## 889  1997                         GT Interactive  4.18
## 890  1998                         GT Interactive  3.74
## 891  1999                         GT Interactive  3.67
## 892  2008                                 GungHo  0.23
## 893  2009                                 GungHo  0.26
## 894  2011                                 GungHo  0.02
## 895  2012                                 GungHo  0.22
## 896  2013                                 GungHo  0.08
## 897  2014                                 GungHo  0.03
## 898  2016                                 GungHo  0.00
## 899  1996                                   Gust  0.00
## 900  1997                                   Gust  0.00
## 901  2001                                   Gust  0.00
## 902  2002                                   Gust  0.00
## 903  2007                                   Gust  0.00
## 904  2008                                   Gust  0.07
## 905  2009                                   Gust  0.08
## 906  2010                                   Gust  0.00
## 907  2011                                   Gust  0.00
## 908  2012                                   Gust  0.00
## 909  2013                                   Gust  0.00
## 910  2007                              Hackberry  0.00
## 911  2008                              Hackberry  0.00
## 912  2010                              Hackberry  0.00
## 913  1989                         HAL Laboratory  0.06
## 914  2002                    Hamster Corporation  0.16
## 915  2006                    Hamster Corporation  0.00
## 916  2014                               Happinet  0.00
## 917  2015                               Happinet  0.00
## 918  2016                               Happinet  0.00
## 919  2015                 Harmonix Music Systems  0.60
## 920  1994                     Hasbro Interactive  1.49
## 921  1997                     Hasbro Interactive  5.36
## 922  1998                     Hasbro Interactive  2.27
## 923  1999                     Hasbro Interactive  1.03
## 924  2000                     Hasbro Interactive  0.74
## 925  2001                     Hasbro Interactive  0.09
## 926  2006                     Hasbro Interactive  0.01
## 927  2000                      Havas Interactive  0.01
## 928  2013                           Headup Games  0.00
## 929  1996                           Hearty Robin  0.00
## 930  1993                                   Hect  0.00
## 931  1994                                   Hect  0.00
## 932  1995                                   Hect  0.00
## 933  2016                            Hello Games  0.58
## 934  2011                        Her Interactive  0.03
## 935  2004                        Hip Interactive  0.13
## 936  2005                        Hip Interactive  0.13
## 937  2008                        HMH Interactive  0.00
## 938  2009                        HMH Interactive  0.00
## 939  2010           Home Entertainment Suppliers  0.00
## 940  2011           Home Entertainment Suppliers  0.09
## 941   N/A           Home Entertainment Suppliers  0.00
## 942  1997                   Hudson Entertainment  0.00
## 943  1998                   Hudson Entertainment  0.05
## 944  1999                   Hudson Entertainment  0.00
## 945  2001                   Hudson Entertainment  0.08
## 946  2003                   Hudson Entertainment  0.05
## 947  2006                   Hudson Entertainment  0.00
## 948  2007                   Hudson Entertainment  0.06
## 949  2008                   Hudson Entertainment  0.00
## 950  2009                   Hudson Entertainment  0.09
## 951  1984                            Hudson Soft  0.00
## 952  1985                            Hudson Soft  0.18
## 953  1986                            Hudson Soft  0.32
## 954  1991                            Hudson Soft  0.16
## 955  1992                            Hudson Soft  0.00
## 956  1993                            Hudson Soft  0.00
## 957  1994                            Hudson Soft  0.00
## 958  1995                            Hudson Soft  0.00
## 959  1996                            Hudson Soft  0.00
## 960  1997                            Hudson Soft  0.54
## 961  1998                            Hudson Soft  0.02
## 962  1999                            Hudson Soft  0.05
## 963  2000                            Hudson Soft  0.00
## 964  2001                            Hudson Soft  0.00
## 965  2002                            Hudson Soft  0.06
## 966  2003                            Hudson Soft  0.03
## 967  2004                            Hudson Soft  0.00
## 968  2005                            Hudson Soft  0.00
## 969  2006                            Hudson Soft  0.00
## 970  2007                            Hudson Soft  0.00
## 971  2008                            Hudson Soft  0.07
## 972  2009                            Hudson Soft  0.51
## 973  2010                            Hudson Soft  0.48
## 974  2011                            Hudson Soft  0.13
## 975  1991                    Human Entertainment  0.00
## 976  1994                    Human Entertainment  0.00
## 977  1995                    Human Entertainment  0.00
## 978  1996                    Human Entertainment  0.00
## 979  1997                    Human Entertainment  0.00
## 980  1998                    Human Entertainment  0.06
## 981  1999                    Human Entertainment  0.00
## 982  2015                                  HuneX  0.00
## 983  2011                    Iceberg Interactive  0.02
## 984  2012                    Iceberg Interactive  0.00
## 985  1992                            id Software  0.02
## 986  2002                           Idea Factory  0.00
## 987  2005                           Idea Factory  0.03
## 988  2006                           Idea Factory  0.10
## 989  2007                           Idea Factory  0.00
## 990  2008                           Idea Factory  0.04
## 991  2009                           Idea Factory  0.12
## 992  2010                           Idea Factory  0.05
## 993  2011                           Idea Factory  0.00
## 994  2012                           Idea Factory  0.00
## 995  2013                           Idea Factory  0.00
## 996  2014                           Idea Factory  0.19
## 997  2015                           Idea Factory  0.00
## 998  2016                           Idea Factory  0.00
## 999  2017                           Idea Factory  0.00
## 1000  N/A                           Idea Factory  0.00
## 1001 2014             Idea Factory International  0.19
## 1002 2015             Idea Factory International  0.04
## 1003 2006                           IE Institute  0.00
## 1004 2007                           IE Institute  0.00
## 1005 2008                           IE Institute  0.00
## 1006 2012                           IE Institute  0.00
## 1007 2002                 Ignition Entertainment  0.26
## 1008 2003                 Ignition Entertainment  0.14
## 1009 2004                 Ignition Entertainment  0.54
## 1010 2005                 Ignition Entertainment  0.44
## 1011 2006                 Ignition Entertainment  0.43
## 1012 2007                 Ignition Entertainment  0.66
## 1013 2008                 Ignition Entertainment  1.03
## 1014 2009                 Ignition Entertainment  0.20
## 1015 2011                 Ignition Entertainment  0.18
## 1016  N/A                 Ignition Entertainment  0.15
## 1017 2004                     Illusion Softworks  0.34
## 1018 1997                                 Imadio  0.00
## 1019 2012                            Image Epoch  0.00
## 1020 2014                        imageepoch Inc.  0.00
## 1021 1995                             Imageworks  0.00
## 1022 1981                                 Imagic  4.51
## 1023 1991                              Imagineer  0.00
## 1024 1996                              Imagineer  0.00
## 1025 1997                              Imagineer  0.00
## 1026 1998                              Imagineer  0.02
## 1027 1999                              Imagineer  0.07
## 1028 2000                              Imagineer  0.00
## 1029 2001                              Imagineer  0.00
## 1030 1993                                   Imax  0.00
## 1031 2004                            Indie Games  0.09
## 1032 1994                             Infogrames  0.43
## 1033 1996                             Infogrames  0.17
## 1034 1997                             Infogrames  0.43
## 1035 1998                             Infogrames  0.40
## 1036 1999                             Infogrames  0.66
## 1037 2000                             Infogrames  0.91
## 1038 2001                             Infogrames  1.29
## 1039 2002                             Infogrames  6.01
## 1040 2003                             Infogrames  0.11
## 1041  N/A                             Infogrames  0.09
## 1042 2016                        Insomniac Games  0.10
## 1043 2006                           Interchannel  0.00
## 1044 2008                           Interchannel  0.00
## 1045 2007                     Interchannel-Holon  0.00
## 1046 2015                              Intergrow  0.00
## 1047 1993                              Interplay  0.00
## 1048 1995                              Interplay  0.16
## 1049 1996                              Interplay  0.57
## 1050 1997                              Interplay  0.60
## 1051 1998                              Interplay  0.47
## 1052 1999                              Interplay  0.14
## 1053 2000                              Interplay  0.53
## 1054 2001                              Interplay  0.43
## 1055 2002                              Interplay  0.28
## 1056 2003                              Interplay  0.34
## 1057 2004                              Interplay  0.34
## 1058 1997                  Interplay Productions  0.05
## 1059 2012             Interworks Unlimited, Inc.  0.01
## 1060 2016                           Inti Creates  0.00
## 1061 2016                  Introversion Software  0.01
## 1062 2015                   inXile Entertainment  0.02
## 1063 1998              Irem Software Engineering  0.01
## 1064 2006              Irem Software Engineering  0.00
## 1065 2007              Irem Software Engineering  0.00
## 1066 2008              Irem Software Engineering  0.11
## 1067 2009              Irem Software Engineering  0.00
## 1068 2010              Irem Software Engineering  0.00
## 1069 2011              Irem Software Engineering  0.00
## 1070 2012              Irem Software Engineering  0.00
## 1071 1982                       ITT Family Games  0.32
## 1072 2008                              Ivolgamus  0.03
## 1073 2011                                   iWin  0.00
## 1074 2005                      Jack of All Games  0.27
## 1075 2011                      Jack of All Games  0.04
## 1076 1995                                 Jaleco  0.28
## 1077 1996                                 Jaleco  0.06
## 1078 1998                                 Jaleco  0.03
## 1079 1999                                 Jaleco  0.02
## 1080 2002                                 Jaleco  0.04
## 1081 2003                                 Jaleco  0.24
## 1082 2004                                 Jaleco  0.04
## 1083 2007                                 Jaleco  0.08
## 1084 2008                                 Jaleco  0.00
## 1085 2002                     Jester Interactive  0.35
## 1086 2003                     Jester Interactive  0.02
## 1087 2005                     Jester Interactive  0.33
## 1088 1999                                Jorudan  0.00
## 1089 2002                                Jorudan  0.00
## 1090 2003                                Jorudan  0.00
## 1091 2002                     JoWood Productions  0.00
## 1092 2004                     JoWood Productions  0.04
## 1093 2005                     JoWood Productions  0.06
## 1094 2006                     JoWood Productions  0.00
## 1095 2007                     JoWood Productions  0.00
## 1096 2008                     JoWood Productions  0.36
## 1097 2009                     JoWood Productions  0.23
## 1098 2010                     JoWood Productions  0.18
## 1099 2010                            Just Flight  0.00
## 1100 1994                                    JVC  0.00
## 1101 1996                                    JVC  2.15
## 1102 1997                                    JVC  0.02
## 1103 1998                                    JVC  0.04
## 1104 1999                                    JVC  0.01
## 1105 2000                                    JVC  0.03
## 1106 2012                         Kadokawa Games  0.00
## 1107 2013                         Kadokawa Games  0.00
## 1108 2014                         Kadokawa Games  0.00
## 1109 2015                         Kadokawa Games  0.00
## 1110 2016                         Kadokawa Games  0.00
## 1111 1996                        Kadokawa Shoten  0.00
## 1112 1997                        Kadokawa Shoten  0.00
## 1113 1998                        Kadokawa Shoten  0.27
## 1114 1999                        Kadokawa Shoten  0.19
## 1115 2004                        Kadokawa Shoten  0.00
## 1116 2005                        Kadokawa Shoten  0.00
## 1117 2006                        Kadokawa Shoten  0.00
## 1118 2007                        Kadokawa Shoten  0.00
## 1119 2008                        Kadokawa Shoten  0.00
## 1120 2009                        Kadokawa Shoten  0.00
## 1121 2010                        Kadokawa Shoten  0.00
## 1122 2011                        Kadokawa Shoten  0.00
## 1123 2012                        Kadokawa Shoten  0.00
## 1124 2013                        Kadokawa Shoten  0.00
## 1125 2014                        Kadokawa Shoten  0.00
## 1126 2015                        Kadokawa Shoten  0.00
## 1127 2013                            Kaga Create  0.00
## 1128 2015                            Kaga Create  0.00
## 1129 2007                          Kalypso Media  0.00
## 1130 2008                          Kalypso Media  0.00
## 1131 2009                          Kalypso Media  0.15
## 1132 2010                          Kalypso Media  0.14
## 1133 2011                          Kalypso Media  0.29
## 1134 2012                          Kalypso Media  0.00
## 1135 2014                          Kalypso Media  0.05
## 1136 2015                          Kalypso Media  0.05
## 1137  N/A                          Kalypso Media  0.32
## 1138 2010                                  Kamui  0.00
## 1139 2006                            Kando Games  0.02
## 1140 2010                    Karin Entertainment  0.00
## 1141 1991                                  Kemco  0.00
## 1142 1997                                  Kemco  0.40
## 1143 1998                                  Kemco  0.39
## 1144 1999                                  Kemco  0.22
## 1145 2001                                  Kemco  0.08
## 1146 2002                                  Kemco  0.05
## 1147 2003                                  Kemco  0.45
## 1148 2005                                  Kemco  0.02
## 1149 1998                                    KID  0.00
## 1150 2006                                    KID  0.00
## 1151 2007                           Kids Station  0.00
## 1152 2002                           King Records  0.00
## 1153 2003                    Knowledge Adventure  0.43
## 1154 2009                    Knowledge Adventure  0.80
## 1155 2008                             Koch Media  1.79
## 1156 2011                             Koch Media  0.00
## 1157 2013                             Koch Media  0.00
## 1158 2015                             Koch Media  0.52
## 1159 2016                             Koch Media  0.00
## 1160 1995               Kokopeli Digital Studios  0.02
## 1161 1986           Konami Digital Entertainment  0.81
## 1162 1987           Konami Digital Entertainment  0.45
## 1163 1989           Konami Digital Entertainment  0.40
## 1164 1990           Konami Digital Entertainment  1.74
## 1165 1991           Konami Digital Entertainment  1.37
## 1166 1992           Konami Digital Entertainment  0.04
## 1167 1993           Konami Digital Entertainment  0.00
## 1168 1994           Konami Digital Entertainment  0.00
## 1169 1995           Konami Digital Entertainment  0.40
## 1170 1996           Konami Digital Entertainment  0.88
## 1171 1997           Konami Digital Entertainment  1.36
## 1172 1998           Konami Digital Entertainment  4.06
## 1173 1999           Konami Digital Entertainment  4.50
## 1174 2000           Konami Digital Entertainment  0.89
## 1175 2001           Konami Digital Entertainment  9.45
## 1176 2002           Konami Digital Entertainment  4.87
## 1177 2003           Konami Digital Entertainment  5.82
## 1178 2004           Konami Digital Entertainment  7.27
## 1179 2005           Konami Digital Entertainment  5.19
## 1180 2006           Konami Digital Entertainment  3.74
## 1181 2007           Konami Digital Entertainment  5.47
## 1182 2008           Konami Digital Entertainment  9.48
## 1183 2009           Konami Digital Entertainment  5.17
## 1184 2010           Konami Digital Entertainment  6.06
## 1185 2011           Konami Digital Entertainment  2.88
## 1186 2012           Konami Digital Entertainment  2.23
## 1187 2013           Konami Digital Entertainment  1.18
## 1188 2014           Konami Digital Entertainment  1.13
## 1189 2015           Konami Digital Entertainment  2.06
## 1190 2016           Konami Digital Entertainment  0.01
## 1191  N/A           Konami Digital Entertainment  3.25
## 1192 2003                              Kool Kizz  0.03
## 1193 1996                                    KSS  0.00
## 1194 1993                                 Laguna  0.09
## 1195 1994                                 Laguna  0.00
## 1196 1995                                 Laguna  0.07
## 1197 2008                     Legacy Interactive  0.04
## 1198 1999                             LEGO Media  0.77
## 1199 2001                             LEGO Media  0.14
## 1200 2002                             LEGO Media  0.10
## 1201 2009                                Level 5  0.00
## 1202 2010                                Level 5  0.00
## 1203 2011                                Level 5  0.00
## 1204 2012                                Level 5  0.20
## 1205 2013                                Level 5  0.00
## 1206 2014                                Level 5  0.00
## 1207 2015                                Level 5  0.00
## 1208 2016                                Level 5  0.00
## 1209 2007                  Lexicon Entertainment  0.02
## 1210 2008                  Lexicon Entertainment  0.02
## 1211 2012                            Licensed 4U  0.00
## 1212 2007                 Lighthouse Interactive  0.00
## 1213 2002                           Liquid Games  0.18
## 1214 2006                           Liquid Games  0.01
## 1215 2010                           Little Orbit  0.14
## 1216 2013                           Little Orbit  0.02
## 1217 2014                           Little Orbit  0.23
## 1218 2015                           Little Orbit  0.14
## 1219 1998                                  Locus  0.00
## 1220 2002                              LSP Games  0.02
## 1221 2003                              LSP Games  0.06
## 1222 1994                              LucasArts  1.09
## 1223 1996                              LucasArts  0.31
## 1224 1997                              LucasArts  0.38
## 1225 1999                              LucasArts  1.38
## 1226 2000                              LucasArts  0.21
## 1227 2001                              LucasArts  1.46
## 1228 2002                              LucasArts  1.12
## 1229 2003                              LucasArts  1.43
## 1230 2004                              LucasArts  2.06
## 1231 2005                              LucasArts  5.91
## 1232 2006                              LucasArts  5.09
## 1233 2007                              LucasArts 10.85
## 1234 2008                              LucasArts  8.45
## 1235 2009                              LucasArts  2.24
## 1236 2010                              LucasArts  2.50
## 1237 2011                              LucasArts  3.95
## 1238  N/A                              LucasArts  1.54
## 1239 2004                               Mad Catz  0.15
## 1240 2006                               Mad Catz  0.02
## 1241 2012                               Mad Catz  0.07
## 1242 1998                        Magical Company  0.15
## 1243 2001                                  Magix  0.15
## 1244 2009                                  Magix  0.02
## 1245 2001                  Majesco Entertainment  0.78
## 1246 2002                  Majesco Entertainment  0.04
## 1247 2003                  Majesco Entertainment  0.50
## 1248 2004                  Majesco Entertainment  1.81
## 1249 2005                  Majesco Entertainment  0.48
## 1250 2006                  Majesco Entertainment  0.33
## 1251 2007                  Majesco Entertainment  0.86
## 1252 2008                  Majesco Entertainment  1.21
## 1253 2009                  Majesco Entertainment  2.75
## 1254 2010                  Majesco Entertainment  0.78
## 1255 2011                  Majesco Entertainment  1.97
## 1256 2013                  Majesco Entertainment  0.31
## 1257  N/A                  Majesco Entertainment  0.26
## 1258 2008                            Mamba Games  0.00
## 1259 2010                            Mamba Games  0.00
## 1260 2015                   Marvel Entertainment  0.00
## 1261 2012                Marvelous Entertainment  0.41
## 1262 2013                Marvelous Entertainment  0.26
## 1263 2014                Marvelous Entertainment  0.09
## 1264 2015                Marvelous Entertainment  0.04
## 1265 2016                Marvelous Entertainment  0.00
## 1266 2015                        Marvelous Games  0.00
## 1267 2002                  Marvelous Interactive  0.06
## 1268 2003                  Marvelous Interactive  0.02
## 1269 2004                  Marvelous Interactive  0.19
## 1270 2005                  Marvelous Interactive  0.38
## 1271 2006                  Marvelous Interactive  0.00
## 1272 2007                  Marvelous Interactive  0.00
## 1273 2008                  Marvelous Interactive  0.00
## 1274 2009                  Marvelous Interactive  0.13
## 1275 2010                  Marvelous Interactive  0.18
## 1276 2011                  Marvelous Interactive  0.40
## 1277 2014                  Marvelous Interactive  0.11
## 1278 2015                  Marvelous Interactive  0.14
## 1279 2016                  Marvelous Interactive  0.00
## 1280 2011                      Masque Publishing  0.01
## 1281 2006                           Mastertronic  0.01
## 1282 2009                           Mastertronic  0.00
## 1283 2010                           Mastertronic  0.00
## 1284 2011                           Mastertronic  1.06
## 1285 2012                           Mastertronic  0.00
## 1286 2004                                Mastiff  0.07
## 1287 2005                                Mastiff  0.04
## 1288 2009                                Mastiff  0.57
## 1289 2010                                Mastiff  1.11
## 1290 2011                                Mastiff  0.25
## 1291 1981                     Mattel Interactive  2.35
## 1292 1982                     Mattel Interactive  0.37
## 1293 1999                     Mattel Interactive  0.20
## 1294 2000                     Mattel Interactive  0.13
## 1295 2001                               Max Five  0.03
## 1296 2012                   Maximum Family Games  0.03
## 1297 1988                                  Maxis  0.00
## 1298 1992                                  Maxis  1.20
## 1299 1996                                  Maxis  0.68
## 1300 2004                      MC2 Entertainment  0.03
## 1301 2005                      MC2 Entertainment  0.00
## 1302 2002                    Media Entertainment  0.00
## 1303 2000                          Media Factory  0.00
## 1304 2001                          Media Factory  0.00
## 1305 1994                            Media Rings  0.00
## 1306 1995                            Media Rings  0.00
## 1307 2002                            Media Rings  0.14
## 1308 1996                            Media Works  0.00
## 1309 1998                            Media Works  0.00
## 1310 2006                            Media Works  0.00
## 1311 2007                            Media Works  0.00
## 1312 1995                             MediaQuest  0.03
## 1313 1981                           Men-A-Vision  0.72
## 1314 2009                     Mentor Interactive  0.92
## 1315 2010                     Mentor Interactive  0.06
## 1316 2011                     Mentor Interactive  0.01
## 1317 2007                          Mercury Games  0.05
## 1318 2008                          Mercury Games  0.12
## 1319 2009                            Merscom LLC  0.00
## 1320 2001                               Metro 3D  0.20
## 1321 2002                               Metro 3D  0.26
## 1322 2003                               Metro 3D  0.17
## 1323 2007                               Metro 3D  0.10
## 1324 2008                               Metro 3D  0.04
## 1325 2006                            Michaelsoft  0.00
## 1326 1994                            Micro Cabin  0.00
## 1327 1995                            Micro Cabin  0.00
## 1328 1996                            Micro Cabin  0.00
## 1329 2002                               Microids  0.04
## 1330 2003                               Microids  0.08
## 1331 2004                               Microids  0.05
## 1332 2005                               Microids  0.05
## 1333 2016                               Microids  0.01
## 1334 1995                             Microprose  0.05
## 1335 1996                             Microprose  0.45
## 1336 1997                             Microprose  0.00
## 1337 1999                             Microprose  0.18
## 1338  N/A                             Microprose  0.02
## 1339 1996                 Microsoft Game Studios  3.22
## 1340 1999                 Microsoft Game Studios  0.01
## 1341 2000                 Microsoft Game Studios  0.74
## 1342 2001                 Microsoft Game Studios  9.96
## 1343 2002                 Microsoft Game Studios  5.16
## 1344 2003                 Microsoft Game Studios  6.20
## 1345 2004                 Microsoft Game Studios 10.63
## 1346 2005                 Microsoft Game Studios  3.73
## 1347 2006                 Microsoft Game Studios  4.95
## 1348 2007                 Microsoft Game Studios 15.62
## 1349 2008                 Microsoft Game Studios  8.28
## 1350 2009                 Microsoft Game Studios  9.16
## 1351 2010                 Microsoft Game Studios 32.85
## 1352 2011                 Microsoft Game Studios 12.79
## 1353 2012                 Microsoft Game Studios  9.65
## 1354 2013                 Microsoft Game Studios  9.82
## 1355 2014                 Microsoft Game Studios  5.60
## 1356 2015                 Microsoft Game Studios  6.32
## 1357 2016                 Microsoft Game Studios  0.66
## 1358 1997        Midas Interactive Entertainment  0.01
## 1359 1998        Midas Interactive Entertainment  0.07
## 1360 1999        Midas Interactive Entertainment  0.02
## 1361 2000        Midas Interactive Entertainment  0.53
## 1362 2001        Midas Interactive Entertainment  0.26
## 1363 2002        Midas Interactive Entertainment  0.25
## 1364 2005        Midas Interactive Entertainment  0.05
## 1365 2006        Midas Interactive Entertainment  0.01
## 1366 2007        Midas Interactive Entertainment  0.06
## 1367 2008        Midas Interactive Entertainment  0.00
## 1368 2009        Midas Interactive Entertainment  0.08
## 1369 1996                           Midway Games  0.07
## 1370 1997                           Midway Games  1.16
## 1371 1998                           Midway Games  4.26
## 1372 1999                           Midway Games  2.77
## 1373 2000                           Midway Games  2.65
## 1374 2001                           Midway Games  3.02
## 1375 2002                           Midway Games  5.73
## 1376 2003                           Midway Games  2.54
## 1377 2004                           Midway Games  4.77
## 1378 2005                           Midway Games  3.53
## 1379 2006                           Midway Games  4.18
## 1380 2007                           Midway Games  4.19
## 1381 2008                           Midway Games  6.23
## 1382  N/A                           Midway Games  0.36
## 1383 2008                              Milestone  0.08
## 1384 2016                        Milestone S.r.l  0.00
## 1385 2014                       Milestone S.r.l.  0.12
## 1386 2015                       Milestone S.r.l.  0.07
## 1387 2016                       Milestone S.r.l.  0.04
## 1388 2008                         Minato Station  0.00
## 1389 2012                         Minato Station  0.00
## 1390 2015                         Minato Station  0.00
## 1391 1995                              Mindscape  0.14
## 1392 1996                              Mindscape  0.14
## 1393 1997                              Mindscape  0.08
## 1394 1998                              Mindscape  0.12
## 1395 1999                              Mindscape  0.03
## 1396 2000                              Mindscape  0.02
## 1397 2003                              Mindscape  0.11
## 1398 2007                              Mindscape  1.63
## 1399 2008                              Mindscape  0.10
## 1400 2009                              Mindscape  2.15
## 1401 2010                              Mindscape  0.12
## 1402 2008                          Mirai Shounen  0.00
## 1403 1993                                 Misawa  0.00
## 1404 1994                                 Misawa  0.00
## 1405 1998                                 Mitsui  0.06
## 1406 2015                              mixi, Inc  0.00
## 1407 2016                                MLB.com  0.04
## 1408 2015                                 Mojang  1.25
## 1409 2007               Monte Christo Multimedia  0.00
## 1410 2008                                   Moss  0.10
## 1411 2013                                   Moss  0.00
## 1412 1998                                    MTO  0.00
## 1413 2006                                    MTO  0.00
## 1414 2007                                    MTO  0.00
## 1415 2008                                    MTO  0.00
## 1416 2010                                    MTO  0.00
## 1417 2008                              MTV Games  3.88
## 1418 2009                              MTV Games  4.94
## 1419 2010                              MTV Games  4.61
## 1420 2011                              MTV Games  0.20
## 1421  N/A                              MTV Games  1.35
## 1422 2003                   Mud Duck Productions  0.22
## 1423 2004                   Mud Duck Productions  0.30
## 1424 2006                            Mumbo Jumbo  0.02
## 1425 2007                            Mumbo Jumbo  0.32
## 1426 2008                            Mumbo Jumbo  0.19
## 1427 1985                                  Mycom  0.00
## 1428 2006                           Myelin Media  0.09
## 1429 1981                               Mystique  0.76
## 1430 2004                                    N/A  3.79
## 1431 2005                                    N/A  1.03
## 1432 2007                                    N/A  0.87
## 1433 2010                                    N/A  0.00
## 1434 2011                                    N/A  0.06
## 1435 2012                                    N/A  0.03
## 1436 2014                                    N/A  0.00
## 1437 2016                                    N/A  0.00
## 1438  N/A                                    N/A  2.76
## 1439 1984                     Namco Bandai Games  0.45
## 1440 1985                     Namco Bandai Games  0.00
## 1441 1986                     Namco Bandai Games  2.07
## 1442 1987                     Namco Bandai Games  0.12
## 1443 1988                     Namco Bandai Games  0.10
## 1444 1989                     Namco Bandai Games  0.00
## 1445 1990                     Namco Bandai Games  0.00
## 1446 1991                     Namco Bandai Games  0.00
## 1447 1992                     Namco Bandai Games  0.00
## 1448 1993                     Namco Bandai Games  0.00
## 1449 1994                     Namco Bandai Games  0.00
## 1450 1995                     Namco Bandai Games  0.00
## 1451 1996                     Namco Bandai Games  0.00
## 1452 1997                     Namco Bandai Games  0.59
## 1453 1998                     Namco Bandai Games  2.06
## 1454 1999                     Namco Bandai Games  1.93
## 1455 2000                     Namco Bandai Games  2.87
## 1456 2001                     Namco Bandai Games  5.12
## 1457 2002                     Namco Bandai Games  4.45
## 1458 2003                     Namco Bandai Games  4.39
## 1459 2004                     Namco Bandai Games  2.44
## 1460 2005                     Namco Bandai Games  6.13
## 1461 2006                     Namco Bandai Games  3.14
## 1462 2007                     Namco Bandai Games  1.37
## 1463 2008                     Namco Bandai Games  2.44
## 1464 2009                     Namco Bandai Games  5.81
## 1465 2010                     Namco Bandai Games  5.03
## 1466 2011                     Namco Bandai Games  6.48
## 1467 2012                     Namco Bandai Games  3.19
## 1468 2013                     Namco Bandai Games  1.58
## 1469 2014                     Namco Bandai Games  1.99
## 1470 2015                     Namco Bandai Games  3.63
## 1471 2016                     Namco Bandai Games  2.00
## 1472  N/A                     Namco Bandai Games  0.14
## 1473 1996                                Natsume  0.99
## 1474 1997                                Natsume  0.08
## 1475 2000                                Natsume  0.15
## 1476 2001                                Natsume  0.04
## 1477 2002                                Natsume  0.31
## 1478 2003                                Natsume  0.18
## 1479 2006                                Natsume  0.08
## 1480 2007                                Natsume  0.12
## 1481 2009                                Natsume  0.07
## 1482 2010                                Natsume  0.38
## 1483 2014                                Natsume  0.12
## 1484 2008                           Navarre Corp  0.04
## 1485 2008                             Naxat Soft  0.00
## 1486 1996                                    NCS  0.00
## 1487 1997                                    NCS  0.00
## 1488 1998                                    NCS  0.00
## 1489 2005                                 NCSoft  0.02
## 1490 2006                                 NCSoft  0.00
## 1491 2012                                 NCSoft  0.95
## 1492 2014                                 NCSoft  0.08
## 1493 2002                        NDA Productions  0.09
## 1494 1995                                    NEC  0.00
## 1495 1996                                    NEC  0.00
## 1496 1996                       NEC Interchannel  0.00
## 1497 1997                       NEC Interchannel  0.00
## 1498 1998                       NEC Interchannel  0.00
## 1499 2000                       NEC Interchannel  0.00
## 1500 2008                       NEC Interchannel  0.00
## 1501 2007                     Neko Entertainment  0.06
## 1502 2008                     Neko Entertainment  0.05
## 1503 2009                     Neko Entertainment  0.01
## 1504 2010                     Neko Entertainment  0.08
## 1505 2010                                NetRevo  0.00
## 1506 2012                                NetRevo  0.00
## 1507 1995                                    New  0.00
## 1508 1992                    New World Computing  0.01
## 1509 1998                               NewKidCo  0.30
## 1510 1999                               NewKidCo  0.29
## 1511 2001                               NewKidCo  0.01
## 1512 2002                               NewKidCo  0.19
## 1513 2003                               NewKidCo  0.10
## 1514 2010                                  Nexon  0.00
## 1515 1995                             Nichibutsu  0.00
## 1516 2012               Nihon Falcom Corporation  0.15
## 1517 2014               Nihon Falcom Corporation  0.00
## 1518 2015               Nihon Falcom Corporation  0.00
## 1519 2016               Nihon Falcom Corporation  0.00
## 1520 1983                               Nintendo  2.32
## 1521 1984                               Nintendo 32.57
## 1522 1985                               Nintendo 32.48
## 1523 1986                               Nintendo  6.73
## 1524 1987                               Nintendo  5.13
## 1525 1988                               Nintendo 21.23
## 1526 1989                               Nintendo 39.81
## 1527 1990                               Nintendo 19.75
## 1528 1991                               Nintendo  6.95
## 1529 1992                               Nintendo 18.48
## 1530 1993                               Nintendo  9.53
## 1531 1994                               Nintendo 10.96
## 1532 1995                               Nintendo  6.70
## 1533 1996                               Nintendo 34.54
## 1534 1997                               Nintendo 15.80
## 1535 1998                               Nintendo 23.42
## 1536 1999                               Nintendo 34.18
## 1537 2000                               Nintendo 15.00
## 1538 2001                               Nintendo 23.84
## 1539 2002                               Nintendo 25.05
## 1540 2003                               Nintendo 20.15
## 1541 2004                               Nintendo 28.30
## 1542 2005                               Nintendo 45.05
## 1543 2006                               Nintendo 90.35
## 1544 2007                               Nintendo 42.77
## 1545 2008                               Nintendo 38.83
## 1546 2009                               Nintendo 53.15
## 1547 2010                               Nintendo 24.18
## 1548 2011                               Nintendo 20.24
## 1549 2012                               Nintendo 20.84
## 1550 2013                               Nintendo 19.00
## 1551 2014                               Nintendo 18.01
## 1552 2015                               Nintendo  9.25
## 1553 2016                               Nintendo  1.16
## 1554  N/A                               Nintendo  1.12
## 1555 2002                           Nippon Amuse  0.00
## 1556 2012                        Nippon Columbia  0.00
## 1557 2013                        Nippon Columbia  0.00
## 1558 2014                        Nippon Columbia  0.00
## 1559 2015                        Nippon Columbia  0.00
## 1560 2016                        Nippon Columbia  0.00
## 1561 1998                   Nippon Ichi Software  0.02
## 1562 2007                   Nippon Ichi Software  0.07
## 1563 2008                   Nippon Ichi Software  0.29
## 1564 2009                   Nippon Ichi Software  0.59
## 1565 2010                   Nippon Ichi Software  0.42
## 1566 2011                   Nippon Ichi Software  0.68
## 1567 2012                   Nippon Ichi Software  0.10
## 1568 2013                   Nippon Ichi Software  1.21
## 1569 2014                   Nippon Ichi Software  1.09
## 1570 2015                   Nippon Ichi Software  0.50
## 1571 2016                   Nippon Ichi Software  0.12
## 1572  N/A                   Nippon Ichi Software  0.13
## 1573 1996                         Nippon Telenet  0.00
## 1574 2014                              Nitroplus  0.00
## 1575 2015                              Nitroplus  0.00
## 1576 2007                                Nobilis  0.05
## 1577 2008                                Nobilis  1.37
## 1578 2009                                Nobilis  0.06
## 1579 2010                                Nobilis  0.13
## 1580 2007                            Nordcurrent  0.05
## 1581 2008                            Nordcurrent  0.05
## 1582 2009                            Nordcurrent  0.19
## 1583 2010                            Nordcurrent  0.10
## 1584 2008                           Nordic Games  0.25
## 1585 2009                           Nordic Games  0.03
## 1586 2010                           Nordic Games  0.07
## 1587 2011                           Nordic Games  0.00
## 1588 2012                           Nordic Games  0.11
## 1589 2013                           Nordic Games  0.02
## 1590 2014                           Nordic Games  0.05
## 1591 2015                           Nordic Games  0.23
## 1592 2016                           Nordic Games  0.00
## 1593 2005                              NovaLogic  0.47
## 1594 2009                              NovaLogic  0.01
## 1595 2009                            Number None  0.00
## 1596 2009                                O-Games  0.02
## 1597 2010                                O-Games  0.26
## 1598 2011                                O-Games  0.16
## 1599 2004                       O3 Entertainment  0.07
## 1600 2006                       O3 Entertainment  0.02
## 1601 2007                       O3 Entertainment  0.10
## 1602 1992                                  Ocean  0.00
## 1603 1993                                  Ocean  0.25
## 1604 1995                                  Ocean  0.09
## 1605 1996                                  Ocean  0.07
## 1606 1997                                  Ocean  1.07
## 1607 1998                                  Ocean  0.58
## 1608 2013                          Office Create  0.00
## 1609 2014                          Office Create  0.00
## 1610 1997                              On Demand  0.12
## 1611 2006                              Ongakukan  0.00
## 1612 1997                         Origin Systems  0.05
## 1613 2013                                Otomate  0.00
## 1614 2005                     Oxygen Interactive  0.16
## 1615 2006                     Oxygen Interactive  0.92
## 1616 2007                     Oxygen Interactive  0.12
## 1617 2008                     Oxygen Interactive  0.37
## 1618 2009                     Oxygen Interactive  0.43
## 1619  N/A                     Oxygen Interactive  0.01
## 1620 2009                               P2 Games  0.02
## 1621 2011                               P2 Games  0.00
## 1622 2002            Pacific Century Cyber Works  0.11
## 1623 1995                          Pack-In-Video  0.00
## 1624 1999                           Pack In Soft  0.25
## 1625 1989                                 Palcom  3.38
## 1626 1995                       Panther Software  0.02
## 1627 2007                                   Paon  0.00
## 1628 2008                                   Paon  0.00
## 1629 2010                                   Paon  0.00
## 1630 2011                                   Paon  0.00
## 1631 2013                       Paon Corporation  0.00
## 1632 2016                    Paradox Development  0.00
## 1633 2007                    Paradox Interactive  0.00
## 1634 2008                    Paradox Interactive  0.00
## 1635 2009                    Paradox Interactive  0.04
## 1636 2010                    Paradox Interactive  0.01
## 1637 2011                    Paradox Interactive  0.00
## 1638 2012                    Paradox Interactive  0.00
## 1639 2014                    Paradox Interactive  0.00
## 1640 2015                    Paradox Interactive  0.00
## 1641 2016                    Paradox Interactive  0.00
## 1642 1981                           Parker Bros.  3.14
## 1643 1982                           Parker Bros.  1.05
## 1644 1983                           Parker Bros.  0.46
## 1645 2009          Performance Designed Products  0.34
## 1646 2002                             Phantagram  0.03
## 1647 2009                            Phantom EFX  0.09
## 1648 2007                             Phenomedia  0.09
## 1649 2008                             Phenomedia  0.03
## 1650 2009                             Phenomedia  0.04
## 1651 2007                          Phoenix Games  0.02
## 1652 2010                                 Piacci  0.00
## 1653 2008                               Pinnacle  0.00
## 1654 2009                               Pinnacle  0.00
## 1655 1996                            Pioneer LDC  0.23
## 1656 1998                            Pioneer LDC  0.00
## 1657 2001                            Pioneer LDC  0.00
## 1658 2002                                Play It  0.56
## 1659 2003                                Play It  0.15
## 1660 2004                                Play It  1.52
## 1661 2005                                Play It  0.30
## 1662 2005                 Playlogic Game Factory  0.06
## 1663 2008                 Playlogic Game Factory  0.21
## 1664 2009                 Playlogic Game Factory  0.67
## 1665 1997                              Playmates  0.16
## 1666 2002                               Playmore  0.00
## 1667 2009                                  PlayV  0.00
## 1668 2010                                  PlayV  0.10
## 1669 2011                                 Plenty  0.00
## 1670 2009                             PM Studios  0.09
## 1671 2000                            Pony Canyon  0.03
## 1672 2006                           PopCap Games  0.01
## 1673 2007                           PopCap Games  0.04
## 1674 2008                           PopCap Games  0.14
## 1675 2009                           PopCap Games  0.45
## 1676 2010                           PopCap Games  0.26
## 1677 2011                           PopCap Games  0.20
## 1678 2007                         Popcorn Arcade  0.21
## 1679 2008                         Popcorn Arcade  0.24
## 1680 1999                        PopTop Software  0.06
## 1681 1995                                    Pow  0.00
## 1682 2007                                  PQube  0.10
## 1683 2008                                  PQube  0.06
## 1684 2009                                  PQube  0.68
## 1685 2010                                  PQube  0.60
## 1686 2011                                  PQube  0.19
## 1687 2012                                  PQube  0.01
## 1688 2013                                  PQube  0.07
## 1689 2015                                  PQube  0.12
## 1690 2016                                  PQube  0.08
## 1691 2002                          Princess Soft  0.00
## 1692 2006                          Princess Soft  0.00
## 1693 2008                          Princess Soft  0.00
## 1694 2007                              Prototype  0.00
## 1695 2008                              Prototype  0.00
## 1696 2009                              Prototype  0.00
## 1697 2010                              Prototype  0.00
## 1698 2011                              Prototype  0.00
## 1699 2012                              Prototype  0.00
## 1700 2013                              Prototype  0.00
## 1701 2014                              Prototype  0.00
## 1702 2015                              Prototype  0.00
## 1703 2016                              Prototype  0.00
## 1704 1994                              Psygnosis  0.04
## 1705 1995                              Psygnosis  0.89
## 1706 1996                              Psygnosis  1.04
## 1707 1997                              Psygnosis  0.83
## 1708 1998                              Psygnosis  0.42
## 1709 1999                              Psygnosis  0.34
## 1710 2000                              Psygnosis  0.07
## 1711 1982                                 Quelle  0.81
## 1712 1995                                  Quest  0.00
## 1713 2011                               Quinrose  0.00
## 1714 2012                               Quinrose  0.00
## 1715 2013                               Quinrose  0.00
## 1716 2014                               Quinrose  0.00
## 1717 1998                                Quintet  0.00
## 1718 2001                          Rage Software  0.08
## 1719 2002                          Rage Software  0.73
## 1720 2015                             Rain Games  0.00
## 1721 2001                              Rebellion  0.34
## 1722 2002                              Rebellion  0.01
## 1723 2015                 Rebellion Developments  0.08
## 1724 2010                      RED Entertainment  0.00
## 1725 1994                                Red Orb  0.02
## 1726 1997                                Red Orb  1.52
## 1727 1999                Red Storm Entertainment  1.41
## 1728 2001                Red Storm Entertainment  0.02
## 1729 2005                              RedOctane  1.71
## 1730 2006                              RedOctane  3.81
## 1731 2007                              RedOctane  0.92
## 1732 2009                     Reef Entertainment  0.09
## 1733 2010                     Reef Entertainment  0.08
## 1734 2012                     Reef Entertainment  0.00
## 1735 2004                           responDESIGN  0.07
## 1736 2005                           responDESIGN  0.02
## 1737 2009                     Revolution (Japan)  0.00
## 1738 2015                    Revolution Software  0.00
## 1739 2005                      Rising Star Games  0.57
## 1740 2006                      Rising Star Games  0.85
## 1741 2007                      Rising Star Games  3.13
## 1742 2008                      Rising Star Games  2.78
## 1743 2009                      Rising Star Games  1.60
## 1744 2010                      Rising Star Games  0.55
## 1745 2011                      Rising Star Games  0.74
## 1746 2012                      Rising Star Games  0.03
## 1747 2013                      Rising Star Games  0.24
## 1748 2016                      Rising Star Games  0.01
## 1749  N/A                      Rising Star Games  0.00
## 1750 1995                          Riverhillsoft  0.00
## 1751 2006                         Rocket Company  0.00
## 1752 2007                         Rocket Company  0.00
## 1753 2008                         Rocket Company  0.00
## 1754 2009                         Rocket Company  0.00
## 1755 2010                         Rocket Company  0.00
## 1756 2011                         Rocket Company  0.00
## 1757 2012                         Rocket Company  0.00
## 1758 2013                         Rocket Company  0.00
## 1759 2014                         Rocket Company  0.00
## 1760 2015                         Rocket Company  0.00
## 1761 2016                         Rocket Company  0.00
## 1762 2008                             Rondomedia  0.18
## 1763 2009                             Rondomedia  0.91
## 1764 2010                             Rondomedia  0.00
## 1765 2011                             Rondomedia  0.08
## 1766 2015                             Rondomedia  0.00
## 1767 2007                                    RTL  0.45
## 1768 2008                                    RTL  0.35
## 1769 2009                                    RTL  0.03
## 1770 2007                                 Russel  0.00
## 1771 2008                                 Russel  0.00
## 1772 2009                                 Russel  0.00
## 1773 2010                                 Russel  0.00
## 1774 1993                      Sammy Corporation  0.00
## 1775 2001                      Sammy Corporation  0.17
## 1776 2002                      Sammy Corporation  0.16
## 1777 2003                      Sammy Corporation  0.08
## 1778 2004                      Sammy Corporation  0.00
## 1779 2006                      Sammy Corporation  0.00
## 1780 1998                                 Saurus  0.01
## 1781 2007                        Scholastic Inc.  0.77
## 1782 2008                        Scholastic Inc.  0.96
## 1783 2010                        Scholastic Inc.  0.54
## 1784 2011                        Scholastic Inc.  0.40
## 1785 2002                                    SCi  0.48
## 1786 2003                                    SCi  0.88
## 1787 2004                                    SCi  0.48
## 1788 2005                                    SCi  0.17
## 1789 2013                             Screenlife  0.22
## 1790 2015                             Screenlife  0.00
## 1791 2016                             Screenlife  0.00
## 1792 2012                           SCS Software  0.00
## 1793  N/A                                  Sears  0.20
## 1794 1982                                   Sega  0.37
## 1795 1990                                   Sega  1.86
## 1796 1991                                   Sega  3.03
## 1797 1992                                   Sega  5.47
## 1798 1993                                   Sega  1.00
## 1799 1994                                   Sega  2.43
## 1800 1995                                   Sega  0.55
## 1801 1996                                   Sega  0.00
## 1802 1997                                   Sega  0.00
## 1803 1998                                   Sega  1.26
## 1804 1999                                   Sega  1.64
## 1805 2000                                   Sega  2.12
## 1806 2001                                   Sega  3.37
## 1807 2002                                   Sega  6.56
## 1808 2003                                   Sega  6.02
## 1809 2004                                   Sega  7.94
## 1810 2005                                   Sega  5.33
## 1811 2006                                   Sega  6.13
## 1812 2007                                   Sega  8.33
## 1813 2008                                   Sega 16.49
## 1814 2009                                   Sega  9.90
## 1815 2010                                   Sega  8.70
## 1816 2011                                   Sega  5.35
## 1817 2012                                   Sega  1.63
## 1818 2013                                   Sega  1.34
## 1819 2014                                   Sega  1.56
## 1820 2015                                   Sega  0.27
## 1821 2016                                   Sega  0.13
## 1822 2017                                   Sega  0.00
## 1823  N/A                                   Sega  0.62
## 1824 1995                       Seta Corporation  0.00
## 1825 1996                       Seta Corporation  0.00
## 1826 2013                          Seventh Chord  0.00
## 1827 1995                             Shogakukan  0.00
## 1828 2006                             Shogakukan  0.00
## 1829 2007                             Shogakukan  0.00
## 1830 2015                             Shogakukan  0.00
## 1831 2002           Simon & Schuster Interactive  0.08
## 1832 2015                   Slightly Mad Studios  0.25
## 1833 2009                    Slitherine Software  0.00
## 1834 2010                    Slitherine Software  0.08
## 1835  N/A                    Slitherine Software  0.00
## 1836 1993                                    SNK  0.00
## 1837 1994                                    SNK  0.00
## 1838 1995                                    SNK  0.00
## 1839 1996                                    SNK  0.00
## 1840 1997                                    SNK  0.00
## 1841 1998                                    SNK  0.00
## 1842 1999                                    SNK  0.01
## 1843 2000                                    SNK  0.00
## 1844 2005                                    SNK  0.03
## 1845 1995                           SNK Playmore  0.00
## 1846 1998                           SNK Playmore  0.00
## 1847 1999                           SNK Playmore  0.08
## 1848 2005                           SNK Playmore  0.10
## 1849 2006                           SNK Playmore  0.02
## 1850 2007                           SNK Playmore  0.03
## 1851 2008                           SNK Playmore  0.00
## 1852 2009                           SNK Playmore  0.00
## 1853 2010                           SNK Playmore  0.00
## 1854 1996                                Societa  0.00
## 1855 2016                               Sold Out  0.01
## 1856 1995                                 Sonnet  0.00
## 1857 1996                                 Sonnet  0.00
## 1858 1994            Sony Computer Entertainment  0.83
## 1859 1995            Sony Computer Entertainment  7.23
## 1860 1996            Sony Computer Entertainment 15.56
## 1861 1997            Sony Computer Entertainment 17.30
## 1862 1998            Sony Computer Entertainment 17.28
## 1863 1999            Sony Computer Entertainment 16.79
## 1864 2000            Sony Computer Entertainment 11.02
## 1865 2001            Sony Computer Entertainment 20.98
## 1866 2002            Sony Computer Entertainment 12.95
## 1867 2003            Sony Computer Entertainment 11.21
## 1868 2004            Sony Computer Entertainment 13.06
## 1869 2005            Sony Computer Entertainment 14.73
## 1870 2006            Sony Computer Entertainment 14.00
## 1871 2007            Sony Computer Entertainment 15.12
## 1872 2008            Sony Computer Entertainment 11.02
## 1873 2009            Sony Computer Entertainment 13.89
## 1874 2010            Sony Computer Entertainment 14.15
## 1875 2011            Sony Computer Entertainment 12.71
## 1876 2012            Sony Computer Entertainment  6.86
## 1877 2013            Sony Computer Entertainment  4.61
## 1878 2014            Sony Computer Entertainment  6.58
## 1879 2015            Sony Computer Entertainment  4.91
## 1880 2016            Sony Computer Entertainment  2.43
## 1881  N/A            Sony Computer Entertainment  0.00
## 1882 2014    Sony Computer Entertainment America  1.04
## 1883 2001     Sony Computer Entertainment Europe  2.06
## 1884 2004     Sony Computer Entertainment Europe  0.88
## 1885 2012     Sony Computer Entertainment Europe  0.04
## 1886 2013     Sony Computer Entertainment Europe  3.88
## 1887 2014     Sony Computer Entertainment Europe  1.66
## 1888 2015     Sony Computer Entertainment Europe  0.44
## 1889 2001               Sony Music Entertainment  0.00
## 1890 2003              Sony Online Entertainment  0.30
## 1891 2004              Sony Online Entertainment  0.63
## 1892 2005              Sony Online Entertainment  0.32
## 1893 2006              Sony Online Entertainment  0.14
## 1894 2011              Sony Online Entertainment  0.57
## 1895 1999                        SouthPeak Games  0.06
## 1896 2004                        SouthPeak Games  1.00
## 1897 2005                        SouthPeak Games  0.53
## 1898 2006                        SouthPeak Games  0.09
## 1899 2007                        SouthPeak Games  0.70
## 1900 2008                        SouthPeak Games  0.63
## 1901 2009                        SouthPeak Games  1.41
## 1902 2010                        SouthPeak Games  0.35
## 1903 2001                                  Spike  0.09
## 1904 2002                                  Spike  0.00
## 1905 2004                                  Spike  0.00
## 1906 2006                                  Spike  0.71
## 1907 2007                                  Spike  1.34
## 1908 2008                                  Spike  0.06
## 1909 2009                                  Spike  0.88
## 1910 2010                                  Spike  0.24
## 1911 2011                                  Spike  0.00
## 1912 2012                                  Spike  0.00
## 1913 1996                                    SPS  0.07
## 1914 1991                                 Square  0.24
## 1915 1994                                 Square  0.00
## 1916 1997                                 Square  0.00
## 1917 1999                                 Square  0.00
## 1918 2001                                 Square  0.29
## 1919 1999                              Square EA  0.45
## 1920 2003                            Square Enix  0.48
## 1921 2004                            Square Enix  2.16
## 1922 2005                            Square Enix  2.69
## 1923 2006                            Square Enix  4.00
## 1924 2007                            Square Enix  6.54
## 1925 2008                            Square Enix  4.01
## 1926 2009                            Square Enix  4.29
## 1927 2010                            Square Enix  6.36
## 1928 2011                            Square Enix  3.99
## 1929 2012                            Square Enix  3.15
## 1930 2013                            Square Enix  4.33
## 1931 2014                            Square Enix  3.52
## 1932 2015                            Square Enix  2.60
## 1933 2016                            Square Enix  0.47
## 1934  N/A                            Square Enix  0.06
## 1935 1987                             SquareSoft  0.32
## 1936 1988                             SquareSoft  0.00
## 1937 1989                             SquareSoft  0.00
## 1938 1990                             SquareSoft  0.00
## 1939 1991                             SquareSoft  0.00
## 1940 1992                             SquareSoft  0.00
## 1941 1993                             SquareSoft  0.25
## 1942 1994                             SquareSoft  0.86
## 1943 1995                             SquareSoft  0.28
## 1944 1996                             SquareSoft  0.00
## 1945 1997                             SquareSoft  1.18
## 1946 1998                             SquareSoft  1.94
## 1947 1999                             SquareSoft  3.79
## 1948 2000                             SquareSoft  1.62
## 1949 2001                             SquareSoft  0.00
## 1950 2002                             SquareSoft  0.00
## 1951 2003                             SquareSoft  0.82
## 1952 1996                                    SSI  0.11
## 1953 2016                        Stainless Games  0.01
## 1954 1997                               Starfish  0.20
## 1955 1999                               Starfish  0.06
## 1956 2001                               Starfish  0.03
## 1957 2007                               Starfish  0.10
## 1958 2009                               Starfish  0.00
## 1959 2010                               Starfish  0.00
## 1960 2011                               Starfish  0.00
## 1961 2012                               Starfish  0.00
## 1962 1981                         Starpath Corp.  0.30
## 1963 2004                                  Sting  0.07
## 1964 2006                                  Sting  0.00
## 1965 2007                                  Sting  0.05
## 1966 2008                                  Sting  0.28
## 1967 2010                                  Sting  0.00
## 1968 2009                       Storm City Games  0.34
## 1969 2010                       Storm City Games  0.93
## 1970 2011                       Storm City Games  0.08
## 1971 2001                         Strategy First  0.00
## 1972 1998                                Success  0.64
## 1973 1999                                Success  0.01
## 1974 2000                                Success  0.01
## 1975 2001                                Success  0.05
## 1976 2002                                Success  0.00
## 1977 2005                                Success  0.01
## 1978 2006                                Success  0.00
## 1979 2007                                Success  0.29
## 1980 2008                                Success  0.11
## 1981 2009                                Success  0.00
## 1982 2013                                Success  0.00
## 1983 2014                                Success  0.00
## 1984 2004                             Summitsoft  0.03
## 1985 2004                             Sunflowers  0.00
## 1986 2000                    Sunrise Interactive  0.00
## 1987 2006                    Sunrise Interactive  0.00
## 1988 2007                    Sunrise Interactive  0.00
## 1989 1994                                Sunsoft  0.00
## 1990 1995                                Sunsoft  0.00
## 1991 1996                                Sunsoft  0.04
## 1992 1997                                Sunsoft  0.09
## 1993 1998                                Sunsoft  0.08
## 1994 1999                                Sunsoft  0.08
## 1995 2000                                Sunsoft  0.14
## 1996 2011                                Sunsoft  0.07
## 1997 2006                                 Sweets  0.00
## 1998 2009                                 Sweets  0.00
## 1999 1998                   Swing! Entertainment  0.03
## 2000 2000                   Swing! Entertainment  0.08
## 2001 2001                   Swing! Entertainment  0.06
## 2002 2002                   Swing! Entertainment  0.11
## 2003 1998                                 Syscom  0.00
## 2004 1999                                 Syscom  0.06
## 2005 2013                               System 3  0.08
## 2006 2006               System 3 Arcade Software  0.17
## 2007 2007               System 3 Arcade Software  0.12
## 2008 2008               System 3 Arcade Software  0.67
## 2009 2009               System 3 Arcade Software  0.00
## 2010  N/A               System 3 Arcade Software  0.00
## 2011 2008                            System Soft  0.00
## 2012 2010                            System Soft  0.00
## 2013 2011                            System Soft  0.00
## 2014 1993                               T&E Soft  0.00
## 2015 1981                                  Taito  0.22
## 2016 1994                                  Taito  0.00
## 2017 1995                                  Taito  0.00
## 2018 1997                                  Taito  0.00
## 2019 1999                                  Taito  0.00
## 2020 2001                                  Taito  0.00
## 2021 2002                                  Taito  0.13
## 2022 2003                                  Taito  0.01
## 2023 2006                                  Taito  0.00
## 2024 2007                                  Taito  0.05
## 2025 2010                                  Taito  0.00
## 2026 1992                                 Takara  0.00
## 2027 1993                                 Takara  0.00
## 2028 1994                                 Takara  0.00
## 2029 1995                                 Takara  0.00
## 2030 1996                                 Takara  0.00
## 2031 1997                                 Takara  0.00
## 2032 1998                                 Takara  0.00
## 2033 1999                                 Takara  0.00
## 2034 2001                                 Takara  0.16
## 2035 2002                                 Takara  0.00
## 2036 2003                                 Takara  0.00
## 2037 2006                            Takara Tomy  0.22
## 2038 2007                            Takara Tomy  0.08
## 2039 2008                            Takara Tomy  0.34
## 2040 2009                            Takara Tomy  0.09
## 2041 2010                            Takara Tomy  0.03
## 2042 2011                            Takara Tomy  0.00
## 2043 2013                            Takara Tomy  0.00
## 2044 2015                            Takara Tomy  0.00
## 2045 1997                   Take-Two Interactive  1.11
## 2046 1998                   Take-Two Interactive  2.26
## 2047 1999                   Take-Two Interactive  1.09
## 2048 2000                   Take-Two Interactive  3.76
## 2049 2001                   Take-Two Interactive 11.44
## 2050 2002                   Take-Two Interactive 10.98
## 2051 2003                   Take-Two Interactive  6.59
## 2052 2004                   Take-Two Interactive 11.40
## 2053 2005                   Take-Two Interactive 13.51
## 2054 2006                   Take-Two Interactive 11.68
## 2055 2007                   Take-Two Interactive 12.38
## 2056 2008                   Take-Two Interactive 26.46
## 2057 2009                   Take-Two Interactive 12.53
## 2058 2010                   Take-Two Interactive 20.82
## 2059 2011                   Take-Two Interactive 11.25
## 2060 2012                   Take-Two Interactive 12.70
## 2061 2013                   Take-Two Interactive 25.87
## 2062 2014                   Take-Two Interactive 14.23
## 2063 2015                   Take-Two Interactive  8.58
## 2064 2016                   Take-Two Interactive  1.83
## 2065  N/A                   Take-Two Interactive  0.02
## 2066 2011                                 Takuyo  0.00
## 2067 2001                              TalonSoft  0.49
## 2068 2000                               TDK Core  0.10
## 2069 2002                               TDK Core  0.14
## 2070 2006                               TDK Core  0.00
## 2071 2007                               TDK Core  0.00
## 2072 2001                         TDK Mediactive  0.48
## 2073 2002                         TDK Mediactive  2.28
## 2074 2003                         TDK Mediactive  2.00
## 2075 2004                         TDK Mediactive  0.65
## 2076 2010                        Team17 Software  0.00
## 2077 1995              Technos Japan Corporation  0.00
## 2078 1998                             TechnoSoft  0.03
## 2079 1991                             Tecmo Koei  0.00
## 2080 1992                             Tecmo Koei  0.00
## 2081 1993                             Tecmo Koei  0.30
## 2082 1994                             Tecmo Koei  0.00
## 2083 1995                             Tecmo Koei  0.05
## 2084 1996                             Tecmo Koei  0.10
## 2085 1997                             Tecmo Koei  0.21
## 2086 1998                             Tecmo Koei  0.03
## 2087 1999                             Tecmo Koei  0.05
## 2088 2000                             Tecmo Koei  0.46
## 2089 2001                             Tecmo Koei  0.18
## 2090 2002                             Tecmo Koei  0.52
## 2091 2003                             Tecmo Koei  1.29
## 2092 2004                             Tecmo Koei  0.82
## 2093 2005                             Tecmo Koei  0.99
## 2094 2006                             Tecmo Koei  1.19
## 2095 2007                             Tecmo Koei  1.74
## 2096 2008                             Tecmo Koei  1.73
## 2097 2009                             Tecmo Koei  0.69
## 2098 2010                             Tecmo Koei  0.63
## 2099 2011                             Tecmo Koei  0.80
## 2100 2012                             Tecmo Koei  0.84
## 2101 2013                             Tecmo Koei  0.38
## 2102 2014                             Tecmo Koei  0.64
## 2103 2015                             Tecmo Koei  0.40
## 2104 2016                             Tecmo Koei  0.04
## 2105 1999                              Telegames  0.01
## 2106 2003                              Telegames  0.15
## 2107 2005                              Telegames  0.01
## 2108 2007                              Telegames  0.50
## 2109 2008                              Telegames  0.08
## 2110 2010                              Telegames  0.16
## 2111 2011                         Telltale Games  0.13
## 2112 2014                         Telltale Games  0.86
## 2113 2015                         Telltale Games  0.23
## 2114 2016                         Telltale Games  0.06
## 2115 1995                                Telstar  0.04
## 2116 1998                                Telstar  0.12
## 2117 2011                          Tetris Online  0.20
## 2118 2009                                    TGL  0.00
## 2119 2015                                    TGL  0.00
## 2120 2008                  The Adventure Company  0.20
## 2121 2009                  The Adventure Company  0.14
## 2122 2000                   The Learning Company  0.03
## 2123 1995                                    THQ  0.03
## 2124 1997                                    THQ  1.49
## 2125 1998                                    THQ  8.02
## 2126 1999                                    THQ  2.75
## 2127 2000                                    THQ  9.25
## 2128 2001                                    THQ 11.42
## 2129 2002                                    THQ 16.20
## 2130 2003                                    THQ 18.77
## 2131 2004                                    THQ 17.95
## 2132 2005                                    THQ 15.58
## 2133 2006                                    THQ 16.63
## 2134 2007                                    THQ 20.12
## 2135 2008                                    THQ 18.44
## 2136 2009                                    THQ 18.83
## 2137 2010                                    THQ 14.58
## 2138 2011                                    THQ 14.99
## 2139 2012                                    THQ  3.49
## 2140 2013                                    THQ  0.06
## 2141  N/A                                    THQ  0.17
## 2142 1981                            Tigervision  1.07
## 2143 1982                            Tigervision  0.26
## 2144 1994                Time Warner Interactive  0.06
## 2145 1995                Time Warner Interactive  0.04
## 2146 1996                Time Warner Interactive  0.08
## 2147 1993                                  Titus  0.00
## 2148 1997                                  Titus  0.28
## 2149 1998                                  Titus  0.19
## 2150 1999                                  Titus  0.66
## 2151 2000                                  Titus  0.06
## 2152 2001                                  Titus  0.49
## 2153 2002                                  Titus  0.27
## 2154 2003                                  Titus  0.01
## 2155 2008                                 Tivola  0.04
## 2156 2009                                 Tivola  0.04
## 2157 1993                                   TOHO  0.00
## 2158 2007                                  Tommo  0.14
## 2159 2009                                  Tommo  0.02
## 2160 2011                                  Tommo  0.04
## 2161 1995                       Tomy Corporation  0.00
## 2162 1996                       Tomy Corporation  0.04
## 2163 1998                       Tomy Corporation  0.00
## 2164 2003                       Tomy Corporation  0.87
## 2165 2004                       Tomy Corporation  0.00
## 2166 2005                       Tomy Corporation  0.00
## 2167 2006                       Tomy Corporation  0.00
## 2168 2007                       Tomy Corporation  0.45
## 2169 2008                       Tomy Corporation  0.34
## 2170 2009                       Tomy Corporation  0.02
## 2171 2010                       Tomy Corporation  0.12
## 2172 2011                    TopWare Interactive  0.00
## 2173 2015                    TopWare Interactive  0.00
## 2174  N/A                    TopWare Interactive  0.00
## 2175 2007                             Touchstone  0.07
## 2176 2008                             Touchstone  0.81
## 2177 2010                              Tradewest  0.02
## 2178 2012                           Trion Worlds  0.01
## 2179 2013                           Trion Worlds  0.71
## 2180 2011                   Tripwire Interactive  0.04
## 2181 2014                  Tru Blu Entertainment  0.00
## 2182 2015                  Tru Blu Entertainment  0.01
## 2183 2008                               Tryfirst  0.00
## 2184 1998                                    TYO  0.23
## 2185 2014                              Type-Moon  0.00
## 2186 1995                              U.S. Gold  0.10
## 2187 1996                              U.S. Gold  0.09
## 2188 1995                                Ubisoft  1.54
## 2189 1996                                Ubisoft  0.09
## 2190 1997                                Ubisoft  0.11
## 2191 1998                                Ubisoft  0.23
## 2192 1999                                Ubisoft  2.89
## 2193 2000                                Ubisoft  2.20
## 2194 2001                                Ubisoft  3.02
## 2195 2002                                Ubisoft 10.61
## 2196 2003                                Ubisoft  9.29
## 2197 2004                                Ubisoft  8.63
## 2198 2005                                Ubisoft 10.31
## 2199 2006                                Ubisoft 12.76
## 2200 2007                                Ubisoft 27.64
## 2201 2008                                Ubisoft 31.88
## 2202 2009                                Ubisoft 26.34
## 2203 2010                                Ubisoft 24.12
## 2204 2011                                Ubisoft 24.05
## 2205 2012                                Ubisoft 17.91
## 2206 2013                                Ubisoft 13.28
## 2207 2014                                Ubisoft 16.90
## 2208 2015                                Ubisoft  4.89
## 2209 2016                                Ubisoft  3.85
## 2210 2020                                Ubisoft  0.27
## 2211  N/A                                Ubisoft  0.62
## 2212 2009                         Ubisoft Annecy  0.60
## 2213 2010                         Ubisoft Annecy  0.26
## 2214 2011                         Ubisoft Annecy  0.22
## 2215 2012                         Ubisoft Annecy  0.19
## 2216 1997                            UEP Systems  1.52
## 2217 2007                        UFO Interactive  0.03
## 2218 2008                        UFO Interactive  0.15
## 2219 2009                        UFO Interactive  0.16
## 2220 2010                        UFO Interactive  0.53
## 2221 2011                        UFO Interactive  0.04
## 2222 2012                        UFO Interactive  0.01
## 2223 2016                      UIG Entertainment  0.00
## 2224  N/A                            Ultravision  0.44
## 2225 1982                        Universal Gamex  0.58
## 2226 2001                  Universal Interactive  2.32
## 2227 2002                  Universal Interactive  4.90
## 2228 2003                  Universal Interactive  1.78
## 2229  N/A                  Universal Interactive  0.08
## 2230 1981                                Unknown  0.27
## 2231 1998                                Unknown  0.46
## 2232 2001                                Unknown  0.28
## 2233 2002                                Unknown  0.03
## 2234 2003                                Unknown  0.67
## 2235 2004                                Unknown  0.02
## 2236 2005                                Unknown  0.74
## 2237 2006                                Unknown  0.08
## 2238 2007                                Unknown  0.00
## 2239 2008                                Unknown  0.23
## 2240 2009                                Unknown  0.00
## 2241 2010                                Unknown  0.74
## 2242 2011                                Unknown  1.79
## 2243 2012                                Unknown  0.04
## 2244 2013                                Unknown  0.00
## 2245 2014                                Unknown  0.22
## 2246 2015                                Unknown  0.00
## 2247 2016                                Unknown  0.00
## 2248  N/A                                Unknown 12.92
## 2249 2005                           Valcon Games  0.05
## 2250 2006                           Valcon Games  0.01
## 2251 2008                           Valcon Games  0.11
## 2252 2009                           Valcon Games  0.13
## 2253 2010                           Valcon Games  0.01
## 2254 2005                               ValuSoft  0.12
## 2255 2008                               ValuSoft  0.03
## 2256 2009                               ValuSoft  0.10
## 2257 2011                               ValuSoft  0.01
## 2258 2011                                  Valve  0.83
## 2259 2009                         Valve Software  0.00
## 2260 2011                         Valve Software  1.74
## 2261 1994                                    Vap  0.00
## 2262 2000                  Vatical Entertainment  0.14
## 2263 1996                              Vic Tokai  0.07
## 2264 1997                              Vic Tokai  0.12
## 2265 1993                     Victor Interactive  0.00
## 2266 1995                     Victor Interactive  0.00
## 2267 1997                     Victor Interactive  0.00
## 2268 1998                     Victor Interactive  0.00
## 2269 2000                     Victor Interactive  0.10
## 2270 2001                     Victor Interactive  0.01
## 2271 2002                     Victor Interactive  0.00
## 2272 1992                           Video System  0.00
## 2273 1997                           Video System  0.15
## 2274 1998                           Video System  0.46
## 2275 2000                           Video System  0.06
## 2276 2012                                  Views  0.00
## 2277 2014                                  Views  0.00
## 2278 2008                          Vir2L Studios  0.08
## 2279 2009                          Vir2L Studios  0.14
## 2280 1992                     Virgin Interactive  0.01
## 2281 1994                     Virgin Interactive  4.28
## 2282 1995                     Virgin Interactive  0.25
## 2283 1996                     Virgin Interactive  6.43
## 2284 1997                     Virgin Interactive  1.06
## 2285 1998                     Virgin Interactive  3.10
## 2286 1999                     Virgin Interactive  0.84
## 2287 2000                     Virgin Interactive  0.75
## 2288 2001                     Virgin Interactive  1.88
## 2289 2002                     Virgin Interactive  0.39
## 2290 2010                     Virtual Play Games  0.06
## 2291 2011                                  Visco  0.02
## 2292 1995                          Vivendi Games  0.01
## 2293 1997                          Vivendi Games  4.03
## 2294 1998                          Vivendi Games  0.00
## 2295 1999                          Vivendi Games  0.22
## 2296 2000                          Vivendi Games  0.06
## 2297 2001                          Vivendi Games  2.61
## 2298 2002                          Vivendi Games  2.66
## 2299 2003                          Vivendi Games  7.74
## 2300 2004                          Vivendi Games  4.97
## 2301 2005                          Vivendi Games  3.64
## 2302 2006                          Vivendi Games  3.57
## 2303 2007                          Vivendi Games  3.58
## 2304 2008                          Vivendi Games  3.03
## 2305 2009                          Vivendi Games  0.12
## 2306  N/A                          Vivendi Games  0.76
## 2307 2001                                Wanadoo  0.07
## 2308 2002                                Wanadoo  0.20
## 2309 2003                                Wanadoo  0.02
## 2310 2005                                Wanadoo  0.01
## 2311 2007                                Warashi  0.00
## 2312 2011                          Wargaming.net  0.00
## 2313 2003 Warner Bros. Interactive Entertainment  0.38
## 2314 2005 Warner Bros. Interactive Entertainment  0.03
## 2315 2006 Warner Bros. Interactive Entertainment  0.21
## 2316 2007 Warner Bros. Interactive Entertainment  1.01
## 2317 2008 Warner Bros. Interactive Entertainment  6.96
## 2318 2009 Warner Bros. Interactive Entertainment  9.44
## 2319 2010 Warner Bros. Interactive Entertainment  9.10
## 2320 2011 Warner Bros. Interactive Entertainment 12.16
## 2321 2012 Warner Bros. Interactive Entertainment  7.42
## 2322 2013 Warner Bros. Interactive Entertainment  9.88
## 2323 2014 Warner Bros. Interactive Entertainment  7.36
## 2324 2015 Warner Bros. Interactive Entertainment 10.02
## 2325 2016 Warner Bros. Interactive Entertainment  1.37
## 2326  N/A Warner Bros. Interactive Entertainment  5.84
## 2327 1997                                   Warp  0.00
## 2328 2015                WayForward Technologies  0.05
## 2329 1999                       Westwood Studios  1.55
## 2330 2007                White Park Bay Software  0.13
## 2331 1982                     Wizard Video Games  0.58
## 2332 2002                      Xicat Interactive  0.07
## 2333 2003                      Xicat Interactive  0.02
## 2334 1997                     Xing Entertainment  0.04
## 2335 2005                                Xplosiv  0.10
## 2336 2006                                Xplosiv  0.10
## 2337 2007                                Xplosiv  0.20
## 2338 2008                                Xplosiv  0.21
## 2339 2002                               XS Games  0.13
## 2340 2004                               XS Games  0.05
## 2341 2005                               XS Games  0.06
## 2342 2007                               XS Games  0.01
## 2343 2008                               XS Games  0.04
## 2344 2009                               XS Games  0.66
## 2345 2010                               XS Games  0.23
## 2346 2012                            Xseed Games  0.31
## 2347 2013                            Xseed Games  0.04
## 2348 2014                            Xseed Games  0.04
## 2349 2015                            Xseed Games  0.02
## 2350 2015                       Yacht Club Games  0.16
## 2351 2006                   Yamasa Entertainment  0.00
## 2352 2006                                   Yeti  0.00
## 2353 2007                                   Yeti  0.00
## 2354 2008                                   Yeti  0.00
## 2355 2009                                   Yeti  0.00
## 2356 2010                                   Yeti  0.00
## 2357 2012                                   Yeti  0.00
## 2358 2016                                   Yeti  0.00
## 2359 2005                                 Yuke's  0.01
## 2360 2006                                 Yuke's  0.00
## 2361 2007                                 Yuke's  0.00
## 2362 1995                                Yumedia  0.00
## 2363 2006                                 Zenrin  0.00
## 2364 2007                                 Zenrin  0.00
## 2365 2002                 Zoo Digital Publishing  0.14
## 2366 2003                 Zoo Digital Publishing  1.31
## 2367 2004                 Zoo Digital Publishing  2.04
## 2368 2005                 Zoo Digital Publishing  2.27
## 2369 2006                 Zoo Digital Publishing  0.34
## 2370 2007                 Zoo Digital Publishing  1.08
## 2371 2008                 Zoo Digital Publishing  1.29
## 2372 2009                 Zoo Digital Publishing  1.05
## 2373 2008                              Zoo Games  0.89
## 2374 2009                              Zoo Games  2.27
## 2375 2010                              Zoo Games  1.04
## 2376 2011                              Zoo Games  0.32
## 2377 2007                            Zushi Games  0.04
## 2378 2008                            Zushi Games  0.50
## 2379 2009                            Zushi Games  1.13
aggregate(NA_Sales,by=list(Genre = Genre,Publisher=Publisher),sum)
##             Genre                              Publisher      x
## 1       Adventure                        10TACLE Studios   0.01
## 2          Puzzle                        10TACLE Studios   0.00
## 3        Strategy                        10TACLE Studios   0.06
## 4          Racing                             1C Company   0.00
## 5    Role-Playing                             1C Company   0.00
## 6        Strategy                             1C Company   0.01
## 7          Action           20th Century Fox Video Games   1.61
## 8         Shooter           20th Century Fox Video Games   0.21
## 9          Puzzle                                 2D Boy   0.00
## 10         Action                                    3DO   4.31
## 11      Adventure                                    3DO   0.19
## 12       Fighting                                    3DO   0.31
## 13       Platform                                    3DO   0.06
## 14         Puzzle                                    3DO   0.05
## 15   Role-Playing                                    3DO   0.14
## 16        Shooter                                    3DO   0.54
## 17         Sports                                    3DO   0.83
## 18       Strategy                                    3DO   0.05
## 19         Sports                                49Games   0.00
## 20         Action                              505 Games   1.31
## 21      Adventure                              505 Games   0.23
## 22       Fighting                              505 Games   0.52
## 23           Misc                              505 Games   3.63
## 24       Platform                              505 Games   0.17
## 25         Puzzle                              505 Games   1.68
## 26         Racing                              505 Games   0.00
## 27   Role-Playing                              505 Games   0.49
## 28        Shooter                              505 Games   2.62
## 29     Simulation                              505 Games  12.78
## 30         Sports                              505 Games   8.28
## 31       Strategy                              505 Games   0.12
## 32         Action                                    5pb   0.00
## 33      Adventure                                    5pb   0.00
## 34       Fighting                                    5pb   0.02
## 35   Role-Playing                                    5pb   0.00
## 36        Shooter                                    5pb   0.00
## 37     Simulation                                    5pb   0.00
## 38           Misc                               7G//AMES   0.00
## 39         Puzzle                               7G//AMES   0.00
## 40     Simulation                               7G//AMES   0.00
## 41         Sports                             989 Sports   0.21
## 42         Action                            989 Studios   1.98
## 43         Racing                            989 Studios   1.31
## 44         Sports                            989 Studios   5.94
## 45         Action                               Abylight   0.07
## 46         Action                  Acclaim Entertainment   0.89
## 47      Adventure                  Acclaim Entertainment   0.62
## 48       Fighting                  Acclaim Entertainment  11.62
## 49           Misc                  Acclaim Entertainment   0.79
## 50       Platform                  Acclaim Entertainment   1.67
## 51         Puzzle                  Acclaim Entertainment   0.78
## 52         Racing                  Acclaim Entertainment   9.07
## 53   Role-Playing                  Acclaim Entertainment   0.19
## 54        Shooter                  Acclaim Entertainment   3.87
## 55         Sports                  Acclaim Entertainment  13.13
## 56       Strategy                  Acclaim Entertainment   0.12
## 57       Platform                               Accolade   0.10
## 58         Racing                               Accolade   1.05
## 59         Sports                               Accolade   0.10
## 60         Action                            Ackkstudios   0.00
## 61      Adventure                            Ackkstudios   0.07
## 62   Role-Playing                            Ackkstudios   0.06
## 63         Sports                            Ackkstudios   0.00
## 64       Strategy                            Ackkstudios   0.00
## 65         Action                                Acquire   0.08
## 66      Adventure                                Acquire   0.00
## 67   Role-Playing                                Acquire   0.06
## 68       Strategy                                Acquire   0.00
## 69         Action                             Activision  87.29
## 70      Adventure                             Activision   4.04
## 71       Fighting                             Activision   1.94
## 72           Misc                             Activision  48.68
## 73       Platform                             Activision  23.45
## 74         Puzzle                             Activision   0.78
## 75         Racing                             Activision  12.18
## 76   Role-Playing                             Activision  23.58
## 77        Shooter                             Activision 161.39
## 78     Simulation                             Activision   5.33
## 79         Sports                             Activision  52.88
## 80       Strategy                             Activision   8.16
## 81         Action                    Activision Blizzard   0.08
## 82         Action                       Activision Value   0.04
## 83           Misc                       Activision Value   0.04
## 84        Shooter                       Activision Value   0.49
## 85         Sports                       Activision Value   4.91
## 86       Strategy                       Activision Value   0.05
## 87         Action                       Adeline Software   0.10
## 88     Simulation                               Aerosoft   0.01
## 89         Action                 Agatsuma Entertainment   0.16
## 90           Misc                 Agatsuma Entertainment   0.06
## 91       Platform                 Agatsuma Entertainment   0.00
## 92         Action                                 Agetec   0.04
## 93       Fighting                                 Agetec   0.05
## 94           Misc                                 Agetec   0.04
## 95         Racing                                 Agetec   0.03
## 96     Simulation                                 Agetec   0.07
## 97         Sports                                 Agetec   0.53
## 98       Strategy                                 Agetec   0.02
## 99         Action                            Aksys Games   0.01
## 100     Adventure                            Aksys Games   0.09
## 101  Role-Playing                            Aksys Games   0.09
## 102        Action                   Alawar Entertainment   0.00
## 103      Strategy                   Alawar Entertainment   0.00
## 104        Action                              Alchemist   0.00
## 105     Adventure                              Alchemist   0.59
## 106          Misc                              Alchemist   0.00
## 107  Role-Playing                              Alchemist   0.00
## 108       Shooter                              Alchemist   0.00
## 109        Action                   Alternative Software   0.00
## 110        Sports                   Alternative Software   0.00
## 111       Shooter                                 Altron   0.05
## 112          Misc                                 Alvion   0.00
## 113        Action                     American Softworks   0.13
## 114      Fighting                          Angel Studios   0.00
## 115  Role-Playing                          Angel Studios   0.00
## 116      Strategy                          Angel Studios   0.00
## 117        Action                        Answer Software   0.46
## 118      Fighting                         AQ Interactive   0.06
## 119          Misc                         AQ Interactive   0.28
## 120     Adventure                              Aqua Plus   0.00
## 121      Fighting                              Aqua Plus   0.05
## 122          Misc                              Aqua Plus   0.00
## 123  Role-Playing                              Aqua Plus   0.00
## 124      Strategy                              Aqua Plus   0.00
## 125        Sports                                  Aques   0.00
## 126        Action                       Arc System Works   0.00
## 127     Adventure                       Arc System Works   0.14
## 128      Fighting                       Arc System Works   0.41
## 129          Misc                       Arc System Works   0.05
## 130  Role-Playing                       Arc System Works   0.00
## 131        Sports                       Arc System Works   0.18
## 132      Fighting                    Arena Entertainment   1.95
## 133        Sports                    Arena Entertainment   1.75
## 134     Adventure                                   Aria   0.00
## 135          Misc                                  Arika   0.01
## 136  Role-Playing                                  Arika   0.03
## 137       Shooter                                  Arika   0.00
## 138  Role-Playing                                ArtDink   0.07
## 139    Simulation                                ArtDink   0.00
## 140      Strategy                                ArtDink   0.00
## 141          Misc                             Aruze Corp   0.00
## 142        Action                              ASC Games   0.03
## 143        Racing                              ASC Games   0.73
## 144        Sports                              ASC Games   0.36
## 145      Strategy                  Ascaron Entertainment   0.00
## 146  Role-Playing             Ascaron Entertainment GmbH   0.00
## 147      Strategy             Ascaron Entertainment GmbH   0.00
## 148     Adventure                    ASCII Entertainment   0.07
## 149          Misc                    ASCII Entertainment   0.19
## 150        Racing                    ASCII Entertainment   0.12
## 151  Role-Playing                    ASCII Entertainment   0.11
## 152    Simulation                    ASCII Entertainment   0.00
## 153        Sports                    ASCII Entertainment   0.21
## 154      Strategy                    ASCII Entertainment   0.00
## 155     Adventure                      ASCII Media Works   0.00
## 156  Role-Playing                      ASCII Media Works   0.00
## 157        Action                                 Asgard   0.00
## 158          Misc                                 Asgard   0.00
## 159          Misc                                    ASK   0.00
## 160     Adventure                Asmik Ace Entertainment   0.00
## 161      Fighting                Asmik Ace Entertainment   0.00
## 162    Simulation                Asmik Ace Entertainment   0.00
## 163        Sports                             Asmik Corp   0.00
## 164     Adventure                                  Aspyr   0.03
## 165          Misc                                  Aspyr   0.08
## 166  Role-Playing                                  Aspyr   0.09
## 167    Simulation                                  Aspyr   0.19
## 168        Sports                                  Aspyr   0.16
## 169        Action                               Astragon   0.01
## 170     Adventure                               Astragon   0.11
## 171        Puzzle                               Astragon   0.12
## 172    Simulation                               Astragon   0.00
## 173     Adventure                   Asylum Entertainment   0.00
## 174      Platform                   Asylum Entertainment   0.00
## 175    Simulation                   Asylum Entertainment   0.09
## 176        Action                                  Atari  18.66
## 177     Adventure                                  Atari   2.49
## 178      Fighting                                  Atari  14.61
## 179          Misc                                  Atari   5.98
## 180      Platform                                  Atari   6.44
## 181        Puzzle                                  Atari  17.88
## 182        Racing                                  Atari   7.10
## 183  Role-Playing                                  Atari   3.87
## 184       Shooter                                  Atari  19.36
## 185    Simulation                                  Atari   1.95
## 186        Sports                                  Atari   8.95
## 187      Strategy                                  Atari   2.75
## 188     Adventure                                 Athena   0.00
## 189        Sports                                 Athena   0.02
## 190        Action                                  Atlus   0.13
## 191     Adventure                                  Atlus   0.00
## 192      Fighting                                  Atlus   0.44
## 193          Misc                                  Atlus   0.00
## 194      Platform                                  Atlus   0.00
## 195        Racing                                  Atlus   0.00
## 196  Role-Playing                                  Atlus   3.19
## 197       Shooter                                  Atlus   0.00
## 198    Simulation                                  Atlus   0.10
## 199        Sports                                  Atlus   0.29
## 200      Strategy                                  Atlus   0.05
## 201        Action                     Avalon Interactive   0.15
## 202        Racing                     Avalon Interactive   0.03
## 203  Role-Playing                     Avalon Interactive   0.07
## 204       Shooter                     Avalon Interactive   0.03
## 205    Simulation                     Avalon Interactive   0.06
## 206        Action                              Avanquest   0.17
## 207     Adventure                              Avanquest   0.00
## 208          Misc                              Avanquest   0.26
## 209        Puzzle                              Avanquest   0.59
## 210    Simulation                              Avanquest   0.05
## 211        Sports                              Avanquest   0.05
## 212        Action                     Avanquest Software   0.00
## 213     Adventure                     Avanquest Software   0.95
## 214          Misc                     Avanquest Software   0.00
## 215        Sports                                  Axela   0.00
## 216        Action                     BAM! Entertainment   0.65
## 217     Adventure                     BAM! Entertainment   0.57
## 218      Fighting                     BAM! Entertainment   0.06
## 219          Misc                     BAM! Entertainment   0.14
## 220      Platform                     BAM! Entertainment   0.49
## 221        Racing                     BAM! Entertainment   0.46
## 222       Shooter                     BAM! Entertainment   0.54
## 223        Sports                     BAM! Entertainment   0.25
## 224        Action                              Banpresto   0.00
## 225     Adventure                              Banpresto   0.00
## 226      Fighting                              Banpresto   0.07
## 227          Misc                              Banpresto   0.00
## 228      Platform                              Banpresto   0.00
## 229        Puzzle                              Banpresto   0.00
## 230        Racing                              Banpresto   0.00
## 231  Role-Playing                              Banpresto   0.30
## 232       Shooter                              Banpresto   0.00
## 233    Simulation                              Banpresto   0.00
## 234        Sports                              Banpresto   0.04
## 235      Strategy                              Banpresto   0.00
## 236          Misc                                Benesse   0.01
## 237        Action                               Berkeley   0.02
## 238        Action                     Bethesda Softworks   4.17
## 239        Racing                     Bethesda Softworks   0.98
## 240  Role-Playing                     Bethesda Softworks  26.46
## 241       Shooter                     Bethesda Softworks   5.74
## 242    Simulation                     Bethesda Softworks   0.11
## 243        Sports                     Bethesda Softworks   2.09
## 244      Strategy                     Bethesda Softworks   0.17
## 245     Adventure                    Big Ben Interactive   0.00
## 246      Platform                    Big Ben Interactive   0.02
## 247        Racing                    Big Ben Interactive   0.05
## 248       Shooter                    Big Ben Interactive   0.04
## 249        Sports                    Big Ben Interactive   0.67
## 250        Action                         Big Fish Games   0.00
## 251     Adventure                         Big Fish Games   0.00
## 252        Sports                     Bigben Interactive   0.10
## 253        Racing                      bitComposer Games   0.00
## 254    Simulation                      bitComposer Games   0.16
## 255        Action                       Black Bean Games   0.08
## 256          Misc                       Black Bean Games   0.18
## 257        Racing                       Black Bean Games   0.53
## 258        Sports                       Black Bean Games   0.44
## 259      Strategy                       Black Bean Games   0.05
## 260        Action                      Black Label Games   0.59
## 261        Action               Blast! Entertainment Ltd   0.17
## 262     Adventure               Blast! Entertainment Ltd   0.02
## 263        Sports               Blast! Entertainment Ltd   0.04
## 264    Simulation                              Blue Byte   0.00
## 265      Strategy                              Blue Byte   0.00
## 266      Platform          BMG Interactive Entertainment   0.48
## 267        Racing          BMG Interactive Entertainment   0.09
## 268       Shooter          BMG Interactive Entertainment   0.08
## 269        Sports          BMG Interactive Entertainment   0.02
## 270       Shooter                    Bohemia Interactive   0.00
## 271        Action                                   Bomb   0.21
## 272     Adventure                               Boost On   0.00
## 273        Puzzle                                    BPS   0.00
## 274        Racing                                    BPS   0.00
## 275          Misc                    Brash Entertainment   0.33
## 276      Platform                    Brash Entertainment   0.56
## 277        Action                               Broccoli   0.00
## 278     Adventure                               Broccoli   0.00
## 279      Fighting                               Broccoli   0.00
## 280          Misc                               Broccoli   0.00
## 281  Role-Playing                               Broccoli   0.00
## 282    Simulation                               Broccoli   0.00
## 283      Strategy                               Broccoli   0.00
## 284     Adventure                              BushiRoad   0.00
## 285        Action                                 Capcom  35.93
## 286     Adventure                                 Capcom   3.62
## 287      Fighting                                 Capcom  14.62
## 288          Misc                                 Capcom   1.12
## 289      Platform                                 Capcom  11.97
## 290        Puzzle                                 Capcom   0.64
## 291        Racing                                 Capcom   0.68
## 292  Role-Playing                                 Capcom   4.30
## 293       Shooter                                 Capcom   5.14
## 294    Simulation                                 Capcom   0.14
## 295        Sports                                 Capcom   0.26
## 296      Strategy                                 Capcom   0.17
## 297        Action                                   Cave   0.00
## 298     Adventure                                   Cave   0.00
## 299          Misc                                   Cave   0.10
## 300       Shooter                                   Cave   0.04
## 301        Action                        CBS Electronics   0.29
## 302  Role-Playing                                    CCP   0.00
## 303     Adventure             CDV Software Entertainment   0.09
## 304        Puzzle             CDV Software Entertainment   0.02
## 305    Simulation             CDV Software Entertainment   0.00
## 306      Strategy             CDV Software Entertainment   0.00
## 307        Action                               ChunSoft   0.00
## 308     Adventure                               ChunSoft   0.37
## 309  Role-Playing                               ChunSoft   0.00
## 310        Action                       City Interactive   0.15
## 311     Adventure                       City Interactive   0.33
## 312          Misc                       City Interactive   0.06
## 313        Puzzle                       City Interactive   0.07
## 314       Shooter                       City Interactive   0.94
## 315    Simulation                       City Interactive   0.15
## 316      Fighting       Cloud Imperium Games Corporation   0.08
## 317     Adventure                         Coconuts Japan   0.01
## 318          Misc                         Coconuts Japan   0.00
## 319        Action                            Codemasters   0.65
## 320     Adventure                            Codemasters   0.60
## 321          Misc                            Codemasters   0.93
## 322        Puzzle                            Codemasters   0.07
## 323        Racing                            Codemasters   6.19
## 324  Role-Playing                            Codemasters   0.08
## 325       Shooter                            Codemasters   2.31
## 326    Simulation                            Codemasters   0.24
## 327        Sports                            Codemasters   0.48
## 328      Strategy                            Codemasters   0.37
## 329  Role-Playing                     Codemasters Online   0.00
## 330        Action                      CokeM Interactive   0.29
## 331        Action                                 Coleco   1.19
## 332      Platform                                 Coleco   1.36
## 333       Shooter                                 Coleco   0.32
## 334        Action                                Comfort   0.00
## 335     Adventure                                Comfort   0.00
## 336          Misc                               Commseed   0.00
## 337        Puzzle                                Compile   0.00
## 338  Role-Playing                                Compile   0.00
## 339        Action                          Compile Heart   0.00
## 340     Adventure                          Compile Heart   0.00
## 341  Role-Playing                          Compile Heart   0.41
## 342      Strategy                          Compile Heart   0.09
## 343        Action               Conspiracy Entertainment   0.25
## 344          Misc               Conspiracy Entertainment   0.12
## 345      Platform               Conspiracy Entertainment   0.02
## 346        Puzzle               Conspiracy Entertainment   0.03
## 347        Racing               Conspiracy Entertainment   0.06
## 348       Shooter               Conspiracy Entertainment   0.08
## 349    Simulation               Conspiracy Entertainment   0.03
## 350        Sports               Conspiracy Entertainment   0.04
## 351        Action                       Core Design Ltd.   0.06
## 352    Simulation                       Core Design Ltd.   0.10
## 353        Action                           CPG Products   0.50
## 354        Action                    Crave Entertainment   0.87
## 355     Adventure                    Crave Entertainment   0.08
## 356      Fighting                    Crave Entertainment   0.36
## 357          Misc                    Crave Entertainment   2.09
## 358      Platform                    Crave Entertainment   0.26
## 359        Puzzle                    Crave Entertainment   0.63
## 360        Racing                    Crave Entertainment   0.76
## 361  Role-Playing                    Crave Entertainment   0.45
## 362       Shooter                    Crave Entertainment   0.17
## 363    Simulation                    Crave Entertainment   0.27
## 364        Sports                    Crave Entertainment   0.88
## 365      Strategy                    Crave Entertainment   0.09
## 366     Adventure                          Creative Core   0.00
## 367          Misc                          Creative Core   0.00
## 368    Simulation                          Creative Core   0.00
## 369        Action                            Crimson Cow   0.00
## 370     Adventure                            Crimson Cow   0.00
## 371     Adventure                       Crystal Dynamics   0.08
## 372      Platform                       Crystal Dynamics   0.49
## 373        Racing                       Crystal Dynamics   0.09
## 374  Role-Playing                       Crystal Dynamics   0.25
## 375        Sports                       Crystal Dynamics   0.04
## 376       Shooter                                CTO SpA   0.49
## 377        Sports                                CTO SpA   0.01
## 378     Adventure                          Culture Brain   0.00
## 379          Misc                          Culture Brain   0.00
## 380  Role-Playing                          Culture Brain   0.00
## 381        Sports                          Culture Brain   0.00
## 382        Puzzle                     Culture Publishers   0.05
## 383        Action                             CyberFront   0.00
## 384     Adventure                             CyberFront   0.00
## 385          Misc                             CyberFront   0.01
## 386  Role-Playing                             CyberFront   0.00
## 387      Strategy                             CyberFront   0.00
## 388      Platform                                Cygames   0.00
## 389        Action                            D3Publisher   4.58
## 390     Adventure                            D3Publisher   0.04
## 391      Fighting                            D3Publisher   0.11
## 392          Misc                            D3Publisher   1.15
## 393      Platform                            D3Publisher   1.34
## 394        Puzzle                            D3Publisher   1.53
## 395        Racing                            D3Publisher   0.40
## 396  Role-Playing                            D3Publisher   0.50
## 397       Shooter                            D3Publisher   1.32
## 398    Simulation                            D3Publisher   0.00
## 399        Sports                            D3Publisher   0.55
## 400      Strategy                            D3Publisher   0.00
## 401     Adventure                               Daedalic   0.00
## 402     Adventure                 Daedalic Entertainment   0.00
## 403          Misc                                  Daito   0.00
## 404        Action                               Data Age   0.66
## 405          Misc                Data Design Interactive   0.07
## 406        Racing                Data Design Interactive   0.07
## 407        Sports                Data Design Interactive   0.11
## 408     Adventure                              Data East   0.00
## 409  Role-Playing                              Data East   0.00
## 410     Adventure                         Datam Polystar   0.00
## 411        Action                            Deep Silver   6.47
## 412     Adventure                            Deep Silver   0.63
## 413      Fighting                            Deep Silver   0.11
## 414          Misc                            Deep Silver   0.04
## 415      Platform                            Deep Silver   0.06
## 416        Puzzle                            Deep Silver   0.79
## 417        Racing                            Deep Silver   0.48
## 418  Role-Playing                            Deep Silver   0.91
## 419       Shooter                            Deep Silver   0.14
## 420    Simulation                            Deep Silver   1.03
## 421        Sports                            Deep Silver   1.45
## 422      Strategy                            Deep Silver   0.62
## 423        Action              Destination Software, Inc   0.04
## 424          Misc              Destination Software, Inc   0.06
## 425        Puzzle              Destination Software, Inc   0.14
## 426        Racing              Destination Software, Inc   0.35
## 427  Role-Playing              Destination Software, Inc   0.02
## 428    Simulation              Destination Software, Inc   0.13
## 429        Sports              Destination Software, Inc   0.01
## 430        Action                              Destineer   0.66
## 431     Adventure                              Destineer   0.17
## 432          Misc                              Destineer   0.60
## 433      Platform                              Destineer   0.02
## 434        Puzzle                              Destineer   0.49
## 435        Racing                              Destineer   0.31
## 436       Shooter                              Destineer   0.04
## 437    Simulation                              Destineer   0.98
## 438        Sports                              Destineer   0.79
## 439        Sports                            Detn8 Games   0.21
## 440        Puzzle                       Devolver Digital   0.00
## 441       Shooter                       Devolver Digital   0.00
## 442        Puzzle                        DHM Interactive   0.02
## 443       Shooter                        DHM Interactive   0.03
## 444    Simulation                        DHM Interactive   0.11
## 445        Sports                               DigiCube   0.00
## 446        Action             Disney Interactive Studios  29.90
## 447     Adventure             Disney Interactive Studios  11.33
## 448          Misc             Disney Interactive Studios  15.09
## 449      Platform             Disney Interactive Studios   6.37
## 450        Puzzle             Disney Interactive Studios   1.19
## 451        Racing             Disney Interactive Studios   4.91
## 452  Role-Playing             Disney Interactive Studios   1.20
## 453       Shooter             Disney Interactive Studios   0.26
## 454    Simulation             Disney Interactive Studios   0.53
## 455        Sports             Disney Interactive Studios   0.56
## 456          Misc                                 Dorart   0.00
## 457        Action                        dramatic create   0.00
## 458     Adventure                        dramatic create   0.00
## 459     Adventure               DreamCatcher Interactive   0.04
## 460          Misc               DreamCatcher Interactive   0.22
## 461      Platform               DreamCatcher Interactive   0.02
## 462        Puzzle               DreamCatcher Interactive   0.15
## 463       Shooter               DreamCatcher Interactive   0.05
## 464    Simulation               DreamCatcher Interactive   0.23
## 465        Sports               DreamCatcher Interactive   0.04
## 466      Platform                 DreamWorks Interactive   0.07
## 467        Action                              DSI Games   0.04
## 468     Adventure                              DSI Games   0.01
## 469          Misc                              DSI Games   0.20
## 470    Simulation                              DSI Games   0.02
## 471        Sports                              DSI Games   0.02
## 472        Action                      DTP Entertainment   0.27
## 473     Adventure                      DTP Entertainment   0.12
## 474          Misc                      DTP Entertainment   0.15
## 475        Puzzle                      DTP Entertainment   0.01
## 476  Role-Playing                      DTP Entertainment   0.35
## 477       Shooter                      DTP Entertainment   0.14
## 478    Simulation                      DTP Entertainment   0.17
## 479        Sports                      DTP Entertainment   0.41
## 480      Strategy                      DTP Entertainment   0.00
## 481        Racing               Dusenberry Martin Racing   0.05
## 482       Shooter                               EA Games   0.07
## 483        Puzzle                       Easy Interactive   0.00
## 484      Fighting                                  Ecole   0.00
## 485          Misc                                   Edia   0.00
## 486        Action                      Eidos Interactive  33.43
## 487     Adventure                      Eidos Interactive   0.21
## 488      Fighting                      Eidos Interactive   1.43
## 489          Misc                      Eidos Interactive   0.64
## 490      Platform                      Eidos Interactive   0.81
## 491        Puzzle                      Eidos Interactive   0.73
## 492        Racing                      Eidos Interactive   2.38
## 493  Role-Playing                      Eidos Interactive   0.87
## 494       Shooter                      Eidos Interactive   4.46
## 495    Simulation                      Eidos Interactive   0.57
## 496        Sports                      Eidos Interactive   0.28
## 497      Strategy                      Eidos Interactive   3.38
## 498        Action                        Electronic Arts  54.25
## 499     Adventure                        Electronic Arts   2.57
## 500      Fighting                        Electronic Arts  19.88
## 501          Misc                        Electronic Arts  14.92
## 502      Platform                        Electronic Arts   3.16
## 503        Puzzle                        Electronic Arts   2.66
## 504        Racing                        Electronic Arts  75.52
## 505  Role-Playing                        Electronic Arts  17.82
## 506       Shooter                        Electronic Arts  81.15
## 507    Simulation                        Electronic Arts  44.03
## 508        Sports                        Electronic Arts 270.27
## 509      Strategy                        Electronic Arts   8.84
## 510        Action                 Electronic Arts Victor   0.02
## 511        Sports                 Electronic Arts Victor   0.21
## 512     Adventure                                    Elf   0.00
## 513      Strategy                                    Elf   0.00
## 514    Simulation                                  Elite   0.04
## 515        Action                     Empire Interactive   0.35
## 516     Adventure                     Empire Interactive   0.07
## 517      Fighting                     Empire Interactive   0.05
## 518          Misc                     Empire Interactive   0.43
## 519        Puzzle                     Empire Interactive   1.01
## 520        Racing                     Empire Interactive   3.11
## 521  Role-Playing                     Empire Interactive   0.05
## 522       Shooter                     Empire Interactive   0.77
## 523    Simulation                     Empire Interactive   0.09
## 524        Sports                     Empire Interactive   0.10
## 525        Action                                 Encore   0.02
## 526        Racing                                 Encore   0.02
## 527  Role-Playing                                 Encore   0.00
## 528        Action                       Enix Corporation   0.03
## 529          Misc                       Enix Corporation   0.04
## 530  Role-Playing                       Enix Corporation   0.69
## 531    Simulation                       Enix Corporation   0.00
## 532        Sports                       Enix Corporation   0.00
## 533       Shooter                      Enjoy Gaming ltd.   0.09
## 534     Adventure                             Enterbrain   0.00
## 535      Fighting                             Enterbrain   0.03
## 536  Role-Playing                             Enterbrain   0.09
## 537    Simulation                             Enterbrain   0.00
## 538        Sports                             Enterbrain   0.00
## 539      Strategy              EON Digital Entertainment   0.01
## 540        Action                             Epic Games   0.01
## 541          Misc                                  Epoch   0.00
## 542      Platform                                  Epoch   0.00
## 543  Role-Playing                                  Epoch   0.00
## 544        Sports                                  Epoch   0.00
## 545    Simulation                                 Ertain   0.05
## 546      Fighting                                    ESP   0.00
## 547      Platform                                    ESP   0.03
## 548  Role-Playing                                    ESP   0.00
## 549       Shooter                                    ESP   0.00
## 550    Simulation                                    ESP   0.00
## 551        Action                        Essential Games   0.00
## 552       Shooter                        Essential Games   0.00
## 553      Strategy                        Essential Games   0.01
## 554        Action                        Evolution Games   0.00
## 555      Platform                          Evolved Games   0.02
## 556        Racing                          Evolved Games   0.15
## 557       Shooter                          Evolved Games   0.09
## 558        Action                   Excalibur Publishing   0.00
## 559    Simulation                   Excalibur Publishing   0.00
## 560  Role-Playing                        Experience Inc.   0.00
## 561  Role-Playing            Extreme Entertainment Group   0.02
## 562      Fighting                     Falcom Corporation   0.00
## 563  Role-Playing                     Falcom Corporation   0.28
## 564          Misc                                 Fields   0.00
## 565        Action                       Flashpoint Games   0.03
## 566      Platform                       Flashpoint Games   0.04
## 567  Role-Playing                            Flight-Plan   0.00
## 568      Strategy                            Flight-Plan   0.00
## 569        Action                 Focus Home Interactive   0.00
## 570     Adventure                 Focus Home Interactive   0.46
## 571          Misc                 Focus Home Interactive   0.00
## 572      Platform                 Focus Home Interactive   0.00
## 573        Puzzle                 Focus Home Interactive   0.01
## 574        Racing                 Focus Home Interactive   0.16
## 575  Role-Playing                 Focus Home Interactive   0.63
## 576    Simulation                 Focus Home Interactive   0.31
## 577        Sports                 Focus Home Interactive   0.14
## 578      Strategy                 Focus Home Interactive   0.01
## 579          Misc                       Focus Multimedia   0.00
## 580        Puzzle                       Focus Multimedia   0.00
## 581    Simulation                                 fonfun   0.00
## 582     Adventure                    Foreign Media Games   0.08
## 583          Misc                    Foreign Media Games   0.07
## 584        Puzzle                    Foreign Media Games   0.07
## 585    Simulation                    Foreign Media Games   0.05
## 586     Adventure                              Fortyfive   0.00
## 587        Action                        Fox Interactive   0.27
## 588      Platform                        Fox Interactive   1.98
## 589       Shooter                        Fox Interactive   1.19
## 590        Sports                        Fox Interactive   0.32
## 591        Action                          From Software   0.04
## 592     Adventure                          From Software   0.03
## 593  Role-Playing                          From Software   0.11
## 594       Shooter                          From Software   0.04
## 595    Simulation                          From Software   0.13
## 596     Adventure                                   Fuji   0.00
## 597        Action                           Funbox Media   0.04
## 598     Adventure                           Funbox Media   0.08
## 599          Misc                           Funbox Media   0.59
## 600      Strategy                           Funbox Media   0.00
## 601  Role-Playing                                 Funcom   0.07
## 602        Racing                                FunSoft   0.07
## 603        Puzzle                                 Funsta   0.11
## 604       Shooter                                 Funsta   0.02
## 605        Action                                  FuRyu   0.00
## 606     Adventure                                  FuRyu   0.00
## 607          Misc                                  FuRyu   0.00
## 608  Role-Playing                                  FuRyu   0.11
## 609    Simulation                                  FuRyu   0.00
## 610        Action                      FuRyu Corporation   0.02
## 611      Fighting                                  G.Rev   0.00
## 612       Shooter                                  G.Rev   0.00
## 613       Shooter                                   Gaga   0.00
## 614     Adventure                 Gainax Network Systems   0.00
## 615          Misc                 Gainax Network Systems   0.00
## 616          Misc                                 Gakken   0.00
## 617  Role-Playing                              Game Arts   0.00
## 618        Action                           Game Factory   0.29
## 619     Adventure                           Game Factory   0.74
## 620      Fighting                           Game Factory   0.09
## 621          Misc                           Game Factory   0.36
## 622      Platform                           Game Factory   0.08
## 623        Puzzle                           Game Factory   0.44
## 624        Racing                           Game Factory   0.06
## 625  Role-Playing                           Game Factory   0.06
## 626    Simulation                           Game Factory   1.19
## 627          Misc                              Game Life   0.04
## 628    Simulation                              Game Life   0.09
## 629        Action                             Gamebridge   0.30
## 630        Action                               Gamecock   0.06
## 631          Misc                               Gamecock   0.10
## 632      Strategy                               Gamecock   0.00
## 633          Misc                               Gameloft   0.10
## 634        Action                 GameMill Entertainment   0.25
## 635     Adventure                 GameMill Entertainment   0.09
## 636          Misc                 GameMill Entertainment   0.77
## 637        Sports                 GameMill Entertainment   0.17
## 638          Misc                                GameTek   0.08
## 639          Misc                Gathering of Developers   0.12
## 640        Racing                Gathering of Developers   0.34
## 641       Shooter                Gathering of Developers   0.15
## 642      Strategy                Gathering of Developers   0.00
## 643      Strategy                  General Entertainment   0.00
## 644        Action                                  Genki   0.05
## 645        Racing                                  Genki   0.44
## 646        Sports                                  Genki   0.00
## 647        Puzzle                            Genterprise   0.00
## 648  Role-Playing                             Ghostlight   0.97
## 649    Simulation                             Ghostlight   0.00
## 650        Sports                             Ghostlight   0.08
## 651      Strategy                             Ghostlight   0.17
## 652     Adventure                                   Giga   0.00
## 653        Action                                 Giza10   0.00
## 654      Strategy                                  Glams   0.00
## 655          Misc                 Global A Entertainment   0.00
## 656  Role-Playing                 Global A Entertainment   0.13
## 657        Action                            Global Star   0.08
## 658     Adventure                            Global Star   0.82
## 659      Fighting                            Global Star   0.09
## 660      Platform                            Global Star   0.18
## 661        Racing                            Global Star   0.24
## 662       Shooter                            Global Star   0.39
## 663    Simulation                            Global Star   0.08
## 664        Sports                            Global Star   3.32
## 665      Strategy                            Global Star   0.05
## 666     Adventure                            GN Software   0.00
## 667  Role-Playing                                    GOA   0.00
## 668      Fighting                           Gotham Games   0.53
## 669      Platform                           Gotham Games   0.53
## 670       Shooter                           Gotham Games   0.98
## 671        Sports                           Gotham Games   0.23
## 672          Misc                               Graffiti   0.19
## 673  Role-Playing                               Graffiti   0.09
## 674       Shooter                               Graffiti   0.03
## 675    Simulation                               Graffiti   0.05
## 676      Fighting                       Grand Prix Games   0.00
## 677    Simulation                 Graphsim Entertainment   0.00
## 678        Action                Gremlin Interactive Ltd   0.09
## 679      Platform                Gremlin Interactive Ltd   0.03
## 680        Racing                Gremlin Interactive Ltd   0.11
## 681       Shooter                Gremlin Interactive Ltd   0.16
## 682        Sports                Gremlin Interactive Ltd   0.27
## 683        Sports                  Griffin International   0.08
## 684       Shooter                           Groove Games   0.07
## 685     Adventure                                    GSP   0.53
## 686          Misc                                    GSP   0.33
## 687        Puzzle                                    GSP   0.07
## 688    Simulation                                    GSP   0.23
## 689        Action                         GT Interactive   4.85
## 690      Fighting                         GT Interactive   4.60
## 691          Misc                         GT Interactive   0.52
## 692      Platform                         GT Interactive   1.47
## 693        Racing                         GT Interactive   1.42
## 694       Shooter                         GT Interactive   2.04
## 695    Simulation                         GT Interactive   0.04
## 696        Sports                         GT Interactive   0.63
## 697        Action                                 GungHo   0.00
## 698     Adventure                                 GungHo   0.00
## 699          Misc                                 GungHo   0.00
## 700  Role-Playing                                 GungHo   0.84
## 701     Adventure                                   Gust   0.00
## 702  Role-Playing                                   Gust   0.15
## 703      Strategy                                   Gust   0.00
## 704          Misc                              Hackberry   0.00
## 705        Puzzle                         HAL Laboratory   0.06
## 706        Action                    Hamster Corporation   0.16
## 707    Simulation                    Hamster Corporation   0.00
## 708     Adventure                               Happinet   0.00
## 709          Misc                               Happinet   0.00
## 710    Simulation                               Happinet   0.00
## 711          Misc                 Harmonix Music Systems   0.60
## 712        Action                     Hasbro Interactive   4.59
## 713          Misc                     Hasbro Interactive   4.62
## 714      Platform                     Hasbro Interactive   0.72
## 715        Puzzle                     Hasbro Interactive   0.62
## 716        Racing                     Hasbro Interactive   0.31
## 717       Shooter                     Hasbro Interactive   0.13
## 718  Role-Playing                      Havas Interactive   0.01
## 719     Adventure                           Headup Games   0.00
## 720    Simulation                           Hearty Robin   0.00
## 721    Simulation                                   Hect   0.00
## 722        Action                            Hello Games   0.58
## 723     Adventure                        Her Interactive   0.03
## 724        Action                        Hip Interactive   0.23
## 725       Shooter                        Hip Interactive   0.03
## 726     Adventure                        HMH Interactive   0.00
## 727          Misc                        HMH Interactive   0.00
## 728        Sports           Home Entertainment Suppliers   0.09
## 729          Misc                   Hudson Entertainment   0.11
## 730      Platform                   Hudson Entertainment   0.06
## 731        Puzzle                   Hudson Entertainment   0.00
## 732  Role-Playing                   Hudson Entertainment   0.02
## 733       Shooter                   Hudson Entertainment   0.05
## 734    Simulation                   Hudson Entertainment   0.00
## 735        Sports                   Hudson Entertainment   0.09
## 736        Action                            Hudson Soft   0.00
## 737     Adventure                            Hudson Soft   0.11
## 738      Fighting                            Hudson Soft   0.07
## 739          Misc                            Hudson Soft   0.01
## 740      Platform                            Hudson Soft   0.00
## 741        Puzzle                            Hudson Soft   0.95
## 742  Role-Playing                            Hudson Soft   0.08
## 743       Shooter                            Hudson Soft   0.32
## 744    Simulation                            Hudson Soft   0.06
## 745        Sports                            Hudson Soft   0.93
## 746      Strategy                            Hudson Soft   0.02
## 747     Adventure                    Human Entertainment   0.02
## 748      Fighting                    Human Entertainment   0.00
## 749        Racing                    Human Entertainment   0.00
## 750    Simulation                    Human Entertainment   0.00
## 751        Sports                    Human Entertainment   0.00
## 752      Strategy                    Human Entertainment   0.04
## 753        Action                                  HuneX   0.00
## 754     Adventure                                  HuneX   0.00
## 755  Role-Playing                    Iceberg Interactive   0.02
## 756      Strategy                    Iceberg Interactive   0.00
## 757       Shooter                            id Software   0.02
## 758        Action                           Idea Factory   0.00
## 759     Adventure                           Idea Factory   0.19
## 760          Misc                           Idea Factory   0.00
## 761  Role-Playing                           Idea Factory   0.34
## 762      Strategy                           Idea Factory   0.00
## 763        Action             Idea Factory International   0.21
## 764  Role-Playing             Idea Factory International   0.02
## 765        Action                           IE Institute   0.00
## 766          Misc                           IE Institute   0.00
## 767        Action                 Ignition Entertainment   0.46
## 768     Adventure                 Ignition Entertainment   0.03
## 769      Fighting                 Ignition Entertainment   1.27
## 770          Misc                 Ignition Entertainment   0.31
## 771      Platform                 Ignition Entertainment   0.09
## 772        Puzzle                 Ignition Entertainment   0.78
## 773        Racing                 Ignition Entertainment   0.26
## 774  Role-Playing                 Ignition Entertainment   0.17
## 775       Shooter                 Ignition Entertainment   0.41
## 776        Sports                 Ignition Entertainment   0.16
## 777      Strategy                 Ignition Entertainment   0.09
## 778        Action                     Illusion Softworks   0.34
## 779     Adventure                                 Imadio   0.00
## 780  Role-Playing                            Image Epoch   0.00
## 781     Adventure                        imageepoch Inc.   0.00
## 782  Role-Playing                        imageepoch Inc.   0.00
## 783    Simulation                             Imageworks   0.00
## 784        Action                                 Imagic   0.35
## 785       Shooter                                 Imagic   4.16
## 786     Adventure                              Imagineer   0.00
## 787      Fighting                              Imagineer   0.04
## 788        Racing                              Imagineer   0.03
## 789  Role-Playing                              Imagineer   0.00
## 790    Simulation                              Imagineer   0.00
## 791        Sports                              Imagineer   0.02
## 792          Misc                                   Imax   0.00
## 793     Adventure                            Indie Games   0.03
## 794    Simulation                            Indie Games   0.06
## 795        Action                             Infogrames   0.45
## 796     Adventure                             Infogrames   0.39
## 797      Fighting                             Infogrames   0.38
## 798          Misc                             Infogrames   2.55
## 799      Platform                             Infogrames   0.80
## 800        Racing                             Infogrames   2.10
## 801  Role-Playing                             Infogrames   1.75
## 802       Shooter                             Infogrames   1.12
## 803    Simulation                             Infogrames   0.03
## 804        Sports                             Infogrames   0.88
## 805      Strategy                             Infogrames   0.05
## 806        Action                        Insomniac Games   0.10
## 807     Adventure                           Interchannel   0.00
## 808      Strategy                     Interchannel-Holon   0.00
## 809      Platform                              Intergrow   0.00
## 810        Action                              Interplay   0.84
## 811     Adventure                              Interplay   0.46
## 812      Fighting                              Interplay   0.17
## 813          Misc                              Interplay   0.57
## 814      Platform                              Interplay   0.50
## 815        Racing                              Interplay   0.18
## 816  Role-Playing                              Interplay   0.35
## 817       Shooter                              Interplay   0.36
## 818    Simulation                              Interplay   0.04
## 819        Sports                              Interplay   0.39
## 820       Shooter                  Interplay Productions   0.05
## 821        Sports             Interworks Unlimited, Inc.   0.01
## 822        Action                           Inti Creates   0.00
## 823        Action                  Introversion Software   0.01
## 824  Role-Playing                   inXile Entertainment   0.02
## 825        Action              Irem Software Engineering   0.06
## 826      Fighting              Irem Software Engineering   0.05
## 827          Misc              Irem Software Engineering   0.00
## 828  Role-Playing              Irem Software Engineering   0.00
## 829       Shooter              Irem Software Engineering   0.01
## 830      Strategy              Irem Software Engineering   0.00
## 831        Action                       ITT Family Games   0.32
## 832        Puzzle                              Ivolgamus   0.03
## 833        Puzzle                                   iWin   0.00
## 834      Platform                      Jack of All Games   0.29
## 835       Shooter                      Jack of All Games   0.02
## 836        Action                                 Jaleco   0.06
## 837      Fighting                                 Jaleco   0.01
## 838          Misc                                 Jaleco   0.00
## 839        Puzzle                                 Jaleco   0.13
## 840        Racing                                 Jaleco   0.10
## 841       Shooter                                 Jaleco   0.01
## 842        Sports                                 Jaleco   0.33
## 843      Strategy                                 Jaleco   0.15
## 844          Misc                     Jester Interactive   0.02
## 845        Racing                     Jester Interactive   0.68
## 846    Simulation                                Jorudan   0.00
## 847        Action                     JoWood Productions   0.09
## 848     Adventure                     JoWood Productions   0.21
## 849          Misc                     JoWood Productions   0.05
## 850      Platform                     JoWood Productions   0.02
## 851        Puzzle                     JoWood Productions   0.05
## 852  Role-Playing                     JoWood Productions   0.12
## 853    Simulation                     JoWood Productions   0.14
## 854        Sports                     JoWood Productions   0.15
## 855      Strategy                     JoWood Productions   0.04
## 856    Simulation                            Just Flight   0.00
## 857        Action                                    JVC   0.03
## 858      Fighting                                    JVC   0.00
## 859          Misc                                    JVC   0.04
## 860        Puzzle                                    JVC   2.10
## 861        Racing                                    JVC   0.05
## 862       Shooter                                    JVC   0.03
## 863        Action                         Kadokawa Games   0.00
## 864     Adventure                         Kadokawa Games   0.00
## 865          Misc                         Kadokawa Games   0.00
## 866  Role-Playing                         Kadokawa Games   0.00
## 867    Simulation                         Kadokawa Games   0.00
## 868        Action                        Kadokawa Shoten   0.00
## 869     Adventure                        Kadokawa Shoten   0.00
## 870          Misc                        Kadokawa Shoten   0.00
## 871  Role-Playing                        Kadokawa Shoten   0.46
## 872    Simulation                        Kadokawa Shoten   0.00
## 873        Sports                        Kadokawa Shoten   0.00
## 874      Strategy                        Kadokawa Shoten   0.00
## 875        Action                            Kaga Create   0.00
## 876     Adventure                            Kaga Create   0.00
## 877          Misc                            Kaga Create   0.00
## 878        Action                          Kalypso Media   0.12
## 879     Adventure                          Kalypso Media   0.00
## 880          Misc                          Kalypso Media   0.00
## 881    Simulation                          Kalypso Media   0.33
## 882      Strategy                          Kalypso Media   0.55
## 883          Misc                                  Kamui   0.00
## 884    Simulation                            Kando Games   0.02
## 885          Misc                    Karin Entertainment   0.00
## 886        Action                                  Kemco   0.41
## 887     Adventure                                  Kemco   0.06
## 888          Misc                                  Kemco   0.08
## 889      Platform                                  Kemco   0.09
## 890        Puzzle                                  Kemco   0.04
## 891        Racing                                  Kemco   0.75
## 892  Role-Playing                                  Kemco   0.00
## 893       Shooter                                  Kemco   0.02
## 894        Sports                                  Kemco   0.16
## 895     Adventure                                    KID   0.00
## 896     Adventure                           Kids Station   0.00
## 897  Role-Playing                           King Records   0.00
## 898        Action                    Knowledge Adventure   0.17
## 899     Adventure                    Knowledge Adventure   0.39
## 900          Misc                    Knowledge Adventure   0.41
## 901        Sports                    Knowledge Adventure   0.26
## 902        Action                             Koch Media   1.74
## 903     Adventure                             Koch Media   0.05
## 904        Puzzle                             Koch Media   0.00
## 905  Role-Playing                             Koch Media   0.00
## 906    Simulation                             Koch Media   0.52
## 907        Sports                             Koch Media   0.00
## 908      Strategy                             Koch Media   0.00
## 909      Fighting               Kokopeli Digital Studios   0.02
## 910        Action           Konami Digital Entertainment  30.47
## 911     Adventure           Konami Digital Entertainment   5.00
## 912      Fighting           Konami Digital Entertainment   0.75
## 913          Misc           Konami Digital Entertainment  10.57
## 914      Platform           Konami Digital Entertainment   7.06
## 915        Puzzle           Konami Digital Entertainment   0.52
## 916        Racing           Konami Digital Entertainment   0.92
## 917  Role-Playing           Konami Digital Entertainment   5.47
## 918       Shooter           Konami Digital Entertainment   3.28
## 919    Simulation           Konami Digital Entertainment  14.17
## 920        Sports           Konami Digital Entertainment   9.50
## 921      Strategy           Konami Digital Entertainment   4.45
## 922      Strategy                              Kool Kizz   0.03
## 923          Misc                                    KSS   0.00
## 924        Action                                 Laguna   0.04
## 925      Platform                                 Laguna   0.12
## 926  Role-Playing                                 Laguna   0.00
## 927     Adventure                     Legacy Interactive   0.04
## 928        Action                             LEGO Media   0.00
## 929     Adventure                             LEGO Media   0.10
## 930      Platform                             LEGO Media   0.04
## 931        Racing                             LEGO Media   0.81
## 932      Strategy                             LEGO Media   0.06
## 933        Action                                Level 5   0.00
## 934     Adventure                                Level 5   0.00
## 935          Misc                                Level 5   0.00
## 936        Puzzle                                Level 5   0.20
## 937  Role-Playing                                Level 5   0.00
## 938        Sports                                Level 5   0.00
## 939      Strategy                                Level 5   0.00
## 940       Shooter                  Lexicon Entertainment   0.02
## 941    Simulation                  Lexicon Entertainment   0.02
## 942        Action                            Licensed 4U   0.00
## 943        Puzzle                            Licensed 4U   0.00
## 944    Simulation                 Lighthouse Interactive   0.00
## 945        Puzzle                           Liquid Games   0.01
## 946        Racing                           Liquid Games   0.18
## 947        Action                           Little Orbit   0.16
## 948     Adventure                           Little Orbit   0.23
## 949    Simulation                           Little Orbit   0.14
## 950  Role-Playing                                  Locus   0.00
## 951        Action                              LSP Games   0.02
## 952      Platform                              LSP Games   0.05
## 953       Shooter                              LSP Games   0.01
## 954        Action                              LucasArts  35.61
## 955     Adventure                              LucasArts   0.77
## 956        Racing                              LucasArts   0.23
## 957  Role-Playing                              LucasArts   0.02
## 958       Shooter                              LucasArts   9.82
## 959    Simulation                              LucasArts   2.59
## 960      Strategy                              LucasArts   0.93
## 961          Misc                               Mad Catz   0.15
## 962    Simulation                               Mad Catz   0.07
## 963        Sports                               Mad Catz   0.02
## 964        Sports                        Magical Company   0.15
## 965          Misc                                  Magix   0.17
## 966        Action                  Majesco Entertainment   2.01
## 967     Adventure                  Majesco Entertainment   0.70
## 968      Fighting                  Majesco Entertainment   0.24
## 969          Misc                  Majesco Entertainment   2.11
## 970      Platform                  Majesco Entertainment   0.32
## 971        Puzzle                  Majesco Entertainment   1.03
## 972        Racing                  Majesco Entertainment   0.69
## 973  Role-Playing                  Majesco Entertainment   0.09
## 974       Shooter                  Majesco Entertainment   0.67
## 975    Simulation                  Majesco Entertainment   1.76
## 976        Sports                  Majesco Entertainment   2.25
## 977      Strategy                  Majesco Entertainment   0.21
## 978     Adventure                            Mamba Games   0.00
## 979      Strategy                            Mamba Games   0.00
## 980        Action                   Marvel Entertainment   0.00
## 981        Action                Marvelous Entertainment   0.50
## 982      Fighting                Marvelous Entertainment   0.13
## 983          Misc                Marvelous Entertainment   0.00
## 984  Role-Playing                Marvelous Entertainment   0.13
## 985    Simulation                Marvelous Entertainment   0.04
## 986     Adventure                        Marvelous Games   0.00
## 987        Action                  Marvelous Interactive   0.13
## 988     Adventure                  Marvelous Interactive   0.11
## 989      Fighting                  Marvelous Interactive   0.07
## 990          Misc                  Marvelous Interactive   0.00
## 991  Role-Playing                  Marvelous Interactive   0.80
## 992    Simulation                  Marvelous Interactive   0.38
## 993        Sports                  Marvelous Interactive   0.12
## 994    Simulation                      Masque Publishing   0.01
## 995     Adventure                           Mastertronic   0.00
## 996          Misc                           Mastertronic   0.00
## 997        Puzzle                           Mastertronic   0.10
## 998        Racing                           Mastertronic   0.00
## 999       Shooter                           Mastertronic   0.01
## 1000       Sports                           Mastertronic   0.01
## 1001     Strategy                           Mastertronic   0.95
## 1002    Adventure                                Mastiff   0.04
## 1003         Misc                                Mastiff   0.04
## 1004      Shooter                                Mastiff   0.40
## 1005   Simulation                                Mastiff   0.07
## 1006       Sports                                Mastiff   1.49
## 1007       Action                     Mattel Interactive   1.40
## 1008    Adventure                     Mattel Interactive   0.18
## 1009       Puzzle                     Mattel Interactive   0.55
## 1010       Racing                     Mattel Interactive   0.37
## 1011      Shooter                     Mattel Interactive   0.22
## 1012       Sports                     Mattel Interactive   0.33
## 1013 Role-Playing                               Max Five   0.03
## 1014       Action                   Maximum Family Games   0.03
## 1015   Simulation                                  Maxis   1.88
## 1016    Adventure                      MC2 Entertainment   0.03
## 1017      Shooter                      MC2 Entertainment   0.00
## 1018         Misc                    Media Entertainment   0.00
## 1019    Adventure                          Media Factory   0.00
## 1020       Sports                          Media Factory   0.00
## 1021       Racing                            Media Rings   0.00
## 1022 Role-Playing                            Media Rings   0.14
## 1023       Sports                            Media Rings   0.00
## 1024    Adventure                            Media Works   0.00
## 1025         Misc                            Media Works   0.00
## 1026     Strategy                            Media Works   0.00
## 1027       Puzzle                             MediaQuest   0.03
## 1028       Action                           Men-A-Vision   0.72
## 1029         Misc                     Mentor Interactive   0.99
## 1030 Role-Playing                          Mercury Games   0.05
## 1031   Simulation                          Mercury Games   0.12
## 1032    Adventure                            Merscom LLC   0.00
## 1033     Fighting                               Metro 3D   0.02
## 1034     Platform                               Metro 3D   0.06
## 1035       Racing                               Metro 3D   0.14
## 1036 Role-Playing                               Metro 3D   0.09
## 1037      Shooter                               Metro 3D   0.09
## 1038   Simulation                               Metro 3D   0.37
## 1039 Role-Playing                            Michaelsoft   0.00
## 1040       Puzzle                            Micro Cabin   0.00
## 1041 Role-Playing                            Micro Cabin   0.00
## 1042   Simulation                            Micro Cabin   0.00
## 1043       Action                               Microids   0.10
## 1044    Adventure                               Microids   0.10
## 1045       Sports                               Microids   0.03
## 1046         Misc                             Microprose   0.30
## 1047   Simulation                             Microprose   0.15
## 1048     Strategy                             Microprose   0.25
## 1049       Action                 Microsoft Game Studios   8.09
## 1050    Adventure                 Microsoft Game Studios   1.09
## 1051     Fighting                 Microsoft Game Studios   1.68
## 1052         Misc                 Microsoft Game Studios  30.61
## 1053     Platform                 Microsoft Game Studios   0.94
## 1054       Puzzle                 Microsoft Game Studios   0.07
## 1055       Racing                 Microsoft Game Studios  16.83
## 1056 Role-Playing                 Microsoft Game Studios  12.79
## 1057      Shooter                 Microsoft Game Studios  64.65
## 1058   Simulation                 Microsoft Game Studios   7.10
## 1059       Sports                 Microsoft Game Studios   9.69
## 1060     Strategy                 Microsoft Game Studios   1.81
## 1061       Action        Midas Interactive Entertainment   0.00
## 1062     Fighting        Midas Interactive Entertainment   0.04
## 1063         Misc        Midas Interactive Entertainment   0.00
## 1064     Platform        Midas Interactive Entertainment   0.02
## 1065       Puzzle        Midas Interactive Entertainment   0.07
## 1066       Racing        Midas Interactive Entertainment   0.31
## 1067 Role-Playing        Midas Interactive Entertainment   0.05
## 1068      Shooter        Midas Interactive Entertainment   0.31
## 1069   Simulation        Midas Interactive Entertainment   0.00
## 1070       Sports        Midas Interactive Entertainment   0.51
## 1071     Strategy        Midas Interactive Entertainment   0.03
## 1072       Action                           Midway Games   4.92
## 1073    Adventure                           Midway Games   0.32
## 1074     Fighting                           Midway Games  11.70
## 1075         Misc                           Midway Games   6.02
## 1076     Platform                           Midway Games   1.20
## 1077       Puzzle                           Midway Games   0.91
## 1078       Racing                           Midway Games   4.36
## 1079 Role-Playing                           Midway Games   0.55
## 1080      Shooter                           Midway Games   3.31
## 1081       Sports                           Midway Games  12.17
## 1082      Shooter                              Milestone   0.08
## 1083       Racing                        Milestone S.r.l   0.00
## 1084       Racing                       Milestone S.r.l.   0.23
## 1085       Action                         Minato Station   0.00
## 1086    Adventure                         Minato Station   0.00
## 1087       Action                              Mindscape   0.28
## 1088    Adventure                              Mindscape   0.02
## 1089         Misc                              Mindscape   3.70
## 1090       Puzzle                              Mindscape   0.12
## 1091       Racing                              Mindscape   0.07
## 1092 Role-Playing                              Mindscape   0.04
## 1093       Sports                              Mindscape   0.08
## 1094     Strategy                              Mindscape   0.33
## 1095         Misc                          Mirai Shounen   0.00
## 1096       Sports                                 Misawa   0.00
## 1097      Shooter                                 Mitsui   0.06
## 1098       Action                              mixi, Inc   0.00
## 1099       Sports                                MLB.com   0.04
## 1100    Adventure                                 Mojang   1.25
## 1101   Simulation               Monte Christo Multimedia   0.00
## 1102      Shooter                                   Moss   0.10
## 1103       Action                                    MTO   0.00
## 1104       Racing                                    MTO   0.00
## 1105   Simulation                                    MTO   0.00
## 1106         Misc                              MTV Games  14.98
## 1107         Misc                   Mud Duck Productions   0.30
## 1108       Sports                   Mud Duck Productions   0.22
## 1109       Puzzle                            Mumbo Jumbo   0.50
## 1110       Sports                            Mumbo Jumbo   0.02
## 1111     Strategy                            Mumbo Jumbo   0.01
## 1112       Action                                  Mycom   0.00
## 1113         Misc                           Myelin Media   0.09
## 1114       Action                               Mystique   0.76
## 1115       Action                                    N/A   0.29
## 1116    Adventure                                    N/A   0.13
## 1117     Fighting                                    N/A   1.67
## 1118         Misc                                    N/A   5.57
## 1119     Platform                                    N/A   0.00
## 1120       Puzzle                                    N/A   0.00
## 1121       Racing                                    N/A   0.00
## 1122 Role-Playing                                    N/A   0.00
## 1123      Shooter                                    N/A   0.01
## 1124   Simulation                                    N/A   0.00
## 1125       Sports                                    N/A   0.81
## 1126     Strategy                                    N/A   0.06
## 1127       Action                     Namco Bandai Games   8.75
## 1128    Adventure                     Namco Bandai Games   0.86
## 1129     Fighting                     Namco Bandai Games  21.46
## 1130         Misc                     Namco Bandai Games  11.78
## 1131     Platform                     Namco Bandai Games   1.12
## 1132       Puzzle                     Namco Bandai Games   2.13
## 1133       Racing                     Namco Bandai Games   2.65
## 1134 Role-Playing                     Namco Bandai Games  12.56
## 1135      Shooter                     Namco Bandai Games   2.42
## 1136   Simulation                     Namco Bandai Games   1.68
## 1137       Sports                     Namco Bandai Games   3.97
## 1138     Strategy                     Namco Bandai Games   0.14
## 1139    Adventure                                Natsume   0.07
## 1140     Fighting                                Natsume   0.08
## 1141         Misc                                Natsume   0.04
## 1142     Platform                                Natsume   0.01
## 1143       Puzzle                                Natsume   0.19
## 1144 Role-Playing                                Natsume   0.22
## 1145   Simulation                                Natsume   0.41
## 1146       Sports                                Natsume   1.46
## 1147     Strategy                                Natsume   0.04
## 1148       Sports                           Navarre Corp   0.04
## 1149         Misc                             Naxat Soft   0.00
## 1150     Strategy                                    NCS   0.00
## 1151       Action                                 NCSoft   0.95
## 1152 Role-Playing                                 NCSoft   0.10
## 1153      Shooter                        NDA Productions   0.09
## 1154    Adventure                                    NEC   0.00
## 1155 Role-Playing                                    NEC   0.00
## 1156    Adventure                       NEC Interchannel   0.00
## 1157 Role-Playing                       NEC Interchannel   0.00
## 1158   Simulation                       NEC Interchannel   0.00
## 1159     Strategy                       NEC Interchannel   0.00
## 1160       Action                     Neko Entertainment   0.00
## 1161    Adventure                     Neko Entertainment   0.06
## 1162         Misc                     Neko Entertainment   0.03
## 1163       Puzzle                     Neko Entertainment   0.01
## 1164      Shooter                     Neko Entertainment   0.10
## 1165       Action                                NetRevo   0.00
## 1166    Adventure                                NetRevo   0.00
## 1167     Fighting                                    New   0.00
## 1168     Strategy                    New World Computing   0.01
## 1169       Action                               NewKidCo   0.05
## 1170    Adventure                               NewKidCo   0.19
## 1171     Fighting                               NewKidCo   0.05
## 1172         Misc                               NewKidCo   0.59
## 1173     Platform                               NewKidCo   0.01
## 1174 Role-Playing                                  Nexon   0.00
## 1175         Misc                             Nichibutsu   0.00
## 1176       Action               Nihon Falcom Corporation   0.15
## 1177 Role-Playing               Nihon Falcom Corporation   0.00
## 1178       Action                               Nintendo  63.49
## 1179    Adventure                               Nintendo  17.72
## 1180     Fighting                               Nintendo  27.10
## 1181         Misc                               Nintendo  61.98
## 1182     Platform                               Nintendo 220.14
## 1183       Puzzle                               Nintendo  55.74
## 1184       Racing                               Nintendo  73.55
## 1185 Role-Playing                               Nintendo 105.63
## 1186      Shooter                               Nintendo  51.39
## 1187   Simulation                               Nintendo  29.70
## 1188       Sports                               Nintendo  98.77
## 1189     Strategy                               Nintendo  11.66
## 1190         Misc                           Nippon Amuse   0.00
## 1191       Action                        Nippon Columbia   0.00
## 1192         Misc                        Nippon Columbia   0.00
## 1193       Action                   Nippon Ichi Software   0.48
## 1194    Adventure                   Nippon Ichi Software   0.09
## 1195     Fighting                   Nippon Ichi Software   0.33
## 1196         Misc                   Nippon Ichi Software   0.40
## 1197     Platform                   Nippon Ichi Software   0.14
## 1198 Role-Playing                   Nippon Ichi Software   3.77
## 1199      Shooter                   Nippon Ichi Software   0.01
## 1200     Strategy                   Nippon Ichi Software   0.00
## 1201         Misc                         Nippon Telenet   0.00
## 1202    Adventure                              Nitroplus   0.00
## 1203     Fighting                              Nitroplus   0.00
## 1204       Action                                Nobilis   0.05
## 1205    Adventure                                Nobilis   0.00
## 1206         Misc                                Nobilis   0.32
## 1207       Racing                                Nobilis   0.00
## 1208 Role-Playing                                Nobilis   0.14
## 1209   Simulation                                Nobilis   1.10
## 1210       Action                            Nordcurrent   0.05
## 1211         Misc                            Nordcurrent   0.19
## 1212       Puzzle                            Nordcurrent   0.05
## 1213       Sports                            Nordcurrent   0.10
## 1214       Action                           Nordic Games   0.20
## 1215    Adventure                           Nordic Games   0.00
## 1216         Misc                           Nordic Games   0.33
## 1217       Racing                           Nordic Games   0.15
## 1218 Role-Playing                           Nordic Games   0.04
## 1219      Shooter                           Nordic Games   0.02
## 1220       Sports                           Nordic Games   0.02
## 1221     Strategy                           Nordic Games   0.00
## 1222      Shooter                              NovaLogic   0.48
## 1223     Platform                            Number None   0.00
## 1224    Adventure                                O-Games   0.02
## 1225         Misc                                O-Games   0.13
## 1226       Puzzle                                O-Games   0.14
## 1227       Racing                                O-Games   0.02
## 1228      Shooter                                O-Games   0.03
## 1229       Sports                                O-Games   0.10
## 1230       Puzzle                       O3 Entertainment   0.02
## 1231      Shooter                       O3 Entertainment   0.07
## 1232   Simulation                       O3 Entertainment   0.10
## 1233       Action                                  Ocean   1.04
## 1234     Fighting                                  Ocean   0.16
## 1235         Misc                                  Ocean   0.02
## 1236     Platform                                  Ocean   0.44
## 1237       Puzzle                                  Ocean   0.06
## 1238       Racing                                  Ocean   0.28
## 1239      Shooter                                  Ocean   0.06
## 1240       Sports                                  Ocean   0.00
## 1241   Simulation                          Office Create   0.00
## 1242 Role-Playing                              On Demand   0.12
## 1243   Simulation                              Ongakukan   0.00
## 1244   Simulation                         Origin Systems   0.05
## 1245    Adventure                                Otomate   0.00
## 1246       Action                     Oxygen Interactive   0.18
## 1247    Adventure                     Oxygen Interactive   0.15
## 1248         Misc                     Oxygen Interactive   1.36
## 1249     Platform                     Oxygen Interactive   0.04
## 1250       Puzzle                     Oxygen Interactive   0.10
## 1251       Sports                     Oxygen Interactive   0.18
## 1252         Misc                               P2 Games   0.00
## 1253       Puzzle                               P2 Games   0.02
## 1254         Misc            Pacific Century Cyber Works   0.11
## 1255    Adventure                          Pack-In-Video   0.00
## 1256   Simulation                          Pack-In-Video   0.00
## 1257   Simulation                           Pack In Soft   0.25
## 1258       Action                                 Palcom   3.38
## 1259 Role-Playing                       Panther Software   0.02
## 1260         Misc                                   Paon   0.00
## 1261         Misc                       Paon Corporation   0.00
## 1262   Simulation                    Paradox Development   0.00
## 1263         Misc                    Paradox Interactive   0.00
## 1264 Role-Playing                    Paradox Interactive   0.01
## 1265   Simulation                    Paradox Interactive   0.01
## 1266     Strategy                    Paradox Interactive   0.03
## 1267       Action                           Parker Bros.   3.60
## 1268     Platform                           Parker Bros.   0.50
## 1269       Puzzle                           Parker Bros.   0.55
## 1270       Puzzle          Performance Designed Products   0.34
## 1271   Simulation                             Phantagram   0.03
## 1272      Shooter                            Phantom EFX   0.09
## 1273     Platform                             Phenomedia   0.04
## 1274       Puzzle                             Phenomedia   0.09
## 1275       Racing                             Phenomedia   0.03
## 1276      Shooter                          Phoenix Games   0.02
## 1277    Adventure                                 Piacci   0.00
## 1278         Misc                               Pinnacle   0.00
## 1279       Puzzle                               Pinnacle   0.00
## 1280       Sports                               Pinnacle   0.00
## 1281     Strategy                               Pinnacle   0.00
## 1282    Adventure                            Pioneer LDC   0.00
## 1283       Racing                            Pioneer LDC   0.23
## 1284         Misc                                Play It   1.24
## 1285     Platform                                Play It   0.02
## 1286       Racing                                Play It   0.74
## 1287      Shooter                                Play It   0.23
## 1288       Sports                                Play It   0.30
## 1289       Action                 Playlogic Game Factory   0.54
## 1290         Misc                 Playlogic Game Factory   0.09
## 1291       Puzzle                 Playlogic Game Factory   0.08
## 1292      Shooter                 Playlogic Game Factory   0.12
## 1293       Sports                 Playlogic Game Factory   0.04
## 1294     Strategy                 Playlogic Game Factory   0.07
## 1295       Racing                              Playmates   0.16
## 1296     Fighting                               Playmore   0.00
## 1297       Action                                  PlayV   0.00
## 1298         Misc                                  PlayV   0.00
## 1299       Puzzle                                  PlayV   0.10
## 1300         Misc                                 Plenty   0.00
## 1301         Misc                             PM Studios   0.09
## 1302         Misc                            Pony Canyon   0.03
## 1303    Adventure                           PopCap Games   0.13
## 1304         Misc                           PopCap Games   0.03
## 1305       Puzzle                           PopCap Games   0.52
## 1306     Strategy                           PopCap Games   0.42
## 1307       Action                         Popcorn Arcade   0.07
## 1308     Platform                         Popcorn Arcade   0.06
## 1309       Puzzle                         Popcorn Arcade   0.21
## 1310       Racing                         Popcorn Arcade   0.07
## 1311      Shooter                         Popcorn Arcade   0.04
## 1312     Strategy                        PopTop Software   0.06
## 1313       Puzzle                                    Pow   0.00
## 1314       Action                                  PQube   0.22
## 1315    Adventure                                  PQube   0.14
## 1316     Fighting                                  PQube   1.33
## 1317         Misc                                  PQube   0.00
## 1318       Racing                                  PQube   0.10
## 1319      Shooter                                  PQube   0.08
## 1320   Simulation                                  PQube   0.04
## 1321       Sports                                  PQube   0.00
## 1322    Adventure                          Princess Soft   0.00
## 1323       Action                              Prototype   0.00
## 1324    Adventure                              Prototype   0.00
## 1325       Action                              Psygnosis   0.70
## 1326    Adventure                              Psygnosis   0.20
## 1327         Misc                              Psygnosis   0.02
## 1328     Platform                              Psygnosis   0.01
## 1329       Puzzle                              Psygnosis   0.03
## 1330       Racing                              Psygnosis   1.92
## 1331 Role-Playing                              Psygnosis   0.13
## 1332      Shooter                              Psygnosis   0.11
## 1333   Simulation                              Psygnosis   0.48
## 1334       Sports                              Psygnosis   0.03
## 1335         Misc                                 Quelle   0.81
## 1336 Role-Playing                                  Quest   0.00
## 1337       Action                               Quinrose   0.00
## 1338    Adventure                               Quinrose   0.00
## 1339    Adventure                                Quintet   0.00
## 1340     Fighting                          Rage Software   0.60
## 1341       Puzzle                          Rage Software   0.03
## 1342       Racing                          Rage Software   0.10
## 1343      Shooter                          Rage Software   0.08
## 1344     Platform                             Rain Games   0.00
## 1345       Racing                              Rebellion   0.35
## 1346      Shooter                 Rebellion Developments   0.08
## 1347    Adventure                      RED Entertainment   0.00
## 1348    Adventure                                Red Orb   1.54
## 1349       Action                Red Storm Entertainment   0.02
## 1350      Shooter                Red Storm Entertainment   1.41
## 1351         Misc                              RedOctane   6.44
## 1352    Adventure                     Reef Entertainment   0.00
## 1353      Shooter                     Reef Entertainment   0.15
## 1354       Sports                     Reef Entertainment   0.02
## 1355       Sports                           responDESIGN   0.09
## 1356    Adventure                     Revolution (Japan)   0.00
## 1357    Adventure                    Revolution Software   0.00
## 1358       Action                      Rising Star Games   0.97
## 1359    Adventure                      Rising Star Games   0.17
## 1360     Fighting                      Rising Star Games   0.47
## 1361         Misc                      Rising Star Games   1.24
## 1362     Platform                      Rising Star Games   0.05
## 1363       Puzzle                      Rising Star Games   0.49
## 1364 Role-Playing                      Rising Star Games   3.35
## 1365      Shooter                      Rising Star Games   0.17
## 1366   Simulation                      Rising Star Games   3.11
## 1367       Sports                      Rising Star Games   0.17
## 1368     Strategy                      Rising Star Games   0.31
## 1369   Simulation                          Riverhillsoft   0.00
## 1370       Action                         Rocket Company   0.00
## 1371    Adventure                         Rocket Company   0.00
## 1372         Misc                         Rocket Company   0.00
## 1373 Role-Playing                         Rocket Company   0.00
## 1374   Simulation                         Rocket Company   0.00
## 1375       Sports                         Rocket Company   0.00
## 1376       Action                             Rondomedia   0.56
## 1377    Adventure                             Rondomedia   0.00
## 1378         Misc                             Rondomedia   0.00
## 1379       Puzzle                             Rondomedia   0.53
## 1380       Racing                             Rondomedia   0.08
## 1381   Simulation                             Rondomedia   0.00
## 1382       Racing                                    RTL   0.03
## 1383   Simulation                                    RTL   0.03
## 1384       Sports                                    RTL   0.77
## 1385       Action                                 Russel   0.00
## 1386    Adventure                                 Russel   0.00
## 1387       Sports                                 Russel   0.00
## 1388    Adventure                      Sammy Corporation   0.03
## 1389     Fighting                      Sammy Corporation   0.19
## 1390         Misc                      Sammy Corporation   0.00
## 1391   Simulation                      Sammy Corporation   0.19
## 1392       Action                                 Saurus   0.01
## 1393       Action                        Scholastic Inc.   0.35
## 1394    Adventure                        Scholastic Inc.   1.17
## 1395         Misc                        Scholastic Inc.   0.06
## 1396       Puzzle                        Scholastic Inc.   1.09
## 1397       Action                                    SCi   0.26
## 1398     Platform                                    SCi   0.07
## 1399       Racing                                    SCi   0.01
## 1400      Shooter                                    SCi   1.67
## 1401       Action                             Screenlife   0.00
## 1402     Fighting                             Screenlife   0.00
## 1403 Role-Playing                             Screenlife   0.22
## 1404       Action                           SCS Software   0.00
## 1405       Puzzle                                  Sears   0.20
## 1406       Action                                   Sega  15.08
## 1407    Adventure                                   Sega   0.84
## 1408     Fighting                                   Sega   4.51
## 1409         Misc                                   Sega   8.65
## 1410     Platform                                   Sega  33.77
## 1411       Puzzle                                   Sega   0.76
## 1412       Racing                                   Sega   8.55
## 1413 Role-Playing                                   Sega   3.89
## 1414      Shooter                                   Sega   6.15
## 1415   Simulation                                   Sega   0.36
## 1416       Sports                                   Sega  25.65
## 1417     Strategy                                   Sega   1.19
## 1418         Misc                       Seta Corporation   0.00
## 1419 Role-Playing                       Seta Corporation   0.00
## 1420       Sports                       Seta Corporation   0.00
## 1421       Action                          Seventh Chord   0.00
## 1422    Adventure                             Shogakukan   0.00
## 1423         Misc                             Shogakukan   0.00
## 1424       Sports           Simon & Schuster Interactive   0.08
## 1425       Racing                   Slightly Mad Studios   0.25
## 1426     Strategy                    Slitherine Software   0.08
## 1427     Fighting                                    SNK   0.04
## 1428    Adventure                           SNK Playmore   0.00
## 1429     Fighting                           SNK Playmore   0.15
## 1430 Role-Playing                           SNK Playmore   0.00
## 1431      Shooter                           SNK Playmore   0.08
## 1432    Adventure                                Societa   0.00
## 1433       Action                               Sold Out   0.01
## 1434         Misc                                 Sonnet   0.00
## 1435       Action            Sony Computer Entertainment  46.09
## 1436    Adventure            Sony Computer Entertainment   4.57
## 1437     Fighting            Sony Computer Entertainment  10.30
## 1438         Misc            Sony Computer Entertainment  25.47
## 1439     Platform            Sony Computer Entertainment  53.04
## 1440       Puzzle            Sony Computer Entertainment   0.64
## 1441       Racing            Sony Computer Entertainment  42.43
## 1442 Role-Playing            Sony Computer Entertainment  15.90
## 1443      Shooter            Sony Computer Entertainment  31.22
## 1444   Simulation            Sony Computer Entertainment   3.13
## 1445       Sports            Sony Computer Entertainment  32.09
## 1446     Strategy            Sony Computer Entertainment   0.34
## 1447       Sports    Sony Computer Entertainment America   1.04
## 1448       Action     Sony Computer Entertainment Europe   2.41
## 1449    Adventure     Sony Computer Entertainment Europe   0.65
## 1450         Misc     Sony Computer Entertainment Europe   1.66
## 1451     Platform     Sony Computer Entertainment Europe   1.05
## 1452      Shooter     Sony Computer Entertainment Europe   0.25
## 1453   Simulation     Sony Computer Entertainment Europe   2.94
## 1454         Misc               Sony Music Entertainment   0.00
## 1455 Role-Playing              Sony Online Entertainment   1.82
## 1456     Strategy              Sony Online Entertainment   0.14
## 1457       Action                        SouthPeak Games   0.74
## 1458    Adventure                        SouthPeak Games   0.01
## 1459     Fighting                        SouthPeak Games   0.16
## 1460         Misc                        SouthPeak Games   0.13
## 1461       Puzzle                        SouthPeak Games   0.12
## 1462       Racing                        SouthPeak Games   1.54
## 1463 Role-Playing                        SouthPeak Games   0.77
## 1464      Shooter                        SouthPeak Games   0.64
## 1465   Simulation                        SouthPeak Games   0.40
## 1466       Sports                        SouthPeak Games   0.14
## 1467     Strategy                        SouthPeak Games   0.12
## 1468       Action                                  Spike   0.06
## 1469    Adventure                                  Spike   0.00
## 1470     Fighting                                  Spike   0.09
## 1471         Misc                                  Spike   0.00
## 1472 Role-Playing                                  Spike   0.24
## 1473   Simulation                                  Spike   0.00
## 1474       Sports                                  Spike   2.93
## 1475       Sports                                    SPS   0.07
## 1476       Racing                                 Square   0.00
## 1477 Role-Playing                                 Square   0.53
## 1478 Role-Playing                              Square EA   0.45
## 1479       Action                            Square Enix   9.59
## 1480    Adventure                            Square Enix   1.07
## 1481     Fighting                            Square Enix   0.72
## 1482         Misc                            Square Enix   0.35
## 1483       Puzzle                            Square Enix   0.33
## 1484 Role-Playing                            Square Enix  32.39
## 1485      Shooter                            Square Enix   3.14
## 1486   Simulation                            Square Enix   0.60
## 1487     Strategy                            Square Enix   0.46
## 1488     Fighting                             SquareSoft   0.42
## 1489       Racing                             SquareSoft   0.07
## 1490 Role-Playing                             SquareSoft  10.37
## 1491      Shooter                             SquareSoft   0.10
## 1492   Simulation                             SquareSoft   0.00
## 1493       Sports                             SquareSoft   0.00
## 1494     Strategy                             SquareSoft   0.10
## 1495     Strategy                                    SSI   0.11
## 1496       Action                        Stainless Games   0.01
## 1497       Action                               Starfish   0.06
## 1498 Role-Playing                               Starfish   0.00
## 1499      Shooter                               Starfish   0.04
## 1500       Sports                               Starfish   0.29
## 1501       Action                         Starpath Corp.   0.30
## 1502 Role-Playing                                  Sting   0.40
## 1503       Action                       Storm City Games   0.01
## 1504    Adventure                       Storm City Games   0.03
## 1505         Misc                       Storm City Games   0.04
## 1506     Platform                       Storm City Games   0.02
## 1507       Puzzle                       Storm City Games   0.93
## 1508       Racing                       Storm City Games   0.26
## 1509       Sports                       Storm City Games   0.04
## 1510     Strategy                       Storm City Games   0.02
## 1511     Strategy                         Strategy First   0.00
## 1512       Action                                Success   0.07
## 1513    Adventure                                Success   0.00
## 1514         Misc                                Success   0.01
## 1515       Puzzle                                Success   0.01
## 1516 Role-Playing                                Success   0.33
## 1517      Shooter                                Success   0.64
## 1518   Simulation                                Success   0.00
## 1519     Strategy                                Success   0.06
## 1520       Sports                             Summitsoft   0.03
## 1521     Strategy                             Sunflowers   0.00
## 1522       Action                    Sunrise Interactive   0.00
## 1523     Fighting                    Sunrise Interactive   0.00
## 1524       Racing                    Sunrise Interactive   0.00
## 1525 Role-Playing                    Sunrise Interactive   0.00
## 1526    Adventure                                Sunsoft   0.08
## 1527     Fighting                                Sunsoft   0.00
## 1528         Misc                                Sunsoft   0.00
## 1529     Platform                                Sunsoft   0.09
## 1530       Puzzle                                Sunsoft   0.07
## 1531 Role-Playing                                Sunsoft   0.12
## 1532      Shooter                                Sunsoft   0.14
## 1533    Adventure                                 Sweets   0.00
## 1534       Action                   Swing! Entertainment   0.03
## 1535    Adventure                   Swing! Entertainment   0.11
## 1536     Platform                   Swing! Entertainment   0.02
## 1537      Shooter                   Swing! Entertainment   0.07
## 1538   Simulation                   Swing! Entertainment   0.05
## 1539         Misc                                 Syscom   0.00
## 1540       Racing                                 Syscom   0.06
## 1541     Platform                               System 3   0.08
## 1542         Misc               System 3 Arcade Software   0.64
## 1543     Platform               System 3 Arcade Software   0.12
## 1544       Puzzle               System 3 Arcade Software   0.01
## 1545       Racing               System 3 Arcade Software   0.16
## 1546       Sports               System 3 Arcade Software   0.03
## 1547    Adventure                            System Soft   0.00
## 1548     Strategy                            System Soft   0.00
## 1549       Sports                               T&E Soft   0.00
## 1550       Action                                  Taito   0.22
## 1551    Adventure                                  Taito   0.00
## 1552     Fighting                                  Taito   0.00
## 1553         Misc                                  Taito   0.05
## 1554 Role-Playing                                  Taito   0.08
## 1555      Shooter                                  Taito   0.06
## 1556   Simulation                                  Taito   0.00
## 1557       Action                                 Takara   0.00
## 1558     Fighting                                 Takara   0.00
## 1559         Misc                                 Takara   0.16
## 1560       Racing                                 Takara   0.00
## 1561 Role-Playing                                 Takara   0.00
## 1562       Action                            Takara Tomy   0.08
## 1563     Fighting                            Takara Tomy   0.22
## 1564         Misc                            Takara Tomy   0.00
## 1565       Racing                            Takara Tomy   0.07
## 1566 Role-Playing                            Takara Tomy   0.22
## 1567       Sports                            Takara Tomy   0.09
## 1568     Strategy                            Takara Tomy   0.08
## 1569       Action                   Take-Two Interactive 101.45
## 1570    Adventure                   Take-Two Interactive   3.96
## 1571     Fighting                   Take-Two Interactive   0.06
## 1572         Misc                   Take-Two Interactive   6.69
## 1573     Platform                   Take-Two Interactive   2.46
## 1574       Puzzle                   Take-Two Interactive   0.05
## 1575       Racing                   Take-Two Interactive  13.94
## 1576 Role-Playing                   Take-Two Interactive   3.02
## 1577      Shooter                   Take-Two Interactive  29.62
## 1578   Simulation                   Take-Two Interactive   0.49
## 1579       Sports                   Take-Two Interactive  54.68
## 1580     Strategy                   Take-Two Interactive   4.07
## 1581    Adventure                                 Takuyo   0.00
## 1582      Shooter                              TalonSoft   0.49
## 1583       Action                               TDK Core   0.24
## 1584         Misc                               TDK Core   0.00
## 1585   Simulation                               TDK Core   0.00
## 1586       Action                         TDK Mediactive   0.82
## 1587    Adventure                         TDK Mediactive   0.07
## 1588         Misc                         TDK Mediactive   0.33
## 1589     Platform                         TDK Mediactive   1.75
## 1590       Racing                         TDK Mediactive   1.35
## 1591      Shooter                         TDK Mediactive   0.62
## 1592       Sports                         TDK Mediactive   0.47
## 1593     Strategy                        Team17 Software   0.00
## 1594       Sports              Technos Japan Corporation   0.00
## 1595      Shooter                             TechnoSoft   0.03
## 1596       Action                             Tecmo Koei   7.95
## 1597    Adventure                             Tecmo Koei   0.00
## 1598     Fighting                             Tecmo Koei   1.29
## 1599         Misc                             Tecmo Koei   0.05
## 1600     Platform                             Tecmo Koei   0.02
## 1601       Racing                             Tecmo Koei   0.17
## 1602 Role-Playing                             Tecmo Koei   2.40
## 1603      Shooter                             Tecmo Koei   0.12
## 1604   Simulation                             Tecmo Koei   0.47
## 1605       Sports                             Tecmo Koei   0.66
## 1606     Strategy                             Tecmo Koei   0.95
## 1607         Misc                              Telegames   0.70
## 1608       Puzzle                              Telegames   0.12
## 1609   Simulation                              Telegames   0.01
## 1610     Strategy                              Telegames   0.08
## 1611       Action                         Telltale Games   0.05
## 1612    Adventure                         Telltale Games   1.23
## 1613       Action                                Telstar   0.07
## 1614       Racing                                Telstar   0.05
## 1615      Shooter                                Telstar   0.04
## 1616       Puzzle                          Tetris Online   0.20
## 1617    Adventure                                    TGL   0.00
## 1618    Adventure                  The Adventure Company   0.20
## 1619       Puzzle                  The Adventure Company   0.14
## 1620       Racing                   The Learning Company   0.03
## 1621       Action                                    THQ  54.37
## 1622    Adventure                                    THQ  11.22
## 1623     Fighting                                    THQ  42.63
## 1624         Misc                                    THQ  17.60
## 1625     Platform                                    THQ  25.92
## 1626       Puzzle                                    THQ   5.37
## 1627       Racing                                    THQ  27.35
## 1628 Role-Playing                                    THQ   0.63
## 1629      Shooter                                    THQ   7.27
## 1630   Simulation                                    THQ   5.40
## 1631       Sports                                    THQ   7.64
## 1632     Strategy                                    THQ   3.37
## 1633       Action                            Tigervision   1.33
## 1634     Fighting                Time Warner Interactive   0.06
## 1635      Shooter                Time Warner Interactive   0.02
## 1636       Sports                Time Warner Interactive   0.05
## 1637     Strategy                Time Warner Interactive   0.05
## 1638       Action                                  Titus   0.38
## 1639     Fighting                                  Titus   0.44
## 1640         Misc                                  Titus   0.05
## 1641     Platform                                  Titus   0.01
## 1642       Racing                                  Titus   0.38
## 1643 Role-Playing                                  Titus   0.04
## 1644      Shooter                                  Titus   0.08
## 1645   Simulation                                  Titus   0.57
## 1646     Strategy                                  Titus   0.01
## 1647         Misc                                 Tivola   0.08
## 1648 Role-Playing                                   TOHO   0.00
## 1649         Misc                                  Tommo   0.10
## 1650      Shooter                                  Tommo   0.06
## 1651       Sports                                  Tommo   0.04
## 1652       Action                       Tomy Corporation   0.28
## 1653     Fighting                       Tomy Corporation   1.32
## 1654         Misc                       Tomy Corporation   0.02
## 1655       Racing                       Tomy Corporation   0.04
## 1656 Role-Playing                       Tomy Corporation   0.06
## 1657   Simulation                       Tomy Corporation   0.12
## 1658         Misc                    TopWare Interactive   0.00
## 1659 Role-Playing                    TopWare Interactive   0.00
## 1660       Action                             Touchstone   0.81
## 1661   Simulation                             Touchstone   0.07
## 1662       Sports                              Tradewest   0.02
## 1663      Shooter                           Trion Worlds   0.71
## 1664     Strategy                           Trion Worlds   0.01
## 1665      Shooter                   Tripwire Interactive   0.04
## 1666       Action                  Tru Blu Entertainment   0.00
## 1667       Sports                  Tru Blu Entertainment   0.01
## 1668     Fighting                               Tryfirst   0.00
## 1669       Racing                                    TYO   0.23
## 1670    Adventure                              Type-Moon   0.00
## 1671     Platform                              U.S. Gold   0.03
## 1672       Sports                              U.S. Gold   0.16
## 1673       Action                                Ubisoft  69.38
## 1674    Adventure                                Ubisoft  11.41
## 1675     Fighting                                Ubisoft   3.89
## 1676         Misc                                Ubisoft  58.49
## 1677     Platform                                Ubisoft  10.05
## 1678       Puzzle                                Ubisoft   2.63
## 1679       Racing                                Ubisoft   7.73
## 1680 Role-Playing                                Ubisoft   9.06
## 1681      Shooter                                Ubisoft  35.01
## 1682   Simulation                                Ubisoft  28.01
## 1683       Sports                                Ubisoft  14.54
## 1684     Strategy                                Ubisoft   3.23
## 1685       Action                         Ubisoft Annecy   0.82
## 1686     Fighting                         Ubisoft Annecy   0.32
## 1687         Misc                         Ubisoft Annecy   0.07
## 1688 Role-Playing                         Ubisoft Annecy   0.06
## 1689       Sports                            UEP Systems   1.52
## 1690       Action                        UFO Interactive   0.02
## 1691         Misc                        UFO Interactive   0.61
## 1692       Puzzle                        UFO Interactive   0.22
## 1693      Shooter                        UFO Interactive   0.02
## 1694       Sports                        UFO Interactive   0.05
## 1695   Simulation                      UIG Entertainment   0.00
## 1696     Fighting                            Ultravision   0.44
## 1697       Action                        Universal Gamex   0.58
## 1698       Action                  Universal Interactive   2.15
## 1699     Fighting                  Universal Interactive   0.23
## 1700         Misc                  Universal Interactive   0.40
## 1701     Platform                  Universal Interactive   5.58
## 1702      Shooter                  Universal Interactive   0.48
## 1703       Sports                  Universal Interactive   0.24
## 1704       Action                                Unknown   2.27
## 1705    Adventure                                Unknown   0.64
## 1706     Fighting                                Unknown   0.16
## 1707         Misc                                Unknown   3.57
## 1708     Platform                                Unknown   0.22
## 1709       Puzzle                                Unknown   1.00
## 1710       Racing                                Unknown   1.38
## 1711 Role-Playing                                Unknown   1.95
## 1712      Shooter                                Unknown   1.18
## 1713   Simulation                                Unknown   1.10
## 1714       Sports                                Unknown   5.02
## 1715     Strategy                                Unknown   0.00
## 1716    Adventure                           Valcon Games   0.01
## 1717       Racing                           Valcon Games   0.16
## 1718      Shooter                           Valcon Games   0.06
## 1719   Simulation                           Valcon Games   0.02
## 1720       Sports                           Valcon Games   0.06
## 1721    Adventure                               ValuSoft   0.01
## 1722       Puzzle                               ValuSoft   0.13
## 1723       Racing                               ValuSoft   0.12
## 1724      Shooter                                  Valve   0.83
## 1725      Shooter                         Valve Software   1.74
## 1726         Misc                                    Vap   0.00
## 1727       Racing                  Vatical Entertainment   0.14
## 1728     Fighting                              Vic Tokai   0.19
## 1729    Adventure                     Victor Interactive   0.00
## 1730         Misc                     Victor Interactive   0.00
## 1731 Role-Playing                     Victor Interactive   0.01
## 1732   Simulation                     Victor Interactive   0.00
## 1733       Sports                     Victor Interactive   0.10
## 1734       Action                           Video System   0.15
## 1735       Racing                           Video System   0.52
## 1736       Action                                  Views   0.00
## 1737    Adventure                                  Views   0.00
## 1738       Action                          Vir2L Studios   0.14
## 1739       Racing                          Vir2L Studios   0.02
## 1740       Sports                          Vir2L Studios   0.06
## 1741       Action                     Virgin Interactive   8.06
## 1742    Adventure                     Virgin Interactive   0.01
## 1743     Fighting                     Virgin Interactive   2.54
## 1744         Misc                     Virgin Interactive   0.02
## 1745     Platform                     Virgin Interactive   2.40
## 1746       Puzzle                     Virgin Interactive   0.15
## 1747       Racing                     Virgin Interactive   0.01
## 1748 Role-Playing                     Virgin Interactive   0.87
## 1749      Shooter                     Virgin Interactive   2.45
## 1750   Simulation                     Virgin Interactive   0.15
## 1751       Sports                     Virgin Interactive   0.09
## 1752     Strategy                     Virgin Interactive   2.24
## 1753         Misc                     Virtual Play Games   0.04
## 1754       Sports                     Virtual Play Games   0.02
## 1755      Shooter                                  Visco   0.02
## 1756       Action                          Vivendi Games   8.38
## 1757    Adventure                          Vivendi Games   0.88
## 1758     Fighting                          Vivendi Games   0.29
## 1759         Misc                          Vivendi Games   0.90
## 1760     Platform                          Vivendi Games  10.12
## 1761       Puzzle                          Vivendi Games   0.12
## 1762       Racing                          Vivendi Games   5.47
## 1763 Role-Playing                          Vivendi Games   1.03
## 1764      Shooter                          Vivendi Games   9.54
## 1765   Simulation                          Vivendi Games   0.00
## 1766       Sports                          Vivendi Games   0.09
## 1767     Strategy                          Vivendi Games   0.18
## 1768       Action                                Wanadoo   0.27
## 1769     Platform                                Wanadoo   0.02
## 1770       Racing                                Wanadoo   0.01
## 1771      Shooter                                Warashi   0.00
## 1772      Shooter                          Wargaming.net   0.00
## 1773       Action Warner Bros. Interactive Entertainment  57.74
## 1774    Adventure Warner Bros. Interactive Entertainment   0.31
## 1775     Fighting Warner Bros. Interactive Entertainment   8.68
## 1776         Misc Warner Bros. Interactive Entertainment   4.25
## 1777     Platform Warner Bros. Interactive Entertainment   1.11
## 1778       Puzzle Warner Bros. Interactive Entertainment   4.82
## 1779       Racing Warner Bros. Interactive Entertainment   0.75
## 1780      Shooter Warner Bros. Interactive Entertainment   1.64
## 1781     Strategy Warner Bros. Interactive Entertainment   1.88
## 1782    Adventure                                   Warp   0.00
## 1783    Adventure                WayForward Technologies   0.05
## 1784     Strategy                       Westwood Studios   1.55
## 1785       Puzzle                White Park Bay Software   0.13
## 1786       Action                     Wizard Video Games   0.58
## 1787       Racing                      Xicat Interactive   0.02
## 1788 Role-Playing                      Xicat Interactive   0.02
## 1789       Sports                      Xicat Interactive   0.05
## 1790     Fighting                     Xing Entertainment   0.04
## 1791         Misc                                Xplosiv   0.21
## 1792       Puzzle                                Xplosiv   0.05
## 1793       Racing                                Xplosiv   0.35
## 1794         Misc                               XS Games   0.05
## 1795       Racing                               XS Games   0.22
## 1796       Sports                               XS Games   0.91
## 1797       Action                            Xseed Games   0.04
## 1798 Role-Playing                            Xseed Games   0.35
## 1799      Shooter                            Xseed Games   0.02
## 1800     Platform                       Yacht Club Games   0.16
## 1801         Misc                   Yamasa Entertainment   0.00
## 1802       Action                                   Yeti   0.00
## 1803    Adventure                                   Yeti   0.00
## 1804     Fighting                                   Yeti   0.00
## 1805     Fighting                                 Yuke's   0.00
## 1806       Racing                                 Yuke's   0.01
## 1807    Adventure                                Yumedia   0.00
## 1808         Misc                                 Zenrin   0.00
## 1809       Action                 Zoo Digital Publishing   0.68
## 1810    Adventure                 Zoo Digital Publishing   0.34
## 1811     Fighting                 Zoo Digital Publishing   0.23
## 1812         Misc                 Zoo Digital Publishing   1.96
## 1813     Platform                 Zoo Digital Publishing   0.23
## 1814       Puzzle                 Zoo Digital Publishing   1.11
## 1815       Racing                 Zoo Digital Publishing   2.64
## 1816      Shooter                 Zoo Digital Publishing   0.35
## 1817   Simulation                 Zoo Digital Publishing   0.08
## 1818       Sports                 Zoo Digital Publishing   1.81
## 1819     Strategy                 Zoo Digital Publishing   0.09
## 1820       Action                              Zoo Games   0.26
## 1821    Adventure                              Zoo Games   0.02
## 1822         Misc                              Zoo Games   2.45
## 1823       Puzzle                              Zoo Games   0.21
## 1824       Racing                              Zoo Games   0.61
## 1825      Shooter                              Zoo Games   0.45
## 1826   Simulation                              Zoo Games   0.07
## 1827       Sports                              Zoo Games   0.45
## 1828       Action                            Zushi Games   0.00
## 1829    Adventure                            Zushi Games   0.04
## 1830         Misc                            Zushi Games   0.08
## 1831       Puzzle                            Zushi Games   0.06
## 1832       Racing                            Zushi Games   0.16
## 1833 Role-Playing                            Zushi Games   0.10
## 1834      Shooter                            Zushi Games   0.35
## 1835   Simulation                            Zushi Games   0.04
## 1836       Sports                            Zushi Games   0.77
## 1837     Strategy                            Zushi Games   0.07
aggregate(NA_Sales,by=list(Platform = Platform,Year = Year),mean)
##     Platform Year           x
## 1       2600 1980 1.176666667
## 2       2600 1981 0.726086957
## 3       2600 1982 0.747777778
## 4       2600 1983 0.494545455
## 5        NES 1983 0.386666667
## 6       2600 1984 0.260000000
## 7        NES 1984 2.540000000
## 8       2600 1985 0.420000000
## 9         DS 1985 0.000000000
## 10       NES 1985 3.028181818
## 11        PC 1985 0.000000000
## 12      2600 1986 0.315000000
## 13       NES 1986 0.624736842
## 14      2600 1987 0.306666667
## 15       NES 1987 0.662000000
## 16      2600 1988 0.345000000
## 17        GB 1988 0.820000000
## 18       NES 1988 2.032727273
## 19        PC 1988 0.000000000
## 20      2600 1989 0.295000000
## 21        GB 1989 3.981000000
## 22       NES 1989 0.950000000
## 23        GB 1990 0.746666667
## 24       GEN 1990 1.860000000
## 25       NES 1990 0.760000000
## 26      SNES 1990 3.820000000
## 27        GB 1991 0.158888889
## 28       GEN 1991 3.030000000
## 29       NES 1991 0.404285714
## 30      SNES 1991 0.227916667
## 31        GB 1992 1.871428571
## 32       GEN 1992 1.528333333
## 33        GG 1992 0.000000000
## 34       NES 1992 0.280000000
## 35        PC 1992 0.248000000
## 36      SNES 1992 0.453333333
## 37       GEN 1993 0.000000000
## 38       NES 1993 0.485000000
## 39        NG 1993 0.000000000
## 40       SCD 1993 1.000000000
## 41      SNES 1993 0.264782609
## 42       3DO 1994 0.000000000
## 43        GB 1994 2.010000000
## 44       GEN 1994 0.434166667
## 45       NES 1994 0.000000000
## 46        NG 1994 0.000000000
## 47        PC 1994 0.925000000
## 48        PS 1994 0.103529412
## 49       SAT 1994 0.008947368
## 50       SCD 1994 0.000000000
## 51      SNES 1994 0.177924528
## 52       3DO 1995 0.000000000
## 53        GB 1995 0.172500000
## 54        NG 1995 0.000000000
## 55        PC 1995 0.855000000
## 56        PS 1995 0.147575758
## 57       SAT 1995 0.010576923
## 58      SNES 1995 0.134444444
## 59      TG16 1995 0.000000000
## 60        GB 1996 2.110000000
## 61       N64 1996 1.168333333
## 62        NG 1996 0.000000000
## 63        PC 1996 1.390000000
## 64      PCFX 1996 0.000000000
## 65        PS 1996 0.276951220
## 66       SAT 1996 0.000000000
## 67      SNES 1996 0.069666667
## 68        GB 1997 0.261250000
## 69       N64 1997 0.527346939
## 70        PC 1997 1.460000000
## 71        PS 1997 0.308829787
## 72       SAT 1997 0.000000000
## 73      SNES 1997 0.000000000
## 74        DC 1998 0.180000000
## 75        GB 1998 1.180000000
## 76       N64 1998 0.407662338
## 77        PC 1998 0.381250000
## 78        PS 1998 0.335564516
## 79       SAT 1998 0.000000000
## 80      SNES 1998 0.000000000
## 81        DC 1999 0.117142857
## 82        GB 1999 1.473636364
## 83       N64 1999 0.380098039
## 84        PC 1999 0.500000000
## 85        PS 1999 0.329700000
## 86       SAT 1999 0.000000000
## 87      SNES 1999 0.000000000
## 88        WS 1999 0.000000000
## 89        DC 2000 0.126500000
## 90        GB 2000 0.375882353
## 91       GBA 2000 0.050000000
## 92       N64 2000 0.329000000
## 93        PC 2000 0.432857143
## 94        PS 2000 0.288867925
## 95       PS2 2000 0.196097561
## 96        WS 2000 0.000000000
## 97        XB 2000 0.740000000
## 98        DC 2001 0.000000000
## 99        GB 2001 0.273000000
## 100      GBA 2001 0.338691589
## 101       GC 2001 0.768636364
## 102      N64 2001 0.231111111
## 103       PC 2001 0.272000000
## 104       PS 2001 0.174065934
## 105      PS2 2001 0.429675676
## 106       WS 2001 0.000000000
## 107       XB 2001 0.503333333
## 108       DC 2002 0.000000000
## 109      GBA 2002 0.217272727
## 110       GC 2002 0.228355263
## 111      N64 2002 0.060000000
## 112       PC 2002 0.264736842
## 113       PS 2002 0.139000000
## 114      PS2 2002 0.344785714
## 115       XB 2002 0.215506329
## 116      GBA 2003 0.223533333
## 117       GC 2003 0.226666667
## 118       PC 2003 0.102727273
## 119       PS 2003 0.383333333
## 120      PS2 2003 0.326328125
## 121       XB 2003 0.208148148
## 122       DS 2004 0.366086957
## 123      GBA 2004 0.253885714
## 124       GC 2004 0.237469880
## 125       PC 2004 0.081612903
## 126      PS2 2004 0.373667954
## 127      PSP 2004 0.150000000
## 128       XB 2004 0.273841808
## 129       DS 2005 0.410762712
## 130      GBA 2005 0.160740741
## 131       GC 2005 0.198453608
## 132       PC 2005 0.037297297
## 133      PS2 2005 0.329230769
## 134      PSP 2005 0.252371134
## 135     X360 2005 0.382777778
## 136       XB 2005 0.194636872
## 137       DS 2006 0.250643564
## 138      GBA 2006 0.069230769
## 139       GC 2006 0.212750000
## 140       PC 2006 0.011538462
## 141      PS2 2006 0.192779923
## 142      PS3 2006 0.327037037
## 143      PSP 2006 0.147315789
## 144      Wii 2006 1.620454545
## 145     X360 2006 0.378064516
## 146       XB 2006 0.120483871
## 147       DC 2007 0.000000000
## 148       DS 2007 0.202546419
## 149      GBA 2007 0.408333333
## 150       GC 2007 0.052500000
## 151       PC 2007 0.043809524
## 152      PS2 2007 0.149766355
## 153      PS3 2007 0.357222222
## 154      PSP 2007 0.137761194
## 155      Wii 2007 0.450534759
## 156     X360 2007 0.511788618
## 157       XB 2007 0.136666667
## 158       DC 2008 0.000000000
## 159       DS 2008 0.161382114
## 160       PC 2008 0.007500000
## 161      PS2 2008 0.111151832
## 162      PS3 2008 0.411366906
## 163      PSP 2008 0.117200000
## 164      Wii 2008 0.350248227
## 165     X360 2008 0.564657534
## 166       XB 2008 0.130000000
## 167       DS 2009 0.154098765
## 168       PC 2009 0.012201835
## 169      PS2 2009 0.097500000
## 170      PS3 2009 0.386604938
## 171      PSP 2009 0.078322981
## 172      Wii 2009 0.358584615
## 173     X360 2009 0.427572254
## 174       DS 2010 0.129938650
## 175       PC 2010 0.101444444
## 176      PS2 2010 0.057631579
## 177      PS3 2010 0.336574586
## 178      PSP 2010 0.039361702
## 179      Wii 2010 0.295393701
## 180     X360 2010 0.589065934
## 181      3DS 2011 0.232586207
## 182       DS 2011 0.099934641
## 183       PC 2011 0.076214286
## 184      PS2 2011 0.018571429
## 185      PS3 2011 0.300000000
## 186      PSP 2011 0.014748201
## 187      PSV 2011 0.095555556
## 188      Wii 2011 0.227222222
## 189     X360 2011 0.420873786
## 190      3DS 2012 0.183225806
## 191       DS 2012 0.168400000
## 192       PC 2012 0.130327869
## 193      PS3 2012 0.268918919
## 194      PSP 2012 0.001226415
## 195      PSV 2012 0.128148148
## 196      Wii 2012 0.358125000
## 197     WiiU 2012 0.285312500
## 198     X360 2012 0.550188679
## 199      3DS 2013 0.168461538
## 200       DS 2013 0.080000000
## 201       PC 2013 0.101052632
## 202      PS3 2013 0.325275591
## 203      PS4 2013 0.630625000
## 204      PSP 2013 0.000000000
## 205      PSV 2013 0.055396825
## 206      Wii 2013 0.409166667
## 207     WiiU 2013 0.241666667
## 208     X360 2013 0.708400000
## 209     XOne 2013 0.621052632
## 210      3DS 2014 0.152278481
## 211       DS 2014 0.020000000
## 212       PC 2014 0.077272727
## 213      PS3 2014 0.149259259
## 214      PS4 2014 0.454533333
## 215      PSP 2014 0.000000000
## 216      PSV 2014 0.031470588
## 217      Wii 2014 0.303333333
## 218     WiiU 2014 0.347741935
## 219     X360 2014 0.309076923
## 220     XOne 2014 0.498524590
## 221      3DS 2015 0.067674419
## 222       PC 2015 0.044000000
## 223      PS3 2015 0.064324324
## 224      PS4 2015 0.297518248
## 225      PSP 2015 0.000000000
## 226      PSV 2015 0.004778761
## 227      Wii 2015 0.142500000
## 228     WiiU 2015 0.241785714
## 229     X360 2015 0.177750000
## 230     XOne 2015 0.434050633
## 231      3DS 2016 0.023714286
## 232       PC 2016 0.022105263
## 233      PS3 2016 0.012500000
## 234      PS4 2016 0.110841121
## 235      PSV 2016 0.003166667
## 236     WiiU 2016 0.149000000
## 237     X360 2016 0.045000000
## 238     XOne 2016 0.123888889
## 239      PS4 2017 0.000000000
## 240      PSV 2017 0.000000000
## 241       DS 2020 0.270000000
## 242     2600  N/A 0.577647059
## 243      3DS  N/A 0.093333333
## 244       DS  N/A 0.071666667
## 245       GB  N/A 0.680000000
## 246      GBA  N/A 0.310909091
## 247       GC  N/A 0.108571429
## 248      N64  N/A 0.036666667
## 249       PC  N/A 0.069411765
## 250       PS  N/A 0.257142857
## 251      PS2  N/A 0.321176471
## 252      PS3  N/A 0.134400000
## 253      PSP  N/A 0.118750000
## 254      PSV  N/A 0.130000000
## 255      Wii  N/A 0.295428571
## 256     X360  N/A 0.224000000
## 257       XB  N/A 0.220476190
aggregate(NA_Sales,by=list(Platform = Platform,Genre = Genre),mean)
##     Platform        Genre           x
## 1       2600       Action 0.449016393
## 2        3DS       Action 0.107087912
## 3         DC       Action 0.136666667
## 4         DS       Action 0.193760933
## 5         GB       Action 0.678333333
## 6        GBA       Action 0.222335329
## 7         GC       Action 0.258514851
## 8        GEN       Action 0.620000000
## 9        N64       Action 0.498947368
## 10       NES       Action 1.254615385
## 11        PC       Action 0.059818182
## 12        PS       Action 0.400509554
## 13       PS2       Action 0.367298851
## 14       PS3       Action 0.318842105
## 15       PS4       Action 0.243442623
## 16       PSP       Action 0.107342342
## 17       PSV       Action 0.034859155
## 18       SAT       Action 0.000000000
## 19      SNES       Action 0.340833333
## 20       Wii       Action 0.295294118
## 21      WiiU       Action 0.156825397
## 22      X360       Action 0.436388889
## 23        XB       Action 0.221548387
## 24      XOne       Action 0.286029412
## 25      2600    Adventure 0.795000000
## 26       3DO    Adventure 0.000000000
## 27       3DS    Adventure 0.029729730
## 28        DC    Adventure 0.047272727
## 29        DS    Adventure 0.106333333
## 30        GB    Adventure 1.776000000
## 31       GBA    Adventure 0.242368421
## 32        GC    Adventure 0.191000000
## 33       GEN    Adventure 0.000000000
## 34       N64    Adventure 0.057500000
## 35       NES    Adventure 2.190000000
## 36        PC    Adventure 0.026923077
## 37        PS    Adventure 0.123333333
## 38       PS2    Adventure 0.034234694
## 39       PS3    Adventure 0.118108108
## 40       PS4    Adventure 0.074736842
## 41       PSP    Adventure 0.007887324
## 42       PSV    Adventure 0.009883721
## 43       SAT    Adventure 0.000000000
## 44      SNES    Adventure 0.000000000
## 45      TG16    Adventure 0.000000000
## 46       Wii    Adventure 0.132976190
## 47      WiiU    Adventure 0.030000000
## 48      X360    Adventure 0.178723404
## 49        XB    Adventure 0.085384615
## 50      XOne    Adventure 0.100000000
## 51      2600     Fighting 0.580000000
## 52       3DS     Fighting 0.316428571
## 53        DC     Fighting 0.000000000
## 54        DS     Fighting 0.071666667
## 55       GBA     Fighting 0.126086957
## 56        GC     Fighting 0.268809524
## 57       GEN     Fighting 0.796000000
## 58       N64     Fighting 0.540000000
## 59       NES     Fighting 0.710000000
## 60        NG     Fighting 0.000000000
## 61        PC     Fighting 0.015000000
## 62        PS     Fighting 0.315648148
## 63       PS2     Fighting 0.299866667
## 64       PS3     Fighting 0.313026316
## 65       PS4     Fighting 0.200000000
## 66       PSP     Fighting 0.116891892
## 67       PSV     Fighting 0.083125000
## 68       SAT     Fighting 0.016451613
## 69      SNES     Fighting 0.373600000
## 70       Wii     Fighting 0.313095238
## 71      WiiU     Fighting 0.650000000
## 72      X360     Fighting 0.378153846
## 73        XB     Fighting 0.208541667
## 74      XOne     Fighting 0.225714286
## 75      2600         Misc 0.668000000
## 76       3DS         Misc 0.048301887
## 77        DS         Misc 0.139923664
## 78        GB         Misc 0.758750000
## 79       GBA         Misc 0.224000000
## 80        GC         Misc 0.279722222
## 81       GEN         Misc 0.000000000
## 82       N64         Misc 0.348333333
## 83       NES         Misc 0.005000000
## 84        PC         Misc 0.235833333
## 85        PS         Misc 0.273157895
## 86       PS2         Misc 0.183468468
## 87       PS3         Misc 0.181693548
## 88       PS4         Misc 0.188666667
## 89       PSP         Misc 0.049905660
## 90       PSV         Misc 0.042500000
## 91       SAT         Misc 0.000000000
## 92       SCD         Misc 0.000000000
## 93      SNES         Misc 0.084117647
## 94       Wii         Misc 0.433892857
## 95      WiiU         Misc 0.261428571
## 96      X360         Misc 0.503412698
## 97        XB         Misc 0.156304348
## 98      XOne         Misc 0.296000000
## 99      2600     Platform 1.375555556
## 100      3DS     Platform 0.471071429
## 101       DC     Platform 0.630000000
## 102       DS     Platform 0.410000000
## 103       GB     Platform 1.547368421
## 104      GBA     Platform 0.322605634
## 105       GC     Platform 0.279452055
## 106      GEN     Platform 1.532857143
## 107       GG     Platform 0.000000000
## 108      N64     Platform 0.707666667
## 109      NES     Platform 1.915714286
## 110       PC     Platform 0.004545455
## 111       PS     Platform 0.534531250
## 112      PS2     Platform 0.365048544
## 113      PS3     Platform 0.359729730
## 114      PS4     Platform 0.198181818
## 115      PSP     Platform 0.221666667
## 116      PSV     Platform 0.092000000
## 117      SAT     Platform 0.000000000
## 118      SCD     Platform 1.000000000
## 119     SNES     Platform 1.258076923
## 120      Wii     Platform 0.832758621
## 121     WiiU     Platform 0.623125000
## 122     X360     Platform 0.251666667
## 123       XB     Platform 0.134285714
## 124     XOne     Platform 0.110000000
## 125     2600       Puzzle 1.243636364
## 126      3DO       Puzzle 0.000000000
## 127      3DS       Puzzle 0.064500000
## 128       DS       Puzzle 0.148697479
## 129       GB       Puzzle 1.956666667
## 130      GBA       Puzzle 0.179512195
## 131       GC       Puzzle 0.226923077
## 132      N64       Puzzle 0.184166667
## 133      NES       Puzzle 0.652857143
## 134       PC       Puzzle 0.003600000
## 135       PS       Puzzle 0.165312500
## 136      PS2       Puzzle 0.157777778
## 137      PS3       Puzzle 0.130000000
## 138      PS4       Puzzle 0.000000000
## 139      PSP       Puzzle 0.064545455
## 140      PSV       Puzzle 0.026666667
## 141      SAT       Puzzle 0.000000000
## 142     SNES       Puzzle 0.000000000
## 143      Wii       Puzzle 0.168727273
## 144     WiiU       Puzzle 0.165000000
## 145     X360       Puzzle 0.088571429
## 146       XB       Puzzle 0.045714286
## 147     2600       Racing 0.456666667
## 148      3DS       Racing 0.550909091
## 149       DC       Racing 0.183333333
## 150       DS       Racing 0.310746269
## 151       GB       Racing 1.155000000
## 152      GBA       Racing 0.183281250
## 153       GC       Racing 0.236984127
## 154      GEN       Racing 0.000000000
## 155      N64       Racing 0.468070175
## 156      NES       Racing 1.160000000
## 157       PC       Racing 0.007333333
## 158       PS       Racing 0.354689655
## 159      PS2       Racing 0.350555556
## 160      PS3       Racing 0.259347826
## 161      PS4       Racing 0.145294118
## 162      PSP       Racing 0.230153846
## 163      PSV       Racing 0.081818182
## 164      SAT       Racing 0.026250000
## 165      SCD       Racing 0.000000000
## 166     SNES       Racing 0.545555556
## 167      Wii       Racing 0.335319149
## 168     WiiU       Racing 1.156666667
## 169     X360       Racing 0.315238095
## 170       XB       Racing 0.174634146
## 171     XOne       Racing 0.207368421
## 172      3DS Role-Playing 0.234651163
## 173       DC Role-Playing 0.000000000
## 174       DS Role-Playing 0.237300000
## 175       GB Role-Playing 1.367142857
## 176      GBA Role-Playing 0.387534247
## 177       GC Role-Playing 0.292962963
## 178      GEN Role-Playing 0.000000000
## 179      N64 Role-Playing 0.167500000
## 180      NES Role-Playing 0.103636364
## 181       PC Role-Playing 0.165480769
## 182     PCFX Role-Playing 0.000000000
## 183       PS Role-Playing 0.213711340
## 184      PS2 Role-Playing 0.175668449
## 185      PS3 Role-Playing 0.250840336
## 186      PS4 Role-Playing 0.175744681
## 187      PSP Role-Playing 0.059479167
## 188      PSV Role-Playing 0.035421687
## 189      SAT Role-Playing 0.000000000
## 190      SCD Role-Playing 0.000000000
## 191     SNES Role-Playing 0.045800000
## 192      Wii Role-Playing 0.164000000
## 193     WiiU Role-Playing 0.143333333
## 194       WS Role-Playing 0.000000000
## 195     X360 Role-Playing 0.587500000
## 196       XB Role-Playing 0.430000000
## 197     XOne Role-Playing 0.427692308
## 198     2600      Shooter 1.028333333
## 199      3DS      Shooter 0.094285714
## 200       DC      Shooter 0.000000000
## 201       DS      Shooter 0.157619048
## 202       GB      Shooter 0.400000000
## 203      GBA      Shooter 0.058750000
## 204       GC      Shooter 0.208541667
## 205      GEN      Shooter 0.000000000
## 206      N64      Shooter 0.581666667
## 207      NES      Shooter 4.147142857
## 208       PC      Shooter 0.124256757
## 209       PS      Shooter 0.220416667
## 210      PS2      Shooter 0.359562500
## 211      PS3      Shooter 0.524871795
## 212      PS4      Shooter 0.824117647
## 213      PSP      Shooter 0.277297297
## 214      PSV      Shooter 0.354000000
## 215      SAT      Shooter 0.000000000
## 216     SNES      Shooter 0.267000000
## 217     TG16      Shooter 0.000000000
## 218      Wii      Shooter 0.282878788
## 219     WiiU      Shooter 0.238000000
## 220     X360      Shooter 0.858226601
## 221       XB      Shooter 0.349696970
## 222     XOne      Shooter 0.963030303
## 223     2600   Simulation 0.420000000
## 224      3DO   Simulation 0.000000000
## 225      3DS   Simulation 0.249000000
## 226       DC   Simulation 0.000000000
## 227       DS   Simulation 0.240561404
## 228       GB   Simulation 0.000000000
## 229      GBA   Simulation 0.200555556
## 230       GC   Simulation 0.447500000
## 231      N64   Simulation 0.577000000
## 232       PC   Simulation 0.173391304
## 233       PS   Simulation 0.113166667
## 234      PS2   Simulation 0.215222222
## 235      PS3   Simulation 0.138709677
## 236      PS4   Simulation 0.030000000
## 237      PSP   Simulation 0.065517241
## 238      PSV   Simulation 0.003333333
## 239      SAT   Simulation 0.000000000
## 240     SNES   Simulation 0.154444444
## 241      Wii   Simulation 0.274712644
## 242     WiiU   Simulation 0.150000000
## 243     X360   Simulation 0.212500000
## 244       XB   Simulation 0.226250000
## 245     XOne   Simulation 0.093333333
## 246     2600       Sports 0.268333333
## 247      3DS       Sports 0.063846154
## 248       DC       Sports 0.214000000
## 249       DS       Sports 0.105945946
## 250       GB       Sports 0.404444444
## 251      GBA       Sports 0.117045455
## 252       GC       Sports 0.167000000
## 253      GEN       Sports 0.900000000
## 254      N64       Sports 0.275875000
## 255      NES       Sports 0.500000000
## 256       NG       Sports 0.000000000
## 257       PC       Sports 0.006938776
## 258       PS       Sports 0.288378378
## 259      PS2       Sports 0.335300000
## 260      PS3       Sports 0.284413146
## 261      PS4       Sports 0.423953488
## 262      PSP       Sports 0.129703704
## 263      PSV       Sports 0.060000000
## 264      SAT       Sports 0.000000000
## 265     SNES       Sports 0.042857143
## 266      Wii       Sports 0.581494253
## 267     WiiU       Sports 0.201250000
## 268     X360       Sports 0.407409091
## 269       XB       Sports 0.241294118
## 270     XOne       Sports 0.396111111
## 271      3DS     Strategy 0.052000000
## 272       DS     Strategy 0.112784810
## 273       GB     Strategy 0.212857143
## 274      GBA     Strategy 0.233888889
## 275       GC     Strategy 0.202727273
## 276      GEN     Strategy 0.000000000
## 277      N64     Strategy 0.515555556
## 278       PC     Strategy 0.103457447
## 279       PS     Strategy 0.094857143
## 280      PS2     Strategy 0.050281690
## 281      PS3     Strategy 0.077916667
## 282      PS4     Strategy 0.028000000
## 283      PSP     Strategy 0.044500000
## 284      PSV     Strategy 0.007142857
## 285      SAT     Strategy 0.000000000
## 286      SCD     Strategy 0.000000000
## 287     SNES     Strategy 0.020000000
## 288      Wii     Strategy 0.097600000
## 289     WiiU     Strategy 0.170000000
## 290       WS     Strategy 0.000000000
## 291     X360     Strategy 0.231785714
## 292       XB     Strategy 0.097619048
## 293     XOne     Strategy 0.086666667
aggregate(NA_Sales,by=list(Platform = Platform,Publisher = Publisher),mean)
##      Platform                              Publisher            x
## 1          DS                        10TACLE Studios 0.0300000000
## 2         PS2                        10TACLE Studios 0.0100000000
## 3          PC                             1C Company 0.0033333333
## 4        2600           20th Century Fox Video Games 0.3640000000
## 5          PC                                 2D Boy 0.0000000000
## 6          GC                                    3DO 0.0100000000
## 7         N64                                    3DO 0.3560000000
## 8          PS                                    3DO 0.2306250000
## 9         PS2                                    3DO 0.0723076923
## 10         XB                                    3DO 0.0600000000
## 11       X360                                49Games 0.0000000000
## 12        3DS                              505 Games 0.1666666667
## 13         DS                              505 Games 0.1924615385
## 14         PC                              505 Games 0.0150000000
## 15        PS2                              505 Games 0.0454545455
## 16        PS3                              505 Games 0.1280000000
## 17        PS4                              505 Games 0.0600000000
## 18        PSP                              505 Games 0.0940000000
## 19        PSV                              505 Games 0.0200000000
## 20        Wii                              505 Games 0.2946666667
## 21       WiiU                              505 Games 0.0000000000
## 22       X360                              505 Games 0.1966666667
## 23         XB                              505 Games 0.0400000000
## 24       XOne                              505 Games 0.0550000000
## 25        3DS                                    5pb 0.0000000000
## 26        PS2                                    5pb 0.0000000000
## 27        PS3                                    5pb 0.0000000000
## 28        PS4                                    5pb 0.0000000000
## 29        PSP                                    5pb 0.0000000000
## 30        PSV                                    5pb 0.0000000000
## 31       X360                                    5pb 0.0013333333
## 32       XOne                                    5pb 0.0000000000
## 33         DS                               7G//AMES 0.0000000000
## 34        Wii                               7G//AMES 0.0000000000
## 35         PS                             989 Sports 0.2100000000
## 36         PS                            989 Studios 0.6592857143
## 37        PS3                               Abylight 0.0700000000
## 38         DC                  Acclaim Entertainment 0.0000000000
## 39        GBA                  Acclaim Entertainment 0.0740000000
## 40         GC                  Acclaim Entertainment 0.1137500000
## 41        GEN                  Acclaim Entertainment 0.9900000000
## 42        N64                  Acclaim Entertainment 0.3435483871
## 43         PC                  Acclaim Entertainment 0.0100000000
## 44         PS                  Acclaim Entertainment 0.2253703704
## 45        PS2                  Acclaim Entertainment 0.2215151515
## 46        SAT                  Acclaim Entertainment 0.0000000000
## 47       SNES                  Acclaim Entertainment 1.1825000000
## 48         XB                  Acclaim Entertainment 0.1157142857
## 49         PS                               Accolade 0.4166666667
## 50        3DS                            Ackkstudios 0.0000000000
## 51         DS                            Ackkstudios 0.0700000000
## 52        PS3                            Ackkstudios 0.0000000000
## 53        PSP                            Ackkstudios 0.0000000000
## 54        Wii                            Ackkstudios 0.0300000000
## 55        3DS                                Acquire 0.0000000000
## 56        PS2                                Acquire 0.0000000000
## 57        PS3                                Acquire 0.0000000000
## 58        PS4                                Acquire 0.0800000000
## 59        PSP                                Acquire 0.0085714286
## 60       2600                             Activision 0.6489285714
## 61        3DS                             Activision 0.1092592593
## 62         DC                             Activision 0.0000000000
## 63         DS                             Activision 0.2748648649
## 64         GB                             Activision 0.9000000000
## 65        GBA                             Activision 0.2208163265
## 66         GC                             Activision 0.2318181818
## 67        N64                             Activision 0.3976923077
## 68         PC                             Activision 0.3075000000
## 69         PS                             Activision 0.5459375000
## 70        PS2                             Activision 0.4776699029
## 71        PS3                             Activision 0.5300925926
## 72        PS4                             Activision 0.7795238095
## 73        PSP                             Activision 0.1635294118
## 74        PSV                             Activision 0.2933333333
## 75        Wii                             Activision 0.3765765766
## 76       WiiU                             Activision 0.1377777778
## 77       X360                             Activision 0.7806716418
## 78         XB                             Activision 0.3804918033
## 79       XOne                             Activision 0.7465000000
## 80         PC                    Activision Blizzard 0.0800000000
## 81        GBA                       Activision Value 0.0700000000
## 82         GC                       Activision Value 0.0400000000
## 83         PS                       Activision Value 0.1200000000
## 84        PS2                       Activision Value 0.1483333333
## 85        PS3                       Activision Value 0.2125000000
## 86        PSP                       Activision Value 0.0500000000
## 87        Wii                       Activision Value 0.4800000000
## 88       X360                       Activision Value 0.1214285714
## 89         XB                       Activision Value 0.1050000000
## 90         PS                       Adeline Software 0.1000000000
## 91         PC                               Aerosoft 0.0050000000
## 92        3DS                 Agatsuma Entertainment 0.0800000000
## 93        GBA                 Agatsuma Entertainment 0.0600000000
## 94         PS                                 Agetec 0.0266666667
## 95        PS2                                 Agetec 0.1675000000
## 96        PSP                                 Agetec 0.0300000000
## 97        3DS                            Aksys Games 0.0400000000
## 98         DS                            Aksys Games 0.0200000000
## 99        PS3                            Aksys Games 0.0300000000
## 100       PS4                            Aksys Games 0.0000000000
## 101       PSV                            Aksys Games 0.0250000000
## 102        PC                   Alawar Entertainment 0.0000000000
## 103       3DS                              Alchemist 0.0000000000
## 104        DS                              Alchemist 0.0000000000
## 105       PS2                              Alchemist 0.0453846154
## 106       PS3                              Alchemist 0.0000000000
## 107       PSP                              Alchemist 0.0000000000
## 108      X360                              Alchemist 0.0000000000
## 109        PC                   Alternative Software 0.0000000000
## 110       PS3                   Alternative Software 0.0000000000
## 111       PS4                   Alternative Software 0.0000000000
## 112       Wii                   Alternative Software 0.0000000000
## 113      X360                   Alternative Software 0.0000000000
## 114      XOne                   Alternative Software 0.0000000000
## 115       GBA                                 Altron 0.0500000000
## 116        DS                                 Alvion 0.0000000000
## 117        PS                     American Softworks 0.1300000000
## 118      SNES                          Angel Studios 0.0000000000
## 119      2600                        Answer Software 0.4600000000
## 120        DS                         AQ Interactive 0.1400000000
## 121       PS2                         AQ Interactive 0.0300000000
## 122       PSP                         AQ Interactive 0.0000000000
## 123        PS                              Aqua Plus 0.0000000000
## 124       PS2                              Aqua Plus 0.0000000000
## 125       PS3                              Aqua Plus 0.0062500000
## 126       PS4                              Aqua Plus 0.0000000000
## 127       PSP                              Aqua Plus 0.0000000000
## 128       PSV                              Aqua Plus 0.0000000000
## 129        PS                                  Aques 0.0000000000
## 130       3DS                       Arc System Works 0.0000000000
## 131        DS                       Arc System Works 0.0322222222
## 132       PS3                       Arc System Works 0.0500000000
## 133       PS4                       Arc System Works 0.1000000000
## 134       PSP                       Arc System Works 0.0000000000
## 135       PSV                       Arc System Works 0.0280000000
## 136       GEN                    Arena Entertainment 1.8500000000
## 137       PS2                                   Aria 0.0000000000
## 138        DS                                  Arika 0.0000000000
## 139       PS2                                  Arika 0.0200000000
## 140       3DS                                ArtDink 0.0000000000
## 141        DS                                ArtDink 0.0000000000
## 142        PS                                ArtDink 0.0175000000
## 143       PS2                                ArtDink 0.0000000000
## 144       PSP                                ArtDink 0.0000000000
## 145        PS                             Aruze Corp 0.0000000000
## 146        PS                              ASC Games 0.3733333333
## 147        PC                  Ascaron Entertainment 0.0000000000
## 148        PC             Ascaron Entertainment GmbH 0.0000000000
## 149        GB                    ASCII Entertainment 0.0000000000
## 150       N64                    ASCII Entertainment 0.0600000000
## 151        PS                    ASCII Entertainment 0.0800000000
## 152       PS2                    ASCII Entertainment 0.0000000000
## 153       SAT                    ASCII Entertainment 0.0000000000
## 154      SNES                    ASCII Entertainment 0.0000000000
## 155        DS                      ASCII Media Works 0.0000000000
## 156       PS2                      ASCII Media Works 0.0000000000
## 157       PSP                      ASCII Media Works 0.0000000000
## 158       PSV                      ASCII Media Works 0.0000000000
## 159       PSP                                 Asgard 0.0000000000
## 160       PSV                                 Asgard 0.0000000000
## 161       SAT                                    ASK 0.0000000000
## 162        PS                Asmik Ace Entertainment 0.0000000000
## 163       PS2                Asmik Ace Entertainment 0.0000000000
## 164      SNES                             Asmik Corp 0.0000000000
## 165        DS                                  Aspyr 0.0950000000
## 166       GBA                                  Aspyr 0.0100000000
## 167        PC                                  Aspyr 0.0050000000
## 168      X360                                  Aspyr 0.1500000000
## 169        DS                               Astragon 0.0575000000
## 170        PC                               Astragon 0.0050000000
## 171       3DS                   Asylum Entertainment 0.0000000000
## 172        DS                   Asylum Entertainment 0.0133333333
## 173       Wii                   Asylum Entertainment 0.0250000000
## 174      2600                                  Atari 0.8646296296
## 175       3DS                                  Atari 0.0400000000
## 176        DS                                  Atari 0.1236111111
## 177       GBA                                  Atari 0.2072727273
## 178        GC                                  Atari 0.2611111111
## 179        PC                                  Atari 0.0636000000
## 180        PS                                  Atari 0.4072727273
## 181       PS2                                  Atari 0.3174285714
## 182       PS3                                  Atari 0.1433333333
## 183       PSP                                  Atari 0.0894117647
## 184       Wii                                  Atari 0.2137500000
## 185      X360                                  Atari 0.1915000000
## 186        XB                                  Atari 0.1462162162
## 187       N64                                 Athena 0.0200000000
## 188       PS2                                 Athena 0.0000000000
## 189       3DS                                  Atlus 0.0860000000
## 190        DS                                  Atlus 0.1000000000
## 191       GBA                                  Atlus 0.0300000000
## 192        GC                                  Atlus 0.0200000000
## 193       N64                                  Atlus 0.1250000000
## 194        PS                                  Atlus 0.0225000000
## 195       PS2                                  Atlus 0.0783333333
## 196       PS3                                  Atlus 0.1500000000
## 197       PS4                                  Atlus 0.0000000000
## 198       PSP                                  Atlus 0.0410000000
## 199       PSV                                  Atlus 0.2650000000
## 200       SAT                                  Atlus 0.0000000000
## 201      SNES                                  Atlus 0.0000000000
## 202      WiiU                                  Atlus 0.0000000000
## 203      X360                                  Atlus 0.0700000000
## 204        XB                                  Atlus 0.0100000000
## 205      2600                     Avalon Interactive 0.1500000000
## 206        PS                     Avalon Interactive 0.0600000000
## 207       PS2                     Avalon Interactive 0.0300000000
## 208        XB                     Avalon Interactive 0.0350000000
## 209        DS                              Avanquest 0.0525000000
## 210        PC                              Avanquest 0.0025000000
## 211       PS4                              Avanquest 0.0000000000
## 212       Wii                              Avanquest 0.0675000000
## 213       3DS                     Avanquest Software 0.0000000000
## 214        DS                     Avanquest Software 0.0000000000
## 215        PC                     Avanquest Software 0.0000000000
## 216       PS3                     Avanquest Software 0.4000000000
## 217      X360                     Avanquest Software 0.5500000000
## 218        PS                                  Axela 0.0000000000
## 219       GBA                     BAM! Entertainment 0.1128571429
## 220        GC                     BAM! Entertainment 0.0566666667
## 221       N64                     BAM! Entertainment 0.1300000000
## 222        PS                     BAM! Entertainment 0.1000000000
## 223       PS2                     BAM! Entertainment 0.0887500000
## 224        XB                     BAM! Entertainment 0.0500000000
## 225        DS                              Banpresto 0.0116666667
## 226        GB                              Banpresto 0.0000000000
## 227       GBA                              Banpresto 0.0090909091
## 228       N64                              Banpresto 0.0000000000
## 229        PS                              Banpresto 0.0040000000
## 230       PS2                              Banpresto 0.0033333333
## 231       PSP                              Banpresto 0.0000000000
## 232       SAT                              Banpresto 0.0000000000
## 233      SNES                              Banpresto 0.0000000000
## 234      X360                              Banpresto 0.0650000000
## 235        DS                                Benesse 0.0016666667
## 236        PS                               Berkeley 0.0200000000
## 237        PC                     Bethesda Softworks 0.2220000000
## 238       PS2                     Bethesda Softworks 0.1616666667
## 239       PS3                     Bethesda Softworks 0.6992307692
## 240       PS4                     Bethesda Softworks 0.6914285714
## 241       Wii                     Bethesda Softworks 0.3250000000
## 242      X360                     Bethesda Softworks 1.0340000000
## 243        XB                     Bethesda Softworks 0.0600000000
## 244      XOne                     Bethesda Softworks 0.6342857143
## 245       3DS                    Big Ben Interactive 0.0000000000
## 246        DS                    Big Ben Interactive 0.0300000000
## 247       PS2                    Big Ben Interactive 0.0400000000
## 248       Wii                    Big Ben Interactive 0.2266666667
## 249        PC                         Big Fish Games 0.0000000000
## 250       PS3                     Bigben Interactive 0.0133333333
## 251       PS4                     Bigben Interactive 0.0100000000
## 252       PSV                     Bigben Interactive 0.0000000000
## 253      X360                     Bigben Interactive 0.0000000000
## 254      XOne                     Bigben Interactive 0.0150000000
## 255        PC                      bitComposer Games 0.0000000000
## 256       PS3                      bitComposer Games 0.1000000000
## 257      X360                      bitComposer Games 0.0600000000
## 258        DS                       Black Bean Games 0.0750000000
## 259        PC                       Black Bean Games 0.0000000000
## 260       PS2                       Black Bean Games 0.0166666667
## 261       PS3                       Black Bean Games 0.0390000000
## 262       PSP                       Black Bean Games 0.0200000000
## 263       Wii                       Black Bean Games 0.0683333333
## 264      X360                       Black Bean Games 0.0266666667
## 265       PS2                      Black Label Games 0.5900000000
## 266        DS               Blast! Entertainment Ltd 0.0433333333
## 267       PS2               Blast! Entertainment Ltd 0.0800000000
## 268       Wii               Blast! Entertainment Ltd 0.0100000000
## 269        PC                              Blue Byte 0.0000000000
## 270        PS          BMG Interactive Entertainment 0.0957142857
## 271        PC                    Bohemia Interactive 0.0000000000
## 272      2600                                   Bomb 0.2100000000
## 273       PSP                               Boost On 0.0000000000
## 274       NES                                    BPS 0.0000000000
## 275      SNES                                    BPS 0.0000000000
## 276        DS                    Brash Entertainment 0.1000000000
## 277       PS2                    Brash Entertainment 0.0900000000
## 278       Wii                    Brash Entertainment 0.0600000000
## 279      X360                    Brash Entertainment 0.1000000000
## 280        DS                               Broccoli 0.0000000000
## 281       PS2                               Broccoli 0.0000000000
## 282       PSP                               Broccoli 0.0000000000
## 283       PSV                               Broccoli 0.0000000000
## 284       PSP                              BushiRoad 0.0000000000
## 285       3DS                                 Capcom 0.0926666667
## 286        DC                                 Capcom 0.0000000000
## 287        DS                                 Capcom 0.1688000000
## 288        GB                                 Capcom 0.2733333333
## 289       GBA                                 Capcom 0.1063636364
## 290        GC                                 Capcom 0.2036842105
## 291       GEN                                 Capcom 0.0000000000
## 292       N64                                 Capcom 0.1400000000
## 293       NES                                 Capcom 0.6183333333
## 294        PC                                 Capcom 0.0150000000
## 295        PS                                 Capcom 0.1955555556
## 296       PS2                                 Capcom 0.2240983607
## 297       PS3                                 Capcom 0.2511904762
## 298       PS4                                 Capcom 0.0537500000
## 299       PSP                                 Capcom 0.1042307692
## 300       PSV                                 Capcom 0.1166666667
## 301       SAT                                 Capcom 0.0000000000
## 302      SNES                                 Capcom 0.6383333333
## 303       Wii                                 Capcom 0.2461111111
## 304      WiiU                                 Capcom 0.0600000000
## 305      X360                                 Capcom 0.3740000000
## 306        XB                                 Capcom 0.0593750000
## 307      XOne                                 Capcom 0.0480000000
## 308        DS                                   Cave 0.1000000000
## 309      X360                                   Cave 0.0044444444
## 310      2600                        CBS Electronics 0.2900000000
## 311        PC                                    CCP 0.0000000000
## 312        DS             CDV Software Entertainment 0.0066666667
## 313        PC             CDV Software Entertainment 0.0000000000
## 314       Wii             CDV Software Entertainment 0.0900000000
## 315       3DS                               ChunSoft 0.0000000000
## 316        DS                               ChunSoft 0.1233333333
## 317        GB                               ChunSoft 0.0000000000
## 318       N64                               ChunSoft 0.0000000000
## 319        PS                               ChunSoft 0.0000000000
## 320       PS2                               ChunSoft 0.0000000000
## 321       PSP                               ChunSoft 0.0000000000
## 322       PSV                               ChunSoft 0.0000000000
## 323       SAT                               ChunSoft 0.0000000000
## 324      SNES                               ChunSoft 0.0000000000
## 325      X360                               ChunSoft 0.0000000000
## 326        DS                       City Interactive 0.0655555556
## 327        PC                       City Interactive 0.0066666667
## 328       PS3                       City Interactive 0.1066666667
## 329       Wii                       City Interactive 0.0850000000
## 330      X360                       City Interactive 0.3000000000
## 331       PS3       Cloud Imperium Games Corporation 0.0400000000
## 332      X360       Cloud Imperium Games Corporation 0.0400000000
## 333        PS                         Coconuts Japan 0.0100000000
## 334      SNES                         Coconuts Japan 0.0000000000
## 335       3DS                            Codemasters 0.0700000000
## 336        DS                            Codemasters 0.0700000000
## 337       GBA                            Codemasters 0.0850000000
## 338        GC                            Codemasters 0.0400000000
## 339       N64                            Codemasters 0.1100000000
## 340        PC                            Codemasters 0.0011111111
## 341        PS                            Codemasters 0.0755555556
## 342       PS2                            Codemasters 0.1111764706
## 343       PS3                            Codemasters 0.1130769231
## 344       PS4                            Codemasters 0.0433333333
## 345       PSP                            Codemasters 0.0266666667
## 346       PSV                            Codemasters 0.0300000000
## 347       Wii                            Codemasters 0.0800000000
## 348      X360                            Codemasters 0.1425925926
## 349        XB                            Codemasters 0.0486666667
## 350      XOne                            Codemasters 0.0400000000
## 351        PC                     Codemasters Online 0.0000000000
## 352        DS                      CokeM Interactive 0.2900000000
## 353      2600                                 Coleco 0.5740000000
## 354       PS2                                Comfort 0.0000000000
## 355       PSP                                Comfort 0.0000000000
## 356        DS                               Commseed 0.0000000000
## 357       N64                                Compile 0.0000000000
## 358        PS                                Compile 0.0000000000
## 359       SAT                                Compile 0.0000000000
## 360      SNES                                Compile 0.0000000000
## 361       PS3                          Compile Heart 0.0233333333
## 362       PS4                          Compile Heart 0.0000000000
## 363       PSP                          Compile Heart 0.0000000000
## 364       PSV                          Compile Heart 0.0112500000
## 365      X360                          Compile Heart 0.0900000000
## 366        DS               Conspiracy Entertainment 0.0433333333
## 367       GBA               Conspiracy Entertainment 0.0150000000
## 368        PS               Conspiracy Entertainment 0.1500000000
## 369       PS2               Conspiracy Entertainment 0.0400000000
## 370       PS3               Conspiracy Entertainment 0.0400000000
## 371       PSP               Conspiracy Entertainment 0.0400000000
## 372       Wii               Conspiracy Entertainment 0.0400000000
## 373      X360               Conspiracy Entertainment 0.0400000000
## 374        PS                       Core Design Ltd. 0.0800000000
## 375      2600                           CPG Products 0.5000000000
## 376       3DS                    Crave Entertainment 0.0900000000
## 377        DS                    Crave Entertainment 0.0720000000
## 378       GBA                    Crave Entertainment 0.0614285714
## 379        GC                    Crave Entertainment 0.0375000000
## 380       N64                    Crave Entertainment 0.1060000000
## 381        PS                    Crave Entertainment 0.1320000000
## 382       PS2                    Crave Entertainment 0.1300000000
## 383       PS3                    Crave Entertainment 0.1133333333
## 384       PSP                    Crave Entertainment 0.1600000000
## 385       Wii                    Crave Entertainment 0.0969230769
## 386      X360                    Crave Entertainment 0.0875000000
## 387        XB                    Crave Entertainment 0.0877777778
## 388        DS                          Creative Core 0.0000000000
## 389        PC                            Crimson Cow 0.0000000000
## 390        PS                       Crystal Dynamics 0.1900000000
## 391        PS                                CTO SpA 0.2500000000
## 392        DS                          Culture Brain 0.0000000000
## 393      SNES                          Culture Brain 0.0000000000
## 394        PS                     Culture Publishers 0.0500000000
## 395       PS2                             CyberFront 0.0000000000
## 396       PSP                             CyberFront 0.0012500000
## 397       PSV                             CyberFront 0.0000000000
## 398      X360                             CyberFront 0.0000000000
## 399       PSV                                Cygames 0.0000000000
## 400       3DS                            D3Publisher 0.0314285714
## 401        DS                            D3Publisher 0.0868750000
## 402       GBA                            D3Publisher 0.0250000000
## 403        GC                            D3Publisher 0.1200000000
## 404        PS                            D3Publisher 0.0975000000
## 405       PS2                            D3Publisher 0.0250000000
## 406       PS3                            D3Publisher 0.0442857143
## 407       PS4                            D3Publisher 0.0000000000
## 408       PSP                            D3Publisher 0.0253125000
## 409       PSV                            D3Publisher 0.0022222222
## 410       Wii                            D3Publisher 0.1559090909
## 411      WiiU                            D3Publisher 0.0100000000
## 412      X360                            D3Publisher 0.0662500000
## 413        PC                               Daedalic 0.0000000000
## 414        PC                 Daedalic Entertainment 0.0000000000
## 415       PS2                                  Daito 0.0000000000
## 416       PSP                                  Daito 0.0000000000
## 417      2600                               Data Age 0.3300000000
## 418       Wii                Data Design Interactive 0.0833333333
## 419       SAT                              Data East 0.0000000000
## 420      SNES                              Data East 0.0000000000
## 421       PS2                         Datam Polystar 0.0000000000
## 422       3DS                            Deep Silver 0.0500000000
## 423        DS                            Deep Silver 0.0719047619
## 424        PC                            Deep Silver 0.0152380952
## 425       PS3                            Deep Silver 0.1560000000
## 426       PS4                            Deep Silver 0.0570000000
## 427       PSP                            Deep Silver 0.0566666667
## 428       Wii                            Deep Silver 0.1253846154
## 429      WiiU                            Deep Silver 0.0100000000
## 430      X360                            Deep Silver 0.2072727273
## 431        XB                            Deep Silver 0.1233333333
## 432      XOne                            Deep Silver 0.0616666667
## 433        DS              Destination Software, Inc 0.1020000000
## 434       GBA              Destination Software, Inc 0.0342857143
## 435        DS                              Destineer 0.0822727273
## 436        PC                              Destineer 0.0100000000
## 437       PS2                              Destineer 0.0100000000
## 438       PSP                              Destineer 0.0400000000
## 439       Wii                              Destineer 0.1131578947
## 440       Wii                            Detn8 Games 0.2100000000
## 441        PC                       Devolver Digital 0.0000000000
## 442       PS4                       Devolver Digital 0.0000000000
## 443        DS                        DHM Interactive 0.1100000000
## 444       PSP                        DHM Interactive 0.0250000000
## 445       PS2                               DigiCube 0.0000000000
## 446       3DS             Disney Interactive Studios 0.1914285714
## 447        DS             Disney Interactive Studios 0.3847457627
## 448       GBA             Disney Interactive Studios 0.2752631579
## 449        GC             Disney Interactive Studios 0.1533333333
## 450        PC             Disney Interactive Studios 0.5050000000
## 451       PS2             Disney Interactive Studios 0.1788235294
## 452       PS3             Disney Interactive Studios 0.2381818182
## 453       PS4             Disney Interactive Studios 0.2350000000
## 454       PSP             Disney Interactive Studios 0.1390000000
## 455       PSV             Disney Interactive Studios 0.0250000000
## 456       Wii             Disney Interactive Studios 0.5133333333
## 457      WiiU             Disney Interactive Studios 0.2016666667
## 458      X360             Disney Interactive Studios 0.3471428571
## 459        XB             Disney Interactive Studios 0.0875000000
## 460      XOne             Disney Interactive Studios 0.1766666667
## 461       PSP                                 Dorart 0.0000000000
## 462       PSV                        dramatic create 0.0000000000
## 463        DS               DreamCatcher Interactive 0.0620000000
## 464        PC               DreamCatcher Interactive 0.0000000000
## 465       PS2               DreamCatcher Interactive 0.0300000000
## 466        XB               DreamCatcher Interactive 0.0233333333
## 467        PS                 DreamWorks Interactive 0.0700000000
## 468        DS                              DSI Games 0.0340000000
## 469       GBA                              DSI Games 0.1200000000
## 470       3DS                      DTP Entertainment 0.0000000000
## 471        DS                      DTP Entertainment 0.0533333333
## 472       GBA                      DTP Entertainment 0.0850000000
## 473        PC                      DTP Entertainment 0.0023076923
## 474       PS2                      DTP Entertainment 0.0000000000
## 475       PS3                      DTP Entertainment 0.0350000000
## 476       Wii                      DTP Entertainment 0.0414285714
## 477      X360                      DTP Entertainment 0.0728571429
## 478       PS4               Dusenberry Martin Racing 0.0300000000
## 479      XOne               Dusenberry Martin Racing 0.0200000000
## 480       PS3                               EA Games 0.0700000000
## 481        DS                       Easy Interactive 0.0000000000
## 482       PS2                                  Ecole 0.0000000000
## 483       PSP                                   Edia 0.0000000000
## 484        DC                      Eidos Interactive 0.2050000000
## 485        DS                      Eidos Interactive 0.0985714286
## 486        GB                      Eidos Interactive 0.0000000000
## 487       GBA                      Eidos Interactive 0.4200000000
## 488        GC                      Eidos Interactive 0.2250000000
## 489        PC                      Eidos Interactive 0.1028571429
## 490        PS                      Eidos Interactive 0.6125000000
## 491       PS2                      Eidos Interactive 0.2179545455
## 492       PS3                      Eidos Interactive 0.5385714286
## 493       PSP                      Eidos Interactive 0.0971428571
## 494       Wii                      Eidos Interactive 0.1183333333
## 495      X360                      Eidos Interactive 0.3285714286
## 496        XB                      Eidos Interactive 0.1658333333
## 497       3DS                        Electronic Arts 0.1400000000
## 498        DS                        Electronic Arts 0.2360759494
## 499        GB                        Electronic Arts 0.9400000000
## 500       GBA                        Electronic Arts 0.2412500000
## 501        GC                        Electronic Arts 0.2335555556
## 502       N64                        Electronic Arts 0.4408695652
## 503        PC                        Electronic Arts 0.1951351351
## 504        PS                        Electronic Arts 0.5100000000
## 505       PS2                        Electronic Arts 0.6973366834
## 506       PS3                        Electronic Arts 0.4905633803
## 507       PS4                        Electronic Arts 0.6796153846
## 508       PSP                        Electronic Arts 0.2602777778
## 509       PSV                        Electronic Arts 0.1816666667
## 510       SAT                        Electronic Arts 0.0000000000
## 511       Wii                        Electronic Arts 0.3971111111
## 512      WiiU                        Electronic Arts 0.1700000000
## 513      X360                        Electronic Arts 0.6559880240
## 514        XB                        Electronic Arts 0.3443089431
## 515      XOne                        Electronic Arts 0.6111111111
## 516        PS                 Electronic Arts Victor 0.1150000000
## 517       SAT                                    Elf 0.0000000000
## 518        PS                                  Elite 0.0400000000
## 519        DS                     Empire Interactive 0.1233333333
## 520       GBA                     Empire Interactive 0.0300000000
## 521        GC                     Empire Interactive 0.0500000000
## 522        PC                     Empire Interactive 0.0000000000
## 523        PS                     Empire Interactive 0.1800000000
## 524       PS2                     Empire Interactive 0.1737500000
## 525       PSP                     Empire Interactive 0.0933333333
## 526      X360                     Empire Interactive 0.0700000000
## 527        XB                     Empire Interactive 0.0790909091
## 528        GC                                 Encore 0.0100000000
## 529        PC                                 Encore 0.0000000000
## 530        PS                                 Encore 0.0200000000
## 531        XB                                 Encore 0.0100000000
## 532        GB                       Enix Corporation 0.0000000000
## 533       GBA                       Enix Corporation 0.0000000000
## 534       N64                       Enix Corporation 0.0000000000
## 535       NES                       Enix Corporation 0.1100000000
## 536        PS                       Enix Corporation 0.0550000000
## 537       PS2                       Enix Corporation 0.0166666667
## 538      SNES                       Enix Corporation 0.0000000000
## 539        DS                      Enjoy Gaming ltd. 0.0900000000
## 540        DS                             Enterbrain 0.0000000000
## 541       GBA                             Enterbrain 0.0000000000
## 542        PS                             Enterbrain 0.0000000000
## 543       PS2                             Enterbrain 0.0133333333
## 544       PSP                             Enterbrain 0.0000000000
## 545        PS              EON Digital Entertainment 0.0100000000
## 546       PS4                             Epic Games 0.0100000000
## 547       N64                                  Epoch 0.0000000000
## 548      SNES                                  Epoch 0.0000000000
## 549        DS                                 Ertain 0.0500000000
## 550       GBA                                    ESP 0.0000000000
## 551        PS                                    ESP 0.0300000000
## 552       SAT                                    ESP 0.0000000000
## 553       PS2                        Essential Games 0.0033333333
## 554        PS                        Evolution Games 0.0000000000
## 555        PC                          Evolved Games 0.0100000000
## 556       PS2                          Evolved Games 0.0200000000
## 557       PS3                          Evolved Games 0.0500000000
## 558      X360                          Evolved Games 0.0700000000
## 559        XB                          Evolved Games 0.0100000000
## 560       3DS                   Excalibur Publishing 0.0000000000
## 561        PC                   Excalibur Publishing 0.0000000000
## 562       PSV                        Experience Inc. 0.0000000000
## 563       3DS            Extreme Entertainment Group 0.0200000000
## 564       PS3                     Falcom Corporation 0.0000000000
## 565       PSP                     Falcom Corporation 0.0233333333
## 566       PSV                     Falcom Corporation 0.0000000000
## 567       PS3                                 Fields 0.0000000000
## 568       GBA                       Flashpoint Games 0.0300000000
## 569       Wii                       Flashpoint Games 0.0400000000
## 570       PS2                            Flight-Plan 0.0000000000
## 571        DS                 Focus Home Interactive 0.0480000000
## 572        PC                 Focus Home Interactive 0.0039285714
## 573       PS3                 Focus Home Interactive 0.0360000000
## 574       PS4                 Focus Home Interactive 0.0416666667
## 575       PSV                 Focus Home Interactive 0.0100000000
## 576       Wii                 Focus Home Interactive 0.0500000000
## 577      X360                 Focus Home Interactive 0.0937500000
## 578      XOne                 Focus Home Interactive 0.0266666667
## 579        PC                       Focus Multimedia 0.0000000000
## 580       PSP                                 fonfun 0.0000000000
## 581        DS                    Foreign Media Games 0.0300000000
## 582        DC                              Fortyfive 0.0000000000
## 583       N64                        Fox Interactive 0.2000000000
## 584        PS                        Fox Interactive 0.5085714286
## 585        DS                          From Software 0.0300000000
## 586        PS                          From Software 0.0416666667
## 587       PS2                          From Software 0.0200000000
## 588       PS3                          From Software 0.0000000000
## 589       PSP                          From Software 0.0020000000
## 590        XB                          From Software 0.0400000000
## 591        PS                                   Fuji 0.0000000000
## 592       3DS                           Funbox Media 0.0400000000
## 593       PS3                           Funbox Media 0.0400000000
## 594       PSV                           Funbox Media 0.0000000000
## 595       Wii                           Funbox Media 0.2950000000
## 596        PC                                 Funcom 0.0350000000
## 597        PS                                FunSoft 0.0700000000
## 598        DS                                 Funsta 0.0500000000
## 599       PSP                                 Funsta 0.0200000000
## 600       Wii                                 Funsta 0.0100000000
## 601       3DS                                  FuRyu 0.0078571429
## 602        DS                                  FuRyu 0.0000000000
## 603       PSP                                  FuRyu 0.0000000000
## 604       PSV                                  FuRyu 0.0000000000
## 605       PS4                      FuRyu Corporation 0.0200000000
## 606      X360                                  G.Rev 0.0000000000
## 607       SAT                                   Gaga 0.0000000000
## 608        PS                 Gainax Network Systems 0.0000000000
## 609        DS                                 Gakken 0.0000000000
## 610       GEN                              Game Arts 0.0000000000
## 611        DS                           Game Factory 0.1222222222
## 612       GBA                           Game Factory 0.0500000000
## 613       PS2                           Game Factory 0.0200000000
## 614       PSP                           Game Factory 0.0300000000
## 615       Wii                           Game Factory 0.1520000000
## 616        DS                              Game Life 0.0650000000
## 617       PS3                             Gamebridge 0.1800000000
## 618      X360                             Gamebridge 0.1200000000
## 619        DS                               Gamecock 0.0600000000
## 620        PC                               Gamecock 0.0000000000
## 621       PS3                               Gamecock 0.0500000000
## 622      X360                               Gamecock 0.0500000000
## 623        DS                               Gameloft 0.1000000000
## 624        DS                 GameMill Entertainment 0.1020000000
## 625       Wii                 GameMill Entertainment 0.3050000000
## 626      X360                 GameMill Entertainment 0.1600000000
## 627       N64                                GameTek 0.0800000000
## 628        PC                Gathering of Developers 0.0000000000
## 629       PS2                Gathering of Developers 0.1066666667
## 630        XB                Gathering of Developers 0.0966666667
## 631        PS                  General Entertainment 0.0000000000
## 632       3DS                                  Genki 0.0000000000
## 633        DC                                  Genki 0.0000000000
## 634        DS                                  Genki 0.0000000000
## 635       PS2                                  Genki 0.2200000000
## 636       PS3                                  Genki 0.0000000000
## 637       PSP                                  Genki 0.0000000000
## 638        XB                                  Genki 0.0500000000
## 639        DS                            Genterprise 0.0000000000
## 640       3DS                             Ghostlight 0.2800000000
## 641        DS                             Ghostlight 0.0660000000
## 642       PS2                             Ghostlight 0.0600000000
## 643       PS3                             Ghostlight 0.0450000000
## 644       PSP                             Ghostlight 0.1400000000
## 645       Wii                             Ghostlight 0.0000000000
## 646       PSV                                   Giga 0.0000000000
## 647       PSP                                 Giza10 0.0000000000
## 648       SAT                                  Glams 0.0000000000
## 649        DS                 Global A Entertainment 0.0200000000
## 650       PSP                 Global A Entertainment 0.0450000000
## 651       GBA                            Global Star 0.0966666667
## 652        GC                            Global Star 0.0766666667
## 653       PS2                            Global Star 0.1871428571
## 654        XB                            Global Star 0.1175000000
## 655       PS2                            GN Software 0.0000000000
## 656       PSP                            GN Software 0.0000000000
## 657        PC                                    GOA 0.0000000000
## 658       GBA                           Gotham Games 0.4400000000
## 659        GC                           Gotham Games 0.0400000000
## 660        PS                           Gotham Games 0.2300000000
## 661       PS2                           Gotham Games 0.4666666667
## 662        XB                           Gotham Games 0.1600000000
## 663        DS                               Graffiti 0.0400000000
## 664       PSP                               Graffiti 0.0500000000
## 665       Wii                               Graffiti 0.0950000000
## 666       PSP                       Grand Prix Games 0.0000000000
## 667        PC                 Graphsim Entertainment 0.0000000000
## 668       N64                Gremlin Interactive Ltd 0.1600000000
## 669        PS                Gremlin Interactive Ltd 0.0625000000
## 670      X360                  Griffin International 0.0800000000
## 671        XB                           Groove Games 0.0350000000
## 672        DS                                    GSP 0.0742857143
## 673        PC                                    GSP 0.0000000000
## 674       Wii                                    GSP 0.1200000000
## 675       N64                         GT Interactive 0.2650000000
## 676        PS                         GT Interactive 0.4000000000
## 677       3DS                                 GungHo 0.0000000000
## 678        DS                                 GungHo 0.0575000000
## 679       PS3                                 GungHo 0.0300000000
## 680       PSP                                 GungHo 0.0933333333
## 681       PSV                                 GungHo 0.1000000000
## 682        DS                                   Gust 0.0400000000
## 683        PS                                   Gust 0.0000000000
## 684       PS2                                   Gust 0.0233333333
## 685       PSP                                   Gust 0.0000000000
## 686       PSV                                   Gust 0.0000000000
## 687       PS2                              Hackberry 0.0000000000
## 688       NES                         HAL Laboratory 0.0600000000
## 689        PS                    Hamster Corporation 0.1600000000
## 690       PS2                    Hamster Corporation 0.0000000000
## 691       3DS                               Happinet 0.0000000000
## 692       PS4                 Harmonix Music Systems 0.2500000000
## 693      XOne                 Harmonix Music Systems 0.3500000000
## 694       GBA                     Hasbro Interactive 0.0100000000
## 695       N64                     Hasbro Interactive 0.4450000000
## 696        PC                     Hasbro Interactive 1.4900000000
## 697        PS                     Hasbro Interactive 0.7166666667
## 698        PC                      Havas Interactive 0.0100000000
## 699        PC                           Headup Games 0.0000000000
## 700        PS                           Hearty Robin 0.0000000000
## 701        PS                                   Hect 0.0000000000
## 702      SNES                                   Hect 0.0000000000
## 703       PS4                            Hello Games 0.5800000000
## 704        PC                        Her Interactive 0.0300000000
## 705       GBA                        Hip Interactive 0.0650000000
## 706       PS2                        Hip Interactive 0.0200000000
## 707        XB                        Hip Interactive 0.0550000000
## 708        DS                        HMH Interactive 0.0000000000
## 709        PC                        HMH Interactive 0.0000000000
## 710        PC           Home Entertainment Suppliers 0.0000000000
## 711       PS3           Home Entertainment Suppliers 0.0000000000
## 712      X360           Home Entertainment Suppliers 0.0450000000
## 713        DS                   Hudson Entertainment 0.0000000000
## 714       GBA                   Hudson Entertainment 0.0325000000
## 715       N64                   Hudson Entertainment 0.0500000000
## 716        PS                   Hudson Entertainment 0.0000000000
## 717       PSP                   Hudson Entertainment 0.0600000000
## 718       Wii                   Hudson Entertainment 0.0450000000
## 719       3DS                            Hudson Soft 0.0650000000
## 720        DS                            Hudson Soft 0.0106666667
## 721       GBA                            Hudson Soft 0.0000000000
## 722        GC                            Hudson Soft 0.0300000000
## 723       N64                            Hudson Soft 0.1966666667
## 724       NES                            Hudson Soft 0.0942857143
## 725        NG                            Hudson Soft 0.0000000000
## 726        PS                            Hudson Soft 0.0100000000
## 727       PS2                            Hudson Soft 0.0000000000
## 728       PS3                            Hudson Soft 0.0200000000
## 729       PSP                            Hudson Soft 0.0000000000
## 730       SAT                            Hudson Soft 0.0000000000
## 731      SNES                            Hudson Soft 0.0000000000
## 732      TG16                            Hudson Soft 0.0000000000
## 733       Wii                            Hudson Soft 0.0508333333
## 734      X360                            Hudson Soft 0.2700000000
## 735        XB                            Hudson Soft 0.0300000000
## 736        PS                    Human Entertainment 0.0075000000
## 737       SAT                    Human Entertainment 0.0000000000
## 738      SNES                    Human Entertainment 0.0000000000
## 739       PSV                                  HuneX 0.0000000000
## 740        PC                    Iceberg Interactive 0.0066666667
## 741        PC                            id Software 0.0200000000
## 742        DS                           Idea Factory 0.0000000000
## 743       PS2                           Idea Factory 0.0000000000
## 744       PS3                           Idea Factory 0.0100000000
## 745       PS4                           Idea Factory 0.0000000000
## 746       PSP                           Idea Factory 0.0034782609
## 747       PSV                           Idea Factory 0.0059375000
## 748      X360                           Idea Factory 0.0400000000
## 749       PS4             Idea Factory International 0.0100000000
## 750       PSV             Idea Factory International 0.0525000000
## 751       3DS                           IE Institute 0.0000000000
## 752        DS                           IE Institute 0.0000000000
## 753        DS                 Ignition Entertainment 0.0861538462
## 754       GBA                 Ignition Entertainment 0.0333333333
## 755        GC                 Ignition Entertainment 0.0166666667
## 756       PS2                 Ignition Entertainment 0.0588235294
## 757       PS3                 Ignition Entertainment 0.0900000000
## 758       PSP                 Ignition Entertainment 0.0650000000
## 759       Wii                 Ignition Entertainment 0.0883333333
## 760      X360                 Ignition Entertainment 0.0800000000
## 761        XB                 Ignition Entertainment 0.0600000000
## 762       PS2                     Illusion Softworks 0.3400000000
## 763       SAT                                 Imadio 0.0000000000
## 764       PSP                            Image Epoch 0.0000000000
## 765       3DS                        imageepoch Inc. 0.0000000000
## 766       3DO                             Imageworks 0.0000000000
## 767      2600                                 Imagic 1.1275000000
## 768        GB                              Imagineer 0.0000000000
## 769       N64                              Imagineer 0.0180000000
## 770        PS                              Imagineer 0.0000000000
## 771       SAT                              Imagineer 0.0000000000
## 772      SNES                              Imagineer 0.0000000000
## 773      SNES                                   Imax 0.0000000000
## 774       PS2                            Indie Games 0.0300000000
## 775        DC                             Infogrames 0.0000000000
## 776       GBA                             Infogrames 0.3850000000
## 777        GC                             Infogrames 0.2850000000
## 778       N64                             Infogrames 0.0450000000
## 779        PC                             Infogrames 0.0100000000
## 780        PS                             Infogrames 0.1160869565
## 781       PS2                             Infogrames 0.1900000000
## 782        XB                             Infogrames 0.1283333333
## 783        PC                        Insomniac Games 0.0200000000
## 784       PS4                        Insomniac Games 0.0500000000
## 785      XOne                        Insomniac Games 0.0300000000
## 786       PS2                           Interchannel 0.0000000000
## 787       PS2                     Interchannel-Holon 0.0000000000
## 788       3DS                              Intergrow 0.0000000000
## 789       GBA                              Interplay 0.2000000000
## 790       N64                              Interplay 0.1166666667
## 791        PC                              Interplay 0.0033333333
## 792        PS                              Interplay 0.1340000000
## 793       PS2                              Interplay 0.1700000000
## 794      SNES                              Interplay 0.0000000000
## 795        XB                              Interplay 0.2050000000
## 796        PS                  Interplay Productions 0.0500000000
## 797       PS3             Interworks Unlimited, Inc. 0.0100000000
## 798       3DS                           Inti Creates 0.0000000000
## 799       PS4                  Introversion Software 0.0100000000
## 800        PC                   inXile Entertainment 0.0200000000
## 801       3DS              Irem Software Engineering 0.0000000000
## 802        PS              Irem Software Engineering 0.0100000000
## 803       PS2              Irem Software Engineering 0.0000000000
## 804       PS3              Irem Software Engineering 0.0000000000
## 805       PSP              Irem Software Engineering 0.0183333333
## 806      2600                       ITT Family Games 0.3200000000
## 807       PSP                              Ivolgamus 0.0300000000
## 808        DS                                   iWin 0.0000000000
## 809        DS                      Jack of All Games 0.0200000000
## 810       GBA                      Jack of All Games 0.2700000000
## 811        DS                                 Jaleco 0.0266666667
## 812       GBA                                 Jaleco 0.0100000000
## 813        GC                                 Jaleco 0.0250000000
## 814        PS                                 Jaleco 0.0650000000
## 815       PS2                                 Jaleco 0.0333333333
## 816       SAT                                 Jaleco 0.0000000000
## 817       Wii                                 Jaleco 0.0000000000
## 818        XB                                 Jaleco 0.0266666667
## 819       PS2                     Jester Interactive 0.2333333333
## 820        GB                                Jorudan 0.0000000000
## 821       GBA                                Jorudan 0.0000000000
## 822        DS                     JoWood Productions 0.0416666667
## 823        GC                     JoWood Productions 0.0150000000
## 824        PC                     JoWood Productions 0.0128571429
## 825       PS2                     JoWood Productions 0.0200000000
## 826       Wii                     JoWood Productions 0.1366666667
## 827      X360                     JoWood Productions 0.0300000000
## 828        XB                     JoWood Productions 0.0200000000
## 829        PC                            Just Flight 0.0000000000
## 830        PS                                    JVC 0.3214285714
## 831       SAT                                    JVC 0.0000000000
## 832       3DS                         Kadokawa Games 0.0000000000
## 833       PS3                         Kadokawa Games 0.0000000000
## 834       PSP                         Kadokawa Games 0.0000000000
## 835       PSV                         Kadokawa Games 0.0000000000
## 836       3DS                        Kadokawa Shoten 0.0000000000
## 837        DS                        Kadokawa Shoten 0.0000000000
## 838        PS                        Kadokawa Shoten 0.1533333333
## 839       PS2                        Kadokawa Shoten 0.0000000000
## 840       PSP                        Kadokawa Shoten 0.0000000000
## 841       PSV                        Kadokawa Shoten 0.0000000000
## 842       SAT                        Kadokawa Shoten 0.0000000000
## 843       Wii                        Kadokawa Shoten 0.0000000000
## 844       PS3                            Kaga Create 0.0000000000
## 845       PSP                            Kaga Create 0.0000000000
## 846       PSV                            Kaga Create 0.0000000000
## 847        PC                          Kalypso Media 0.0140000000
## 848       PS3                          Kalypso Media 0.0600000000
## 849       PS4                          Kalypso Media 0.0250000000
## 850      X360                          Kalypso Media 0.1016666667
## 851        DS                                  Kamui 0.0000000000
## 852       PS2                            Kando Games 0.0200000000
## 853       PSP                    Karin Entertainment 0.0000000000
## 854       GBA                                  Kemco 0.0350000000
## 855        GC                                  Kemco 0.0475000000
## 856       N64                                  Kemco 0.1328571429
## 857        PS                                  Kemco 0.0800000000
## 858       PS2                                  Kemco 0.0650000000
## 859      SNES                                  Kemco 0.0000000000
## 860        XB                                  Kemco 0.0525000000
## 861       PS2                                    KID 0.0000000000
## 862       SAT                                    KID 0.0000000000
## 863        DS                           Kids Station 0.0000000000
## 864       GBA                           King Records 0.0000000000
## 865       GBA                    Knowledge Adventure 0.2150000000
## 866       Wii                    Knowledge Adventure 0.4000000000
## 867       3DS                             Koch Media 0.0000000000
## 868        DS                             Koch Media 0.6500000000
## 869        PC                             Koch Media 0.0000000000
## 870       PS2                             Koch Media 0.2200000000
## 871       PS3                             Koch Media 0.0550000000
## 872       PS4                             Koch Media 0.1000000000
## 873       PSP                             Koch Media 0.3500000000
## 874       Wii                             Koch Media 0.2850000000
## 875      X360                             Koch Media 0.1050000000
## 876      XOne                             Koch Media 0.0500000000
## 877        PS               Kokopeli Digital Studios 0.0200000000
## 878       3DO           Konami Digital Entertainment 0.0000000000
## 879       3DS           Konami Digital Entertainment 0.0500000000
## 880        DC           Konami Digital Entertainment 0.0000000000
## 881        DS           Konami Digital Entertainment 0.0387500000
## 882        GB           Konami Digital Entertainment 0.0000000000
## 883       GBA           Konami Digital Entertainment 0.2023333333
## 884        GC           Konami Digital Entertainment 0.0779166667
## 885       GEN           Konami Digital Entertainment 0.0000000000
## 886       N64           Konami Digital Entertainment 0.0904000000
## 887       NES           Konami Digital Entertainment 0.4988888889
## 888        PC           Konami Digital Entertainment 0.0008333333
## 889        PS           Konami Digital Entertainment 0.1166250000
## 890       PS2           Konami Digital Entertainment 0.1333128834
## 891       PS3           Konami Digital Entertainment 0.1404918033
## 892       PS4           Konami Digital Entertainment 0.2514285714
## 893       PSP           Konami Digital Entertainment 0.0536708861
## 894       PSV           Konami Digital Entertainment 0.0241666667
## 895       SAT           Konami Digital Entertainment 0.0000000000
## 896      SNES           Konami Digital Entertainment 0.0184210526
## 897       Wii           Konami Digital Entertainment 0.1840000000
## 898      X360           Konami Digital Entertainment 0.1283673469
## 899        XB           Konami Digital Entertainment 0.1032258065
## 900      XOne           Konami Digital Entertainment 0.1140000000
## 901        XB                              Kool Kizz 0.0300000000
## 902      SNES                                    KSS 0.0000000000
## 903      SNES                                 Laguna 0.0400000000
## 904        DS                     Legacy Interactive 0.0400000000
## 905       GBA                             LEGO Media 0.0700000000
## 906       N64                             LEGO Media 0.5100000000
## 907        PC                             LEGO Media 0.0000000000
## 908        PS                             LEGO Media 0.1200000000
## 909       3DS                                Level 5 0.0181818182
## 910        DS                                Level 5 0.0000000000
## 911       PSP                                Level 5 0.0000000000
## 912       PSV                                Level 5 0.0000000000
## 913       Wii                                Level 5 0.0000000000
## 914      WiiU                                Level 5 0.0000000000
## 915        DS                  Lexicon Entertainment 0.0200000000
## 916       3DS                            Licensed 4U 0.0000000000
## 917        DS                            Licensed 4U 0.0000000000
## 918        PC                 Lighthouse Interactive 0.0000000000
## 919       GBA                           Liquid Games 0.0950000000
## 920       3DS                           Little Orbit 0.0100000000
## 921        DS                           Little Orbit 0.0600000000
## 922       PS3                           Little Orbit 0.0125000000
## 923       PS4                           Little Orbit 0.0300000000
## 924       Wii                           Little Orbit 0.0433333333
## 925      WiiU                           Little Orbit 0.0300000000
## 926      X360                           Little Orbit 0.0133333333
## 927      XOne                           Little Orbit 0.0200000000
## 928        PS                                  Locus 0.0000000000
## 929       GBA                              LSP Games 0.0166666667
## 930       PS2                              LSP Games 0.0300000000
## 931       3DS                              LucasArts 0.6100000000
## 932        DS                              LucasArts 0.7244444444
## 933       GBA                              LucasArts 0.0600000000
## 934        GC                              LucasArts 0.6500000000
## 935       N64                              LucasArts 0.2100000000
## 936        PC                              LucasArts 0.0971428571
## 937        PS                              LucasArts 0.5175000000
## 938       PS2                              LucasArts 0.6411764706
## 939       PS3                              LucasArts 0.6083333333
## 940       PSP                              LucasArts 0.4644444444
## 941       Wii                              LucasArts 1.2525000000
## 942      X360                              LucasArts 0.7587500000
## 943        XB                              LucasArts 0.2150000000
## 944        GC                               Mad Catz 0.1500000000
## 945      X360                               Mad Catz 0.0700000000
## 946        XB                               Mad Catz 0.0200000000
## 947        PS                        Magical Company 0.1500000000
## 948       PS2                                  Magix 0.0850000000
## 949       3DS                  Majesco Entertainment 0.1125000000
## 950        DS                  Majesco Entertainment 0.0882051282
## 951       GBA                  Majesco Entertainment 0.2100000000
## 952       PS2                  Majesco Entertainment 0.0500000000
## 953       PS3                  Majesco Entertainment 0.0300000000
## 954       PSP                  Majesco Entertainment 0.0800000000
## 955       Wii                  Majesco Entertainment 0.1762500000
## 956      X360                  Majesco Entertainment 0.0900000000
## 957        XB                  Majesco Entertainment 0.0400000000
## 958      XOne                  Majesco Entertainment 0.1700000000
## 959        PC                            Mamba Games 0.0000000000
## 960       PSV                   Marvel Entertainment 0.0000000000
## 961       3DS                Marvelous Entertainment 0.1080000000
## 962       PSP                Marvelous Entertainment 0.0000000000
## 963       PSV                Marvelous Entertainment 0.0520000000
## 964       PSV                        Marvelous Games 0.0000000000
## 965       3DS                  Marvelous Interactive 0.0400000000
## 966        DS                  Marvelous Interactive 0.0230769231
## 967       GBA                  Marvelous Interactive 0.0266666667
## 968        GC                  Marvelous Interactive 0.1900000000
## 969       PS2                  Marvelous Interactive 0.0000000000
## 970       PS3                  Marvelous Interactive 0.0700000000
## 971       PS4                  Marvelous Interactive 0.0400000000
## 972       PSP                  Marvelous Interactive 0.0236363636
## 973       PSV                  Marvelous Interactive 0.0566666667
## 974       Wii                  Marvelous Interactive 0.0540000000
## 975      X360                  Marvelous Interactive 0.0000000000
## 976        PC                      Masque Publishing 0.0100000000
## 977        DS                           Mastertronic 0.2625000000
## 978        PC                           Mastertronic 0.0025000000
## 979       PS2                           Mastertronic 0.0100000000
## 980       Wii                           Mastertronic 0.0000000000
## 981      X360                           Mastertronic 0.0000000000
## 982       3DS                                Mastiff 0.0133333333
## 983        DS                                Mastiff 0.2250000000
## 984       GBA                                Mastiff 0.0700000000
## 985        PC                                Mastiff 0.0200000000
## 986       PS2                                Mastiff 0.0300000000
## 987       Wii                                Mastiff 0.2028571429
## 988        XB                                Mastiff 0.0100000000
## 989      2600                     Mattel Interactive 0.3400000000
## 990        PS                     Mattel Interactive 0.0825000000
## 991        PS                               Max Five 0.0300000000
## 992       3DS                   Maximum Family Games 0.0300000000
## 993        PC                                  Maxis 0.6000000000
## 994        PS                                  Maxis 0.6800000000
## 995        PC                      MC2 Entertainment 0.0000000000
## 996        XB                      MC2 Entertainment 0.0300000000
## 997       PS2                    Media Entertainment 0.0000000000
## 998        GB                          Media Factory 0.0000000000
## 999       N64                          Media Factory 0.0000000000
## 1000      GBA                            Media Rings 0.1400000000
## 1001     SNES                            Media Rings 0.0000000000
## 1002       PS                            Media Works 0.0000000000
## 1003      PS2                            Media Works 0.0000000000
## 1004      SAT                            Media Works 0.0000000000
## 1005       PS                             MediaQuest 0.0300000000
## 1006     2600                           Men-A-Vision 0.7200000000
## 1007       DS                     Mentor Interactive 0.1980000000
## 1008       DS                          Mercury Games 0.0600000000
## 1009      PSP                          Mercury Games 0.0250000000
## 1010       PC                            Merscom LLC 0.0000000000
## 1011      PS2                               Metro 3D 0.0871428571
## 1012      Wii                               Metro 3D 0.0350000000
## 1013       XB                               Metro 3D 0.0200000000
## 1014      PS2                            Michaelsoft 0.0000000000
## 1015      3DO                            Micro Cabin 0.0000000000
## 1016      SAT                            Micro Cabin 0.0000000000
## 1017      GBA                               Microids 0.0100000000
## 1018       PC                               Microids 0.0000000000
## 1019      PS2                               Microids 0.0300000000
## 1020      PS4                               Microids 0.0100000000
## 1021       XB                               Microids 0.0450000000
## 1022       PC                             Microprose 0.0100000000
## 1023       PS                             Microprose 0.1700000000
## 1024       PC                 Microsoft Game Studios 0.1217241379
## 1025     WiiU                 Microsoft Game Studios 0.1800000000
## 1026     X360                 Microsoft Game Studios 1.4319718310
## 1027       XB                 Microsoft Game Studios 0.5127941176
## 1028     XOne                 Microsoft Game Studios 0.7550000000
## 1029       DS        Midas Interactive Entertainment 0.0180000000
## 1030       PS        Midas Interactive Entertainment 0.0516666667
## 1031      PS2        Midas Interactive Entertainment 0.0830000000
## 1032      PSP        Midas Interactive Entertainment 0.0500000000
## 1033      Wii        Midas Interactive Entertainment 0.0300000000
## 1034       DS                           Midway Games 0.1962500000
## 1035      GBA                           Midway Games 0.0500000000
## 1036       GC                           Midway Games 0.1064000000
## 1037      N64                           Midway Games 0.3065000000
## 1038       PC                           Midway Games 0.0000000000
## 1039       PS                           Midway Games 0.3178571429
## 1040      PS2                           Midway Games 0.2708000000
## 1041      PS3                           Midway Games 0.3671428571
## 1042      PSP                           Midway Games 0.1700000000
## 1043      Wii                           Midway Games 0.3710000000
## 1044     X360                           Midway Games 0.3588888889
## 1045       XB                           Midway Games 0.1553846154
## 1046      Wii                              Milestone 0.0800000000
## 1047      PS4                        Milestone S.r.l 0.0000000000
## 1048     XOne                        Milestone S.r.l 0.0000000000
## 1049       PC                       Milestone S.r.l. 0.0000000000
## 1050      PS3                       Milestone S.r.l. 0.0133333333
## 1051      PS4                       Milestone S.r.l. 0.0225000000
## 1052      PSV                       Milestone S.r.l. 0.0000000000
## 1053     X360                       Milestone S.r.l. 0.0133333333
## 1054     XOne                       Milestone S.r.l. 0.0200000000
## 1055      PS2                         Minato Station 0.0000000000
## 1056      PS3                         Minato Station 0.0000000000
## 1057      PSV                         Minato Station 0.0000000000
## 1058       DS                              Mindscape 0.1700000000
## 1059      N64                              Mindscape 0.0200000000
## 1060       PS                              Mindscape 0.0728571429
## 1061      PS2                              Mindscape 0.0700000000
## 1062      Wii                              Mindscape 0.2030000000
## 1063     X360                              Mindscape 0.1000000000
## 1064       XB                              Mindscape 0.0400000000
## 1065       DS                          Mirai Shounen 0.0000000000
## 1066     SNES                                 Misawa 0.0000000000
## 1067      N64                                 Mitsui 0.0600000000
## 1068      3DS                              mixi, Inc 0.0000000000
## 1069     XOne                                MLB.com 0.0400000000
## 1070       PC                                 Mojang 0.0200000000
## 1071      PS3                                 Mojang 0.2500000000
## 1072      PS4                                 Mojang 0.2300000000
## 1073     X360                                 Mojang 0.4600000000
## 1074     XOne                                 Mojang 0.2900000000
## 1075       PC               Monte Christo Multimedia 0.0000000000
## 1076     X360                                   Moss 0.0500000000
## 1077       DS                                    MTO 0.0000000000
## 1078       PS                                    MTO 0.0000000000
## 1079       DS                              MTV Games 0.0900000000
## 1080      PS2                              MTV Games 0.1142857143
## 1081      PS3                              MTV Games 0.3200000000
## 1082      PSP                              MTV Games 0.2400000000
## 1083      Wii                              MTV Games 0.4766666667
## 1084     X360                              MTV Games 0.4930000000
## 1085      PS2                   Mud Duck Productions 0.2000000000
## 1086       XB                   Mud Duck Productions 0.1600000000
## 1087       DS                            Mumbo Jumbo 0.1350000000
## 1088       PC                            Mumbo Jumbo 0.0100000000
## 1089      PSP                            Mumbo Jumbo 0.0450000000
## 1090      Wii                            Mumbo Jumbo 0.1600000000
## 1091       DS                                  Mycom 0.0000000000
## 1092      PS2                           Myelin Media 0.0400000000
## 1093      PSP                           Myelin Media 0.0300000000
## 1094       XB                           Myelin Media 0.0200000000
## 1095     2600                               Mystique 0.7600000000
## 1096      3DS                                    N/A 0.0000000000
## 1097       DS                                    N/A 0.0057142857
## 1098      GBA                                    N/A 0.2188461538
## 1099       PC                                    N/A 0.0100000000
## 1100       PS                                    N/A 0.2866666667
## 1101      PS2                                    N/A 0.8350000000
## 1102      PS3                                    N/A 0.0000000000
## 1103      PSP                                    N/A 0.0300000000
## 1104      PSV                                    N/A 0.0000000000
## 1105      Wii                                    N/A 0.1500000000
## 1106     X360                                    N/A 0.0025000000
## 1107      3DS                     Namco Bandai Games 0.0178160920
## 1108       DC                     Namco Bandai Games 0.0000000000
## 1109       DS                     Namco Bandai Games 0.0174814815
## 1110       GB                     Namco Bandai Games 0.0000000000
## 1111      GBA                     Namco Bandai Games 0.2381250000
## 1112       GC                     Namco Bandai Games 0.1313636364
## 1113      N64                     Namco Bandai Games 0.2366666667
## 1114      NES                     Namco Bandai Games 0.1957142857
## 1115       PC                     Namco Bandai Games 0.0450000000
## 1116       PS                     Namco Bandai Games 0.0825000000
## 1117      PS2                     Namco Bandai Games 0.1542056075
## 1118      PS3                     Namco Bandai Games 0.0994827586
## 1119      PS4                     Namco Bandai Games 0.1013333333
## 1120      PSP                     Namco Bandai Games 0.0173553719
## 1121      PSV                     Namco Bandai Games 0.0100000000
## 1122      SAT                     Namco Bandai Games 0.0000000000
## 1123     SNES                     Namco Bandai Games 0.0000000000
## 1124      Wii                     Namco Bandai Games 0.0875000000
## 1125     WiiU                     Namco Bandai Games 0.0523076923
## 1126       WS                     Namco Bandai Games 0.0000000000
## 1127     X360                     Namco Bandai Games 0.1754545455
## 1128       XB                     Namco Bandai Games 0.1900000000
## 1129     XOne                     Namco Bandai Games 0.2028571429
## 1130      3DS                                Natsume 0.1200000000
## 1131       DS                                Natsume 0.1040000000
## 1132      GBA                                Natsume 0.1100000000
## 1133      N64                                Natsume 0.0800000000
## 1134       PS                                Natsume 0.5700000000
## 1135      PS2                                Natsume 0.0800000000
## 1136      PSP                                Natsume 0.0500000000
## 1137      Wii                                Natsume 0.0700000000
## 1138     X360                           Navarre Corp 0.0400000000
## 1139      PS2                             Naxat Soft 0.0000000000
## 1140      SAT                                    NCS 0.0000000000
## 1141       PC                                 NCSoft 0.1750000000
## 1142       GC                        NDA Productions 0.0900000000
## 1143     PCFX                                    NEC 0.0000000000
## 1144      SAT                                    NEC 0.0000000000
## 1145     TG16                                    NEC 0.0000000000
## 1146       DC                       NEC Interchannel 0.0000000000
## 1147      SAT                       NEC Interchannel 0.0000000000
## 1148       DS                     Neko Entertainment 0.0233333333
## 1149      Wii                     Neko Entertainment 0.0325000000
## 1150      PSP                                NetRevo 0.0000000000
## 1151       PS                                    New 0.0000000000
## 1152       PC                    New World Computing 0.0100000000
## 1153      GBA                               NewKidCo 0.0625000000
## 1154       GC                               NewKidCo 0.0500000000
## 1155      N64                               NewKidCo 0.1450000000
## 1156       PS                               NewKidCo 0.1500000000
## 1157       DS                                  Nexon 0.0000000000
## 1158     SNES                             Nichibutsu 0.0000000000
## 1159      PS4               Nihon Falcom Corporation 0.0000000000
## 1160      PSP               Nihon Falcom Corporation 0.0000000000
## 1161      PSV               Nihon Falcom Corporation 0.0300000000
## 1162      3DS                               Nintendo 0.6430487805
## 1163       DS                               Nintendo 0.7840397351
## 1164       GB                               Nintendo 1.8304918033
## 1165      GBA                               Nintendo 0.5785714286
## 1166       GC                               Nintendo 0.8792452830
## 1167      N64                               Nintendo 1.2550000000
## 1168      NES                               Nintendo 2.3620000000
## 1169     SNES                               Nintendo 1.2538888889
## 1170      Wii                               Nintendo 2.1669047619
## 1171     WiiU                               Nintendo 0.6522500000
## 1172      PS2                           Nippon Amuse 0.0000000000
## 1173      3DS                        Nippon Columbia 0.0000000000
## 1174      3DS                   Nippon Ichi Software 0.1080000000
## 1175       DS                   Nippon Ichi Software 0.0650000000
## 1176       PS                   Nippon Ichi Software 0.0200000000
## 1177      PS2                   Nippon Ichi Software 0.0140000000
## 1178      PS3                   Nippon Ichi Software 0.0636363636
## 1179      PS4                   Nippon Ichi Software 0.0455555556
## 1180      PSP                   Nippon Ichi Software 0.0258823529
## 1181      PSV                   Nippon Ichi Software 0.0422580645
## 1182      Wii                   Nippon Ichi Software 0.1200000000
## 1183     WiiU                   Nippon Ichi Software 0.0800000000
## 1184     SNES                         Nippon Telenet 0.0000000000
## 1185      PS3                              Nitroplus 0.0000000000
## 1186      PSV                              Nitroplus 0.0000000000
## 1187       DS                                Nobilis 0.1550000000
## 1188       PC                                Nobilis 0.0000000000
## 1189      Wii                                Nobilis 0.0300000000
## 1190       DS                            Nordcurrent 0.0650000000
## 1191      Wii                            Nordcurrent 0.0866666667
## 1192       DS                           Nordic Games 0.2500000000
## 1193       PC                           Nordic Games 0.0075000000
## 1194      PS3                           Nordic Games 0.0200000000
## 1195      PS4                           Nordic Games 0.0250000000
## 1196      Wii                           Nordic Games 0.0120000000
## 1197     WiiU                           Nordic Games 0.0100000000
## 1198     X360                           Nordic Games 0.0150000000
## 1199     XOne                           Nordic Games 0.0250000000
## 1200       PC                              NovaLogic 0.0100000000
## 1201      PS2                              NovaLogic 0.2200000000
## 1202       XB                              NovaLogic 0.2500000000
## 1203       PC                            Number None 0.0000000000
## 1204       DS                                O-Games 0.0333333333
## 1205      PS3                                O-Games 0.0400000000
## 1206      Wii                                O-Games 0.0183333333
## 1207     X360                                O-Games 0.0050000000
## 1208       DS                       O3 Entertainment 0.0600000000
## 1209       GC                       O3 Entertainment 0.0700000000
## 1210      N64                                  Ocean 0.2420000000
## 1211      NES                                  Ocean 0.2500000000
## 1212       PS                                  Ocean 0.0857142857
## 1213     SNES                                  Ocean 0.0000000000
## 1214      3DS                          Office Create 0.0000000000
## 1215       PS                              On Demand 0.1200000000
## 1216      PS3                              Ongakukan 0.0000000000
## 1217       PS                         Origin Systems 0.0500000000
## 1218      PSP                                Otomate 0.0000000000
## 1219       DS                     Oxygen Interactive 0.0588888889
## 1220      PS2                     Oxygen Interactive 0.4900000000
## 1221      PSP                     Oxygen Interactive 0.0525000000
## 1222      Wii                     Oxygen Interactive 0.0416666667
## 1223     X360                     Oxygen Interactive 0.0400000000
## 1224       DS                               P2 Games 0.0000000000
## 1225      Wii                               P2 Games 0.0200000000
## 1226      PS2            Pacific Century Cyber Works 0.1100000000
## 1227     SNES                          Pack-In-Video 0.0000000000
## 1228      N64                           Pack In Soft 0.2500000000
## 1229      NES                                 Palcom 3.3800000000
## 1230       PS                       Panther Software 0.0200000000
## 1231       DS                                   Paon 0.0000000000
## 1232      PS2                                   Paon 0.0000000000
## 1233      PSP                                   Paon 0.0000000000
## 1234      PS3                       Paon Corporation 0.0000000000
## 1235       PC                    Paradox Development 0.0000000000
## 1236       PC                    Paradox Interactive 0.0021739130
## 1237     2600                           Parker Bros. 0.6642857143
## 1238       DS          Performance Designed Products 0.1600000000
## 1239      Wii          Performance Designed Products 0.1800000000
## 1240       XB                             Phantagram 0.0300000000
## 1241     X360                            Phantom EFX 0.0900000000
## 1242       DS                             Phenomedia 0.0400000000
## 1243       DS                          Phoenix Games 0.0200000000
## 1244      PSP                                 Piacci 0.0000000000
## 1245       DS                               Pinnacle 0.0000000000
## 1246       PC                               Pinnacle 0.0000000000
## 1247      Wii                               Pinnacle 0.0000000000
## 1248       PS                            Pioneer LDC 0.0575000000
## 1249      GBA                                Play It 0.0200000000
## 1250      PS2                                Play It 0.1925000000
## 1251      PSP                                Play It 0.2000000000
## 1252       DS                 Playlogic Game Factory 0.0666666667
## 1253       PC                 Playlogic Game Factory 0.0200000000
## 1254      PS2                 Playlogic Game Factory 0.0600000000
## 1255      PS3                 Playlogic Game Factory 0.1100000000
## 1256      PSP                 Playlogic Game Factory 0.0500000000
## 1257      Wii                 Playlogic Game Factory 0.0600000000
## 1258     X360                 Playlogic Game Factory 0.1000000000
## 1259       PS                              Playmates 0.1600000000
## 1260      PS2                               Playmore 0.0000000000
## 1261       DS                                  PlayV 0.0250000000
## 1262       DS                                 Plenty 0.0000000000
## 1263      PSP                             PM Studios 0.0900000000
## 1264       PS                            Pony Canyon 0.0300000000
## 1265       DS                           PopCap Games 0.1375000000
## 1266       PC                           PopCap Games 0.0100000000
## 1267      PS3                           PopCap Games 0.1800000000
## 1268     X360                           PopCap Games 0.0775000000
## 1269      Wii                         Popcorn Arcade 0.0450000000
## 1270       PS                        PopTop Software 0.0600000000
## 1271     SNES                                    Pow 0.0000000000
## 1272      3DS                                  PQube 0.0500000000
## 1273       DS                                  PQube 0.0333333333
## 1274       PC                                  PQube 0.0000000000
## 1275      PS2                                  PQube 0.0300000000
## 1276      PS3                                  PQube 0.0740000000
## 1277      PS4                                  PQube 0.0275000000
## 1278      PSP                                  PQube 0.0450000000
## 1279      PSV                                  PQube 0.0171428571
## 1280      Wii                                  PQube 0.0225000000
## 1281     X360                                  PQube 0.1466666667
## 1282     XOne                                  PQube 0.0500000000
## 1283      PS2                          Princess Soft 0.0000000000
## 1284      PS2                              Prototype 0.0000000000
## 1285      PS3                              Prototype 0.0000000000
## 1286      PSP                              Prototype 0.0000000000
## 1287      PSV                              Prototype 0.0000000000
## 1288     X360                              Prototype 0.0000000000
## 1289       PS                              Psygnosis 0.1134375000
## 1290     2600                                 Quelle 0.8100000000
## 1291     SNES                                  Quest 0.0000000000
## 1292      PSP                               Quinrose 0.0000000000
## 1293      SAT                                Quintet 0.0000000000
## 1294      GBA                          Rage Software 0.0300000000
## 1295       GC                          Rage Software 0.0700000000
## 1296      PS2                          Rage Software 0.2350000000
## 1297       XB                          Rage Software 0.0800000000
## 1298      PSV                             Rain Games 0.0000000000
## 1299      GBA                              Rebellion 0.1750000000
## 1300      PS4                 Rebellion Developments 0.0400000000
## 1301     XOne                 Rebellion Developments 0.0400000000
## 1302      PS2                      RED Entertainment 0.0000000000
## 1303       PC                                Red Orb 0.7700000000
## 1304      N64                Red Storm Entertainment 0.4800000000
## 1305       PS                Red Storm Entertainment 0.4750000000
## 1306      PS2                              RedOctane 1.6100000000
## 1307       DS                     Reef Entertainment 0.0000000000
## 1308       PC                     Reef Entertainment 0.0000000000
## 1309      PS3                     Reef Entertainment 0.0000000000
## 1310      Wii                     Reef Entertainment 0.0425000000
## 1311      PS2                           responDESIGN 0.0200000000
## 1312       XB                           responDESIGN 0.0700000000
## 1313      PS2                     Revolution (Japan) 0.0000000000
## 1314      PS4                    Revolution Software 0.0000000000
## 1315     XOne                    Revolution Software 0.0000000000
## 1316      3DS                      Rising Star Games 0.0900000000
## 1317       DS                      Rising Star Games 0.1242500000
## 1318       PC                      Rising Star Games 0.0000000000
## 1319      PS2                      Rising Star Games 0.0533333333
## 1320      PS3                      Rising Star Games 0.1250000000
## 1321      PS4                      Rising Star Games 0.0100000000
## 1322      PSP                      Rising Star Games 0.0508333333
## 1323      PSV                      Rising Star Games 0.0000000000
## 1324      Wii                      Rising Star Games 0.2064705882
## 1325     X360                      Rising Star Games 0.1260000000
## 1326       PS                          Riverhillsoft 0.0000000000
## 1327      3DS                         Rocket Company 0.0000000000
## 1328       DS                         Rocket Company 0.0000000000
## 1329      Wii                         Rocket Company 0.0000000000
## 1330       DS                             Rondomedia 0.1000000000
## 1331       PC                             Rondomedia 0.0114285714
## 1332      Wii                             Rondomedia 0.2950000000
## 1333       DS                                    RTL 0.0233333333
## 1334      Wii                                    RTL 0.2233333333
## 1335     X360                                    RTL 0.0450000000
## 1336       DS                                 Russel 0.0000000000
## 1337       PC                                 Russel 0.0000000000
## 1338      PS2                                 Russel 0.0000000000
## 1339      PSP                                 Russel 0.0000000000
## 1340      GBA                      Sammy Corporation 0.0400000000
## 1341      PS2                      Sammy Corporation 0.0411111111
## 1342     SNES                      Sammy Corporation 0.0000000000
## 1343       PS                                 Saurus 0.0100000000
## 1344       DS                        Scholastic Inc. 0.2885714286
## 1345      PS2                        Scholastic Inc. 0.0400000000
## 1346      Wii                        Scholastic Inc. 0.3050000000
## 1347       GC                                    SCi 0.0333333333
## 1348       PC                                    SCi 0.0000000000
## 1349      PS2                                    SCi 0.1660000000
## 1350       XB                                    SCi 0.1350000000
## 1351      3DS                             Screenlife 0.0300000000
## 1352      PSV                             Screenlife 0.0433333333
## 1353       PC                           SCS Software 0.0000000000
## 1354     2600                                  Sears 0.2000000000
## 1355     2600                                   Sega 0.3700000000
## 1356      3DS                                   Sega 0.0966666667
## 1357       DC                                   Sega 0.1673333333
## 1358       DS                                   Sega 0.1823437500
## 1359      GBA                                   Sega 0.2520000000
## 1360       GC                                   Sega 0.2660000000
## 1361      GEN                                   Sega 0.7011111111
## 1362       GG                                   Sega 0.0000000000
## 1363       PC                                   Sega 0.0193939394
## 1364      PS2                                   Sega 0.1565060241
## 1365      PS3                                   Sega 0.1629508197
## 1366      PS4                                   Sega 0.0512500000
## 1367      PSP                                   Sega 0.0672549020
## 1368      PSV                                   Sega 0.0243750000
## 1369      SAT                                   Sega 0.0093506494
## 1370      SCD                                   Sega 0.1666666667
## 1371      Wii                                   Sega 0.4202272727
## 1372     WiiU                                   Sega 0.1625000000
## 1373     X360                                   Sega 0.2638297872
## 1374       XB                                   Sega 0.1905263158
## 1375     XOne                                   Sega 0.2200000000
## 1376      N64                       Seta Corporation 0.0000000000
## 1377       PS                       Seta Corporation 0.0000000000
## 1378      SAT                       Seta Corporation 0.0000000000
## 1379      3DS                          Seventh Chord 0.0000000000
## 1380      3DS                             Shogakukan 0.0000000000
## 1381       DS                             Shogakukan 0.0000000000
## 1382      SAT                             Shogakukan 0.0000000000
## 1383       XB           Simon & Schuster Interactive 0.0800000000
## 1384       PC                   Slightly Mad Studios 0.0000000000
## 1385      PS4                   Slightly Mad Studios 0.1700000000
## 1386     XOne                   Slightly Mad Studios 0.0800000000
## 1387       DS                    Slitherine Software 0.0000000000
## 1388      PS3                    Slitherine Software 0.0000000000
## 1389      PSP                    Slitherine Software 0.0000000000
## 1390     X360                    Slitherine Software 0.0800000000
## 1391       DC                                    SNK 0.0000000000
## 1392       NG                                    SNK 0.0000000000
## 1393       PS                                    SNK 0.0020000000
## 1394      PS2                                    SNK 0.0300000000
## 1395      SAT                                    SNK 0.0000000000
## 1396       DS                           SNK Playmore 0.0000000000
## 1397       PS                           SNK Playmore 0.0266666667
## 1398      PS2                           SNK Playmore 0.0133333333
## 1399      PSP                           SNK Playmore 0.0000000000
## 1400      SAT                           SNK Playmore 0.0000000000
## 1401       XB                           SNK Playmore 0.0233333333
## 1402      SAT                                Societa 0.0000000000
## 1403      PS4                               Sold Out 0.0100000000
## 1404      SAT                                 Sonnet 0.0000000000
## 1405       PS            Sony Computer Entertainment 0.4614361702
## 1406      PS2            Sony Computer Entertainment 0.3722549020
## 1407      PS3            Sony Computer Entertainment 0.5003100775
## 1408      PS4            Sony Computer Entertainment 0.6947058824
## 1409      PSP            Sony Computer Entertainment 0.1923931624
## 1410      PSV            Sony Computer Entertainment 0.1310714286
## 1411      PS3    Sony Computer Entertainment America 0.3500000000
## 1412      PS4    Sony Computer Entertainment America 0.5800000000
## 1413      PSV    Sony Computer Entertainment America 0.1100000000
## 1414      PS2     Sony Computer Entertainment Europe 1.4700000000
## 1415      PS3     Sony Computer Entertainment Europe 0.5820000000
## 1416      PS4     Sony Computer Entertainment Europe 0.5625000000
## 1417      PSV     Sony Computer Entertainment Europe 0.2150000000
## 1418      PS2               Sony Music Entertainment 0.0000000000
## 1419       PC              Sony Online Entertainment 0.1100000000
## 1420      PS2              Sony Online Entertainment 0.3125000000
## 1421      PS3              Sony Online Entertainment 0.3500000000
## 1422      PSP              Sony Online Entertainment 0.1400000000
## 1423       DS                        SouthPeak Games 0.0884615385
## 1424       PC                        SouthPeak Games 0.0100000000
## 1425       PS                        SouthPeak Games 0.0600000000
## 1426      PS2                        SouthPeak Games 0.3500000000
## 1427      PS3                        SouthPeak Games 0.1600000000
## 1428      PSP                        SouthPeak Games 0.2900000000
## 1429      Wii                        SouthPeak Games 0.0700000000
## 1430     X360                        SouthPeak Games 0.1620000000
## 1431       DS                                  Spike 0.0187500000
## 1432      GBA                                  Spike 0.0900000000
## 1433      PS2                                  Spike 0.1057142857
## 1434      PS3                                  Spike 0.1575000000
## 1435      PSP                                  Spike 0.0100000000
## 1436     X360                                  Spike 0.5233333333
## 1437       PS                                    SPS 0.0700000000
## 1438      NES                                 Square 0.0000000000
## 1439       PS                                 Square 0.0725000000
## 1440     SNES                                 Square 0.2400000000
## 1441       PS                              Square EA 0.4500000000
## 1442      3DS                            Square Enix 0.1092857143
## 1443       DS                            Square Enix 0.1751111111
## 1444      GBA                            Square Enix 0.6300000000
## 1445       PC                            Square Enix 0.0685714286
## 1446      PS2                            Square Enix 0.3000000000
## 1447      PS3                            Square Enix 0.3227586207
## 1448      PS4                            Square Enix 0.1615789474
## 1449      PSP                            Square Enix 0.2475000000
## 1450      PSV                            Square Enix 0.0500000000
## 1451      Wii                            Square Enix 0.0688888889
## 1452     WiiU                            Square Enix 0.0200000000
## 1453     X360                            Square Enix 0.3130769231
## 1454     XOne                            Square Enix 0.1945454545
## 1455       GB                             SquareSoft 0.0000000000
## 1456      GBA                             SquareSoft 0.8200000000
## 1457      NES                             SquareSoft 0.1066666667
## 1458       PS                             SquareSoft 0.3412000000
## 1459      PS2                             SquareSoft 0.0000000000
## 1460     SNES                             SquareSoft 0.0992857143
## 1461       WS                             SquareSoft 0.0000000000
## 1462       PS                                    SSI 0.1100000000
## 1463     XOne                        Stainless Games 0.0100000000
## 1464       DS                               Starfish 0.0300000000
## 1465      GBA                               Starfish 0.0300000000
## 1466       PS                               Starfish 0.1300000000
## 1467      PSP                               Starfish 0.0000000000
## 1468      Wii                               Starfish 0.0400000000
## 1469     2600                         Starpath Corp. 0.3000000000
## 1470       DS                                  Sting 0.0366666667
## 1471      GBA                                  Sting 0.0350000000
## 1472      PS2                                  Sting 0.0500000000
## 1473      PSP                                  Sting 0.0250000000
## 1474      Wii                                  Sting 0.1200000000
## 1475       DS                       Storm City Games 0.0692307692
## 1476      Wii                       Storm City Games 0.0750000000
## 1477       PC                         Strategy First 0.0000000000
## 1478      3DS                                Success 0.0000000000
## 1479       DS                                Success 0.0412500000
## 1480       PS                                Success 0.1775000000
## 1481      PS2                                Success 0.0033333333
## 1482      PSP                                Success 0.0000000000
## 1483     X360                                Success 0.0700000000
## 1484      GBA                             Summitsoft 0.0300000000
## 1485       PC                             Sunflowers 0.0000000000
## 1486      PS2                    Sunrise Interactive 0.0000000000
## 1487      3DS                                Sunsoft 0.0700000000
## 1488      N64                                Sunsoft 0.0900000000
## 1489       PS                                Sunsoft 0.0850000000
## 1490      SAT                                Sunsoft 0.0000000000
## 1491     SNES                                Sunsoft 0.0000000000
## 1492      PS2                                 Sweets 0.0000000000
## 1493      GBA                   Swing! Entertainment 0.0200000000
## 1494       PS                   Swing! Entertainment 0.0300000000
## 1495      PS2                   Swing! Entertainment 0.0400000000
## 1496       XB                   Swing! Entertainment 0.1100000000
## 1497       PS                                 Syscom 0.0300000000
## 1498      PS3                               System 3 0.0000000000
## 1499      PS4                               System 3 0.0600000000
## 1500      PSV                               System 3 0.0200000000
## 1501       DS               System 3 Arcade Software 0.0600000000
## 1502      PS2               System 3 Arcade Software 0.0600000000
## 1503      PS3               System 3 Arcade Software 0.0000000000
## 1504      PSP               System 3 Arcade Software 0.0450000000
## 1505      Wii               System 3 Arcade Software 0.1050000000
## 1506      PSP                            System Soft 0.0000000000
## 1507     SNES                               T&E Soft 0.0000000000
## 1508     2600                                  Taito 0.2200000000
## 1509       DS                                  Taito 0.0000000000
## 1510      GBA                                  Taito 0.0400000000
## 1511       GC                                  Taito 0.0100000000
## 1512      N64                                  Taito 0.0000000000
## 1513       PS                                  Taito 0.0000000000
## 1514      PS2                                  Taito 0.0180000000
## 1515      SAT                                  Taito 0.0000000000
## 1516     SNES                                  Taito 0.0000000000
## 1517      Wii                                  Taito 0.0250000000
## 1518      GBA                                 Takara 0.1600000000
## 1519      N64                                 Takara 0.0000000000
## 1520       PS                                 Takara 0.0000000000
## 1521      PS2                                 Takara 0.0000000000
## 1522     SNES                                 Takara 0.0000000000
## 1523      3DS                            Takara Tomy 0.0000000000
## 1524       DS                            Takara Tomy 0.0236363636
## 1525      PSP                            Takara Tomy 0.0300000000
## 1526      Wii                            Takara Tomy 0.0087500000
## 1527     X360                            Takara Tomy 0.0800000000
## 1528      3DS                   Take-Two Interactive 0.0600000000
## 1529       DS                   Take-Two Interactive 0.2451724138
## 1530      GBA                   Take-Two Interactive 0.0625000000
## 1531       GC                   Take-Two Interactive 0.0750000000
## 1532      N64                   Take-Two Interactive 0.2025000000
## 1533       PC                   Take-Two Interactive 0.0891111111
## 1534       PS                   Take-Two Interactive 0.3866666667
## 1535      PS2                   Take-Two Interactive 0.8100000000
## 1536      PS3                   Take-Two Interactive 0.7333962264
## 1537      PS4                   Take-Two Interactive 0.9258333333
## 1538      PSP                   Take-Two Interactive 0.4147826087
## 1539      PSV                   Take-Two Interactive 0.2150000000
## 1540      Wii                   Take-Two Interactive 0.3218421053
## 1541     WiiU                   Take-Two Interactive 0.0800000000
## 1542     X360                   Take-Two Interactive 0.8930000000
## 1543       XB                   Take-Two Interactive 0.2516666667
## 1544     XOne                   Take-Two Interactive 0.7083333333
## 1545      PSP                                 Takuyo 0.0000000000
## 1546       PS                              TalonSoft 0.4900000000
## 1547       DS                               TDK Core 0.0000000000
## 1548      GBA                               TDK Core 0.1400000000
## 1549       PS                               TDK Core 0.1000000000
## 1550      GBA                         TDK Mediactive 0.2254545455
## 1551       GC                         TDK Mediactive 0.0522222222
## 1552       PS                         TDK Mediactive 0.0850000000
## 1553      PS2                         TDK Mediactive 0.2083333333
## 1554       XB                         TDK Mediactive 0.1300000000
## 1555       PC                        Team17 Software 0.0000000000
## 1556       NG              Technos Japan Corporation 0.0000000000
## 1557       PS                             TechnoSoft 0.0300000000
## 1558      3DS                             Tecmo Koei 0.0133333333
## 1559       DS                             Tecmo Koei 0.0311538462
## 1560      GBA                             Tecmo Koei 0.0100000000
## 1561       GC                             Tecmo Koei 0.0300000000
## 1562       PS                             Tecmo Koei 0.0277777778
## 1563      PS2                             Tecmo Koei 0.0512941176
## 1564      PS3                             Tecmo Koei 0.0428571429
## 1565      PS4                             Tecmo Koei 0.0295454545
## 1566      PSP                             Tecmo Koei 0.0178787879
## 1567      PSV                             Tecmo Koei 0.0112500000
## 1568      SAT                             Tecmo Koei 0.0000000000
## 1569     SNES                             Tecmo Koei 0.0375000000
## 1570      Wii                             Tecmo Koei 0.0633333333
## 1571     WiiU                             Tecmo Koei 0.0133333333
## 1572     X360                             Tecmo Koei 0.1217391304
## 1573       XB                             Tecmo Koei 0.0983333333
## 1574     XOne                             Tecmo Koei 0.0233333333
## 1575       DS                              Telegames 0.1850000000
## 1576      GBA                              Telegames 0.0533333333
## 1577       PS                              Telegames 0.0100000000
## 1578      PS3                         Telltale Games 0.0460000000
## 1579      PS4                         Telltale Games 0.0714285714
## 1580      PSV                         Telltale Games 0.0750000000
## 1581      Wii                         Telltale Games 0.0500000000
## 1582     X360                         Telltale Games 0.0225000000
## 1583     XOne                         Telltale Games 0.0433333333
## 1584       PS                                Telstar 0.0533333333
## 1585      3DS                          Tetris Online 0.2000000000
## 1586      PSP                                    TGL 0.0000000000
## 1587      PSV                                    TGL 0.0000000000
## 1588       DS                  The Adventure Company 0.0700000000
## 1589      Wii                  The Adventure Company 0.0675000000
## 1590       PS                   The Learning Company 0.0300000000
## 1591      3DS                                    THQ 0.1166666667
## 1592       DS                                    THQ 0.2353913043
## 1593      GBA                                    THQ 0.2973636364
## 1594       GC                                    THQ 0.2310638298
## 1595      N64                                    THQ 0.4761111111
## 1596       PC                                    THQ 0.0248275862
## 1597       PS                                    THQ 0.5877777778
## 1598      PS2                                    THQ 0.3890000000
## 1599      PS3                                    THQ 0.2773913043
## 1600      PSP                                    THQ 0.2386666667
## 1601     SNES                                    THQ 0.0000000000
## 1602      Wii                                    THQ 0.2982894737
## 1603     WiiU                                    THQ 0.0700000000
## 1604     X360                                    THQ 0.3700000000
## 1605       XB                                    THQ 0.1537500000
## 1606     2600                            Tigervision 0.4433333333
## 1607       PS                Time Warner Interactive 0.0360000000
## 1608      GBA                                  Titus 0.0250000000
## 1609       GC                                  Titus 0.1200000000
## 1610      N64                                  Titus 0.1650000000
## 1611       PS                                  Titus 0.0666666667
## 1612      PS2                                  Titus 0.1800000000
## 1613     SNES                                  Titus 0.0000000000
## 1614       XB                                  Titus 0.0100000000
## 1615       DS                                 Tivola 0.0266666667
## 1616     SNES                                   TOHO 0.0000000000
## 1617       DS                                  Tommo 0.0333333333
## 1618      Wii                                  Tommo 0.0500000000
## 1619       DS                       Tomy Corporation 0.0280000000
## 1620      GBA                       Tomy Corporation 0.1100000000
## 1621       GC                       Tomy Corporation 0.1300000000
## 1622       PS                       Tomy Corporation 0.0100000000
## 1623      Wii                       Tomy Corporation 0.3950000000
## 1624       PC                    TopWare Interactive 0.0000000000
## 1625      PS3                    TopWare Interactive 0.0000000000
## 1626      PS4                    TopWare Interactive 0.0000000000
## 1627     X360                    TopWare Interactive 0.0000000000
## 1628       DS                             Touchstone 0.0700000000
## 1629       PC                             Touchstone 0.0000000000
## 1630      PS3                             Touchstone 0.3500000000
## 1631     X360                             Touchstone 0.4600000000
## 1632      PS3                              Tradewest 0.0000000000
## 1633      Wii                              Tradewest 0.0200000000
## 1634     X360                              Tradewest 0.0000000000
## 1635       PC                           Trion Worlds 0.0750000000
## 1636      PS3                           Trion Worlds 0.1900000000
## 1637     X360                           Trion Worlds 0.3800000000
## 1638       PC                   Tripwire Interactive 0.0400000000
## 1639      PS3                  Tru Blu Entertainment 0.0000000000
## 1640      PS4                  Tru Blu Entertainment 0.0050000000
## 1641     X360                  Tru Blu Entertainment 0.0000000000
## 1642     XOne                  Tru Blu Entertainment 0.0000000000
## 1643      PS2                               Tryfirst 0.0000000000
## 1644       PS                                    TYO 0.2300000000
## 1645      PSV                              Type-Moon 0.0000000000
## 1646       PS                              U.S. Gold 0.0475000000
## 1647      3DS                                Ubisoft 0.1076190476
## 1648       DC                                Ubisoft 0.0000000000
## 1649       DS                                Ubisoft 0.2037569061
## 1650       GB                                Ubisoft 0.0000000000
## 1651      GBA                                Ubisoft 0.1298113208
## 1652       GC                                Ubisoft 0.0944444444
## 1653      N64                                Ubisoft 0.1158333333
## 1654       PC                                Ubisoft 0.0373684211
## 1655       PS                                Ubisoft 0.2100000000
## 1656      PS2                                Ubisoft 0.2307142857
## 1657      PS3                                Ubisoft 0.3936986301
## 1658      PS4                                Ubisoft 0.4012500000
## 1659      PSP                                Ubisoft 0.1315789474
## 1660      PSV                                Ubisoft 0.1045454545
## 1661      Wii                                Ubisoft 0.4800869565
## 1662     WiiU                                Ubisoft 0.1862500000
## 1663     X360                                Ubisoft 0.5028282828
## 1664       XB                                Ubisoft 0.3466666667
## 1665     XOne                                Ubisoft 0.4200000000
## 1666      3DS                         Ubisoft Annecy 0.0650000000
## 1667      PS3                         Ubisoft Annecy 0.1280000000
## 1668      PSP                         Ubisoft Annecy 0.0375000000
## 1669     X360                         Ubisoft Annecy 0.1166666667
## 1670       PS                            UEP Systems 1.5200000000
## 1671      3DS                        UFO Interactive 0.0100000000
## 1672       DS                        UFO Interactive 0.0670000000
## 1673      Wii                        UFO Interactive 0.0480000000
## 1674      PS4                      UIG Entertainment 0.0000000000
## 1675     2600                            Ultravision 0.4400000000
## 1676     2600                        Universal Gamex 0.5800000000
## 1677      GBA                  Universal Interactive 0.4000000000
## 1678       GC                  Universal Interactive 0.2660000000
## 1679      PS2                  Universal Interactive 0.5262500000
## 1680       XB                  Universal Interactive 0.3080000000
## 1681     2600                                Unknown 0.2700000000
## 1682      3DS                                Unknown 0.0566666667
## 1683       DS                                Unknown 0.0390909091
## 1684      GBA                                Unknown 0.1390909091
## 1685       GC                                Unknown 0.0600000000
## 1686      N64                                Unknown 0.1100000000
## 1687       PC                                Unknown 0.0390909091
## 1688       PS                                Unknown 0.2025000000
## 1689      PS2                                Unknown 0.1687500000
## 1690      PS3                                Unknown 0.0986666667
## 1691      PS4                                Unknown 0.0500000000
## 1692      PSP                                Unknown 0.0715384615
## 1693      PSV                                Unknown 0.0000000000
## 1694      Wii                                Unknown 0.0923076923
## 1695     X360                                Unknown 0.1325000000
## 1696       XB                                Unknown 0.1558333333
## 1697     XOne                                Unknown 0.0200000000
## 1698       DS                           Valcon Games 0.0500000000
## 1699      PS2                           Valcon Games 0.0300000000
## 1700      Wii                           Valcon Games 0.0366666667
## 1701     X360                           Valcon Games 0.0450000000
## 1702       DS                               ValuSoft 0.0650000000
## 1703       PC                               ValuSoft 0.0100000000
## 1704      PS2                               ValuSoft 0.1200000000
## 1705      PS3                                  Valve 0.8300000000
## 1706       PC                         Valve Software 0.1650000000
## 1707     X360                         Valve Software 1.4100000000
## 1708     SNES                                    Vap 0.0000000000
## 1709      N64                  Vatical Entertainment 0.0500000000
## 1710       PS                  Vatical Entertainment 0.0900000000
## 1711      N64                              Vic Tokai 0.1200000000
## 1712       PS                              Vic Tokai 0.0700000000
## 1713       GB                     Victor Interactive 0.0000000000
## 1714      GBA                     Victor Interactive 0.0100000000
## 1715       PS                     Victor Interactive 0.0333333333
## 1716      PS2                     Victor Interactive 0.0000000000
## 1717      SAT                     Victor Interactive 0.0000000000
## 1718     SNES                     Victor Interactive 0.0000000000
## 1719      N64                           Video System 0.3050000000
## 1720       PS                           Video System 0.0600000000
## 1721     SNES                           Video System 0.0000000000
## 1722      PS3                                  Views 0.0000000000
## 1723      PSP                                  Views 0.0000000000
## 1724       DS                          Vir2L Studios 0.0400000000
## 1725      Wii                          Vir2L Studios 0.1400000000
## 1726       DC                     Virgin Interactive 0.0000000000
## 1727       GC                     Virgin Interactive 0.0950000000
## 1728      GEN                     Virgin Interactive 0.9700000000
## 1729      N64                     Virgin Interactive 0.1525000000
## 1730       PC                     Virgin Interactive 0.8575000000
## 1731       PS                     Virgin Interactive 0.2610256410
## 1732      PS2                     Virgin Interactive 0.3666666667
## 1733      SAT                     Virgin Interactive 0.0000000000
## 1734     SNES                     Virgin Interactive 1.2600000000
## 1735       XB                     Virgin Interactive 0.1500000000
## 1736      Wii                     Virtual Play Games 0.0300000000
## 1737       PC                                  Visco 0.0200000000
## 1738       DS                          Vivendi Games 0.2007692308
## 1739      GBA                          Vivendi Games 0.2569565217
## 1740       GC                          Vivendi Games 0.1606666667
## 1741       PC                          Vivendi Games 0.3221739130
## 1742       PS                          Vivendi Games 0.1400000000
## 1743      PS2                          Vivendi Games 0.2909677419
## 1744      PS3                          Vivendi Games 0.1620000000
## 1745      PSP                          Vivendi Games 0.1137500000
## 1746      Wii                          Vivendi Games 0.2033333333
## 1747     X360                          Vivendi Games 0.2033333333
## 1748       XB                          Vivendi Games 0.1530769231
## 1749      GBA                                Wanadoo 0.0100000000
## 1750       GC                                Wanadoo 0.0100000000
## 1751      PS2                                Wanadoo 0.1350000000
## 1752       XB                                Wanadoo 0.0100000000
## 1753       DC                                Warashi 0.0000000000
## 1754       PC                          Wargaming.net 0.0000000000
## 1755      3DS Warner Bros. Interactive Entertainment 0.1877777778
## 1756       DS Warner Bros. Interactive Entertainment 0.4096875000
## 1757       GC Warner Bros. Interactive Entertainment 0.1300000000
## 1758       PC Warner Bros. Interactive Entertainment 0.0500000000
## 1759      PS2 Warner Bros. Interactive Entertainment 0.1925000000
## 1760      PS3 Warner Bros. Interactive Entertainment 0.4100000000
## 1761      PS4 Warner Bros. Interactive Entertainment 0.5450000000
## 1762      PSP Warner Bros. Interactive Entertainment 0.2300000000
## 1763      PSV Warner Bros. Interactive Entertainment 0.1056250000
## 1764      Wii Warner Bros. Interactive Entertainment 0.4683333333
## 1765     WiiU Warner Bros. Interactive Entertainment 0.1800000000
## 1766     X360 Warner Bros. Interactive Entertainment 0.5602941176
## 1767     XOne Warner Bros. Interactive Entertainment 0.4184615385
## 1768      SAT                                   Warp 0.0000000000
## 1769      3DS                WayForward Technologies 0.0500000000
## 1770       PC                       Westwood Studios 1.5500000000
## 1771       DS                White Park Bay Software 0.1300000000
## 1772     2600                     Wizard Video Games 0.5800000000
## 1773      PS2                      Xicat Interactive 0.0500000000
## 1774       XB                      Xicat Interactive 0.0200000000
## 1775       PS                     Xing Entertainment 0.0400000000
## 1776      PS2                                Xplosiv 0.0525000000
## 1777      PSP                                Xplosiv 0.0500000000
## 1778      Wii                                Xplosiv 0.1000000000
## 1779      GBA                               XS Games 0.0100000000
## 1780       PS                               XS Games 0.1300000000
## 1781      PS2                               XS Games 0.0300000000
## 1782      Wii                               XS Games 0.1775000000
## 1783     X360                               XS Games 0.2000000000
## 1784       XB                               XS Games 0.0300000000
## 1785      3DS                            Xseed Games 0.3100000000
## 1786      PS4                            Xseed Games 0.0200000000
## 1787      PSV                            Xseed Games 0.0400000000
## 1788      3DS                       Yacht Club Games 0.0700000000
## 1789      PS4                       Yacht Club Games 0.0300000000
## 1790     WiiU                       Yacht Club Games 0.0600000000
## 1791      PS2                   Yamasa Entertainment 0.0000000000
## 1792      PSP                   Yamasa Entertainment 0.0000000000
## 1793      PS2                                   Yeti 0.0000000000
## 1794      PS4                                   Yeti 0.0000000000
## 1795      PSP                                   Yeti 0.0000000000
## 1796     X360                                   Yeti 0.0000000000
## 1797      PS2                                 Yuke's 0.0033333333
## 1798      SAT                                Yumedia 0.0000000000
## 1799      PSP                                 Zenrin 0.0000000000
## 1800       DS                 Zoo Digital Publishing 0.0719230769
## 1801      GBA                 Zoo Digital Publishing 0.0760526316
## 1802       GC                 Zoo Digital Publishing 0.0200000000
## 1803      PS2                 Zoo Digital Publishing 0.1454545455
## 1804      Wii                 Zoo Digital Publishing 0.1188888889
## 1805       XB                 Zoo Digital Publishing 0.1000000000
## 1806       DS                              Zoo Games 0.0770000000
## 1807      Wii                              Zoo Games 0.1568181818
## 1808     X360                              Zoo Games 0.3000000000
## 1809       DS                            Zushi Games 0.0242857143
## 1810      PSP                            Zushi Games 0.1000000000
## 1811      Wii                            Zushi Games 0.1500000000
## 1812     X360                            Zushi Games 0.1000000000
aggregate(NA_Sales,by=list(Year = Year,Genre = Genre),mean)
##     Year        Genre           x
## 1   1980       Action 0.320000000
## 2   1981       Action 0.554400000
## 3   1982       Action 0.337222222
## 4   1983       Action 0.381428571
## 5   1984       Action 0.800000000
## 6   1985       Action 0.820000000
## 7   1986       Action 1.086666667
## 8   1987       Action 0.520000000
## 9   1988       Action 0.575000000
## 10  1989       Action 1.915000000
## 11  1990       Action 1.423333333
## 12  1991       Action 0.694000000
## 13  1992       Action 2.210000000
## 14  1993       Action 0.106666667
## 15  1994       Action 0.142500000
## 16  1995       Action 0.216250000
## 17  1996       Action 0.532500000
## 18  1997       Action 0.464516129
## 19  1998       Action 0.457954545
## 20  1999       Action 0.372750000
## 21  2000       Action 0.404318182
## 22  2001       Action 0.444925373
## 23  2002       Action 0.382480000
## 24  2003       Action 0.262083333
## 25  2004       Action 0.312640000
## 26  2005       Action 0.258437500
## 27  2006       Action 0.208532609
## 28  2007       Action 0.279146919
## 29  2008       Action 0.327556561
## 30  2009       Action 0.263272059
## 31  2010       Action 0.266902655
## 32  2011       Action 0.224811715
## 33  2012       Action 0.197406015
## 34  2013       Action 0.363445946
## 35  2014       Action 0.208225806
## 36  2015       Action 0.089529412
## 37  2016       Action 0.049327731
## 38  2017       Action 0.000000000
## 39   N/A       Action 0.254444444
## 40  1983    Adventure 0.380000000
## 41  1987    Adventure 2.190000000
## 42  1991    Adventure 0.425000000
## 43  1992    Adventure 1.542500000
## 44  1993    Adventure 0.000000000
## 45  1994    Adventure 0.015000000
## 46  1995    Adventure 0.001538462
## 47  1996    Adventure 0.050588235
## 48  1997    Adventure 0.168571429
## 49  1998    Adventure 0.137826087
## 50  1999    Adventure 0.174736842
## 51  2000    Adventure 0.063125000
## 52  2001    Adventure 0.186666667
## 53  2002    Adventure 0.112380952
## 54  2003    Adventure 0.080000000
## 55  2004    Adventure 0.127179487
## 56  2005    Adventure 0.121428571
## 57  2006    Adventure 0.072676056
## 58  2007    Adventure 0.155476190
## 59  2008    Adventure 0.078373494
## 60  2009    Adventure 0.071914894
## 61  2010    Adventure 0.040909091
## 62  2011    Adventure 0.054537037
## 63  2012    Adventure 0.030689655
## 64  2013    Adventure 0.027166667
## 65  2014    Adventure 0.025866667
## 66  2015    Adventure 0.051111111
## 67  2016    Adventure 0.010000000
## 68   N/A    Adventure 0.374000000
## 69  1980     Fighting 0.720000000
## 70  1985     Fighting 0.000000000
## 71  1987     Fighting 1.400000000
## 72  1991     Fighting 0.000000000
## 73  1992     Fighting 0.982857143
## 74  1993     Fighting 0.181818182
## 75  1994     Fighting 0.129545455
## 76  1995     Fighting 0.151379310
## 77  1996     Fighting 0.237333333
## 78  1997     Fighting 0.215357143
## 79  1998     Fighting 0.449512195
## 80  1999     Fighting 0.354583333
## 81  2000     Fighting 0.334137931
## 82  2001     Fighting 0.510555556
## 83  2002     Fighting 0.259259259
## 84  2003     Fighting 0.302727273
## 85  2004     Fighting 0.254871795
## 86  2005     Fighting 0.240232558
## 87  2006     Fighting 0.226909091
## 88  2007     Fighting 0.146600000
## 89  2008     Fighting 0.319824561
## 90  2009     Fighting 0.331132075
## 91  2010     Fighting 0.186500000
## 92  2011     Fighting 0.237600000
## 93  2012     Fighting 0.149655172
## 94  2013     Fighting 0.159000000
## 95  2014     Fighting 0.299565217
## 96  2015     Fighting 0.171428571
## 97  2016     Fighting 0.114285714
## 98   N/A     Fighting 0.237500000
## 99  1980         Misc 0.632500000
## 100 1982         Misc 0.810000000
## 101 1983         Misc 0.010000000
## 102 1984         Misc 0.000000000
## 103 1989         Misc 0.000000000
## 104 1991         Misc 0.000000000
## 105 1992         Misc 1.150000000
## 106 1993         Misc 0.000000000
## 107 1994         Misc 0.248333333
## 108 1995         Misc 0.105000000
## 109 1996         Misc 0.177391304
## 110 1997         Misc 0.273333333
## 111 1998         Misc 0.251363636
## 112 1999         Misc 0.478000000
## 113 2000         Misc 0.357000000
## 114 2001         Misc 0.383076923
## 115 2002         Misc 0.188666667
## 116 2003         Misc 0.202075472
## 117 2004         Misc 0.201764706
## 118 2005         Misc 0.233043478
## 119 2006         Misc 0.238990826
## 120 2007         Misc 0.317218543
## 121 2008         Misc 0.224669811
## 122 2009         Misc 0.198550725
## 123 2010         Misc 0.273482587
## 124 2011         Misc 0.175597826
## 125 2012         Misc 0.289210526
## 126 2013         Misc 0.298333333
## 127 2014         Misc 0.230000000
## 128 2015         Misc 0.123333333
## 129 2016         Misc 0.012222222
## 130  N/A         Misc 0.267586207
## 131 1981     Platform 2.156666667
## 132 1982     Platform 0.938000000
## 133 1983     Platform 0.560000000
## 134 1984     Platform 0.000000000
## 135 1985     Platform 7.482500000
## 136 1986     Platform 0.178333333
## 137 1987     Platform 0.450000000
## 138 1988     Platform 4.085000000
## 139 1989     Platform 4.046666667
## 140 1990     Platform 4.713333333
## 141 1991     Platform 0.726666667
## 142 1992     Platform 1.371666667
## 143 1993     Platform 0.878181818
## 144 1994     Platform 1.352727273
## 145 1995     Platform 0.508461538
## 146 1996     Platform 0.986428571
## 147 1997     Platform 0.600555556
## 148 1998     Platform 0.682000000
## 149 1999     Platform 0.722222222
## 150 2000     Platform 0.327916667
## 151 2001     Platform 0.502558140
## 152 2002     Platform 0.347142857
## 153 2003     Platform 0.290919540
## 154 2004     Platform 0.399242424
## 155 2005     Platform 0.187710843
## 156 2006     Platform 0.431851852
## 157 2007     Platform 0.452857143
## 158 2008     Platform 0.283387097
## 159 2009     Platform 0.698965517
## 160 2010     Platform 0.553548387
## 161 2011     Platform 0.352972973
## 162 2012     Platform 0.610000000
## 163 2013     Platform 0.314054054
## 164 2014     Platform 0.302000000
## 165 2015     Platform 0.178571429
## 166 2016     Platform 0.079000000
## 167  N/A     Platform 0.106000000
## 168 1981       Puzzle 1.045000000
## 169 1982       Puzzle 3.116666667
## 170 1983       Puzzle 0.720000000
## 171 1984       Puzzle 0.230000000
## 172 1985       Puzzle 0.332500000
## 173 1988       Puzzle 2.970000000
## 174 1989       Puzzle 5.308000000
## 175 1990       Puzzle 1.565000000
## 176 1991       Puzzle 0.215000000
## 177 1992       Puzzle 0.312000000
## 178 1993       Puzzle 0.206666667
## 179 1994       Puzzle 0.000000000
## 180 1995       Puzzle 0.017500000
## 181 1996       Puzzle 0.242222222
## 182 1997       Puzzle 0.095714286
## 183 1998       Puzzle 0.198461538
## 184 1999       Puzzle 0.135000000
## 185 2000       Puzzle 0.144166667
## 186 2001       Puzzle 0.348000000
## 187 2002       Puzzle 0.170500000
## 188 2003       Puzzle 0.116250000
## 189 2004       Puzzle 0.153600000
## 190 2005       Puzzle 0.198787879
## 191 2006       Puzzle 0.102325581
## 192 2007       Puzzle 0.151969697
## 193 2008       Puzzle 0.127812500
## 194 2009       Puzzle 0.143544304
## 195 2010       Puzzle 0.145555556
## 196 2011       Puzzle 0.039069767
## 197 2012       Puzzle 0.027272727
## 198 2013       Puzzle 0.063333333
## 199 2014       Puzzle 0.077500000
## 200 2015       Puzzle 0.008333333
## 201  N/A       Puzzle 0.160909091
## 202 1981       Racing 0.450000000
## 203 1982       Racing 0.735000000
## 204 1984       Racing 0.766666667
## 205 1986       Racing 1.130000000
## 206 1988       Racing 1.470000000
## 207 1990       Racing 1.550000000
## 208 1991       Racing 0.580000000
## 209 1992       Racing 1.770000000
## 210 1993       Racing 0.000000000
## 211 1994       Racing 0.000000000
## 212 1995       Racing 0.189166667
## 213 1996       Racing 0.770000000
## 214 1997       Racing 0.431111111
## 215 1998       Racing 0.298571429
## 216 1999       Racing 0.431632653
## 217 2000       Racing 0.255813953
## 218 2001       Racing 0.414084507
## 219 2002       Racing 0.179514563
## 220 2003       Racing 0.253669725
## 221 2004       Racing 0.312535211
## 222 2005       Racing 0.399350649
## 223 2006       Racing 0.270400000
## 224 2007       Racing 0.214651163
## 225 2008       Racing 0.408536585
## 226 2009       Racing 0.179047619
## 227 2010       Racing 0.250175439
## 228 2011       Racing 0.224769231
## 229 2012       Racing 0.146000000
## 230 2013       Racing 0.263125000
## 231 2014       Racing 0.217037037
## 232 2015       Racing 0.103684211
## 233 2016       Racing 0.016500000
## 234  N/A       Racing 0.108260870
## 235 1986 Role-Playing 0.490000000
## 236 1987 Role-Playing 0.156666667
## 237 1988 Role-Playing 0.033333333
## 238 1989 Role-Playing 0.000000000
## 239 1990 Role-Playing 0.040000000
## 240 1991 Role-Playing 0.048000000
## 241 1992 Role-Playing 0.000000000
## 242 1993 Role-Playing 0.027777778
## 243 1994 Role-Playing 0.050588235
## 244 1995 Role-Playing 0.029583333
## 245 1996 Role-Playing 0.456428571
## 246 1997 Role-Playing 0.230869565
## 247 1998 Role-Playing 0.352307692
## 248 1999 Role-Playing 0.523939394
## 249 2000 Role-Playing 0.248275862
## 250 2001 Role-Playing 0.181951220
## 251 2002 Role-Playing 0.371454545
## 252 2003 Role-Playing 0.287500000
## 253 2004 Role-Playing 0.359166667
## 254 2005 Role-Playing 0.172676056
## 255 2006 Role-Playing 0.221636364
## 256 2007 Role-Playing 0.192233010
## 257 2008 Role-Playing 0.225446429
## 258 2009 Role-Playing 0.185048544
## 259 2010 Role-Playing 0.277184466
## 260 2011 Role-Playing 0.208210526
## 261 2012 Role-Playing 0.228846154
## 262 2013 Role-Playing 0.184366197
## 263 2014 Role-Playing 0.149010989
## 264 2015 Role-Playing 0.171153846
## 265 2016 Role-Playing 0.034750000
## 266 2017 Role-Playing 0.000000000
## 267  N/A Role-Playing 0.045882353
## 268 1980      Shooter 3.280000000
## 269 1981      Shooter 0.937000000
## 270 1982      Shooter 0.710000000
## 271 1983      Shooter 0.450000000
## 272 1984      Shooter 9.263333333
## 273 1985      Shooter 0.650000000
## 274 1986      Shooter 0.235000000
## 275 1987      Shooter 0.330000000
## 276 1988      Shooter 0.470000000
## 277 1989      Shooter 0.400000000
## 278 1991      Shooter 0.353333333
## 279 1992      Shooter 0.006666667
## 280 1993      Shooter 0.805000000
## 281 1994      Shooter 0.337272727
## 282 1995      Shooter 0.024137931
## 283 1996      Shooter 0.142608696
## 284 1997      Shooter 0.555555556
## 285 1998      Shooter 0.243913043
## 286 1999      Shooter 0.485625000
## 287 2000      Shooter 0.200000000
## 288 2001      Shooter 0.419722222
## 289 2002      Shooter 0.363164557
## 290 2003      Shooter 0.220821918
## 291 2004      Shooter 0.344659091
## 292 2005      Shooter 0.289791667
## 293 2006      Shooter 0.333913043
## 294 2007      Shooter 0.457411765
## 295 2008      Shooter 0.421084337
## 296 2009      Shooter 0.428461538
## 297 2010      Shooter 0.532098765
## 298 2011      Shooter 0.530000000
## 299 2012      Shooter 0.730416667
## 300 2013      Shooter 0.520338983
## 301 2014      Shooter 0.653617021
## 302 2015      Shooter 0.905588235
## 303 2016      Shooter 0.232500000
## 304  N/A      Shooter 0.265714286
## 305 1981   Simulation 0.420000000
## 306 1985   Simulation 0.000000000
## 307 1988   Simulation 0.000000000
## 308 1990   Simulation 0.460000000
## 309 1991   Simulation 0.465000000
## 310 1992   Simulation 1.200000000
## 311 1993   Simulation 0.000000000
## 312 1994   Simulation 0.048571429
## 313 1995   Simulation 0.097142857
## 314 1996   Simulation 0.416923077
## 315 1997   Simulation 0.100000000
## 316 1998   Simulation 0.348750000
## 317 1999   Simulation 0.170500000
## 318 2000   Simulation 0.074000000
## 319 2001   Simulation 0.367857143
## 320 2002   Simulation 0.316315789
## 321 2003   Simulation 0.344571429
## 322 2004   Simulation 0.212962963
## 323 2005   Simulation 0.507105263
## 324 2006   Simulation 0.183793103
## 325 2007   Simulation 0.300777778
## 326 2008   Simulation 0.226638655
## 327 2009   Simulation 0.143577236
## 328 2010   Simulation 0.136951220
## 329 2011   Simulation 0.133750000
## 330 2012   Simulation 0.171666667
## 331 2013   Simulation 0.125555556
## 332 2014   Simulation 0.110909091
## 333 2015   Simulation 0.075333333
## 334 2016   Simulation 0.000000000
## 335 2020   Simulation 0.270000000
## 336  N/A   Simulation 0.095625000
## 337 1980       Sports 0.460000000
## 338 1981       Sports 0.185000000
## 339 1982       Sports 0.490000000
## 340 1983       Sports 0.730000000
## 341 1984       Sports 0.850000000
## 342 1985       Sports 0.180000000
## 343 1986       Sports 0.783333333
## 344 1987       Sports 0.100000000
## 345 1988       Sports 0.685000000
## 346 1989       Sports 0.746666667
## 347 1990       Sports 0.093333333
## 348 1991       Sports 0.058571429
## 349 1992       Sports 0.437500000
## 350 1993       Sports 0.004444444
## 351 1994       Sports 0.113636364
## 352 1995       Sports 0.088275862
## 353 1996       Sports 0.149615385
## 354 1997       Sports 0.338043478
## 355 1998       Sports 0.352857143
## 356 1999       Sports 0.243387097
## 357 2000       Sports 0.280864198
## 358 2001       Sports 0.300000000
## 359 2002       Sports 0.187074468
## 360 2003       Sports 0.251600000
## 361 2004       Sports 0.363396226
## 362 2005       Sports 0.295573770
## 363 2006       Sports 0.528333333
## 364 2007       Sports 0.286167665
## 365 2008       Sports 0.244600000
## 366 2009       Sports 0.388423913
## 367 2010       Sports 0.261075269
## 368 2011       Sports 0.225000000
## 369 2012       Sports 0.303703704
## 370 2013       Sports 0.361886792
## 371 2014       Sports 0.360363636
## 372 2015       Sports 0.297741935
## 373 2016       Sports 0.120263158
## 374  N/A       Sports 0.315714286
## 375 1991     Strategy 0.000000000
## 376 1992     Strategy 0.003333333
## 377 1993     Strategy 0.150000000
## 378 1994     Strategy 0.148333333
## 379 1995     Strategy 0.139285714
## 380 1996     Strategy 0.155000000
## 381 1997     Strategy 0.154761905
## 382 1998     Strategy 0.130285714
## 383 1999     Strategy 0.340384615
## 384 2000     Strategy 0.200000000
## 385 2001     Strategy 0.160000000
## 386 2002     Strategy 0.101818182
## 387 2003     Strategy 0.095675676
## 388 2004     Strategy 0.091562500
## 389 2005     Strategy 0.084827586
## 390 2006     Strategy 0.049285714
## 391 2007     Strategy 0.056865672
## 392 2008     Strategy 0.096800000
## 393 2009     Strategy 0.071076923
## 394 2010     Strategy 0.109056604
## 395 2011     Strategy 0.073043478
## 396 2012     Strategy 0.062666667
## 397 2013     Strategy 0.125789474
## 398 2014     Strategy 0.020000000
## 399 2015     Strategy 0.033529412
## 400 2016     Strategy 0.011000000
## 401  N/A     Strategy 0.081000000
aggregate(NA_Sales,by=list(Year = Year,Publisher = Publisher),mean)
##      Year                              Publisher           x
## 1    2006                        10TACLE Studios 0.010000000
## 2    2007                        10TACLE Studios 0.030000000
## 3    2009                             1C Company 0.000000000
## 4    2011                             1C Company 0.005000000
## 5    1981           20th Century Fox Video Games 0.423333333
## 6    1982           20th Century Fox Video Games 0.275000000
## 7    2008                                 2D Boy 0.000000000
## 8    1998                                    3DO 0.150000000
## 9    1999                                    3DO 0.501666667
## 10   2000                                    3DO 0.186000000
## 11   2001                                    3DO 0.069090909
## 12   2002                                    3DO 0.075000000
## 13   2003                                    3DO 0.083333333
## 14   2009                                49Games 0.000000000
## 15   2002                              505 Games 0.020000000
## 16   2003                              505 Games 0.050000000
## 17   2004                              505 Games 0.049000000
## 18   2005                              505 Games 0.068461538
## 19   2006                              505 Games 0.188636364
## 20   2007                              505 Games 0.217142857
## 21   2008                              505 Games 0.160769231
## 22   2009                              505 Games 0.157666667
## 23   2010                              505 Games 0.386363636
## 24   2011                              505 Games 0.094285714
## 25   2012                              505 Games 0.111250000
## 26   2013                              505 Games 0.166666667
## 27   2014                              505 Games 0.111666667
## 28   2015                              505 Games 0.057500000
## 29   2016                              505 Games 0.008571429
## 30   2008                                    5pb 0.000000000
## 31   2009                                    5pb 0.000000000
## 32   2010                                    5pb 0.000000000
## 33   2011                                    5pb 0.002500000
## 34   2012                                    5pb 0.000000000
## 35   2013                                    5pb 0.000000000
## 36   2014                                    5pb 0.000000000
## 37   2015                                    5pb 0.000000000
## 38   2016                                    5pb 0.000000000
## 39   2010                               7G//AMES 0.000000000
## 40   2011                               7G//AMES 0.000000000
## 41   1999                             989 Sports 0.210000000
## 42   1997                            989 Studios 0.145000000
## 43   1998                            989 Studios 0.943333333
## 44   1999                            989 Studios 0.546666667
## 45   2010                               Abylight 0.070000000
## 46   1993                  Acclaim Entertainment 1.480000000
## 47   1994                  Acclaim Entertainment 0.632857143
## 48   1995                  Acclaim Entertainment 0.131818182
## 49   1996                  Acclaim Entertainment 0.131538462
## 50   1997                  Acclaim Entertainment 0.339000000
## 51   1998                  Acclaim Entertainment 0.448260870
## 52   1999                  Acclaim Entertainment 0.250000000
## 53   2000                  Acclaim Entertainment 0.240000000
## 54   2001                  Acclaim Entertainment 0.212916667
## 55   2002                  Acclaim Entertainment 0.142424242
## 56   2003                  Acclaim Entertainment 0.105000000
## 57   2004                  Acclaim Entertainment 0.090000000
## 58   1996                               Accolade 0.100000000
## 59   1997                               Accolade 1.050000000
## 60   1999                               Accolade 0.100000000
## 61   2009                            Ackkstudios 0.070000000
## 62   2010                            Ackkstudios 0.060000000
## 63   2011                            Ackkstudios 0.000000000
## 64   2012                            Ackkstudios 0.000000000
## 65   2006                                Acquire 0.000000000
## 66   2008                                Acquire 0.060000000
## 67   2009                                Acquire 0.000000000
## 68   2010                                Acquire 0.000000000
## 69   2011                                Acquire 0.000000000
## 70   2012                                Acquire 0.000000000
## 71   2014                                Acquire 0.080000000
## 72   1980                             Activision 0.564000000
## 73   1981                             Activision 1.325000000
## 74   1982                             Activision 0.437500000
## 75   1983                             Activision 0.603333333
## 76   1984                             Activision 0.260000000
## 77   1985                             Activision 0.210000000
## 78   1987                             Activision 0.520000000
## 79   1988                             Activision 0.345000000
## 80   1989                             Activision 0.450000000
## 81   1994                             Activision 0.890000000
## 82   1995                             Activision 1.700000000
## 83   1996                             Activision 0.090000000
## 84   1997                             Activision 0.426666667
## 85   1998                             Activision 0.315000000
## 86   1999                             Activision 0.636250000
## 87   2000                             Activision 0.716153846
## 88   2001                             Activision 0.476521739
## 89   2002                             Activision 0.326800000
## 90   2003                             Activision 0.387058824
## 91   2004                             Activision 0.441063830
## 92   2005                             Activision 0.355285714
## 93   2006                             Activision 0.260200000
## 94   2007                             Activision 0.561200000
## 95   2008                             Activision 0.463977273
## 96   2009                             Activision 0.377107438
## 97   2010                             Activision 0.443707865
## 98   2011                             Activision 0.386266667
## 99   2012                             Activision 0.627857143
## 100  2013                             Activision 0.611842105
## 101  2014                             Activision 0.513095238
## 102  2015                             Activision 0.434615385
## 103  2016                             Activision 0.119285714
## 104   N/A                             Activision 0.410000000
## 105  2014                    Activision Blizzard 0.080000000
## 106  2001                       Activision Value 0.120000000
## 107  2002                       Activision Value 0.070000000
## 108  2003                       Activision Value 0.265000000
## 109  2004                       Activision Value 0.050000000
## 110  2005                       Activision Value 0.040000000
## 111  2006                       Activision Value 0.076666667
## 112  2007                       Activision Value 0.082500000
## 113  2008                       Activision Value 0.128888889
## 114  2009                       Activision Value 0.428571429
## 115  1996                       Adeline Software 0.100000000
## 116  2010                               Aerosoft 0.010000000
## 117  2013                               Aerosoft 0.000000000
## 118  2004                 Agatsuma Entertainment 0.060000000
## 119  2012                 Agatsuma Entertainment 0.160000000
## 120  2013                 Agatsuma Entertainment 0.000000000
## 121  1997                                 Agetec 0.020000000
## 122  1998                                 Agetec 0.030000000
## 123  2002                                 Agetec 0.280000000
## 124  2003                                 Agetec 0.055000000
## 125  2009                                 Agetec 0.030000000
## 126  2008                            Aksys Games 0.020000000
## 127  2014                            Aksys Games 0.045000000
## 128  2015                            Aksys Games 0.003333333
## 129  2016                            Aksys Games 0.035000000
## 130  2009                   Alawar Entertainment 0.000000000
## 131  2015                   Alawar Entertainment 0.000000000
## 132  2006                              Alchemist 0.295000000
## 133  2007                              Alchemist 0.000000000
## 134  2008                              Alchemist 0.000000000
## 135  2009                              Alchemist 0.000000000
## 136  2010                              Alchemist 0.000000000
## 137  2011                              Alchemist 0.000000000
## 138  2012                              Alchemist 0.000000000
## 139  2013                              Alchemist 0.000000000
## 140  2015                              Alchemist 0.000000000
## 141  2010                   Alternative Software 0.000000000
## 142  2015                   Alternative Software 0.000000000
## 143  2016                   Alternative Software 0.000000000
## 144  2001                                 Altron 0.050000000
## 145  2009                                 Alvion 0.000000000
## 146  2010                                 Alvion 0.000000000
## 147  1996                     American Softworks 0.130000000
## 148  1991                          Angel Studios 0.000000000
## 149  1994                          Angel Studios 0.000000000
## 150  1995                          Angel Studios 0.000000000
## 151  1982                        Answer Software 0.460000000
## 152  2007                         AQ Interactive 0.060000000
## 153  2008                         AQ Interactive 0.200000000
## 154  2009                         AQ Interactive 0.026666667
## 155  1999                              Aqua Plus 0.000000000
## 156  2006                              Aqua Plus 0.000000000
## 157  2007                              Aqua Plus 0.000000000
## 158  2008                              Aqua Plus 0.000000000
## 159  2009                              Aqua Plus 0.000000000
## 160  2010                              Aqua Plus 0.000000000
## 161  2011                              Aqua Plus 0.000000000
## 162  2012                              Aqua Plus 0.025000000
## 163  2013                              Aqua Plus 0.000000000
## 164  2015                              Aqua Plus 0.000000000
## 165  2016                              Aqua Plus 0.000000000
## 166  1997                                  Aques 0.000000000
## 167  2008                       Arc System Works 0.047500000
## 168  2009                       Arc System Works 0.016666667
## 169  2010                       Arc System Works 0.016666667
## 170  2012                       Arc System Works 0.000000000
## 171  2013                       Arc System Works 0.030000000
## 172  2014                       Arc System Works 0.070000000
## 173  2015                       Arc System Works 0.007500000
## 174  1992                    Arena Entertainment 1.850000000
## 175  2006                                   Aria 0.000000000
## 176  2002                                  Arika 0.010000000
## 177  2004                                  Arika 0.030000000
## 178  2008                                  Arika 0.000000000
## 179  1994                                ArtDink 0.000000000
## 180  1996                                ArtDink 0.035000000
## 181  1998                                ArtDink 0.000000000
## 182  2001                                ArtDink 0.000000000
## 183  2009                                ArtDink 0.000000000
## 184  2010                                ArtDink 0.000000000
## 185  2014                                ArtDink 0.000000000
## 186  1999                             Aruze Corp 0.000000000
## 187  2000                             Aruze Corp 0.000000000
## 188  1996                              ASC Games 0.730000000
## 189  1998                              ASC Games 0.360000000
## 190  1999                              ASC Games 0.030000000
## 191  2012                  Ascaron Entertainment 0.000000000
## 192  2004             Ascaron Entertainment GmbH 0.000000000
## 193  2008             Ascaron Entertainment GmbH 0.000000000
## 194  1994                    ASCII Entertainment 0.000000000
## 195  1995                    ASCII Entertainment 0.000000000
## 196  1996                    ASCII Entertainment 0.014000000
## 197  1997                    ASCII Entertainment 0.038333333
## 198  1998                    ASCII Entertainment 0.095000000
## 199  1999                    ASCII Entertainment 0.070000000
## 200  2001                    ASCII Entertainment 0.000000000
## 201  2008                      ASCII Media Works 0.000000000
## 202  2009                      ASCII Media Works 0.000000000
## 203  2010                      ASCII Media Works 0.000000000
## 204  2011                      ASCII Media Works 0.000000000
## 205  2014                      ASCII Media Works 0.000000000
## 206  2010                                 Asgard 0.000000000
## 207  2011                                 Asgard 0.000000000
## 208  2012                                 Asgard 0.000000000
## 209  2013                                 Asgard 0.000000000
## 210  2015                                 Asgard 0.000000000
## 211  1996                                    ASK 0.000000000
## 212  1996                Asmik Ace Entertainment 0.000000000
## 213  2000                Asmik Ace Entertainment 0.000000000
## 214  2006                Asmik Ace Entertainment 0.000000000
## 215  1994                             Asmik Corp 0.000000000
## 216  1995                             Asmik Corp 0.000000000
## 217  2003                                  Aspyr 0.010000000
## 218  2007                                  Aspyr 0.010000000
## 219  2008                                  Aspyr 0.050000000
## 220  2009                                  Aspyr 0.107500000
## 221  2009                               Astragon 0.030000000
## 222  2010                               Astragon 0.066666667
## 223  2011                               Astragon 0.010000000
## 224  2016                               Astragon 0.000000000
## 225  2010                   Asylum Entertainment 0.018000000
## 226  2011                   Asylum Entertainment 0.000000000
## 227  1980                                  Atari 1.942500000
## 228  1981                                  Atari 0.715454545
## 229  1982                                  Atari 1.293571429
## 230  1983                                  Atari 0.528333333
## 231  1986                                  Atari 0.315000000
## 232  1987                                  Atari 0.200000000
## 233  1989                                  Atari 0.140000000
## 234  1998                                  Atari 0.405000000
## 235  1999                                  Atari 0.211666667
## 236  2000                                  Atari 1.200000000
## 237  2001                                  Atari 0.480000000
## 238  2002                                  Atari 0.292127660
## 239  2003                                  Atari 0.267500000
## 240  2004                                  Atari 0.170000000
## 241  2005                                  Atari 0.124722222
## 242  2006                                  Atari 0.126086957
## 243  2007                                  Atari 0.207419355
## 244  2008                                  Atari 0.141875000
## 245  2009                                  Atari 0.147000000
## 246  2010                                  Atari 0.120000000
## 247  2011                                  Atari 0.044000000
## 248  2012                                  Atari 0.040000000
## 249  2016                                  Atari 0.000000000
## 250   N/A                                  Atari 0.550625000
## 251  1999                                 Athena 0.020000000
## 252  2001                                 Athena 0.000000000
## 253  1994                                  Atlus 0.000000000
## 254  1995                                  Atlus 0.000000000
## 255  1996                                  Atlus 0.080000000
## 256  1997                                  Atlus 0.020000000
## 257  1998                                  Atlus 0.055000000
## 258  1999                                  Atlus 0.045000000
## 259  2000                                  Atlus 0.030000000
## 260  2001                                  Atlus 0.000000000
## 261  2002                                  Atlus 0.013333333
## 262  2003                                  Atlus 0.036666667
## 263  2004                                  Atlus 0.035000000
## 264  2006                                  Atlus 0.000000000
## 265  2007                                  Atlus 0.025000000
## 266  2008                                  Atlus 0.122000000
## 267  2009                                  Atlus 0.086000000
## 268  2010                                  Atlus 0.107500000
## 269  2011                                  Atlus 0.040000000
## 270  2012                                  Atlus 0.155714286
## 271  2013                                  Atlus 0.190000000
## 272  2014                                  Atlus 0.040000000
## 273  2015                                  Atlus 0.053333333
## 274  2016                                  Atlus 0.000000000
## 275  1982                     Avalon Interactive 0.150000000
## 276  1999                     Avalon Interactive 0.060000000
## 277  2002                     Avalon Interactive 0.030000000
## 278  2003                     Avalon Interactive 0.030000000
## 279  2004                     Avalon Interactive 0.035000000
## 280  2007                              Avanquest 0.016666667
## 281  2008                              Avanquest 0.090000000
## 282  2009                              Avanquest 0.070000000
## 283  2010                              Avanquest 0.062500000
## 284  2011                              Avanquest 0.021428571
## 285  2016                              Avanquest 0.000000000
## 286   N/A                              Avanquest 0.000000000
## 287  2012                     Avanquest Software 0.158333333
## 288  2013                     Avanquest Software 0.000000000
## 289  2015                     Avanquest Software 0.000000000
## 290  1998                                  Axela 0.000000000
## 291  2000                     BAM! Entertainment 0.060000000
## 292  2001                     BAM! Entertainment 0.117142857
## 293  2002                     BAM! Entertainment 0.100555556
## 294  2003                     BAM! Entertainment 0.066666667
## 295  2004                     BAM! Entertainment 0.023333333
## 296  1991                              Banpresto 0.000000000
## 297  1992                              Banpresto 0.000000000
## 298  1993                              Banpresto 0.000000000
## 299  1994                              Banpresto 0.000000000
## 300  1995                              Banpresto 0.000000000
## 301  1996                              Banpresto 0.000000000
## 302  1997                              Banpresto 0.000000000
## 303  1998                              Banpresto 0.000000000
## 304  1999                              Banpresto 0.000000000
## 305  2000                              Banpresto 0.000000000
## 306  2001                              Banpresto 0.010000000
## 307  2002                              Banpresto 0.015000000
## 308  2003                              Banpresto 0.006666667
## 309  2004                              Banpresto 0.000000000
## 310  2005                              Banpresto 0.000000000
## 311  2006                              Banpresto 0.000000000
## 312  2007                              Banpresto 0.007777778
## 313  2008                              Banpresto 0.017500000
## 314  2009                              Banpresto 0.065000000
## 315  2011                              Banpresto 0.000000000
## 316  2007                                Benesse 0.005000000
## 317  2008                                Benesse 0.000000000
## 318  2001                               Berkeley 0.020000000
## 319  2002                     Bethesda Softworks 0.640000000
## 320  2003                     Bethesda Softworks 0.150000000
## 321  2004                     Bethesda Softworks 0.065000000
## 322  2005                     Bethesda Softworks 0.055000000
## 323  2006                     Bethesda Softworks 0.025000000
## 324  2007                     Bethesda Softworks 0.480000000
## 325  2008                     Bethesda Softworks 0.971428571
## 326  2009                     Bethesda Softworks 0.113333333
## 327  2010                     Bethesda Softworks 1.583333333
## 328  2011                     Bethesda Softworks 0.948333333
## 329  2012                     Bethesda Softworks 0.430000000
## 330  2014                     Bethesda Softworks 0.278181818
## 331  2015                     Bethesda Softworks 0.654545455
## 332  2016                     Bethesda Softworks 0.313333333
## 333   N/A                     Bethesda Softworks 0.145000000
## 334  2002                    Big Ben Interactive 0.040000000
## 335  2004                    Big Ben Interactive 0.040000000
## 336  2008                    Big Ben Interactive 0.020000000
## 337  2009                    Big Ben Interactive 0.335000000
## 338  2011                    Big Ben Interactive 0.010000000
## 339  2013                    Big Ben Interactive 0.000000000
## 340  2008                         Big Fish Games 0.000000000
## 341  2014                         Big Fish Games 0.000000000
## 342  2015                     Bigben Interactive 0.007692308
## 343  2009                      bitComposer Games 0.000000000
## 344  2011                      bitComposer Games 0.040000000
## 345  2005                       Black Bean Games 0.010000000
## 346  2007                       Black Bean Games 0.030000000
## 347  2008                       Black Bean Games 0.060000000
## 348  2009                       Black Bean Games 0.038000000
## 349  2010                       Black Bean Games 0.067500000
## 350  2011                       Black Bean Games 0.020000000
## 351   N/A                       Black Bean Games 0.000000000
## 352  2002                      Black Label Games 0.590000000
## 353  2007               Blast! Entertainment Ltd 0.080000000
## 354  2008               Blast! Entertainment Ltd 0.020000000
## 355  2009               Blast! Entertainment Ltd 0.032500000
## 356  2001                              Blue Byte 0.000000000
## 357  1996          BMG Interactive Entertainment 0.053333333
## 358  1997          BMG Interactive Entertainment 0.063333333
## 359  1998          BMG Interactive Entertainment 0.320000000
## 360  2013                    Bohemia Interactive 0.000000000
## 361  1982                                   Bomb 0.210000000
## 362  2013                               Boost On 0.000000000
## 363  1991                                    BPS 0.000000000
## 364  1994                                    BPS 0.000000000
## 365  2007                    Brash Entertainment 0.080000000
## 366  2008                    Brash Entertainment 0.091250000
## 367  2006                               Broccoli 0.000000000
## 368  2007                               Broccoli 0.000000000
## 369  2008                               Broccoli 0.000000000
## 370  2009                               Broccoli 0.000000000
## 371  2010                               Broccoli 0.000000000
## 372  2011                               Broccoli 0.000000000
## 373  2012                               Broccoli 0.000000000
## 374  2013                               Broccoli 0.000000000
## 375  2015                               Broccoli 0.000000000
## 376  2016                               Broccoli 0.000000000
## 377  2012                              BushiRoad 0.000000000
## 378  1985                                 Capcom 0.650000000
## 379  1986                                 Capcom 0.646666667
## 380  1987                                 Capcom 0.450000000
## 381  1988                                 Capcom 0.875000000
## 382  1989                                 Capcom 0.910000000
## 383  1990                                 Capcom 0.676666667
## 384  1991                                 Capcom 0.336666667
## 385  1992                                 Capcom 1.235000000
## 386  1993                                 Capcom 0.317142857
## 387  1994                                 Capcom 0.000000000
## 388  1996                                 Capcom 0.146666667
## 389  1997                                 Capcom 0.073333333
## 390  1998                                 Capcom 0.148571429
## 391  1999                                 Capcom 0.215000000
## 392  2000                                 Capcom 0.144000000
## 393  2001                                 Capcom 0.333000000
## 394  2002                                 Capcom 0.202631579
## 395  2003                                 Capcom 0.125483871
## 396  2004                                 Capcom 0.132608696
## 397  2005                                 Capcom 0.260000000
## 398  2006                                 Capcom 0.218518519
## 399  2007                                 Capcom 0.221764706
## 400  2008                                 Capcom 0.163461538
## 401  2009                                 Capcom 0.614000000
## 402  2010                                 Capcom 0.166818182
## 403  2011                                 Capcom 0.119583333
## 404  2012                                 Capcom 0.256250000
## 405  2013                                 Capcom 0.060000000
## 406  2014                                 Capcom 0.000000000
## 407  2015                                 Capcom 0.048125000
## 408  2016                                 Capcom 0.046111111
## 409   N/A                                 Capcom 0.028000000
## 410  2008                                   Cave 0.100000000
## 411  2009                                   Cave 0.000000000
## 412  2010                                   Cave 0.000000000
## 413  2011                                   Cave 0.010000000
## 414  2012                                   Cave 0.000000000
## 415  2013                                   Cave 0.000000000
## 416  1982                        CBS Electronics 0.290000000
## 417  2003                                    CCP 0.000000000
## 418  2005             CDV Software Entertainment 0.000000000
## 419  2008             CDV Software Entertainment 0.045000000
## 420  2009             CDV Software Entertainment 0.000000000
## 421  2011             CDV Software Entertainment 0.020000000
## 422  1992                               ChunSoft 0.000000000
## 423  1993                               ChunSoft 0.000000000
## 424  1994                               ChunSoft 0.000000000
## 425  1995                               ChunSoft 0.000000000
## 426  1996                               ChunSoft 0.000000000
## 427  1998                               ChunSoft 0.000000000
## 428  1999                               ChunSoft 0.000000000
## 429  2000                               ChunSoft 0.000000000
## 430  2002                               ChunSoft 0.000000000
## 431  2006                               ChunSoft 0.000000000
## 432  2009                               ChunSoft 0.370000000
## 433  2010                               ChunSoft 0.000000000
## 434  2011                               ChunSoft 0.000000000
## 435  2012                               ChunSoft 0.000000000
## 436  2008                       City Interactive 0.000000000
## 437  2009                       City Interactive 0.075000000
## 438  2010                       City Interactive 0.172000000
## 439  2011                       City Interactive 0.095000000
## 440  2013                       City Interactive 0.043333333
## 441  2014                       City Interactive 0.010000000
## 442   N/A                       City Interactive 0.020000000
## 443  2012       Cloud Imperium Games Corporation 0.040000000
## 444  1993                         Coconuts Japan 0.000000000
## 445  1996                         Coconuts Japan 0.010000000
## 446  1997                            Codemasters 0.065000000
## 447  1998                            Codemasters 0.052500000
## 448  1999                            Codemasters 0.185000000
## 449  2000                            Codemasters 0.040000000
## 450  2001                            Codemasters 0.195000000
## 451  2002                            Codemasters 0.048000000
## 452  2003                            Codemasters 0.112857143
## 453  2004                            Codemasters 0.047692308
## 454  2005                            Codemasters 0.042857143
## 455  2006                            Codemasters 0.017500000
## 456  2007                            Codemasters 0.121666667
## 457  2008                            Codemasters 0.130000000
## 458  2009                            Codemasters 0.097692308
## 459  2010                            Codemasters 0.086000000
## 460  2011                            Codemasters 0.086153846
## 461  2012                            Codemasters 0.057500000
## 462  2013                            Codemasters 0.034000000
## 463  2014                            Codemasters 0.038333333
## 464  2015                            Codemasters 0.056666667
## 465  2016                            Codemasters 0.013333333
## 466   N/A                            Codemasters 0.020000000
## 467  2008                     Codemasters Online 0.000000000
## 468  2007                      CokeM Interactive 0.290000000
## 469  1981                                 Coleco 0.652500000
## 470  1982                                 Coleco 0.260000000
## 471  2010                                Comfort 0.000000000
## 472  2011                                Comfort 0.000000000
## 473  2012                                Comfort 0.000000000
## 474  2013                                Comfort 0.000000000
## 475  2008                               Commseed 0.000000000
## 476  1995                                Compile 0.000000000
## 477  1996                                Compile 0.000000000
## 478  1997                                Compile 0.000000000
## 479  1998                                Compile 0.000000000
## 480  2008                          Compile Heart 0.180000000
## 481  2009                          Compile Heart 0.000000000
## 482  2010                          Compile Heart 0.060000000
## 483  2011                          Compile Heart 0.000000000
## 484  2012                          Compile Heart 0.016666667
## 485  2013                          Compile Heart 0.045000000
## 486  2014                          Compile Heart 0.000000000
## 487  2015                          Compile Heart 0.000000000
## 488  2016                          Compile Heart 0.000000000
## 489  2001               Conspiracy Entertainment 0.080000000
## 490  2002               Conspiracy Entertainment 0.020000000
## 491  2007               Conspiracy Entertainment 0.035000000
## 492  2008               Conspiracy Entertainment 0.036666667
## 493  2009               Conspiracy Entertainment 0.035000000
## 494  2010               Conspiracy Entertainment 0.050000000
## 495  1994                       Core Design Ltd. 0.100000000
## 496  1995                       Core Design Ltd. 0.060000000
## 497  1982                           CPG Products 0.500000000
## 498  1998                    Crave Entertainment 0.115000000
## 499  1999                    Crave Entertainment 0.100000000
## 500  2000                    Crave Entertainment 0.340000000
## 501  2002                    Crave Entertainment 0.125000000
## 502  2003                    Crave Entertainment 0.050000000
## 503  2004                    Crave Entertainment 0.083000000
## 504  2005                    Crave Entertainment 0.052222222
## 505  2006                    Crave Entertainment 0.046000000
## 506  2007                    Crave Entertainment 0.097500000
## 507  2008                    Crave Entertainment 0.136666667
## 508  2009                    Crave Entertainment 0.104000000
## 509  2010                    Crave Entertainment 0.097142857
## 510  2011                    Crave Entertainment 0.087857143
## 511  2008                          Creative Core 0.000000000
## 512  2009                          Creative Core 0.000000000
## 513  2008                            Crimson Cow 0.000000000
## 514  2011                            Crimson Cow 0.000000000
## 515  1995                       Crystal Dynamics 0.206666667
## 516  1996                       Crystal Dynamics 0.165000000
## 517  1996                                CTO SpA 0.490000000
## 518  1997                                CTO SpA 0.010000000
## 519  1991                          Culture Brain 0.000000000
## 520  1994                          Culture Brain 0.000000000
## 521  2008                          Culture Brain 0.000000000
## 522  2010                          Culture Brain 0.000000000
## 523  1998                     Culture Publishers 0.050000000
## 524  2007                             CyberFront 0.000000000
## 525  2008                             CyberFront 0.000000000
## 526  2009                             CyberFront 0.000000000
## 527  2010                             CyberFront 0.001666667
## 528  2011                             CyberFront 0.000000000
## 529  2012                             CyberFront 0.000000000
## 530  2013                             CyberFront 0.000000000
## 531  2015                                Cygames 0.000000000
## 532  1998                            D3Publisher 0.000000000
## 533  2000                            D3Publisher 0.040000000
## 534  2001                            D3Publisher 0.175000000
## 535  2005                            D3Publisher 0.055000000
## 536  2006                            D3Publisher 0.061538462
## 537  2007                            D3Publisher 0.126363636
## 538  2008                            D3Publisher 0.047619048
## 539  2009                            D3Publisher 0.069032258
## 540  2010                            D3Publisher 0.091935484
## 541  2011                            D3Publisher 0.051666667
## 542  2012                            D3Publisher 0.002222222
## 543  2013                            D3Publisher 0.017500000
## 544  2014                            D3Publisher 0.000000000
## 545  2015                            D3Publisher 0.000000000
## 546  2016                            D3Publisher 0.000000000
## 547   N/A                            D3Publisher 0.040000000
## 548  2009                               Daedalic 0.000000000
## 549  2010                               Daedalic 0.000000000
## 550  2012                               Daedalic 0.000000000
## 551  2012                 Daedalic Entertainment 0.000000000
## 552  2013                 Daedalic Entertainment 0.000000000
## 553  2006                                  Daito 0.000000000
## 554  1981                               Data Age 0.360000000
## 555  1982                               Data Age 0.300000000
## 556  2007                Data Design Interactive 0.070000000
## 557  2008                Data Design Interactive 0.110000000
## 558  2009                Data Design Interactive 0.070000000
## 559  1995                              Data East 0.000000000
## 560  1998                              Data East 0.000000000
## 561  2002                         Datam Polystar 0.000000000
## 562  2007                         Datam Polystar 0.000000000
## 563  2004                            Deep Silver 0.240000000
## 564  2005                            Deep Silver 0.066666667
## 565  2006                            Deep Silver 0.000000000
## 566  2007                            Deep Silver 0.020000000
## 567  2008                            Deep Silver 0.173076923
## 568  2009                            Deep Silver 0.047500000
## 569  2010                            Deep Silver 0.040588235
## 570  2011                            Deep Silver 0.273846154
## 571  2012                            Deep Silver 0.022500000
## 572  2013                            Deep Silver 0.250833333
## 573  2014                            Deep Silver 0.064166667
## 574  2015                            Deep Silver 0.070000000
## 575  2016                            Deep Silver 0.024545455
## 576   N/A                            Deep Silver 0.000000000
## 577  2001              Destination Software, Inc 0.090000000
## 578  2002              Destination Software, Inc 0.010000000
## 579  2003              Destination Software, Inc 0.040000000
## 580  2004              Destination Software, Inc 0.015000000
## 581  2005              Destination Software, Inc 0.060000000
## 582  2006              Destination Software, Inc 0.030000000
## 583  2007              Destination Software, Inc 0.170000000
## 584  2008              Destination Software, Inc 0.060000000
## 585  2007                              Destineer 0.065000000
## 586  2008                              Destineer 0.095333333
## 587  2009                              Destineer 0.144166667
## 588  2010                              Destineer 0.046666667
## 589  2011                              Destineer 0.040000000
## 590  2007                            Detn8 Games 0.210000000
## 591  2010                       Devolver Digital 0.000000000
## 592  2015                       Devolver Digital 0.000000000
## 593  2007                        DHM Interactive 0.065000000
## 594  2009                        DHM Interactive 0.030000000
## 595  2002                               DigiCube 0.000000000
## 596  1999             Disney Interactive Studios 1.940000000
## 597  2002             Disney Interactive Studios 0.180000000
## 598  2003             Disney Interactive Studios 0.180000000
## 599  2004             Disney Interactive Studios 0.281250000
## 600  2005             Disney Interactive Studios 0.230000000
## 601  2006             Disney Interactive Studios 0.316923077
## 602  2007             Disney Interactive Studios 0.369285714
## 603  2008             Disney Interactive Studios 0.373333333
## 604  2009             Disney Interactive Studios 0.340833333
## 605  2010             Disney Interactive Studios 0.344285714
## 606  2011             Disney Interactive Studios 0.330500000
## 607  2012             Disney Interactive Studios 0.250000000
## 608  2013             Disney Interactive Studios 0.340000000
## 609  2014             Disney Interactive Studios 0.212000000
## 610  2015             Disney Interactive Studios 0.153333333
## 611   N/A             Disney Interactive Studios 0.225000000
## 612  2008                                 Dorart 0.000000000
## 613  2010                                 Dorart 0.000000000
## 614  2015                        dramatic create 0.000000000
## 615  2016                        dramatic create 0.000000000
## 616  2001               DreamCatcher Interactive 0.020000000
## 617  2003               DreamCatcher Interactive 0.030000000
## 618  2004               DreamCatcher Interactive 0.000000000
## 619  2005               DreamCatcher Interactive 0.020000000
## 620  2006               DreamCatcher Interactive 0.015000000
## 621  2008               DreamCatcher Interactive 0.035000000
## 622  2009               DreamCatcher Interactive 0.073333333
## 623  2010               DreamCatcher Interactive 0.055000000
## 624  1998                 DreamWorks Interactive 0.070000000
## 625  2005                              DSI Games 0.120000000
## 626  2006                              DSI Games 0.040000000
## 627  2007                              DSI Games 0.016666667
## 628  2008                              DSI Games 0.080000000
## 629  2005                      DTP Entertainment 0.085000000
## 630  2007                      DTP Entertainment 0.000000000
## 631  2008                      DTP Entertainment 0.038888889
## 632  2009                      DTP Entertainment 0.060000000
## 633  2010                      DTP Entertainment 0.032857143
## 634  2011                      DTP Entertainment 0.016153846
## 635  2012                      DTP Entertainment 0.000000000
## 636   N/A                      DTP Entertainment 0.000000000
## 637  2016               Dusenberry Martin Racing 0.025000000
## 638  2012                               EA Games 0.070000000
## 639  2012                       Easy Interactive 0.000000000
## 640  2009                                  Ecole 0.000000000
## 641  2006                                   Edia 0.000000000
## 642  2009                                   Edia 0.000000000
## 643  1996                      Eidos Interactive 0.845000000
## 644  1997                      Eidos Interactive 1.250000000
## 645  1998                      Eidos Interactive 0.309000000
## 646  1999                      Eidos Interactive 0.641250000
## 647  2000                      Eidos Interactive 0.234444444
## 648  2001                      Eidos Interactive 0.103000000
## 649  2002                      Eidos Interactive 0.223333333
## 650  2003                      Eidos Interactive 0.122941176
## 651  2004                      Eidos Interactive 0.172000000
## 652  2005                      Eidos Interactive 0.426666667
## 653  2006                      Eidos Interactive 0.092758621
## 654  2007                      Eidos Interactive 0.145909091
## 655  2008                      Eidos Interactive 0.121600000
## 656  2009                      Eidos Interactive 0.282000000
## 657   N/A                      Eidos Interactive 0.670000000
## 658  1992                        Electronic Arts 0.000000000
## 659  1994                        Electronic Arts 0.120000000
## 660  1995                        Electronic Arts 0.170000000
## 661  1996                        Electronic Arts 0.370769231
## 662  1997                        Electronic Arts 0.610000000
## 663  1998                        Electronic Arts 0.690666667
## 664  1999                        Electronic Arts 0.494615385
## 665  2000                        Electronic Arts 0.486774194
## 666  2001                        Electronic Arts 0.609534884
## 667  2002                        Electronic Arts 0.462500000
## 668  2003                        Electronic Arts 0.476117647
## 669  2004                        Electronic Arts 0.476860465
## 670  2005                        Electronic Arts 0.400085470
## 671  2006                        Electronic Arts 0.366078431
## 672  2007                        Electronic Arts 0.343551402
## 673  2008                        Electronic Arts 0.375833333
## 674  2009                        Electronic Arts 0.386250000
## 675  2010                        Electronic Arts 0.445909091
## 676  2011                        Electronic Arts 0.439736842
## 677  2012                        Electronic Arts 0.452173913
## 678  2013                        Electronic Arts 0.528095238
## 679  2014                        Electronic Arts 0.522500000
## 680  2015                        Electronic Arts 0.550625000
## 681  2016                        Electronic Arts 0.182000000
## 682   N/A                        Electronic Arts 0.904166667
## 683  1996                 Electronic Arts Victor 0.115000000
## 684  1996                                    Elf 0.000000000
## 685  1997                                    Elf 0.000000000
## 686  1996                                  Elite 0.040000000
## 687  1996                     Empire Interactive 0.230000000
## 688  1998                     Empire Interactive 0.020000000
## 689  1999                     Empire Interactive 0.000000000
## 690  2000                     Empire Interactive 0.102500000
## 691  2001                     Empire Interactive 0.280000000
## 692  2002                     Empire Interactive 0.092500000
## 693  2003                     Empire Interactive 0.216666667
## 694  2004                     Empire Interactive 0.208000000
## 695  2005                     Empire Interactive 0.037142857
## 696  2006                     Empire Interactive 0.037500000
## 697  2007                     Empire Interactive 0.097500000
## 698  2008                     Empire Interactive 0.107500000
## 699   N/A                     Empire Interactive 0.070000000
## 700  2001                                 Encore 0.020000000
## 701  2003                                 Encore 0.010000000
## 702  2005                                 Encore 0.000000000
## 703  1987                       Enix Corporation 0.150000000
## 704  1988                       Enix Corporation 0.100000000
## 705  1990                       Enix Corporation 0.080000000
## 706  1992                       Enix Corporation 0.000000000
## 707  1993                       Enix Corporation 0.000000000
## 708  1994                       Enix Corporation 0.000000000
## 709  1995                       Enix Corporation 0.000000000
## 710  1996                       Enix Corporation 0.000000000
## 711  1999                       Enix Corporation 0.032500000
## 712  2000                       Enix Corporation 0.066666667
## 713  2001                       Enix Corporation 0.000000000
## 714  2002                       Enix Corporation 0.020000000
## 715  2003                       Enix Corporation 0.000000000
## 716  2004                       Enix Corporation 0.000000000
## 717  2009                      Enjoy Gaming ltd. 0.090000000
## 718  2001                             Enterbrain 0.000000000
## 719  2002                             Enterbrain 0.030000000
## 720  2004                             Enterbrain 0.015000000
## 721  2006                             Enterbrain 0.000000000
## 722  2007                             Enterbrain 0.000000000
## 723  2008                             Enterbrain 0.000000000
## 724  2009                             Enterbrain 0.000000000
## 725  2010                             Enterbrain 0.000000000
## 726  1999              EON Digital Entertainment 0.010000000
## 727  2016                             Epic Games 0.010000000
## 728  1991                                  Epoch 0.000000000
## 729  1992                                  Epoch 0.000000000
## 730  1993                                  Epoch 0.000000000
## 731  1995                                  Epoch 0.000000000
## 732  1996                                  Epoch 0.000000000
## 733  2000                                  Epoch 0.000000000
## 734  2007                                 Ertain 0.050000000
## 735  1997                                    ESP 0.000000000
## 736  1998                                    ESP 0.010000000
## 737  2002                                    ESP 0.000000000
## 738  2005                        Essential Games 0.000000000
## 739  2006                        Essential Games 0.005000000
## 740  1998                        Evolution Games 0.000000000
## 741  2004                          Evolved Games 0.015000000
## 742  2009                          Evolved Games 0.045000000
## 743  2011                          Evolved Games 0.055000000
## 744  2011                   Excalibur Publishing 0.000000000
## 745  2012                   Excalibur Publishing 0.000000000
## 746  2014                        Experience Inc. 0.000000000
## 747  2015                        Experience Inc. 0.000000000
## 748  2016                        Experience Inc. 0.000000000
## 749  2015            Extreme Entertainment Group 0.020000000
## 750  2007                     Falcom Corporation 0.000000000
## 751  2008                     Falcom Corporation 0.000000000
## 752  2009                     Falcom Corporation 0.063333333
## 753  2010                     Falcom Corporation 0.030000000
## 754  2011                     Falcom Corporation 0.000000000
## 755  2012                     Falcom Corporation 0.000000000
## 756  2013                     Falcom Corporation 0.000000000
## 757  2012                                 Fields 0.000000000
## 758  2005                       Flashpoint Games 0.030000000
## 759  2010                       Flashpoint Games 0.040000000
## 760  2007                            Flight-Plan 0.000000000
## 761  2009                            Flight-Plan 0.000000000
## 762  2006                 Focus Home Interactive 0.000000000
## 763  2007                 Focus Home Interactive 0.010000000
## 764  2008                 Focus Home Interactive 0.060000000
## 765  2009                 Focus Home Interactive 0.051428571
## 766  2010                 Focus Home Interactive 0.046666667
## 767  2011                 Focus Home Interactive 0.001111111
## 768  2012                 Focus Home Interactive 0.042857143
## 769  2013                 Focus Home Interactive 0.073333333
## 770  2014                 Focus Home Interactive 0.030000000
## 771  2015                 Focus Home Interactive 0.032500000
## 772  2016                 Focus Home Interactive 0.004000000
## 773   N/A                 Focus Home Interactive 0.000000000
## 774  2012                       Focus Multimedia 0.000000000
## 775  2015                       Focus Multimedia 0.000000000
## 776  2008                                 fonfun 0.000000000
## 777  2010                    Foreign Media Games 0.030000000
## 778  1998                              Fortyfive 0.000000000
## 779  1996                        Fox Interactive 0.850000000
## 780  1997                        Fox Interactive 0.910000000
## 781  1998                        Fox Interactive 0.160000000
## 782  1999                        Fox Interactive 0.340000000
## 783  2000                        Fox Interactive 0.090000000
## 784  1994                          From Software 0.000000000
## 785  1996                          From Software 0.080000000
## 786  1997                          From Software 0.060000000
## 787  1998                          From Software 0.020000000
## 788  1999                          From Software 0.070000000
## 789  2001                          From Software 0.020000000
## 790  2002                          From Software 0.040000000
## 791  2006                          From Software 0.030000000
## 792  2009                          From Software 0.002500000
## 793  2010                          From Software 0.000000000
## 794  2013                          From Software 0.000000000
## 795  1995                                   Fuji 0.000000000
## 796  2011                           Funbox Media 0.177500000
## 797  2012                           Funbox Media 0.000000000
## 798  2015                           Funbox Media 0.000000000
## 799  2010                                 Funcom 0.000000000
## 800  2012                                 Funcom 0.070000000
## 801  1996                                FunSoft 0.070000000
## 802  2006                                 Funsta 0.020000000
## 803  2007                                 Funsta 0.050000000
## 804   N/A                                 Funsta 0.010000000
## 805  2010                                  FuRyu 0.000000000
## 806  2011                                  FuRyu 0.000000000
## 807  2012                                  FuRyu 0.000000000
## 808  2013                                  FuRyu 0.000000000
## 809  2014                                  FuRyu 0.000000000
## 810  2015                                  FuRyu 0.015714286
## 811  2016                                  FuRyu 0.000000000
## 812  2015                      FuRyu Corporation 0.020000000
## 813  2009                                  G.Rev 0.000000000
## 814  2010                                  G.Rev 0.000000000
## 815  1996                                   Gaga 0.000000000
## 816  1998                 Gainax Network Systems 0.000000000
## 817  2007                                 Gakken 0.000000000
## 818  1994                              Game Arts 0.000000000
## 819  2003                           Game Factory 0.030000000
## 820  2004                           Game Factory 0.170000000
## 821  2005                           Game Factory 0.020000000
## 822  2006                           Game Factory 0.027142857
## 823  2007                           Game Factory 0.152222222
## 824  2008                           Game Factory 0.124545455
## 825  2010                           Game Factory 0.140000000
## 826  2007                              Game Life 0.090000000
## 827  2009                              Game Life 0.040000000
## 828  2008                             Gamebridge 0.180000000
## 829  2009                             Gamebridge 0.120000000
## 830  2008                               Gamecock 0.040000000
## 831  2007                               Gameloft 0.100000000
## 832  2010                 GameMill Entertainment 0.170000000
## 833  2011                 GameMill Entertainment 0.190000000
## 834  2012                 GameMill Entertainment 0.080000000
## 835  1998                                GameTek 0.080000000
## 836  2001                Gathering of Developers 0.113333333
## 837  2003                Gathering of Developers 0.000000000
## 838  2004                Gathering of Developers 0.067500000
## 839  1998                  General Entertainment 0.000000000
## 840  1999                                  Genki 0.000000000
## 841  2001                                  Genki 0.050000000
## 842  2003                                  Genki 0.220000000
## 843  2007                                  Genki 0.000000000
## 844  2012                                  Genki 0.000000000
## 845  2009                            Genterprise 0.000000000
## 846  2003                             Ghostlight 0.070000000
## 847  2004                             Ghostlight 0.060000000
## 848  2005                             Ghostlight 0.055000000
## 849  2006                             Ghostlight 0.100000000
## 850  2007                             Ghostlight 0.040000000
## 851  2008                             Ghostlight 0.040000000
## 852  2009                             Ghostlight 0.180000000
## 853  2010                             Ghostlight 0.000000000
## 854  2011                             Ghostlight 0.225000000
## 855   N/A                             Ghostlight 0.090000000
## 856  2014                                   Giga 0.000000000
## 857  2012                                 Giza10 0.000000000
## 858  1995                                  Glams 0.000000000
## 859  2006                 Global A Entertainment 0.030000000
## 860  2007                 Global A Entertainment 0.060000000
## 861  2008                 Global A Entertainment 0.020000000
## 862  2004                            Global Star 0.188095238
## 863  2005                            Global Star 0.084000000
## 864  2006                            Global Star 0.013333333
## 865  2006                            GN Software 0.000000000
## 866  2008                            GN Software 0.000000000
## 867  2010                            GN Software 0.000000000
## 868  2008                                    GOA 0.000000000
## 869  2002                           Gotham Games 0.980000000
## 870  2003                           Gotham Games 0.170000000
## 871  2004                           Gotham Games 0.440000000
## 872  2008                               Graffiti 0.040000000
## 873  2009                               Graffiti 0.043333333
## 874  2010                               Graffiti 0.095000000
## 875  2007                       Grand Prix Games 0.000000000
## 876  2005                 Graphsim Entertainment 0.000000000
## 877  1996                Gremlin Interactive Ltd 0.070000000
## 878  1997                Gremlin Interactive Ltd 0.060000000
## 879  1998                Gremlin Interactive Ltd 0.090000000
## 880  2010                  Griffin International 0.080000000
## 881  2005                           Groove Games 0.050000000
## 882  2006                           Groove Games 0.020000000
## 883  2008                                    GSP 0.153333333
## 884  2009                                    GSP 0.071666667
## 885  2010                                    GSP 0.050000000
## 886  2011                                    GSP 0.030000000
## 887  1995                         GT Interactive 0.150000000
## 888  1996                         GT Interactive 0.547142857
## 889  1997                         GT Interactive 0.261250000
## 890  1998                         GT Interactive 0.220000000
## 891  1999                         GT Interactive 0.917500000
## 892  2008                                 GungHo 0.057500000
## 893  2009                                 GungHo 0.130000000
## 894  2011                                 GungHo 0.020000000
## 895  2012                                 GungHo 0.110000000
## 896  2013                                 GungHo 0.040000000
## 897  2014                                 GungHo 0.030000000
## 898  2016                                 GungHo 0.000000000
## 899  1996                                   Gust 0.000000000
## 900  1997                                   Gust 0.000000000
## 901  2001                                   Gust 0.000000000
## 902  2002                                   Gust 0.000000000
## 903  2007                                   Gust 0.000000000
## 904  2008                                   Gust 0.070000000
## 905  2009                                   Gust 0.040000000
## 906  2010                                   Gust 0.000000000
## 907  2011                                   Gust 0.000000000
## 908  2012                                   Gust 0.000000000
## 909  2013                                   Gust 0.000000000
## 910  2007                              Hackberry 0.000000000
## 911  2008                              Hackberry 0.000000000
## 912  2010                              Hackberry 0.000000000
## 913  1989                         HAL Laboratory 0.060000000
## 914  2002                    Hamster Corporation 0.160000000
## 915  2006                    Hamster Corporation 0.000000000
## 916  2014                               Happinet 0.000000000
## 917  2015                               Happinet 0.000000000
## 918  2016                               Happinet 0.000000000
## 919  2015                 Harmonix Music Systems 0.300000000
## 920  1994                     Hasbro Interactive 1.490000000
## 921  1997                     Hasbro Interactive 1.786666667
## 922  1998                     Hasbro Interactive 0.756666667
## 923  1999                     Hasbro Interactive 0.343333333
## 924  2000                     Hasbro Interactive 0.185000000
## 925  2001                     Hasbro Interactive 0.090000000
## 926  2006                     Hasbro Interactive 0.010000000
## 927  2000                      Havas Interactive 0.010000000
## 928  2013                           Headup Games 0.000000000
## 929  1996                           Hearty Robin 0.000000000
## 930  1993                                   Hect 0.000000000
## 931  1994                                   Hect 0.000000000
## 932  1995                                   Hect 0.000000000
## 933  2016                            Hello Games 0.580000000
## 934  2011                        Her Interactive 0.030000000
## 935  2004                        Hip Interactive 0.065000000
## 936  2005                        Hip Interactive 0.043333333
## 937  2008                        HMH Interactive 0.000000000
## 938  2009                        HMH Interactive 0.000000000
## 939  2010           Home Entertainment Suppliers 0.000000000
## 940  2011           Home Entertainment Suppliers 0.045000000
## 941   N/A           Home Entertainment Suppliers 0.000000000
## 942  1997                   Hudson Entertainment 0.000000000
## 943  1998                   Hudson Entertainment 0.050000000
## 944  1999                   Hudson Entertainment 0.000000000
## 945  2001                   Hudson Entertainment 0.026666667
## 946  2003                   Hudson Entertainment 0.050000000
## 947  2006                   Hudson Entertainment 0.000000000
## 948  2007                   Hudson Entertainment 0.060000000
## 949  2008                   Hudson Entertainment 0.000000000
## 950  2009                   Hudson Entertainment 0.090000000
## 951  1984                            Hudson Soft 0.000000000
## 952  1985                            Hudson Soft 0.180000000
## 953  1986                            Hudson Soft 0.080000000
## 954  1991                            Hudson Soft 0.160000000
## 955  1992                            Hudson Soft 0.000000000
## 956  1993                            Hudson Soft 0.000000000
## 957  1994                            Hudson Soft 0.000000000
## 958  1995                            Hudson Soft 0.000000000
## 959  1996                            Hudson Soft 0.000000000
## 960  1997                            Hudson Soft 0.090000000
## 961  1998                            Hudson Soft 0.020000000
## 962  1999                            Hudson Soft 0.050000000
## 963  2000                            Hudson Soft 0.000000000
## 964  2001                            Hudson Soft 0.000000000
## 965  2002                            Hudson Soft 0.015000000
## 966  2003                            Hudson Soft 0.010000000
## 967  2004                            Hudson Soft 0.000000000
## 968  2005                            Hudson Soft 0.000000000
## 969  2006                            Hudson Soft 0.000000000
## 970  2007                            Hudson Soft 0.000000000
## 971  2008                            Hudson Soft 0.008750000
## 972  2009                            Hudson Soft 0.063750000
## 973  2010                            Hudson Soft 0.043636364
## 974  2011                            Hudson Soft 0.043333333
## 975  1991                    Human Entertainment 0.000000000
## 976  1994                    Human Entertainment 0.000000000
## 977  1995                    Human Entertainment 0.000000000
## 978  1996                    Human Entertainment 0.000000000
## 979  1997                    Human Entertainment 0.000000000
## 980  1998                    Human Entertainment 0.020000000
## 981  1999                    Human Entertainment 0.000000000
## 982  2015                                  HuneX 0.000000000
## 983  2011                    Iceberg Interactive 0.010000000
## 984  2012                    Iceberg Interactive 0.000000000
## 985  1992                            id Software 0.020000000
## 986  2002                           Idea Factory 0.000000000
## 987  2005                           Idea Factory 0.030000000
## 988  2006                           Idea Factory 0.025000000
## 989  2007                           Idea Factory 0.000000000
## 990  2008                           Idea Factory 0.006666667
## 991  2009                           Idea Factory 0.017142857
## 992  2010                           Idea Factory 0.002173913
## 993  2011                           Idea Factory 0.000000000
## 994  2012                           Idea Factory 0.000000000
## 995  2013                           Idea Factory 0.000000000
## 996  2014                           Idea Factory 0.014615385
## 997  2015                           Idea Factory 0.000000000
## 998  2016                           Idea Factory 0.000000000
## 999  2017                           Idea Factory 0.000000000
## 1000  N/A                           Idea Factory 0.000000000
## 1001 2014             Idea Factory International 0.063333333
## 1002 2015             Idea Factory International 0.013333333
## 1003 2006                           IE Institute 0.000000000
## 1004 2007                           IE Institute 0.000000000
## 1005 2008                           IE Institute 0.000000000
## 1006 2012                           IE Institute 0.000000000
## 1007 2002                 Ignition Entertainment 0.130000000
## 1008 2003                 Ignition Entertainment 0.035000000
## 1009 2004                 Ignition Entertainment 0.049090909
## 1010 2005                 Ignition Entertainment 0.062857143
## 1011 2006                 Ignition Entertainment 0.047777778
## 1012 2007                 Ignition Entertainment 0.094285714
## 1013 2008                 Ignition Entertainment 0.068666667
## 1014 2009                 Ignition Entertainment 0.100000000
## 1015 2011                 Ignition Entertainment 0.090000000
## 1016  N/A                 Ignition Entertainment 0.075000000
## 1017 2004                     Illusion Softworks 0.340000000
## 1018 1997                                 Imadio 0.000000000
## 1019 2012                            Image Epoch 0.000000000
## 1020 2014                        imageepoch Inc. 0.000000000
## 1021 1995                             Imageworks 0.000000000
## 1022 1981                                 Imagic 1.127500000
## 1023 1991                              Imagineer 0.000000000
## 1024 1996                              Imagineer 0.000000000
## 1025 1997                              Imagineer 0.000000000
## 1026 1998                              Imagineer 0.010000000
## 1027 1999                              Imagineer 0.023333333
## 1028 2000                              Imagineer 0.000000000
## 1029 2001                              Imagineer 0.000000000
## 1030 1993                                   Imax 0.000000000
## 1031 2004                            Indie Games 0.030000000
## 1032 1994                             Infogrames 0.430000000
## 1033 1996                             Infogrames 0.170000000
## 1034 1997                             Infogrames 0.430000000
## 1035 1998                             Infogrames 0.057142857
## 1036 1999                             Infogrames 0.110000000
## 1037 2000                             Infogrames 0.082727273
## 1038 2001                             Infogrames 0.129000000
## 1039 2002                             Infogrames 0.273181818
## 1040 2003                             Infogrames 0.055000000
## 1041  N/A                             Infogrames 0.090000000
## 1042 2016                        Insomniac Games 0.033333333
## 1043 2006                           Interchannel 0.000000000
## 1044 2008                           Interchannel 0.000000000
## 1045 2007                     Interchannel-Holon 0.000000000
## 1046 2015                              Intergrow 0.000000000
## 1047 1993                              Interplay 0.000000000
## 1048 1995                              Interplay 0.053333333
## 1049 1996                              Interplay 0.285000000
## 1050 1997                              Interplay 0.150000000
## 1051 1998                              Interplay 0.078333333
## 1052 1999                              Interplay 0.046666667
## 1053 2000                              Interplay 0.176666667
## 1054 2001                              Interplay 0.143333333
## 1055 2002                              Interplay 0.140000000
## 1056 2003                              Interplay 0.170000000
## 1057 2004                              Interplay 0.340000000
## 1058 1997                  Interplay Productions 0.050000000
## 1059 2012             Interworks Unlimited, Inc. 0.010000000
## 1060 2016                           Inti Creates 0.000000000
## 1061 2016                  Introversion Software 0.010000000
## 1062 2015                   inXile Entertainment 0.020000000
## 1063 1998              Irem Software Engineering 0.010000000
## 1064 2006              Irem Software Engineering 0.000000000
## 1065 2007              Irem Software Engineering 0.000000000
## 1066 2008              Irem Software Engineering 0.036666667
## 1067 2009              Irem Software Engineering 0.000000000
## 1068 2010              Irem Software Engineering 0.000000000
## 1069 2011              Irem Software Engineering 0.000000000
## 1070 2012              Irem Software Engineering 0.000000000
## 1071 1982                       ITT Family Games 0.320000000
## 1072 2008                              Ivolgamus 0.030000000
## 1073 2011                                   iWin 0.000000000
## 1074 2005                      Jack of All Games 0.270000000
## 1075 2011                      Jack of All Games 0.020000000
## 1076 1995                                 Jaleco 0.140000000
## 1077 1996                                 Jaleco 0.060000000
## 1078 1998                                 Jaleco 0.015000000
## 1079 1999                                 Jaleco 0.010000000
## 1080 2002                                 Jaleco 0.020000000
## 1081 2003                                 Jaleco 0.034285714
## 1082 2004                                 Jaleco 0.020000000
## 1083 2007                                 Jaleco 0.026666667
## 1084 2008                                 Jaleco 0.000000000
## 1085 2002                     Jester Interactive 0.350000000
## 1086 2003                     Jester Interactive 0.020000000
## 1087 2005                     Jester Interactive 0.330000000
## 1088 1999                                Jorudan 0.000000000
## 1089 2002                                Jorudan 0.000000000
## 1090 2003                                Jorudan 0.000000000
## 1091 2002                     JoWood Productions 0.000000000
## 1092 2004                     JoWood Productions 0.020000000
## 1093 2005                     JoWood Productions 0.015000000
## 1094 2006                     JoWood Productions 0.000000000
## 1095 2007                     JoWood Productions 0.000000000
## 1096 2008                     JoWood Productions 0.072000000
## 1097 2009                     JoWood Productions 0.057500000
## 1098 2010                     JoWood Productions 0.045000000
## 1099 2010                            Just Flight 0.000000000
## 1100 1994                                    JVC 0.000000000
## 1101 1996                                    JVC 0.716666667
## 1102 1997                                    JVC 0.020000000
## 1103 1998                                    JVC 0.040000000
## 1104 1999                                    JVC 0.010000000
## 1105 2000                                    JVC 0.030000000
## 1106 2012                         Kadokawa Games 0.000000000
## 1107 2013                         Kadokawa Games 0.000000000
## 1108 2014                         Kadokawa Games 0.000000000
## 1109 2015                         Kadokawa Games 0.000000000
## 1110 2016                         Kadokawa Games 0.000000000
## 1111 1996                        Kadokawa Shoten 0.000000000
## 1112 1997                        Kadokawa Shoten 0.000000000
## 1113 1998                        Kadokawa Shoten 0.067500000
## 1114 1999                        Kadokawa Shoten 0.190000000
## 1115 2004                        Kadokawa Shoten 0.000000000
## 1116 2005                        Kadokawa Shoten 0.000000000
## 1117 2006                        Kadokawa Shoten 0.000000000
## 1118 2007                        Kadokawa Shoten 0.000000000
## 1119 2008                        Kadokawa Shoten 0.000000000
## 1120 2009                        Kadokawa Shoten 0.000000000
## 1121 2010                        Kadokawa Shoten 0.000000000
## 1122 2011                        Kadokawa Shoten 0.000000000
## 1123 2012                        Kadokawa Shoten 0.000000000
## 1124 2013                        Kadokawa Shoten 0.000000000
## 1125 2014                        Kadokawa Shoten 0.000000000
## 1126 2015                        Kadokawa Shoten 0.000000000
## 1127 2013                            Kaga Create 0.000000000
## 1128 2015                            Kaga Create 0.000000000
## 1129 2007                          Kalypso Media 0.000000000
## 1130 2008                          Kalypso Media 0.000000000
## 1131 2009                          Kalypso Media 0.030000000
## 1132 2010                          Kalypso Media 0.028000000
## 1133 2011                          Kalypso Media 0.041428571
## 1134 2012                          Kalypso Media 0.000000000
## 1135 2014                          Kalypso Media 0.025000000
## 1136 2015                          Kalypso Media 0.016666667
## 1137  N/A                          Kalypso Media 0.106666667
## 1138 2010                                  Kamui 0.000000000
## 1139 2006                            Kando Games 0.020000000
## 1140 2010                    Karin Entertainment 0.000000000
## 1141 1991                                  Kemco 0.000000000
## 1142 1997                                  Kemco 0.200000000
## 1143 1998                                  Kemco 0.195000000
## 1144 1999                                  Kemco 0.055000000
## 1145 2001                                  Kemco 0.080000000
## 1146 2002                                  Kemco 0.012500000
## 1147 2003                                  Kemco 0.075000000
## 1148 2005                                  Kemco 0.020000000
## 1149 1998                                    KID 0.000000000
## 1150 2006                                    KID 0.000000000
## 1151 2007                           Kids Station 0.000000000
## 1152 2002                           King Records 0.000000000
## 1153 2003                    Knowledge Adventure 0.215000000
## 1154 2009                    Knowledge Adventure 0.400000000
## 1155 2008                             Koch Media 0.298333333
## 1156 2011                             Koch Media 0.000000000
## 1157 2013                             Koch Media 0.000000000
## 1158 2015                             Koch Media 0.104000000
## 1159 2016                             Koch Media 0.000000000
## 1160 1995               Kokopeli Digital Studios 0.020000000
## 1161 1986           Konami Digital Entertainment 0.202500000
## 1162 1987           Konami Digital Entertainment 0.450000000
## 1163 1989           Konami Digital Entertainment 0.400000000
## 1164 1990           Konami Digital Entertainment 1.740000000
## 1165 1991           Konami Digital Entertainment 0.342500000
## 1166 1992           Konami Digital Entertainment 0.013333333
## 1167 1993           Konami Digital Entertainment 0.000000000
## 1168 1994           Konami Digital Entertainment 0.000000000
## 1169 1995           Konami Digital Entertainment 0.033333333
## 1170 1996           Konami Digital Entertainment 0.055000000
## 1171 1997           Konami Digital Entertainment 0.080000000
## 1172 1998           Konami Digital Entertainment 0.169166667
## 1173 1999           Konami Digital Entertainment 0.140625000
## 1174 2000           Konami Digital Entertainment 0.028709677
## 1175 2001           Konami Digital Entertainment 0.242307692
## 1176 2002           Konami Digital Entertainment 0.088545455
## 1177 2003           Konami Digital Entertainment 0.215555556
## 1178 2004           Konami Digital Entertainment 0.173095238
## 1179 2005           Konami Digital Entertainment 0.092678571
## 1180 2006           Konami Digital Entertainment 0.056666667
## 1181 2007           Konami Digital Entertainment 0.089672131
## 1182 2008           Konami Digital Entertainment 0.148125000
## 1183 2009           Konami Digital Entertainment 0.087627119
## 1184 2010           Konami Digital Entertainment 0.089117647
## 1185 2011           Konami Digital Entertainment 0.065454545
## 1186 2012           Konami Digital Entertainment 0.069687500
## 1187 2013           Konami Digital Entertainment 0.073750000
## 1188 2014           Konami Digital Entertainment 0.062777778
## 1189 2015           Konami Digital Entertainment 0.171666667
## 1190 2016           Konami Digital Entertainment 0.001250000
## 1191  N/A           Konami Digital Entertainment 0.361111111
## 1192 2003                              Kool Kizz 0.030000000
## 1193 1996                                    KSS 0.000000000
## 1194 1993                                 Laguna 0.090000000
## 1195 1994                                 Laguna 0.000000000
## 1196 1995                                 Laguna 0.035000000
## 1197 2008                     Legacy Interactive 0.040000000
## 1198 1999                             LEGO Media 0.192500000
## 1199 2001                             LEGO Media 0.070000000
## 1200 2002                             LEGO Media 0.100000000
## 1201 2009                                Level 5 0.000000000
## 1202 2010                                Level 5 0.000000000
## 1203 2011                                Level 5 0.000000000
## 1204 2012                                Level 5 0.022222222
## 1205 2013                                Level 5 0.000000000
## 1206 2014                                Level 5 0.000000000
## 1207 2015                                Level 5 0.000000000
## 1208 2016                                Level 5 0.000000000
## 1209 2007                  Lexicon Entertainment 0.020000000
## 1210 2008                  Lexicon Entertainment 0.020000000
## 1211 2012                            Licensed 4U 0.000000000
## 1212 2007                 Lighthouse Interactive 0.000000000
## 1213 2002                           Liquid Games 0.180000000
## 1214 2006                           Liquid Games 0.010000000
## 1215 2010                           Little Orbit 0.070000000
## 1216 2013                           Little Orbit 0.010000000
## 1217 2014                           Little Orbit 0.025555556
## 1218 2015                           Little Orbit 0.010769231
## 1219 1998                                  Locus 0.000000000
## 1220 2002                              LSP Games 0.020000000
## 1221 2003                              LSP Games 0.020000000
## 1222 1994                              LucasArts 1.090000000
## 1223 1996                              LucasArts 0.310000000
## 1224 1997                              LucasArts 0.380000000
## 1225 1999                              LucasArts 0.690000000
## 1226 2000                              LucasArts 0.210000000
## 1227 2001                              LucasArts 0.365000000
## 1228 2002                              LucasArts 0.280000000
## 1229 2003                              LucasArts 0.178750000
## 1230 2004                              LucasArts 0.515000000
## 1231 2005                              LucasArts 0.738750000
## 1232 2006                              LucasArts 0.565555556
## 1233 2007                              LucasArts 0.986363636
## 1234 2008                              LucasArts 0.650000000
## 1235 2009                              LucasArts 0.248888889
## 1236 2010                              LucasArts 0.500000000
## 1237 2011                              LucasArts 0.493750000
## 1238  N/A                              LucasArts 1.540000000
## 1239 2004                               Mad Catz 0.150000000
## 1240 2006                               Mad Catz 0.020000000
## 1241 2012                               Mad Catz 0.070000000
## 1242 1998                        Magical Company 0.150000000
## 1243 2001                                  Magix 0.150000000
## 1244 2009                                  Magix 0.020000000
## 1245 2001                  Majesco Entertainment 0.260000000
## 1246 2002                  Majesco Entertainment 0.040000000
## 1247 2003                  Majesco Entertainment 0.250000000
## 1248 2004                  Majesco Entertainment 0.226250000
## 1249 2005                  Majesco Entertainment 0.048000000
## 1250 2006                  Majesco Entertainment 0.055000000
## 1251 2007                  Majesco Entertainment 0.143333333
## 1252 2008                  Majesco Entertainment 0.100833333
## 1253 2009                  Majesco Entertainment 0.114583333
## 1254 2010                  Majesco Entertainment 0.078000000
## 1255 2011                  Majesco Entertainment 0.328333333
## 1256 2013                  Majesco Entertainment 0.155000000
## 1257  N/A                  Majesco Entertainment 0.130000000
## 1258 2008                            Mamba Games 0.000000000
## 1259 2010                            Mamba Games 0.000000000
## 1260 2015                   Marvel Entertainment 0.000000000
## 1261 2012                Marvelous Entertainment 0.205000000
## 1262 2013                Marvelous Entertainment 0.086666667
## 1263 2014                Marvelous Entertainment 0.022500000
## 1264 2015                Marvelous Entertainment 0.020000000
## 1265 2016                Marvelous Entertainment 0.000000000
## 1266 2015                        Marvelous Games 0.000000000
## 1267 2002                  Marvelous Interactive 0.060000000
## 1268 2003                  Marvelous Interactive 0.020000000
## 1269 2004                  Marvelous Interactive 0.190000000
## 1270 2005                  Marvelous Interactive 0.126666667
## 1271 2006                  Marvelous Interactive 0.000000000
## 1272 2007                  Marvelous Interactive 0.000000000
## 1273 2008                  Marvelous Interactive 0.000000000
## 1274 2009                  Marvelous Interactive 0.026000000
## 1275 2010                  Marvelous Interactive 0.030000000
## 1276 2011                  Marvelous Interactive 0.066666667
## 1277 2014                  Marvelous Interactive 0.036666667
## 1278 2015                  Marvelous Interactive 0.046666667
## 1279 2016                  Marvelous Interactive 0.000000000
## 1280 2011                      Masque Publishing 0.010000000
## 1281 2006                           Mastertronic 0.010000000
## 1282 2009                           Mastertronic 0.000000000
## 1283 2010                           Mastertronic 0.000000000
## 1284 2011                           Mastertronic 0.132500000
## 1285 2012                           Mastertronic 0.000000000
## 1286 2004                                Mastiff 0.070000000
## 1287 2005                                Mastiff 0.020000000
## 1288 2009                                Mastiff 0.190000000
## 1289 2010                                Mastiff 0.277500000
## 1290 2011                                Mastiff 0.041666667
## 1291 1981                     Mattel Interactive 0.335714286
## 1292 1982                     Mattel Interactive 0.370000000
## 1293 1999                     Mattel Interactive 0.100000000
## 1294 2000                     Mattel Interactive 0.065000000
## 1295 2001                               Max Five 0.030000000
## 1296 2012                   Maximum Family Games 0.030000000
## 1297 1988                                  Maxis 0.000000000
## 1298 1992                                  Maxis 1.200000000
## 1299 1996                                  Maxis 0.680000000
## 1300 2004                      MC2 Entertainment 0.015000000
## 1301 2005                      MC2 Entertainment 0.000000000
## 1302 2002                    Media Entertainment 0.000000000
## 1303 2000                          Media Factory 0.000000000
## 1304 2001                          Media Factory 0.000000000
## 1305 1994                            Media Rings 0.000000000
## 1306 1995                            Media Rings 0.000000000
## 1307 2002                            Media Rings 0.140000000
## 1308 1996                            Media Works 0.000000000
## 1309 1998                            Media Works 0.000000000
## 1310 2006                            Media Works 0.000000000
## 1311 2007                            Media Works 0.000000000
## 1312 1995                             MediaQuest 0.030000000
## 1313 1981                           Men-A-Vision 0.720000000
## 1314 2009                     Mentor Interactive 0.306666667
## 1315 2010                     Mentor Interactive 0.060000000
## 1316 2011                     Mentor Interactive 0.010000000
## 1317 2007                          Mercury Games 0.025000000
## 1318 2008                          Mercury Games 0.060000000
## 1319 2009                            Merscom LLC 0.000000000
## 1320 2001                               Metro 3D 0.066666667
## 1321 2002                               Metro 3D 0.130000000
## 1322 2003                               Metro 3D 0.056666667
## 1323 2007                               Metro 3D 0.050000000
## 1324 2008                               Metro 3D 0.020000000
## 1325 2006                            Michaelsoft 0.000000000
## 1326 1994                            Micro Cabin 0.000000000
## 1327 1995                            Micro Cabin 0.000000000
## 1328 1996                            Micro Cabin 0.000000000
## 1329 2002                               Microids 0.013333333
## 1330 2003                               Microids 0.040000000
## 1331 2004                               Microids 0.025000000
## 1332 2005                               Microids 0.050000000
## 1333 2016                               Microids 0.005000000
## 1334 1995                             Microprose 0.050000000
## 1335 1996                             Microprose 0.225000000
## 1336 1997                             Microprose 0.000000000
## 1337 1999                             Microprose 0.180000000
## 1338  N/A                             Microprose 0.020000000
## 1339 1996                 Microsoft Game Studios 3.220000000
## 1340 1999                 Microsoft Game Studios 0.010000000
## 1341 2000                 Microsoft Game Studios 0.740000000
## 1342 2001                 Microsoft Game Studios 0.996000000
## 1343 2002                 Microsoft Game Studios 0.258000000
## 1344 2003                 Microsoft Game Studios 0.221428571
## 1345 2004                 Microsoft Game Studios 0.817692308
## 1346 2005                 Microsoft Game Studios 0.266428571
## 1347 2006                 Microsoft Game Studios 0.550000000
## 1348 2007                 Microsoft Game Studios 0.822105263
## 1349 2008                 Microsoft Game Studios 0.828000000
## 1350 2009                 Microsoft Game Studios 1.308571429
## 1351 2010                 Microsoft Game Studios 2.737500000
## 1352 2011                 Microsoft Game Studios 1.162727273
## 1353 2012                 Microsoft Game Studios 1.378571429
## 1354 2013                 Microsoft Game Studios 1.227500000
## 1355 2014                 Microsoft Game Studios 0.622222222
## 1356 2015                 Microsoft Game Studios 1.264000000
## 1357 2016                 Microsoft Game Studios 0.165000000
## 1358 1997        Midas Interactive Entertainment 0.010000000
## 1359 1998        Midas Interactive Entertainment 0.070000000
## 1360 1999        Midas Interactive Entertainment 0.020000000
## 1361 2000        Midas Interactive Entertainment 0.075714286
## 1362 2001        Midas Interactive Entertainment 0.065000000
## 1363 2002        Midas Interactive Entertainment 0.125000000
## 1364 2005        Midas Interactive Entertainment 0.050000000
## 1365 2006        Midas Interactive Entertainment 0.010000000
## 1366 2007        Midas Interactive Entertainment 0.060000000
## 1367 2008        Midas Interactive Entertainment 0.000000000
## 1368 2009        Midas Interactive Entertainment 0.020000000
## 1369 1996                           Midway Games 0.035000000
## 1370 1997                           Midway Games 0.290000000
## 1371 1998                           Midway Games 0.710000000
## 1372 1999                           Midway Games 0.277000000
## 1373 2000                           Midway Games 0.220833333
## 1374 2001                           Midway Games 0.274545455
## 1375 2002                           Midway Games 0.173636364
## 1376 2003                           Midway Games 0.105833333
## 1377 2004                           Midway Games 0.318000000
## 1378 2005                           Midway Games 0.168095238
## 1379 2006                           Midway Games 0.167200000
## 1380 2007                           Midway Games 0.246470588
## 1381 2008                           Midway Games 0.389375000
## 1382  N/A                           Midway Games 0.180000000
## 1383 2008                              Milestone 0.080000000
## 1384 2016                        Milestone S.r.l 0.000000000
## 1385 2014                       Milestone S.r.l. 0.030000000
## 1386 2015                       Milestone S.r.l. 0.007777778
## 1387 2016                       Milestone S.r.l. 0.013333333
## 1388 2008                         Minato Station 0.000000000
## 1389 2012                         Minato Station 0.000000000
## 1390 2015                         Minato Station 0.000000000
## 1391 1995                              Mindscape 0.140000000
## 1392 1996                              Mindscape 0.070000000
## 1393 1997                              Mindscape 0.080000000
## 1394 1998                              Mindscape 0.060000000
## 1395 1999                              Mindscape 0.030000000
## 1396 2000                              Mindscape 0.020000000
## 1397 2003                              Mindscape 0.055000000
## 1398 2007                              Mindscape 0.815000000
## 1399 2008                              Mindscape 0.050000000
## 1400 2009                              Mindscape 0.165384615
## 1401 2010                              Mindscape 0.024000000
## 1402 2008                          Mirai Shounen 0.000000000
## 1403 1993                                 Misawa 0.000000000
## 1404 1994                                 Misawa 0.000000000
## 1405 1998                                 Mitsui 0.060000000
## 1406 2015                              mixi, Inc 0.000000000
## 1407 2016                                MLB.com 0.040000000
## 1408 2015                                 Mojang 0.250000000
## 1409 2007               Monte Christo Multimedia 0.000000000
## 1410 2008                                   Moss 0.100000000
## 1411 2013                                   Moss 0.000000000
## 1412 1998                                    MTO 0.000000000
## 1413 2006                                    MTO 0.000000000
## 1414 2007                                    MTO 0.000000000
## 1415 2008                                    MTO 0.000000000
## 1416 2010                                    MTO 0.000000000
## 1417 2008                              MTV Games 0.298461538
## 1418 2009                              MTV Games 0.308750000
## 1419 2010                              MTV Games 0.576250000
## 1420 2011                              MTV Games 0.066666667
## 1421  N/A                              MTV Games 1.350000000
## 1422 2003                   Mud Duck Productions 0.220000000
## 1423 2004                   Mud Duck Productions 0.150000000
## 1424 2006                            Mumbo Jumbo 0.020000000
## 1425 2007                            Mumbo Jumbo 0.160000000
## 1426 2008                            Mumbo Jumbo 0.063333333
## 1427 1985                                  Mycom 0.000000000
## 1428 2006                           Myelin Media 0.030000000
## 1429 1981                               Mystique 0.760000000
## 1430 2004                                    N/A 0.199473684
## 1431 2005                                    N/A 0.206000000
## 1432 2007                                    N/A 0.870000000
## 1433 2010                                    N/A 0.000000000
## 1434 2011                                    N/A 0.020000000
## 1435 2012                                    N/A 0.015000000
## 1436 2014                                    N/A 0.000000000
## 1437 2016                                    N/A 0.000000000
## 1438  N/A                                    N/A 0.125454545
## 1439 1984                     Namco Bandai Games 0.150000000
## 1440 1985                     Namco Bandai Games 0.000000000
## 1441 1986                     Namco Bandai Games 1.035000000
## 1442 1987                     Namco Bandai Games 0.060000000
## 1443 1988                     Namco Bandai Games 0.050000000
## 1444 1989                     Namco Bandai Games 0.000000000
## 1445 1990                     Namco Bandai Games 0.000000000
## 1446 1991                     Namco Bandai Games 0.000000000
## 1447 1992                     Namco Bandai Games 0.000000000
## 1448 1993                     Namco Bandai Games 0.000000000
## 1449 1994                     Namco Bandai Games 0.000000000
## 1450 1995                     Namco Bandai Games 0.000000000
## 1451 1996                     Namco Bandai Games 0.000000000
## 1452 1997                     Namco Bandai Games 0.045384615
## 1453 1998                     Namco Bandai Games 0.228888889
## 1454 1999                     Namco Bandai Games 0.137857143
## 1455 2000                     Namco Bandai Games 0.205000000
## 1456 2001                     Namco Bandai Games 0.426666667
## 1457 2002                     Namco Bandai Games 0.178000000
## 1458 2003                     Namco Bandai Games 0.190869565
## 1459 2004                     Namco Bandai Games 0.097600000
## 1460 2005                     Namco Bandai Games 0.149512195
## 1461 2006                     Namco Bandai Games 0.047575758
## 1462 2007                     Namco Bandai Games 0.027959184
## 1463 2008                     Namco Bandai Games 0.046923077
## 1464 2009                     Namco Bandai Games 0.093709677
## 1465 2010                     Namco Bandai Games 0.071857143
## 1466 2011                     Namco Bandai Games 0.085263158
## 1467 2012                     Namco Bandai Games 0.037529412
## 1468 2013                     Namco Bandai Games 0.025079365
## 1469 2014                     Namco Bandai Games 0.028840580
## 1470 2015                     Namco Bandai Games 0.053382353
## 1471 2016                     Namco Bandai Games 0.050000000
## 1472  N/A                     Namco Bandai Games 0.035000000
## 1473 1996                                Natsume 0.990000000
## 1474 1997                                Natsume 0.080000000
## 1475 2000                                Natsume 0.150000000
## 1476 2001                                Natsume 0.040000000
## 1477 2002                                Natsume 0.103333333
## 1478 2003                                Natsume 0.180000000
## 1479 2006                                Natsume 0.026666667
## 1480 2007                                Natsume 0.120000000
## 1481 2009                                Natsume 0.070000000
## 1482 2010                                Natsume 0.126666667
## 1483 2014                                Natsume 0.120000000
## 1484 2008                           Navarre Corp 0.040000000
## 1485 2008                             Naxat Soft 0.000000000
## 1486 1996                                    NCS 0.000000000
## 1487 1997                                    NCS 0.000000000
## 1488 1998                                    NCS 0.000000000
## 1489 2005                                 NCSoft 0.010000000
## 1490 2006                                 NCSoft 0.000000000
## 1491 2012                                 NCSoft 0.950000000
## 1492 2014                                 NCSoft 0.080000000
## 1493 2002                        NDA Productions 0.090000000
## 1494 1995                                    NEC 0.000000000
## 1495 1996                                    NEC 0.000000000
## 1496 1996                       NEC Interchannel 0.000000000
## 1497 1997                       NEC Interchannel 0.000000000
## 1498 1998                       NEC Interchannel 0.000000000
## 1499 2000                       NEC Interchannel 0.000000000
## 1500 2008                       NEC Interchannel 0.000000000
## 1501 2007                     Neko Entertainment 0.030000000
## 1502 2008                     Neko Entertainment 0.025000000
## 1503 2009                     Neko Entertainment 0.010000000
## 1504 2010                     Neko Entertainment 0.040000000
## 1505 2010                                NetRevo 0.000000000
## 1506 2012                                NetRevo 0.000000000
## 1507 1995                                    New 0.000000000
## 1508 1992                    New World Computing 0.010000000
## 1509 1998                               NewKidCo 0.150000000
## 1510 1999                               NewKidCo 0.145000000
## 1511 2001                               NewKidCo 0.010000000
## 1512 2002                               NewKidCo 0.190000000
## 1513 2003                               NewKidCo 0.033333333
## 1514 2010                                  Nexon 0.000000000
## 1515 1995                             Nichibutsu 0.000000000
## 1516 2012               Nihon Falcom Corporation 0.075000000
## 1517 2014               Nihon Falcom Corporation 0.000000000
## 1518 2015               Nihon Falcom Corporation 0.000000000
## 1519 2016               Nihon Falcom Corporation 0.000000000
## 1520 1983                               Nintendo 0.386666667
## 1521 1984                               Nintendo 3.618888889
## 1522 1985                               Nintendo 4.640000000
## 1523 1986                               Nintendo 1.121666667
## 1524 1987                               Nintendo 1.282500000
## 1525 1988                               Nintendo 3.538333333
## 1526 1989                               Nintendo 4.423333333
## 1527 1990                               Nintendo 2.821428571
## 1528 1991                               Nintendo 0.534615385
## 1529 1992                               Nintendo 1.848000000
## 1530 1993                               Nintendo 1.058888889
## 1531 1994                               Nintendo 1.370000000
## 1532 1995                               Nintendo 0.670000000
## 1533 1996                               Nintendo 2.031764706
## 1534 1997                               Nintendo 1.215384615
## 1535 1998                               Nintendo 1.377647059
## 1536 1999                               Nintendo 1.709000000
## 1537 2000                               Nintendo 0.652173913
## 1538 2001                               Nintendo 1.083636364
## 1539 2002                               Nintendo 1.138636364
## 1540 2003                               Nintendo 0.746296296
## 1541 2004                               Nintendo 0.496491228
## 1542 2005                               Nintendo 1.001111111
## 1543 2006                               Nintendo 1.704716981
## 1544 2007                               Nintendo 1.018333333
## 1545 2008                               Nintendo 1.213437500
## 1546 2009                               Nintendo 1.660937500
## 1547 2010                               Nintendo 0.863571429
## 1548 2011                               Nintendo 0.778461538
## 1549 2012                               Nintendo 0.672258065
## 1550 2013                               Nintendo 0.826086957
## 1551 2014                               Nintendo 0.900500000
## 1552 2015                               Nintendo 0.289062500
## 1553 2016                               Nintendo 0.116000000
## 1554  N/A                               Nintendo 0.160000000
## 1555 2002                           Nippon Amuse 0.000000000
## 1556 2012                        Nippon Columbia 0.000000000
## 1557 2013                        Nippon Columbia 0.000000000
## 1558 2014                        Nippon Columbia 0.000000000
## 1559 2015                        Nippon Columbia 0.000000000
## 1560 2016                        Nippon Columbia 0.000000000
## 1561 1998                   Nippon Ichi Software 0.020000000
## 1562 2007                   Nippon Ichi Software 0.011666667
## 1563 2008                   Nippon Ichi Software 0.058000000
## 1564 2009                   Nippon Ichi Software 0.065555556
## 1565 2010                   Nippon Ichi Software 0.046666667
## 1566 2011                   Nippon Ichi Software 0.075555556
## 1567 2012                   Nippon Ichi Software 0.020000000
## 1568 2013                   Nippon Ichi Software 0.067222222
## 1569 2014                   Nippon Ichi Software 0.057368421
## 1570 2015                   Nippon Ichi Software 0.045454545
## 1571 2016                   Nippon Ichi Software 0.010000000
## 1572  N/A                   Nippon Ichi Software 0.130000000
## 1573 1996                         Nippon Telenet 0.000000000
## 1574 2014                              Nitroplus 0.000000000
## 1575 2015                              Nitroplus 0.000000000
## 1576 2007                                Nobilis 0.025000000
## 1577 2008                                Nobilis 0.195714286
## 1578 2009                                Nobilis 0.020000000
## 1579 2010                                Nobilis 0.130000000
## 1580 2007                            Nordcurrent 0.050000000
## 1581 2008                            Nordcurrent 0.050000000
## 1582 2009                            Nordcurrent 0.190000000
## 1583 2010                            Nordcurrent 0.050000000
## 1584 2008                           Nordic Games 0.250000000
## 1585 2009                           Nordic Games 0.007500000
## 1586 2010                           Nordic Games 0.014000000
## 1587 2011                           Nordic Games 0.000000000
## 1588 2012                           Nordic Games 0.027500000
## 1589 2013                           Nordic Games 0.010000000
## 1590 2014                           Nordic Games 0.025000000
## 1591 2015                           Nordic Games 0.023000000
## 1592 2016                           Nordic Games 0.000000000
## 1593 2005                              NovaLogic 0.235000000
## 1594 2009                              NovaLogic 0.010000000
## 1595 2009                            Number None 0.000000000
## 1596 2009                                O-Games 0.020000000
## 1597 2010                                O-Games 0.021666667
## 1598 2011                                O-Games 0.040000000
## 1599 2004                       O3 Entertainment 0.070000000
## 1600 2006                       O3 Entertainment 0.020000000
## 1601 2007                       O3 Entertainment 0.100000000
## 1602 1992                                  Ocean 0.000000000
## 1603 1993                                  Ocean 0.250000000
## 1604 1995                                  Ocean 0.045000000
## 1605 1996                                  Ocean 0.035000000
## 1606 1997                                  Ocean 0.356666667
## 1607 1998                                  Ocean 0.116000000
## 1608 2013                          Office Create 0.000000000
## 1609 2014                          Office Create 0.000000000
## 1610 1997                              On Demand 0.120000000
## 1611 2006                              Ongakukan 0.000000000
## 1612 1997                         Origin Systems 0.050000000
## 1613 2013                                Otomate 0.000000000
## 1614 2005                     Oxygen Interactive 0.160000000
## 1615 2006                     Oxygen Interactive 0.306666667
## 1616 2007                     Oxygen Interactive 0.120000000
## 1617 2008                     Oxygen Interactive 0.052857143
## 1618 2009                     Oxygen Interactive 0.047777778
## 1619  N/A                     Oxygen Interactive 0.010000000
## 1620 2009                               P2 Games 0.010000000
## 1621 2011                               P2 Games 0.000000000
## 1622 2002            Pacific Century Cyber Works 0.110000000
## 1623 1995                          Pack-In-Video 0.000000000
## 1624 1999                           Pack In Soft 0.250000000
## 1625 1989                                 Palcom 3.380000000
## 1626 1995                       Panther Software 0.020000000
## 1627 2007                                   Paon 0.000000000
## 1628 2008                                   Paon 0.000000000
## 1629 2010                                   Paon 0.000000000
## 1630 2011                                   Paon 0.000000000
## 1631 2013                       Paon Corporation 0.000000000
## 1632 2016                    Paradox Development 0.000000000
## 1633 2007                    Paradox Interactive 0.000000000
## 1634 2008                    Paradox Interactive 0.000000000
## 1635 2009                    Paradox Interactive 0.010000000
## 1636 2010                    Paradox Interactive 0.002000000
## 1637 2011                    Paradox Interactive 0.000000000
## 1638 2012                    Paradox Interactive 0.000000000
## 1639 2014                    Paradox Interactive 0.000000000
## 1640 2015                    Paradox Interactive 0.000000000
## 1641 2016                    Paradox Interactive 0.000000000
## 1642 1981                           Parker Bros. 1.046666667
## 1643 1982                           Parker Bros. 0.525000000
## 1644 1983                           Parker Bros. 0.230000000
## 1645 2009          Performance Designed Products 0.170000000
## 1646 2002                             Phantagram 0.030000000
## 1647 2009                            Phantom EFX 0.090000000
## 1648 2007                             Phenomedia 0.045000000
## 1649 2008                             Phenomedia 0.030000000
## 1650 2009                             Phenomedia 0.040000000
## 1651 2007                          Phoenix Games 0.020000000
## 1652 2010                                 Piacci 0.000000000
## 1653 2008                               Pinnacle 0.000000000
## 1654 2009                               Pinnacle 0.000000000
## 1655 1996                            Pioneer LDC 0.115000000
## 1656 1998                            Pioneer LDC 0.000000000
## 1657 2001                            Pioneer LDC 0.000000000
## 1658 2002                                Play It 0.280000000
## 1659 2003                                Play It 0.075000000
## 1660 2004                                Play It 0.217142857
## 1661 2005                                Play It 0.100000000
## 1662 2005                 Playlogic Game Factory 0.060000000
## 1663 2008                 Playlogic Game Factory 0.105000000
## 1664 2009                 Playlogic Game Factory 0.060909091
## 1665 1997                              Playmates 0.160000000
## 1666 2002                               Playmore 0.000000000
## 1667 2009                                  PlayV 0.000000000
## 1668 2010                                  PlayV 0.033333333
## 1669 2011                                 Plenty 0.000000000
## 1670 2009                             PM Studios 0.090000000
## 1671 2000                            Pony Canyon 0.030000000
## 1672 2006                           PopCap Games 0.010000000
## 1673 2007                           PopCap Games 0.040000000
## 1674 2008                           PopCap Games 0.046666667
## 1675 2009                           PopCap Games 0.112500000
## 1676 2010                           PopCap Games 0.086666667
## 1677 2011                           PopCap Games 0.066666667
## 1678 2007                         Popcorn Arcade 0.030000000
## 1679 2008                         Popcorn Arcade 0.080000000
## 1680 1999                        PopTop Software 0.060000000
## 1681 1995                                    Pow 0.000000000
## 1682 2007                                  PQube 0.050000000
## 1683 2008                                  PQube 0.030000000
## 1684 2009                                  PQube 0.170000000
## 1685 2010                                  PQube 0.100000000
## 1686 2011                                  PQube 0.019000000
## 1687 2012                                  PQube 0.010000000
## 1688 2013                                  PQube 0.070000000
## 1689 2015                                  PQube 0.015000000
## 1690 2016                                  PQube 0.016000000
## 1691 2002                          Princess Soft 0.000000000
## 1692 2006                          Princess Soft 0.000000000
## 1693 2008                          Princess Soft 0.000000000
## 1694 2007                              Prototype 0.000000000
## 1695 2008                              Prototype 0.000000000
## 1696 2009                              Prototype 0.000000000
## 1697 2010                              Prototype 0.000000000
## 1698 2011                              Prototype 0.000000000
## 1699 2012                              Prototype 0.000000000
## 1700 2013                              Prototype 0.000000000
## 1701 2014                              Prototype 0.000000000
## 1702 2015                              Prototype 0.000000000
## 1703 2016                              Prototype 0.000000000
## 1704 1994                              Psygnosis 0.040000000
## 1705 1995                              Psygnosis 0.127142857
## 1706 1996                              Psygnosis 0.148571429
## 1707 1997                              Psygnosis 0.092222222
## 1708 1998                              Psygnosis 0.105000000
## 1709 1999                              Psygnosis 0.113333333
## 1710 2000                              Psygnosis 0.070000000
## 1711 1982                                 Quelle 0.810000000
## 1712 1995                                  Quest 0.000000000
## 1713 2011                               Quinrose 0.000000000
## 1714 2012                               Quinrose 0.000000000
## 1715 2013                               Quinrose 0.000000000
## 1716 2014                               Quinrose 0.000000000
## 1717 1998                                Quintet 0.000000000
## 1718 2001                          Rage Software 0.040000000
## 1719 2002                          Rage Software 0.146000000
## 1720 2015                             Rain Games 0.000000000
## 1721 2001                              Rebellion 0.340000000
## 1722 2002                              Rebellion 0.010000000
## 1723 2015                 Rebellion Developments 0.040000000
## 1724 2010                      RED Entertainment 0.000000000
## 1725 1994                                Red Orb 0.020000000
## 1726 1997                                Red Orb 1.520000000
## 1727 1999                Red Storm Entertainment 0.705000000
## 1728 2001                Red Storm Entertainment 0.020000000
## 1729 2005                              RedOctane 0.855000000
## 1730 2006                              RedOctane 3.810000000
## 1731 2007                              RedOctane 0.920000000
## 1732 2009                     Reef Entertainment 0.045000000
## 1733 2010                     Reef Entertainment 0.080000000
## 1734 2012                     Reef Entertainment 0.000000000
## 1735 2004                           responDESIGN 0.070000000
## 1736 2005                           responDESIGN 0.020000000
## 1737 2009                     Revolution (Japan) 0.000000000
## 1738 2015                    Revolution Software 0.000000000
## 1739 2005                      Rising Star Games 0.081428571
## 1740 2006                      Rising Star Games 0.094444444
## 1741 2007                      Rising Star Games 0.164736842
## 1742 2008                      Rising Star Games 0.163529412
## 1743 2009                      Rising Star Games 0.133333333
## 1744 2010                      Rising Star Games 0.091666667
## 1745 2011                      Rising Star Games 0.082222222
## 1746 2012                      Rising Star Games 0.015000000
## 1747 2013                      Rising Star Games 0.080000000
## 1748 2016                      Rising Star Games 0.010000000
## 1749  N/A                      Rising Star Games 0.000000000
## 1750 1995                          Riverhillsoft 0.000000000
## 1751 2006                         Rocket Company 0.000000000
## 1752 2007                         Rocket Company 0.000000000
## 1753 2008                         Rocket Company 0.000000000
## 1754 2009                         Rocket Company 0.000000000
## 1755 2010                         Rocket Company 0.000000000
## 1756 2011                         Rocket Company 0.000000000
## 1757 2012                         Rocket Company 0.000000000
## 1758 2013                         Rocket Company 0.000000000
## 1759 2014                         Rocket Company 0.000000000
## 1760 2015                         Rocket Company 0.000000000
## 1761 2016                         Rocket Company 0.000000000
## 1762 2008                             Rondomedia 0.060000000
## 1763 2009                             Rondomedia 0.182000000
## 1764 2010                             Rondomedia 0.000000000
## 1765 2011                             Rondomedia 0.026666667
## 1766 2015                             Rondomedia 0.000000000
## 1767 2007                                    RTL 0.450000000
## 1768 2008                                    RTL 0.070000000
## 1769 2009                                    RTL 0.015000000
## 1770 2007                                 Russel 0.000000000
## 1771 2008                                 Russel 0.000000000
## 1772 2009                                 Russel 0.000000000
## 1773 2010                                 Russel 0.000000000
## 1774 1993                      Sammy Corporation 0.000000000
## 1775 2001                      Sammy Corporation 0.085000000
## 1776 2002                      Sammy Corporation 0.032000000
## 1777 2003                      Sammy Corporation 0.080000000
## 1778 2004                      Sammy Corporation 0.000000000
## 1779 2006                      Sammy Corporation 0.000000000
## 1780 1998                                 Saurus 0.010000000
## 1781 2007                        Scholastic Inc. 0.770000000
## 1782 2008                        Scholastic Inc. 0.240000000
## 1783 2010                        Scholastic Inc. 0.180000000
## 1784 2011                        Scholastic Inc. 0.200000000
## 1785 2002                                    SCi 0.480000000
## 1786 2003                                    SCi 0.110000000
## 1787 2004                                    SCi 0.096000000
## 1788 2005                                    SCi 0.056666667
## 1789 2013                             Screenlife 0.055000000
## 1790 2015                             Screenlife 0.000000000
## 1791 2016                             Screenlife 0.000000000
## 1792 2012                           SCS Software 0.000000000
## 1793  N/A                                  Sears 0.200000000
## 1794 1982                                   Sega 0.370000000
## 1795 1990                                   Sega 1.860000000
## 1796 1991                                   Sega 3.030000000
## 1797 1992                                   Sega 1.094000000
## 1798 1993                                   Sega 0.166666667
## 1799 1994                                   Sega 0.093461538
## 1800 1995                                   Sega 0.020370370
## 1801 1996                                   Sega 0.000000000
## 1802 1997                                   Sega 0.000000000
## 1803 1998                                   Sega 0.090000000
## 1804 1999                                   Sega 0.182222222
## 1805 2000                                   Sega 0.192727273
## 1806 2001                                   Sega 0.374444444
## 1807 2002                                   Sega 0.168205128
## 1808 2003                                   Sega 0.188125000
## 1809 2004                                   Sega 0.283571429
## 1810 2005                                   Sega 0.171935484
## 1811 2006                                   Sega 0.130425532
## 1812 2007                                   Sega 0.166600000
## 1813 2008                                   Sega 0.246119403
## 1814 2009                                   Sega 0.230232558
## 1815 2010                                   Sega 0.223076923
## 1816 2011                                   Sega 0.152857143
## 1817 2012                                   Sega 0.065200000
## 1818 2013                                   Sega 0.078823529
## 1819 2014                                   Sega 0.067826087
## 1820 2015                                   Sega 0.027000000
## 1821 2016                                   Sega 0.016250000
## 1822 2017                                   Sega 0.000000000
## 1823  N/A                                   Sega 0.088571429
## 1824 1995                       Seta Corporation 0.000000000
## 1825 1996                       Seta Corporation 0.000000000
## 1826 2013                          Seventh Chord 0.000000000
## 1827 1995                             Shogakukan 0.000000000
## 1828 2006                             Shogakukan 0.000000000
## 1829 2007                             Shogakukan 0.000000000
## 1830 2015                             Shogakukan 0.000000000
## 1831 2002           Simon & Schuster Interactive 0.080000000
## 1832 2015                   Slightly Mad Studios 0.083333333
## 1833 2009                    Slitherine Software 0.000000000
## 1834 2010                    Slitherine Software 0.080000000
## 1835  N/A                    Slitherine Software 0.000000000
## 1836 1993                                    SNK 0.000000000
## 1837 1994                                    SNK 0.000000000
## 1838 1995                                    SNK 0.000000000
## 1839 1996                                    SNK 0.000000000
## 1840 1997                                    SNK 0.000000000
## 1841 1998                                    SNK 0.000000000
## 1842 1999                                    SNK 0.005000000
## 1843 2000                                    SNK 0.000000000
## 1844 2005                                    SNK 0.030000000
## 1845 1995                           SNK Playmore 0.000000000
## 1846 1998                           SNK Playmore 0.000000000
## 1847 1999                           SNK Playmore 0.040000000
## 1848 2005                           SNK Playmore 0.033333333
## 1849 2006                           SNK Playmore 0.020000000
## 1850 2007                           SNK Playmore 0.007500000
## 1851 2008                           SNK Playmore 0.000000000
## 1852 2009                           SNK Playmore 0.000000000
## 1853 2010                           SNK Playmore 0.000000000
## 1854 1996                                Societa 0.000000000
## 1855 2016                               Sold Out 0.010000000
## 1856 1995                                 Sonnet 0.000000000
## 1857 1996                                 Sonnet 0.000000000
## 1858 1994            Sony Computer Entertainment 0.118571429
## 1859 1995            Sony Computer Entertainment 0.233225806
## 1860 1996            Sony Computer Entertainment 0.555714286
## 1861 1997            Sony Computer Entertainment 0.508823529
## 1862 1998            Sony Computer Entertainment 0.576000000
## 1863 1999            Sony Computer Entertainment 0.671600000
## 1864 2000            Sony Computer Entertainment 0.344375000
## 1865 2001            Sony Computer Entertainment 0.552105263
## 1866 2002            Sony Computer Entertainment 0.431666667
## 1867 2003            Sony Computer Entertainment 0.350312500
## 1868 2004            Sony Computer Entertainment 0.435333333
## 1869 2005            Sony Computer Entertainment 0.306875000
## 1870 2006            Sony Computer Entertainment 0.274509804
## 1871 2007            Sony Computer Entertainment 0.368780488
## 1872 2008            Sony Computer Entertainment 0.297837838
## 1873 2009            Sony Computer Entertainment 0.308666667
## 1874 2010            Sony Computer Entertainment 0.329069767
## 1875 2011            Sony Computer Entertainment 0.353055556
## 1876 2012            Sony Computer Entertainment 0.285833333
## 1877 2013            Sony Computer Entertainment 0.384166667
## 1878 2014            Sony Computer Entertainment 0.506153846
## 1879 2015            Sony Computer Entertainment 0.491000000
## 1880 2016            Sony Computer Entertainment 0.486000000
## 1881  N/A            Sony Computer Entertainment 0.000000000
## 1882 2014    Sony Computer Entertainment America 0.346666667
## 1883 2001     Sony Computer Entertainment Europe 2.060000000
## 1884 2004     Sony Computer Entertainment Europe 0.880000000
## 1885 2012     Sony Computer Entertainment Europe 0.040000000
## 1886 2013     Sony Computer Entertainment Europe 0.554285714
## 1887 2014     Sony Computer Entertainment Europe 0.415000000
## 1888 2015     Sony Computer Entertainment Europe 0.440000000
## 1889 2001               Sony Music Entertainment 0.000000000
## 1890 2003              Sony Online Entertainment 0.150000000
## 1891 2004              Sony Online Entertainment 0.630000000
## 1892 2005              Sony Online Entertainment 0.320000000
## 1893 2006              Sony Online Entertainment 0.140000000
## 1894 2011              Sony Online Entertainment 0.190000000
## 1895 1999                        SouthPeak Games 0.060000000
## 1896 2004                        SouthPeak Games 1.000000000
## 1897 2005                        SouthPeak Games 0.530000000
## 1898 2006                        SouthPeak Games 0.045000000
## 1899 2007                        SouthPeak Games 0.175000000
## 1900 2008                        SouthPeak Games 0.078750000
## 1901 2009                        SouthPeak Games 0.108461538
## 1902 2010                        SouthPeak Games 0.050000000
## 1903 2001                                  Spike 0.090000000
## 1904 2002                                  Spike 0.000000000
## 1905 2004                                  Spike 0.000000000
## 1906 2006                                  Spike 0.177500000
## 1907 2007                                  Spike 0.167500000
## 1908 2008                                  Spike 0.015000000
## 1909 2009                                  Spike 0.110000000
## 1910 2010                                  Spike 0.060000000
## 1911 2011                                  Spike 0.000000000
## 1912 2012                                  Spike 0.000000000
## 1913 1996                                    SPS 0.070000000
## 1914 1991                                 Square 0.240000000
## 1915 1994                                 Square 0.000000000
## 1916 1997                                 Square 0.000000000
## 1917 1999                                 Square 0.000000000
## 1918 2001                                 Square 0.290000000
## 1919 1999                              Square EA 0.450000000
## 1920 2003                            Square Enix 0.080000000
## 1921 2004                            Square Enix 0.360000000
## 1922 2005                            Square Enix 0.448333333
## 1923 2006                            Square Enix 0.333333333
## 1924 2007                            Square Enix 0.284347826
## 1925 2008                            Square Enix 0.167083333
## 1926 2009                            Square Enix 0.238333333
## 1927 2010                            Square Enix 0.254400000
## 1928 2011                            Square Enix 0.181363636
## 1929 2012                            Square Enix 0.286363636
## 1930 2013                            Square Enix 0.270625000
## 1931 2014                            Square Enix 0.135384615
## 1932 2015                            Square Enix 0.162500000
## 1933 2016                            Square Enix 0.023500000
## 1934  N/A                            Square Enix 0.030000000
## 1935 1987                             SquareSoft 0.320000000
## 1936 1988                             SquareSoft 0.000000000
## 1937 1989                             SquareSoft 0.000000000
## 1938 1990                             SquareSoft 0.000000000
## 1939 1991                             SquareSoft 0.000000000
## 1940 1992                             SquareSoft 0.000000000
## 1941 1993                             SquareSoft 0.125000000
## 1942 1994                             SquareSoft 0.430000000
## 1943 1995                             SquareSoft 0.070000000
## 1944 1996                             SquareSoft 0.000000000
## 1945 1997                             SquareSoft 0.147500000
## 1946 1998                             SquareSoft 0.242500000
## 1947 1999                             SquareSoft 0.473750000
## 1948 2000                             SquareSoft 0.405000000
## 1949 2001                             SquareSoft 0.000000000
## 1950 2002                             SquareSoft 0.000000000
## 1951 2003                             SquareSoft 0.820000000
## 1952 1996                                    SSI 0.110000000
## 1953 2016                        Stainless Games 0.010000000
## 1954 1997                               Starfish 0.200000000
## 1955 1999                               Starfish 0.060000000
## 1956 2001                               Starfish 0.030000000
## 1957 2007                               Starfish 0.050000000
## 1958 2009                               Starfish 0.000000000
## 1959 2010                               Starfish 0.000000000
## 1960 2011                               Starfish 0.000000000
## 1961 2012                               Starfish 0.000000000
## 1962 1981                         Starpath Corp. 0.300000000
## 1963 2004                                  Sting 0.070000000
## 1964 2006                                  Sting 0.000000000
## 1965 2007                                  Sting 0.050000000
## 1966 2008                                  Sting 0.056000000
## 1967 2010                                  Sting 0.000000000
## 1968 2009                       Storm City Games 0.113333333
## 1969 2010                       Storm City Games 0.071538462
## 1970 2011                       Storm City Games 0.026666667
## 1971 2001                         Strategy First 0.000000000
## 1972 1998                                Success 0.640000000
## 1973 1999                                Success 0.010000000
## 1974 2000                                Success 0.010000000
## 1975 2001                                Success 0.050000000
## 1976 2002                                Success 0.000000000
## 1977 2005                                Success 0.005000000
## 1978 2006                                Success 0.000000000
## 1979 2007                                Success 0.058000000
## 1980 2008                                Success 0.036666667
## 1981 2009                                Success 0.000000000
## 1982 2013                                Success 0.000000000
## 1983 2014                                Success 0.000000000
## 1984 2004                             Summitsoft 0.030000000
## 1985 2004                             Sunflowers 0.000000000
## 1986 2000                    Sunrise Interactive 0.000000000
## 1987 2006                    Sunrise Interactive 0.000000000
## 1988 2007                    Sunrise Interactive 0.000000000
## 1989 1994                                Sunsoft 0.000000000
## 1990 1995                                Sunsoft 0.000000000
## 1991 1996                                Sunsoft 0.040000000
## 1992 1997                                Sunsoft 0.090000000
## 1993 1998                                Sunsoft 0.080000000
## 1994 1999                                Sunsoft 0.080000000
## 1995 2000                                Sunsoft 0.140000000
## 1996 2011                                Sunsoft 0.070000000
## 1997 2006                                 Sweets 0.000000000
## 1998 2009                                 Sweets 0.000000000
## 1999 1998                   Swing! Entertainment 0.030000000
## 2000 2000                   Swing! Entertainment 0.040000000
## 2001 2001                   Swing! Entertainment 0.030000000
## 2002 2002                   Swing! Entertainment 0.110000000
## 2003 1998                                 Syscom 0.000000000
## 2004 1999                                 Syscom 0.060000000
## 2005 2013                               System 3 0.026666667
## 2006 2006               System 3 Arcade Software 0.056666667
## 2007 2007               System 3 Arcade Software 0.060000000
## 2008 2008               System 3 Arcade Software 0.111666667
## 2009 2009               System 3 Arcade Software 0.000000000
## 2010  N/A               System 3 Arcade Software 0.000000000
## 2011 2008                            System Soft 0.000000000
## 2012 2010                            System Soft 0.000000000
## 2013 2011                            System Soft 0.000000000
## 2014 1993                               T&E Soft 0.000000000
## 2015 1981                                  Taito 0.220000000
## 2016 1994                                  Taito 0.000000000
## 2017 1995                                  Taito 0.000000000
## 2018 1997                                  Taito 0.000000000
## 2019 1999                                  Taito 0.000000000
## 2020 2001                                  Taito 0.000000000
## 2021 2002                                  Taito 0.043333333
## 2022 2003                                  Taito 0.010000000
## 2023 2006                                  Taito 0.000000000
## 2024 2007                                  Taito 0.016666667
## 2025 2010                                  Taito 0.000000000
## 2026 1992                                 Takara 0.000000000
## 2027 1993                                 Takara 0.000000000
## 2028 1994                                 Takara 0.000000000
## 2029 1995                                 Takara 0.000000000
## 2030 1996                                 Takara 0.000000000
## 2031 1997                                 Takara 0.000000000
## 2032 1998                                 Takara 0.000000000
## 2033 1999                                 Takara 0.000000000
## 2034 2001                                 Takara 0.080000000
## 2035 2002                                 Takara 0.000000000
## 2036 2003                                 Takara 0.000000000
## 2037 2006                            Takara Tomy 0.073333333
## 2038 2007                            Takara Tomy 0.010000000
## 2039 2008                            Takara Tomy 0.026153846
## 2040 2009                            Takara Tomy 0.018000000
## 2041 2010                            Takara Tomy 0.007500000
## 2042 2011                            Takara Tomy 0.000000000
## 2043 2013                            Takara Tomy 0.000000000
## 2044 2015                            Takara Tomy 0.000000000
## 2045 1997                   Take-Two Interactive 0.370000000
## 2046 1998                   Take-Two Interactive 0.376666667
## 2047 1999                   Take-Two Interactive 0.272500000
## 2048 2000                   Take-Two Interactive 0.626666667
## 2049 2001                   Take-Two Interactive 0.953333333
## 2050 2002                   Take-Two Interactive 1.372500000
## 2051 2003                   Take-Two Interactive 0.470714286
## 2052 2004                   Take-Two Interactive 0.950000000
## 2053 2005                   Take-Two Interactive 0.329512195
## 2054 2006                   Take-Two Interactive 0.353939394
## 2055 2007                   Take-Two Interactive 0.334594595
## 2056 2008                   Take-Two Interactive 0.645365854
## 2057 2009                   Take-Two Interactive 0.305609756
## 2058 2010                   Take-Two Interactive 0.594857143
## 2059 2011                   Take-Two Interactive 0.362903226
## 2060 2012                   Take-Two Interactive 0.453571429
## 2061 2013                   Take-Two Interactive 1.616875000
## 2062 2014                   Take-Two Interactive 0.948666667
## 2063 2015                   Take-Two Interactive 0.504705882
## 2064 2016                   Take-Two Interactive 0.152500000
## 2065  N/A                   Take-Two Interactive 0.020000000
## 2066 2011                                 Takuyo 0.000000000
## 2067 2001                              TalonSoft 0.490000000
## 2068 2000                               TDK Core 0.100000000
## 2069 2002                               TDK Core 0.140000000
## 2070 2006                               TDK Core 0.000000000
## 2071 2007                               TDK Core 0.000000000
## 2072 2001                         TDK Mediactive 0.096000000
## 2073 2002                         TDK Mediactive 0.142500000
## 2074 2003                         TDK Mediactive 0.142857143
## 2075 2004                         TDK Mediactive 0.650000000
## 2076 2010                        Team17 Software 0.000000000
## 2077 1995              Technos Japan Corporation 0.000000000
## 2078 1998                             TechnoSoft 0.030000000
## 2079 1991                             Tecmo Koei 0.000000000
## 2080 1992                             Tecmo Koei 0.000000000
## 2081 1993                             Tecmo Koei 0.150000000
## 2082 1994                             Tecmo Koei 0.000000000
## 2083 1995                             Tecmo Koei 0.016666667
## 2084 1996                             Tecmo Koei 0.025000000
## 2085 1997                             Tecmo Koei 0.052500000
## 2086 1998                             Tecmo Koei 0.007500000
## 2087 1999                             Tecmo Koei 0.010000000
## 2088 2000                             Tecmo Koei 0.046000000
## 2089 2001                             Tecmo Koei 0.045000000
## 2090 2002                             Tecmo Koei 0.047272727
## 2091 2003                             Tecmo Koei 0.143333333
## 2092 2004                             Tecmo Koei 0.063076923
## 2093 2005                             Tecmo Koei 0.076153846
## 2094 2006                             Tecmo Koei 0.045769231
## 2095 2007                             Tecmo Koei 0.056129032
## 2096 2008                             Tecmo Koei 0.057666667
## 2097 2009                             Tecmo Koei 0.032857143
## 2098 2010                             Tecmo Koei 0.033157895
## 2099 2011                             Tecmo Koei 0.047058824
## 2100 2012                             Tecmo Koei 0.084000000
## 2101 2013                             Tecmo Koei 0.020000000
## 2102 2014                             Tecmo Koei 0.023703704
## 2103 2015                             Tecmo Koei 0.011428571
## 2104 2016                             Tecmo Koei 0.002352941
## 2105 1999                              Telegames 0.010000000
## 2106 2003                              Telegames 0.075000000
## 2107 2005                              Telegames 0.010000000
## 2108 2007                              Telegames 0.250000000
## 2109 2008                              Telegames 0.080000000
## 2110 2010                              Telegames 0.160000000
## 2111 2011                         Telltale Games 0.043333333
## 2112 2014                         Telltale Games 0.078181818
## 2113 2015                         Telltale Games 0.032857143
## 2114 2016                         Telltale Games 0.015000000
## 2115 1995                                Telstar 0.040000000
## 2116 1998                                Telstar 0.060000000
## 2117 2011                          Tetris Online 0.200000000
## 2118 2009                                    TGL 0.000000000
## 2119 2015                                    TGL 0.000000000
## 2120 2008                  The Adventure Company 0.066666667
## 2121 2009                  The Adventure Company 0.070000000
## 2122 2000                   The Learning Company 0.030000000
## 2123 1995                                    THQ 0.015000000
## 2124 1997                                    THQ 0.496666667
## 2125 1998                                    THQ 0.729090909
## 2126 1999                                    THQ 0.343750000
## 2127 2000                                    THQ 0.616666667
## 2128 2001                                    THQ 0.317222222
## 2129 2002                                    THQ 0.294545455
## 2130 2003                                    THQ 0.293281250
## 2131 2004                                    THQ 0.366326531
## 2132 2005                                    THQ 0.247301587
## 2133 2006                                    THQ 0.291754386
## 2134 2007                                    THQ 0.271891892
## 2135 2008                                    THQ 0.302295082
## 2136 2009                                    THQ 0.261527778
## 2137 2010                                    THQ 0.255789474
## 2138 2011                                    THQ 0.197236842
## 2139 2012                                    THQ 0.436250000
## 2140 2013                                    THQ 0.060000000
## 2141  N/A                                    THQ 0.056666667
## 2142 1981                            Tigervision 0.535000000
## 2143 1982                            Tigervision 0.260000000
## 2144 1994                Time Warner Interactive 0.060000000
## 2145 1995                Time Warner Interactive 0.040000000
## 2146 1996                Time Warner Interactive 0.026666667
## 2147 1993                                  Titus 0.000000000
## 2148 1997                                  Titus 0.280000000
## 2149 1998                                  Titus 0.095000000
## 2150 1999                                  Titus 0.165000000
## 2151 2000                                  Titus 0.030000000
## 2152 2001                                  Titus 0.122500000
## 2153 2002                                  Titus 0.067500000
## 2154 2003                                  Titus 0.010000000
## 2155 2008                                 Tivola 0.040000000
## 2156 2009                                 Tivola 0.020000000
## 2157 1993                                   TOHO 0.000000000
## 2158 2007                                  Tommo 0.046666667
## 2159 2009                                  Tommo 0.020000000
## 2160 2011                                  Tommo 0.040000000
## 2161 1995                       Tomy Corporation 0.000000000
## 2162 1996                       Tomy Corporation 0.020000000
## 2163 1998                       Tomy Corporation 0.000000000
## 2164 2003                       Tomy Corporation 0.174000000
## 2165 2004                       Tomy Corporation 0.000000000
## 2166 2005                       Tomy Corporation 0.000000000
## 2167 2006                       Tomy Corporation 0.000000000
## 2168 2007                       Tomy Corporation 0.450000000
## 2169 2008                       Tomy Corporation 0.340000000
## 2170 2009                       Tomy Corporation 0.020000000
## 2171 2010                       Tomy Corporation 0.120000000
## 2172 2011                    TopWare Interactive 0.000000000
## 2173 2015                    TopWare Interactive 0.000000000
## 2174  N/A                    TopWare Interactive 0.000000000
## 2175 2007                             Touchstone 0.070000000
## 2176 2008                             Touchstone 0.270000000
## 2177 2010                              Tradewest 0.006666667
## 2178 2012                           Trion Worlds 0.010000000
## 2179 2013                           Trion Worlds 0.236666667
## 2180 2011                   Tripwire Interactive 0.040000000
## 2181 2014                  Tru Blu Entertainment 0.000000000
## 2182 2015                  Tru Blu Entertainment 0.001666667
## 2183 2008                               Tryfirst 0.000000000
## 2184 1998                                    TYO 0.230000000
## 2185 2014                              Type-Moon 0.000000000
## 2186 1995                              U.S. Gold 0.050000000
## 2187 1996                              U.S. Gold 0.045000000
## 2188 1995                                Ubisoft 1.540000000
## 2189 1996                                Ubisoft 0.090000000
## 2190 1997                                Ubisoft 0.110000000
## 2191 1998                                Ubisoft 0.076666667
## 2192 1999                                Ubisoft 0.222307692
## 2193 2000                                Ubisoft 0.104761905
## 2194 2001                                Ubisoft 0.120800000
## 2195 2002                                Ubisoft 0.241136364
## 2196 2003                                Ubisoft 0.197659574
## 2197 2004                                Ubisoft 0.269687500
## 2198 2005                                Ubisoft 0.180877193
## 2199 2006                                Ubisoft 0.209180328
## 2200 2007                                Ubisoft 0.314090909
## 2201 2008                                Ubisoft 0.284642857
## 2202 2009                                Ubisoft 0.258235294
## 2203 2010                                Ubisoft 0.335000000
## 2204 2011                                Ubisoft 0.276436782
## 2205 2012                                Ubisoft 0.559687500
## 2206 2013                                Ubisoft 0.457931034
## 2207 2014                                Ubisoft 0.384090909
## 2208 2015                                Ubisoft 0.152812500
## 2209 2016                                Ubisoft 0.296153846
## 2210 2020                                Ubisoft 0.270000000
## 2211  N/A                                Ubisoft 0.206666667
## 2212 2009                         Ubisoft Annecy 0.200000000
## 2213 2010                         Ubisoft Annecy 0.065000000
## 2214 2011                         Ubisoft Annecy 0.073333333
## 2215 2012                         Ubisoft Annecy 0.047500000
## 2216 1997                            UEP Systems 1.520000000
## 2217 2007                        UFO Interactive 0.030000000
## 2218 2008                        UFO Interactive 0.037500000
## 2219 2009                        UFO Interactive 0.053333333
## 2220 2010                        UFO Interactive 0.106000000
## 2221 2011                        UFO Interactive 0.020000000
## 2222 2012                        UFO Interactive 0.010000000
## 2223 2016                      UIG Entertainment 0.000000000
## 2224  N/A                            Ultravision 0.440000000
## 2225 1982                        Universal Gamex 0.580000000
## 2226 2001                  Universal Interactive 1.160000000
## 2227 2002                  Universal Interactive 0.350000000
## 2228 2003                  Universal Interactive 0.296666667
## 2229  N/A                  Universal Interactive 0.080000000
## 2230 1981                                Unknown 0.270000000
## 2231 1998                                Unknown 0.460000000
## 2232 2001                                Unknown 0.093333333
## 2233 2002                                Unknown 0.010000000
## 2234 2003                                Unknown 0.670000000
## 2235 2004                                Unknown 0.020000000
## 2236 2005                                Unknown 0.740000000
## 2237 2006                                Unknown 0.040000000
## 2238 2007                                Unknown 0.000000000
## 2239 2008                                Unknown 0.115000000
## 2240 2009                                Unknown 0.000000000
## 2241 2010                                Unknown 0.041111111
## 2242 2011                                Unknown 0.042619048
## 2243 2012                                Unknown 0.006666667
## 2244 2013                                Unknown 0.000000000
## 2245 2014                                Unknown 0.073333333
## 2246 2015                                Unknown 0.000000000
## 2247 2016                                Unknown 0.000000000
## 2248  N/A                                Unknown 0.125436893
## 2249 2005                           Valcon Games 0.050000000
## 2250 2006                           Valcon Games 0.010000000
## 2251 2008                           Valcon Games 0.055000000
## 2252 2009                           Valcon Games 0.043333333
## 2253 2010                           Valcon Games 0.010000000
## 2254 2005                               ValuSoft 0.120000000
## 2255 2008                               ValuSoft 0.030000000
## 2256 2009                               ValuSoft 0.100000000
## 2257 2011                               ValuSoft 0.010000000
## 2258 2011                                  Valve 0.830000000
## 2259 2009                         Valve Software 0.000000000
## 2260 2011                         Valve Software 0.870000000
## 2261 1994                                    Vap 0.000000000
## 2262 2000                  Vatical Entertainment 0.070000000
## 2263 1996                              Vic Tokai 0.070000000
## 2264 1997                              Vic Tokai 0.120000000
## 2265 1993                     Victor Interactive 0.000000000
## 2266 1995                     Victor Interactive 0.000000000
## 2267 1997                     Victor Interactive 0.000000000
## 2268 1998                     Victor Interactive 0.000000000
## 2269 2000                     Victor Interactive 0.100000000
## 2270 2001                     Victor Interactive 0.005000000
## 2271 2002                     Victor Interactive 0.000000000
## 2272 1992                           Video System 0.000000000
## 2273 1997                           Video System 0.150000000
## 2274 1998                           Video System 0.460000000
## 2275 2000                           Video System 0.060000000
## 2276 2012                                  Views 0.000000000
## 2277 2014                                  Views 0.000000000
## 2278 2008                          Vir2L Studios 0.040000000
## 2279 2009                          Vir2L Studios 0.140000000
## 2280 1992                     Virgin Interactive 0.010000000
## 2281 1994                     Virgin Interactive 1.426666667
## 2282 1995                     Virgin Interactive 0.062500000
## 2283 1996                     Virgin Interactive 0.494615385
## 2284 1997                     Virgin Interactive 0.117777778
## 2285 1998                     Virgin Interactive 0.310000000
## 2286 1999                     Virgin Interactive 0.140000000
## 2287 2000                     Virgin Interactive 0.125000000
## 2288 2001                     Virgin Interactive 0.313333333
## 2289 2002                     Virgin Interactive 0.097500000
## 2290 2010                     Virtual Play Games 0.030000000
## 2291 2011                                  Visco 0.020000000
## 2292 1995                          Vivendi Games 0.010000000
## 2293 1997                          Vivendi Games 2.015000000
## 2294 1998                          Vivendi Games 0.000000000
## 2295 1999                          Vivendi Games 0.220000000
## 2296 2000                          Vivendi Games 0.060000000
## 2297 2001                          Vivendi Games 0.652500000
## 2298 2002                          Vivendi Games 0.166250000
## 2299 2003                          Vivendi Games 0.241875000
## 2300 2004                          Vivendi Games 0.276111111
## 2301 2005                          Vivendi Games 0.145600000
## 2302 2006                          Vivendi Games 0.187894737
## 2303 2007                          Vivendi Games 0.170476190
## 2304 2008                          Vivendi Games 0.189375000
## 2305 2009                          Vivendi Games 0.060000000
## 2306  N/A                          Vivendi Games 0.253333333
## 2307 2001                                Wanadoo 0.070000000
## 2308 2002                                Wanadoo 0.200000000
## 2309 2003                                Wanadoo 0.010000000
## 2310 2005                                Wanadoo 0.010000000
## 2311 2007                                Warashi 0.000000000
## 2312 2011                          Wargaming.net 0.000000000
## 2313 2003 Warner Bros. Interactive Entertainment 0.190000000
## 2314 2005 Warner Bros. Interactive Entertainment 0.030000000
## 2315 2006 Warner Bros. Interactive Entertainment 0.210000000
## 2316 2007 Warner Bros. Interactive Entertainment 0.202000000
## 2317 2008 Warner Bros. Interactive Entertainment 0.696000000
## 2318 2009 Warner Bros. Interactive Entertainment 0.325517241
## 2319 2010 Warner Bros. Interactive Entertainment 0.275757576
## 2320 2011 Warner Bros. Interactive Entertainment 0.640000000
## 2321 2012 Warner Bros. Interactive Entertainment 0.353333333
## 2322 2013 Warner Bros. Interactive Entertainment 0.380000000
## 2323 2014 Warner Bros. Interactive Entertainment 0.245333333
## 2324 2015 Warner Bros. Interactive Entertainment 0.385384615
## 2325 2016 Warner Bros. Interactive Entertainment 0.097857143
## 2326  N/A Warner Bros. Interactive Entertainment 0.389333333
## 2327 1997                                   Warp 0.000000000
## 2328 2015                WayForward Technologies 0.050000000
## 2329 1999                       Westwood Studios 1.550000000
## 2330 2007                White Park Bay Software 0.130000000
## 2331 1982                     Wizard Video Games 0.580000000
## 2332 2002                      Xicat Interactive 0.035000000
## 2333 2003                      Xicat Interactive 0.020000000
## 2334 1997                     Xing Entertainment 0.040000000
## 2335 2005                                Xplosiv 0.100000000
## 2336 2006                                Xplosiv 0.025000000
## 2337 2007                                Xplosiv 0.100000000
## 2338 2008                                Xplosiv 0.070000000
## 2339 2002                               XS Games 0.130000000
## 2340 2004                               XS Games 0.016666667
## 2341 2005                               XS Games 0.060000000
## 2342 2007                               XS Games 0.010000000
## 2343 2008                               XS Games 0.020000000
## 2344 2009                               XS Games 0.220000000
## 2345 2010                               XS Games 0.230000000
## 2346 2012                            Xseed Games 0.310000000
## 2347 2013                            Xseed Games 0.040000000
## 2348 2014                            Xseed Games 0.040000000
## 2349 2015                            Xseed Games 0.020000000
## 2350 2015                       Yacht Club Games 0.053333333
## 2351 2006                   Yamasa Entertainment 0.000000000
## 2352 2006                                   Yeti 0.000000000
## 2353 2007                                   Yeti 0.000000000
## 2354 2008                                   Yeti 0.000000000
## 2355 2009                                   Yeti 0.000000000
## 2356 2010                                   Yeti 0.000000000
## 2357 2012                                   Yeti 0.000000000
## 2358 2016                                   Yeti 0.000000000
## 2359 2005                                 Yuke's 0.010000000
## 2360 2006                                 Yuke's 0.000000000
## 2361 2007                                 Yuke's 0.000000000
## 2362 1995                                Yumedia 0.000000000
## 2363 2006                                 Zenrin 0.000000000
## 2364 2007                                 Zenrin 0.000000000
## 2365 2002                 Zoo Digital Publishing 0.023333333
## 2366 2003                 Zoo Digital Publishing 0.145555556
## 2367 2004                 Zoo Digital Publishing 0.120000000
## 2368 2005                 Zoo Digital Publishing 0.073225806
## 2369 2006                 Zoo Digital Publishing 0.056666667
## 2370 2007                 Zoo Digital Publishing 0.090000000
## 2371 2008                 Zoo Digital Publishing 0.107500000
## 2372 2009                 Zoo Digital Publishing 0.095454545
## 2373 2008                              Zoo Games 0.111250000
## 2374 2009                              Zoo Games 0.206363636
## 2375 2010                              Zoo Games 0.086666667
## 2376 2011                              Zoo Games 0.160000000
## 2377 2007                            Zushi Games 0.040000000
## 2378 2008                            Zushi Games 0.125000000
## 2379 2009                            Zushi Games 0.086923077
aggregate(NA_Sales,by=list(Genre = Genre,Publisher=Publisher),mean)
##             Genre                              Publisher            x
## 1       Adventure                        10TACLE Studios 0.0100000000
## 2          Puzzle                        10TACLE Studios 0.0000000000
## 3        Strategy                        10TACLE Studios 0.0600000000
## 4          Racing                             1C Company 0.0000000000
## 5    Role-Playing                             1C Company 0.0000000000
## 6        Strategy                             1C Company 0.0100000000
## 7          Action           20th Century Fox Video Games 0.4025000000
## 8         Shooter           20th Century Fox Video Games 0.2100000000
## 9          Puzzle                                 2D Boy 0.0000000000
## 10         Action                                    3DO 0.2535294118
## 11      Adventure                                    3DO 0.0633333333
## 12       Fighting                                    3DO 0.3100000000
## 13       Platform                                    3DO 0.0600000000
## 14         Puzzle                                    3DO 0.0500000000
## 15   Role-Playing                                    3DO 0.1400000000
## 16        Shooter                                    3DO 0.1080000000
## 17         Sports                                    3DO 0.1383333333
## 18       Strategy                                    3DO 0.0500000000
## 19         Sports                                49Games 0.0000000000
## 20         Action                              505 Games 0.0623809524
## 21      Adventure                              505 Games 0.0328571429
## 22       Fighting                              505 Games 0.0472727273
## 23           Misc                              505 Games 0.1170967742
## 24       Platform                              505 Games 0.0283333333
## 25         Puzzle                              505 Games 0.1120000000
## 26         Racing                              505 Games 0.0000000000
## 27   Role-Playing                              505 Games 0.0490000000
## 28        Shooter                              505 Games 0.1455555556
## 29     Simulation                              505 Games 0.3117073171
## 30         Sports                              505 Games 0.3066666667
## 31       Strategy                              505 Games 0.0400000000
## 32         Action                                    5pb 0.0000000000
## 33      Adventure                                    5pb 0.0000000000
## 34       Fighting                                    5pb 0.0200000000
## 35   Role-Playing                                    5pb 0.0000000000
## 36        Shooter                                    5pb 0.0000000000
## 37     Simulation                                    5pb 0.0000000000
## 38           Misc                               7G//AMES 0.0000000000
## 39         Puzzle                               7G//AMES 0.0000000000
## 40     Simulation                               7G//AMES 0.0000000000
## 41         Sports                             989 Sports 0.2100000000
## 42         Action                            989 Studios 0.9900000000
## 43         Racing                            989 Studios 0.4366666667
## 44         Sports                            989 Studios 0.6600000000
## 45         Action                               Abylight 0.0700000000
## 46         Action                  Acclaim Entertainment 0.0635714286
## 47      Adventure                  Acclaim Entertainment 0.1550000000
## 48       Fighting                  Acclaim Entertainment 0.3748387097
## 49           Misc                  Acclaim Entertainment 0.1580000000
## 50       Platform                  Acclaim Entertainment 0.3340000000
## 51         Puzzle                  Acclaim Entertainment 0.0866666667
## 52         Racing                  Acclaim Entertainment 0.2061363636
## 53   Role-Playing                  Acclaim Entertainment 0.1900000000
## 54        Shooter                  Acclaim Entertainment 0.2276470588
## 55         Sports                  Acclaim Entertainment 0.2525000000
## 56       Strategy                  Acclaim Entertainment 0.0600000000
## 57       Platform                               Accolade 0.1000000000
## 58         Racing                               Accolade 1.0500000000
## 59         Sports                               Accolade 0.1000000000
## 60         Action                            Ackkstudios 0.0000000000
## 61      Adventure                            Ackkstudios 0.0700000000
## 62   Role-Playing                            Ackkstudios 0.0300000000
## 63         Sports                            Ackkstudios 0.0000000000
## 64       Strategy                            Ackkstudios 0.0000000000
## 65         Action                                Acquire 0.0400000000
## 66      Adventure                                Acquire 0.0000000000
## 67   Role-Playing                                Acquire 0.0075000000
## 68       Strategy                                Acquire 0.0000000000
## 69         Action                             Activision 0.2815806452
## 70      Adventure                             Activision 0.1616000000
## 71       Fighting                             Activision 0.2771428571
## 72           Misc                             Activision 0.4726213592
## 73       Platform                             Activision 0.3908333333
## 74         Puzzle                             Activision 0.1114285714
## 75         Racing                             Activision 0.1645945946
## 76   Role-Playing                             Activision 0.5751219512
## 77        Shooter                             Activision 1.0150314465
## 78     Simulation                             Activision 0.2317391304
## 79         Sports                             Activision 0.3672222222
## 80       Strategy                             Activision 0.3709090909
## 81         Action                    Activision Blizzard 0.0800000000
## 82         Action                       Activision Value 0.0400000000
## 83           Misc                       Activision Value 0.0400000000
## 84        Shooter                       Activision Value 0.1225000000
## 85         Sports                       Activision Value 0.2231818182
## 86       Strategy                       Activision Value 0.0500000000
## 87         Action                       Adeline Software 0.1000000000
## 88     Simulation                               Aerosoft 0.0050000000
## 89         Action                 Agatsuma Entertainment 0.1600000000
## 90           Misc                 Agatsuma Entertainment 0.0600000000
## 91       Platform                 Agatsuma Entertainment 0.0000000000
## 92         Action                                 Agetec 0.0200000000
## 93       Fighting                                 Agetec 0.0500000000
## 94           Misc                                 Agetec 0.0400000000
## 95         Racing                                 Agetec 0.0300000000
## 96     Simulation                                 Agetec 0.0700000000
## 97         Sports                                 Agetec 0.5300000000
## 98       Strategy                                 Agetec 0.0200000000
## 99         Action                            Aksys Games 0.0100000000
## 100     Adventure                            Aksys Games 0.0300000000
## 101  Role-Playing                            Aksys Games 0.0225000000
## 102        Action                   Alawar Entertainment 0.0000000000
## 103      Strategy                   Alawar Entertainment 0.0000000000
## 104        Action                              Alchemist 0.0000000000
## 105     Adventure                              Alchemist 0.0184375000
## 106          Misc                              Alchemist 0.0000000000
## 107  Role-Playing                              Alchemist 0.0000000000
## 108       Shooter                              Alchemist 0.0000000000
## 109        Action                   Alternative Software 0.0000000000
## 110        Sports                   Alternative Software 0.0000000000
## 111       Shooter                                 Altron 0.0500000000
## 112          Misc                                 Alvion 0.0000000000
## 113        Action                     American Softworks 0.1300000000
## 114      Fighting                          Angel Studios 0.0000000000
## 115  Role-Playing                          Angel Studios 0.0000000000
## 116      Strategy                          Angel Studios 0.0000000000
## 117        Action                        Answer Software 0.4600000000
## 118      Fighting                         AQ Interactive 0.0300000000
## 119          Misc                         AQ Interactive 0.0933333333
## 120     Adventure                              Aqua Plus 0.0000000000
## 121      Fighting                              Aqua Plus 0.0500000000
## 122          Misc                              Aqua Plus 0.0000000000
## 123  Role-Playing                              Aqua Plus 0.0000000000
## 124      Strategy                              Aqua Plus 0.0000000000
## 125        Sports                                  Aques 0.0000000000
## 126        Action                       Arc System Works 0.0000000000
## 127     Adventure                       Arc System Works 0.0140000000
## 128      Fighting                       Arc System Works 0.0585714286
## 129          Misc                       Arc System Works 0.0500000000
## 130  Role-Playing                       Arc System Works 0.0000000000
## 131        Sports                       Arc System Works 0.0450000000
## 132      Fighting                    Arena Entertainment 1.9500000000
## 133        Sports                    Arena Entertainment 1.7500000000
## 134     Adventure                                   Aria 0.0000000000
## 135          Misc                                  Arika 0.0100000000
## 136  Role-Playing                                  Arika 0.0300000000
## 137       Shooter                                  Arika 0.0000000000
## 138  Role-Playing                                ArtDink 0.0233333333
## 139    Simulation                                ArtDink 0.0000000000
## 140      Strategy                                ArtDink 0.0000000000
## 141          Misc                             Aruze Corp 0.0000000000
## 142        Action                              ASC Games 0.0300000000
## 143        Racing                              ASC Games 0.7300000000
## 144        Sports                              ASC Games 0.3600000000
## 145      Strategy                  Ascaron Entertainment 0.0000000000
## 146  Role-Playing             Ascaron Entertainment GmbH 0.0000000000
## 147      Strategy             Ascaron Entertainment GmbH 0.0000000000
## 148     Adventure                    ASCII Entertainment 0.0350000000
## 149          Misc                    ASCII Entertainment 0.0950000000
## 150        Racing                    ASCII Entertainment 0.0400000000
## 151  Role-Playing                    ASCII Entertainment 0.0366666667
## 152    Simulation                    ASCII Entertainment 0.0000000000
## 153        Sports                    ASCII Entertainment 0.0262500000
## 154      Strategy                    ASCII Entertainment 0.0000000000
## 155     Adventure                      ASCII Media Works 0.0000000000
## 156  Role-Playing                      ASCII Media Works 0.0000000000
## 157        Action                                 Asgard 0.0000000000
## 158          Misc                                 Asgard 0.0000000000
## 159          Misc                                    ASK 0.0000000000
## 160     Adventure                Asmik Ace Entertainment 0.0000000000
## 161      Fighting                Asmik Ace Entertainment 0.0000000000
## 162    Simulation                Asmik Ace Entertainment 0.0000000000
## 163        Sports                             Asmik Corp 0.0000000000
## 164     Adventure                                  Aspyr 0.0300000000
## 165          Misc                                  Aspyr 0.0266666667
## 166  Role-Playing                                  Aspyr 0.0900000000
## 167    Simulation                                  Aspyr 0.1900000000
## 168        Sports                                  Aspyr 0.0800000000
## 169        Action                               Astragon 0.0100000000
## 170     Adventure                               Astragon 0.0550000000
## 171        Puzzle                               Astragon 0.0600000000
## 172    Simulation                               Astragon 0.0000000000
## 173     Adventure                   Asylum Entertainment 0.0000000000
## 174      Platform                   Asylum Entertainment 0.0000000000
## 175    Simulation                   Asylum Entertainment 0.0450000000
## 176        Action                                  Atari 0.3455555556
## 177     Adventure                                  Atari 0.1464705882
## 178      Fighting                                  Atari 0.3948648649
## 179          Misc                                  Atari 0.2300000000
## 180      Platform                                  Atari 0.3066666667
## 181        Puzzle                                  Atari 0.8127272727
## 182        Racing                                  Atari 0.1972222222
## 183  Role-Playing                                  Atari 0.1382142857
## 184       Shooter                                  Atari 0.4840000000
## 185    Simulation                                  Atari 0.2166666667
## 186        Sports                                  Atari 0.1598214286
## 187      Strategy                                  Atari 0.1617647059
## 188     Adventure                                 Athena 0.0000000000
## 189        Sports                                 Athena 0.0200000000
## 190        Action                                  Atlus 0.0433333333
## 191     Adventure                                  Atlus 0.0000000000
## 192      Fighting                                  Atlus 0.0880000000
## 193          Misc                                  Atlus 0.0000000000
## 194      Platform                                  Atlus 0.0000000000
## 195        Racing                                  Atlus 0.0000000000
## 196  Role-Playing                                  Atlus 0.0693478261
## 197       Shooter                                  Atlus 0.0000000000
## 198    Simulation                                  Atlus 0.1000000000
## 199        Sports                                  Atlus 0.0725000000
## 200      Strategy                                  Atlus 0.0250000000
## 201        Action                     Avalon Interactive 0.1500000000
## 202        Racing                     Avalon Interactive 0.0300000000
## 203  Role-Playing                     Avalon Interactive 0.0350000000
## 204       Shooter                     Avalon Interactive 0.0300000000
## 205    Simulation                     Avalon Interactive 0.0600000000
## 206        Action                              Avanquest 0.0425000000
## 207     Adventure                              Avanquest 0.0000000000
## 208          Misc                              Avanquest 0.0866666667
## 209        Puzzle                              Avanquest 0.0421428571
## 210    Simulation                              Avanquest 0.0250000000
## 211        Sports                              Avanquest 0.0250000000
## 212        Action                     Avanquest Software 0.0000000000
## 213     Adventure                     Avanquest Software 0.3166666667
## 214          Misc                     Avanquest Software 0.0000000000
## 215        Sports                                  Axela 0.0000000000
## 216        Action                     BAM! Entertainment 0.0722222222
## 217     Adventure                     BAM! Entertainment 0.1900000000
## 218      Fighting                     BAM! Entertainment 0.0600000000
## 219          Misc                     BAM! Entertainment 0.1400000000
## 220      Platform                     BAM! Entertainment 0.1225000000
## 221        Racing                     BAM! Entertainment 0.0657142857
## 222       Shooter                     BAM! Entertainment 0.0675000000
## 223        Sports                     BAM! Entertainment 0.1250000000
## 224        Action                              Banpresto 0.0000000000
## 225     Adventure                              Banpresto 0.0000000000
## 226      Fighting                              Banpresto 0.0116666667
## 227          Misc                              Banpresto 0.0000000000
## 228      Platform                              Banpresto 0.0000000000
## 229        Puzzle                              Banpresto 0.0000000000
## 230        Racing                              Banpresto 0.0000000000
## 231  Role-Playing                              Banpresto 0.0176470588
## 232       Shooter                              Banpresto 0.0000000000
## 233    Simulation                              Banpresto 0.0000000000
## 234        Sports                              Banpresto 0.0133333333
## 235      Strategy                              Banpresto 0.0000000000
## 236          Misc                                Benesse 0.0016666667
## 237        Action                               Berkeley 0.0200000000
## 238        Action                     Bethesda Softworks 0.2452941176
## 239        Racing                     Bethesda Softworks 0.1400000000
## 240  Role-Playing                     Bethesda Softworks 1.5564705882
## 241       Shooter                     Bethesda Softworks 0.2733333333
## 242    Simulation                     Bethesda Softworks 0.0550000000
## 243        Sports                     Bethesda Softworks 0.4180000000
## 244      Strategy                     Bethesda Softworks 0.0850000000
## 245     Adventure                    Big Ben Interactive 0.0000000000
## 246      Platform                    Big Ben Interactive 0.0200000000
## 247        Racing                    Big Ben Interactive 0.0250000000
## 248       Shooter                    Big Ben Interactive 0.0400000000
## 249        Sports                    Big Ben Interactive 0.3350000000
## 250        Action                         Big Fish Games 0.0000000000
## 251     Adventure                         Big Fish Games 0.0000000000
## 252        Sports                     Bigben Interactive 0.0076923077
## 253        Racing                      bitComposer Games 0.0000000000
## 254    Simulation                      bitComposer Games 0.0400000000
## 255        Action                       Black Bean Games 0.0800000000
## 256          Misc                       Black Bean Games 0.0360000000
## 257        Racing                       Black Bean Games 0.0278947368
## 258        Sports                       Black Bean Games 0.0550000000
## 259      Strategy                       Black Bean Games 0.0500000000
## 260        Action                      Black Label Games 0.5900000000
## 261        Action               Blast! Entertainment Ltd 0.0850000000
## 262     Adventure               Blast! Entertainment Ltd 0.0100000000
## 263        Sports               Blast! Entertainment Ltd 0.0200000000
## 264    Simulation                              Blue Byte 0.0000000000
## 265      Strategy                              Blue Byte 0.0000000000
## 266      Platform          BMG Interactive Entertainment 0.1600000000
## 267        Racing          BMG Interactive Entertainment 0.0900000000
## 268       Shooter          BMG Interactive Entertainment 0.0400000000
## 269        Sports          BMG Interactive Entertainment 0.0200000000
## 270       Shooter                    Bohemia Interactive 0.0000000000
## 271        Action                                   Bomb 0.2100000000
## 272     Adventure                               Boost On 0.0000000000
## 273        Puzzle                                    BPS 0.0000000000
## 274        Racing                                    BPS 0.0000000000
## 275          Misc                    Brash Entertainment 0.1100000000
## 276      Platform                    Brash Entertainment 0.0800000000
## 277        Action                               Broccoli 0.0000000000
## 278     Adventure                               Broccoli 0.0000000000
## 279      Fighting                               Broccoli 0.0000000000
## 280          Misc                               Broccoli 0.0000000000
## 281  Role-Playing                               Broccoli 0.0000000000
## 282    Simulation                               Broccoli 0.0000000000
## 283      Strategy                               Broccoli 0.0000000000
## 284     Adventure                              BushiRoad 0.0000000000
## 285        Action                                 Capcom 0.2333116883
## 286     Adventure                                 Capcom 0.1645454545
## 287      Fighting                                 Capcom 0.2520689655
## 288          Misc                                 Capcom 0.1018181818
## 289      Platform                                 Capcom 0.2602173913
## 290        Puzzle                                 Capcom 0.1066666667
## 291        Racing                                 Capcom 0.0523076923
## 292  Role-Playing                                 Capcom 0.1131578947
## 293       Shooter                                 Capcom 0.2056000000
## 294    Simulation                                 Capcom 0.0700000000
## 295        Sports                                 Capcom 0.0866666667
## 296      Strategy                                 Capcom 0.0566666667
## 297        Action                                   Cave 0.0000000000
## 298     Adventure                                   Cave 0.0000000000
## 299          Misc                                   Cave 0.1000000000
## 300       Shooter                                   Cave 0.0057142857
## 301        Action                        CBS Electronics 0.2900000000
## 302  Role-Playing                                    CCP 0.0000000000
## 303     Adventure             CDV Software Entertainment 0.0900000000
## 304        Puzzle             CDV Software Entertainment 0.0200000000
## 305    Simulation             CDV Software Entertainment 0.0000000000
## 306      Strategy             CDV Software Entertainment 0.0000000000
## 307        Action                               ChunSoft 0.0000000000
## 308     Adventure                               ChunSoft 0.0336363636
## 309  Role-Playing                               ChunSoft 0.0000000000
## 310        Action                       City Interactive 0.1500000000
## 311     Adventure                       City Interactive 0.0660000000
## 312          Misc                       City Interactive 0.0600000000
## 313        Puzzle                       City Interactive 0.0350000000
## 314       Shooter                       City Interactive 0.1175000000
## 315    Simulation                       City Interactive 0.0750000000
## 316      Fighting       Cloud Imperium Games Corporation 0.0400000000
## 317     Adventure                         Coconuts Japan 0.0100000000
## 318          Misc                         Coconuts Japan 0.0000000000
## 319        Action                            Codemasters 0.0722222222
## 320     Adventure                            Codemasters 0.1000000000
## 321          Misc                            Codemasters 0.1328571429
## 322        Puzzle                            Codemasters 0.0700000000
## 323        Racing                            Codemasters 0.0695505618
## 324  Role-Playing                            Codemasters 0.0266666667
## 325       Shooter                            Codemasters 0.1155000000
## 326    Simulation                            Codemasters 0.0800000000
## 327        Sports                            Codemasters 0.0480000000
## 328      Strategy                            Codemasters 0.0925000000
## 329  Role-Playing                     Codemasters Online 0.0000000000
## 330        Action                      CokeM Interactive 0.2900000000
## 331        Action                                 Coleco 0.3966666667
## 332      Platform                                 Coleco 1.3600000000
## 333       Shooter                                 Coleco 0.3200000000
## 334        Action                                Comfort 0.0000000000
## 335     Adventure                                Comfort 0.0000000000
## 336          Misc                               Commseed 0.0000000000
## 337        Puzzle                                Compile 0.0000000000
## 338  Role-Playing                                Compile 0.0000000000
## 339        Action                          Compile Heart 0.0000000000
## 340     Adventure                          Compile Heart 0.0000000000
## 341  Role-Playing                          Compile Heart 0.0315384615
## 342      Strategy                          Compile Heart 0.0900000000
## 343        Action               Conspiracy Entertainment 0.0833333333
## 344          Misc               Conspiracy Entertainment 0.0600000000
## 345      Platform               Conspiracy Entertainment 0.0200000000
## 346        Puzzle               Conspiracy Entertainment 0.0100000000
## 347        Racing               Conspiracy Entertainment 0.0600000000
## 348       Shooter               Conspiracy Entertainment 0.0400000000
## 349    Simulation               Conspiracy Entertainment 0.0300000000
## 350        Sports               Conspiracy Entertainment 0.0400000000
## 351        Action                       Core Design Ltd. 0.0600000000
## 352    Simulation                       Core Design Ltd. 0.1000000000
## 353        Action                           CPG Products 0.5000000000
## 354        Action                    Crave Entertainment 0.0790909091
## 355     Adventure                    Crave Entertainment 0.0800000000
## 356      Fighting                    Crave Entertainment 0.0720000000
## 357          Misc                    Crave Entertainment 0.1161111111
## 358      Platform                    Crave Entertainment 0.0866666667
## 359        Puzzle                    Crave Entertainment 0.0630000000
## 360        Racing                    Crave Entertainment 0.1900000000
## 361  Role-Playing                    Crave Entertainment 0.2250000000
## 362       Shooter                    Crave Entertainment 0.0566666667
## 363    Simulation                    Crave Entertainment 0.1350000000
## 364        Sports                    Crave Entertainment 0.0880000000
## 365      Strategy                    Crave Entertainment 0.0450000000
## 366     Adventure                          Creative Core 0.0000000000
## 367          Misc                          Creative Core 0.0000000000
## 368    Simulation                          Creative Core 0.0000000000
## 369        Action                            Crimson Cow 0.0000000000
## 370     Adventure                            Crimson Cow 0.0000000000
## 371     Adventure                       Crystal Dynamics 0.0800000000
## 372      Platform                       Crystal Dynamics 0.4900000000
## 373        Racing                       Crystal Dynamics 0.0900000000
## 374  Role-Playing                       Crystal Dynamics 0.2500000000
## 375        Sports                       Crystal Dynamics 0.0400000000
## 376       Shooter                                CTO SpA 0.4900000000
## 377        Sports                                CTO SpA 0.0100000000
## 378     Adventure                          Culture Brain 0.0000000000
## 379          Misc                          Culture Brain 0.0000000000
## 380  Role-Playing                          Culture Brain 0.0000000000
## 381        Sports                          Culture Brain 0.0000000000
## 382        Puzzle                     Culture Publishers 0.0500000000
## 383        Action                             CyberFront 0.0000000000
## 384     Adventure                             CyberFront 0.0000000000
## 385          Misc                             CyberFront 0.0050000000
## 386  Role-Playing                             CyberFront 0.0000000000
## 387      Strategy                             CyberFront 0.0000000000
## 388      Platform                                Cygames 0.0000000000
## 389        Action                            D3Publisher 0.0864150943
## 390     Adventure                            D3Publisher 0.0012903226
## 391      Fighting                            D3Publisher 0.0366666667
## 392          Misc                            D3Publisher 0.0359375000
## 393      Platform                            D3Publisher 0.1116666667
## 394        Puzzle                            D3Publisher 0.1390909091
## 395        Racing                            D3Publisher 0.0666666667
## 396  Role-Playing                            D3Publisher 0.1250000000
## 397       Shooter                            D3Publisher 0.1100000000
## 398    Simulation                            D3Publisher 0.0000000000
## 399        Sports                            D3Publisher 0.0500000000
## 400      Strategy                            D3Publisher 0.0000000000
## 401     Adventure                               Daedalic 0.0000000000
## 402     Adventure                 Daedalic Entertainment 0.0000000000
## 403          Misc                                  Daito 0.0000000000
## 404        Action                               Data Age 0.3300000000
## 405          Misc                Data Design Interactive 0.0700000000
## 406        Racing                Data Design Interactive 0.0700000000
## 407        Sports                Data Design Interactive 0.1100000000
## 408     Adventure                              Data East 0.0000000000
## 409  Role-Playing                              Data East 0.0000000000
## 410     Adventure                         Datam Polystar 0.0000000000
## 411        Action                            Deep Silver 0.2396296296
## 412     Adventure                            Deep Silver 0.0630000000
## 413      Fighting                            Deep Silver 0.0550000000
## 414          Misc                            Deep Silver 0.0057142857
## 415      Platform                            Deep Silver 0.0200000000
## 416        Puzzle                            Deep Silver 0.1128571429
## 417        Racing                            Deep Silver 0.0685714286
## 418  Role-Playing                            Deep Silver 0.0535294118
## 419       Shooter                            Deep Silver 0.0280000000
## 420    Simulation                            Deep Silver 0.0605882353
## 421        Sports                            Deep Silver 0.1450000000
## 422      Strategy                            Deep Silver 0.0620000000
## 423        Action              Destination Software, Inc 0.0200000000
## 424          Misc              Destination Software, Inc 0.0600000000
## 425        Puzzle              Destination Software, Inc 0.0700000000
## 426        Racing              Destination Software, Inc 0.1166666667
## 427  Role-Playing              Destination Software, Inc 0.0200000000
## 428    Simulation              Destination Software, Inc 0.0650000000
## 429        Sports              Destination Software, Inc 0.0100000000
## 430        Action                              Destineer 0.1100000000
## 431     Adventure                              Destineer 0.0850000000
## 432          Misc                              Destineer 0.1500000000
## 433      Platform                              Destineer 0.0200000000
## 434        Puzzle                              Destineer 0.0700000000
## 435        Racing                              Destineer 0.0775000000
## 436       Shooter                              Destineer 0.0200000000
## 437    Simulation                              Destineer 0.0890909091
## 438        Sports                              Destineer 0.0987500000
## 439        Sports                            Detn8 Games 0.2100000000
## 440        Puzzle                       Devolver Digital 0.0000000000
## 441       Shooter                       Devolver Digital 0.0000000000
## 442        Puzzle                        DHM Interactive 0.0200000000
## 443       Shooter                        DHM Interactive 0.0300000000
## 444    Simulation                        DHM Interactive 0.1100000000
## 445        Sports                               DigiCube 0.0000000000
## 446        Action             Disney Interactive Studios 0.3114583333
## 447     Adventure             Disney Interactive Studios 0.3906896552
## 448          Misc             Disney Interactive Studios 0.3429545455
## 449      Platform             Disney Interactive Studios 0.3185000000
## 450        Puzzle             Disney Interactive Studios 0.3966666667
## 451        Racing             Disney Interactive Studios 0.3507142857
## 452  Role-Playing             Disney Interactive Studios 0.4000000000
## 453       Shooter             Disney Interactive Studios 0.0866666667
## 454    Simulation             Disney Interactive Studios 0.1060000000
## 455        Sports             Disney Interactive Studios 0.5600000000
## 456          Misc                                 Dorart 0.0000000000
## 457        Action                        dramatic create 0.0000000000
## 458     Adventure                        dramatic create 0.0000000000
## 459     Adventure               DreamCatcher Interactive 0.0133333333
## 460          Misc               DreamCatcher Interactive 0.0733333333
## 461      Platform               DreamCatcher Interactive 0.0200000000
## 462        Puzzle               DreamCatcher Interactive 0.0750000000
## 463       Shooter               DreamCatcher Interactive 0.0166666667
## 464    Simulation               DreamCatcher Interactive 0.0575000000
## 465        Sports               DreamCatcher Interactive 0.0400000000
## 466      Platform                 DreamWorks Interactive 0.0700000000
## 467        Action                              DSI Games 0.0400000000
## 468     Adventure                              DSI Games 0.0100000000
## 469          Misc                              DSI Games 0.1000000000
## 470    Simulation                              DSI Games 0.0200000000
## 471        Sports                              DSI Games 0.0200000000
## 472        Action                      DTP Entertainment 0.0540000000
## 473     Adventure                      DTP Entertainment 0.0120000000
## 474          Misc                      DTP Entertainment 0.0300000000
## 475        Puzzle                      DTP Entertainment 0.0050000000
## 476  Role-Playing                      DTP Entertainment 0.0500000000
## 477       Shooter                      DTP Entertainment 0.1400000000
## 478    Simulation                      DTP Entertainment 0.0566666667
## 479        Sports                      DTP Entertainment 0.0372727273
## 480      Strategy                      DTP Entertainment 0.0000000000
## 481        Racing               Dusenberry Martin Racing 0.0250000000
## 482       Shooter                               EA Games 0.0700000000
## 483        Puzzle                       Easy Interactive 0.0000000000
## 484      Fighting                                  Ecole 0.0000000000
## 485          Misc                                   Edia 0.0000000000
## 486        Action                      Eidos Interactive 0.3979761905
## 487     Adventure                      Eidos Interactive 0.0420000000
## 488      Fighting                      Eidos Interactive 0.2042857143
## 489          Misc                      Eidos Interactive 0.1280000000
## 490      Platform                      Eidos Interactive 0.2025000000
## 491        Puzzle                      Eidos Interactive 0.0912500000
## 492        Racing                      Eidos Interactive 0.1700000000
## 493  Role-Playing                      Eidos Interactive 0.0966666667
## 494       Shooter                      Eidos Interactive 0.1274285714
## 495    Simulation                      Eidos Interactive 0.0712500000
## 496        Sports                      Eidos Interactive 0.0350000000
## 497      Strategy                      Eidos Interactive 0.3072727273
## 498        Action                        Electronic Arts 0.2964480874
## 499     Adventure                        Electronic Arts 0.1976923077
## 500      Fighting                        Electronic Arts 0.5097435897
## 501          Misc                        Electronic Arts 0.3243478261
## 502      Platform                        Electronic Arts 0.1975000000
## 503        Puzzle                        Electronic Arts 0.3800000000
## 504        Racing                        Electronic Arts 0.4749685535
## 505  Role-Playing                        Electronic Arts 0.5091428571
## 506       Shooter                        Electronic Arts 0.5838129496
## 507    Simulation                        Electronic Arts 0.3795689655
## 508        Sports                        Electronic Arts 0.4817647059
## 509      Strategy                        Electronic Arts 0.2389189189
## 510        Action                 Electronic Arts Victor 0.0200000000
## 511        Sports                 Electronic Arts Victor 0.2100000000
## 512     Adventure                                    Elf 0.0000000000
## 513      Strategy                                    Elf 0.0000000000
## 514    Simulation                                  Elite 0.0400000000
## 515        Action                     Empire Interactive 0.0700000000
## 516     Adventure                     Empire Interactive 0.0233333333
## 517      Fighting                     Empire Interactive 0.0500000000
## 518          Misc                     Empire Interactive 0.0716666667
## 519        Puzzle                     Empire Interactive 0.1262500000
## 520        Racing                     Empire Interactive 0.1480952381
## 521  Role-Playing                     Empire Interactive 0.0500000000
## 522       Shooter                     Empire Interactive 0.1540000000
## 523    Simulation                     Empire Interactive 0.0900000000
## 524        Sports                     Empire Interactive 0.1000000000
## 525        Action                                 Encore 0.0200000000
## 526        Racing                                 Encore 0.0100000000
## 527  Role-Playing                                 Encore 0.0000000000
## 528        Action                       Enix Corporation 0.0300000000
## 529          Misc                       Enix Corporation 0.0200000000
## 530  Role-Playing                       Enix Corporation 0.0300000000
## 531    Simulation                       Enix Corporation 0.0000000000
## 532        Sports                       Enix Corporation 0.0000000000
## 533       Shooter                      Enjoy Gaming ltd. 0.0900000000
## 534     Adventure                             Enterbrain 0.0000000000
## 535      Fighting                             Enterbrain 0.0300000000
## 536  Role-Playing                             Enterbrain 0.0150000000
## 537    Simulation                             Enterbrain 0.0000000000
## 538        Sports                             Enterbrain 0.0000000000
## 539      Strategy              EON Digital Entertainment 0.0100000000
## 540        Action                             Epic Games 0.0100000000
## 541          Misc                                  Epoch 0.0000000000
## 542      Platform                                  Epoch 0.0000000000
## 543  Role-Playing                                  Epoch 0.0000000000
## 544        Sports                                  Epoch 0.0000000000
## 545    Simulation                                 Ertain 0.0500000000
## 546      Fighting                                    ESP 0.0000000000
## 547      Platform                                    ESP 0.0300000000
## 548  Role-Playing                                    ESP 0.0000000000
## 549       Shooter                                    ESP 0.0000000000
## 550    Simulation                                    ESP 0.0000000000
## 551        Action                        Essential Games 0.0000000000
## 552       Shooter                        Essential Games 0.0000000000
## 553      Strategy                        Essential Games 0.0100000000
## 554        Action                        Evolution Games 0.0000000000
## 555      Platform                          Evolved Games 0.0100000000
## 556        Racing                          Evolved Games 0.0375000000
## 557       Shooter                          Evolved Games 0.0450000000
## 558        Action                   Excalibur Publishing 0.0000000000
## 559    Simulation                   Excalibur Publishing 0.0000000000
## 560  Role-Playing                        Experience Inc. 0.0000000000
## 561  Role-Playing            Extreme Entertainment Group 0.0200000000
## 562      Fighting                     Falcom Corporation 0.0000000000
## 563  Role-Playing                     Falcom Corporation 0.0186666667
## 564          Misc                                 Fields 0.0000000000
## 565        Action                       Flashpoint Games 0.0300000000
## 566      Platform                       Flashpoint Games 0.0400000000
## 567  Role-Playing                            Flight-Plan 0.0000000000
## 568      Strategy                            Flight-Plan 0.0000000000
## 569        Action                 Focus Home Interactive 0.0000000000
## 570     Adventure                 Focus Home Interactive 0.0270588235
## 571          Misc                 Focus Home Interactive 0.0000000000
## 572      Platform                 Focus Home Interactive 0.0000000000
## 573        Puzzle                 Focus Home Interactive 0.0016666667
## 574        Racing                 Focus Home Interactive 0.0533333333
## 575  Role-Playing                 Focus Home Interactive 0.0525000000
## 576    Simulation                 Focus Home Interactive 0.0516666667
## 577        Sports                 Focus Home Interactive 0.0200000000
## 578      Strategy                 Focus Home Interactive 0.0033333333
## 579          Misc                       Focus Multimedia 0.0000000000
## 580        Puzzle                       Focus Multimedia 0.0000000000
## 581    Simulation                                 fonfun 0.0000000000
## 582     Adventure                    Foreign Media Games 0.0800000000
## 583          Misc                    Foreign Media Games 0.0350000000
## 584        Puzzle                    Foreign Media Games 0.0175000000
## 585    Simulation                    Foreign Media Games 0.0250000000
## 586     Adventure                              Fortyfive 0.0000000000
## 587        Action                        Fox Interactive 0.2700000000
## 588      Platform                        Fox Interactive 0.9900000000
## 589       Shooter                        Fox Interactive 0.3966666667
## 590        Sports                        Fox Interactive 0.1600000000
## 591        Action                          From Software 0.0133333333
## 592     Adventure                          From Software 0.0300000000
## 593  Role-Playing                          From Software 0.0275000000
## 594       Shooter                          From Software 0.0400000000
## 595    Simulation                          From Software 0.0216666667
## 596     Adventure                                   Fuji 0.0000000000
## 597        Action                           Funbox Media 0.0133333333
## 598     Adventure                           Funbox Media 0.0800000000
## 599          Misc                           Funbox Media 0.5900000000
## 600      Strategy                           Funbox Media 0.0000000000
## 601  Role-Playing                                 Funcom 0.0350000000
## 602        Racing                                FunSoft 0.0700000000
## 603        Puzzle                                 Funsta 0.0366666667
## 604       Shooter                                 Funsta 0.0200000000
## 605        Action                                  FuRyu 0.0000000000
## 606     Adventure                                  FuRyu 0.0000000000
## 607          Misc                                  FuRyu 0.0000000000
## 608  Role-Playing                                  FuRyu 0.0137500000
## 609    Simulation                                  FuRyu 0.0000000000
## 610        Action                      FuRyu Corporation 0.0200000000
## 611      Fighting                                  G.Rev 0.0000000000
## 612       Shooter                                  G.Rev 0.0000000000
## 613       Shooter                                   Gaga 0.0000000000
## 614     Adventure                 Gainax Network Systems 0.0000000000
## 615          Misc                 Gainax Network Systems 0.0000000000
## 616          Misc                                 Gakken 0.0000000000
## 617  Role-Playing                              Game Arts 0.0000000000
## 618        Action                           Game Factory 0.0362500000
## 619     Adventure                           Game Factory 0.1850000000
## 620      Fighting                           Game Factory 0.0450000000
## 621          Misc                           Game Factory 0.0720000000
## 622      Platform                           Game Factory 0.0200000000
## 623        Puzzle                           Game Factory 0.1100000000
## 624        Racing                           Game Factory 0.0300000000
## 625  Role-Playing                           Game Factory 0.0600000000
## 626    Simulation                           Game Factory 0.5950000000
## 627          Misc                              Game Life 0.0400000000
## 628    Simulation                              Game Life 0.0900000000
## 629        Action                             Gamebridge 0.1500000000
## 630        Action                               Gamecock 0.0600000000
## 631          Misc                               Gamecock 0.0500000000
## 632      Strategy                               Gamecock 0.0000000000
## 633          Misc                               Gameloft 0.1000000000
## 634        Action                 GameMill Entertainment 0.0833333333
## 635     Adventure                 GameMill Entertainment 0.0900000000
## 636          Misc                 GameMill Entertainment 0.2566666667
## 637        Sports                 GameMill Entertainment 0.1700000000
## 638          Misc                                GameTek 0.0800000000
## 639          Misc                Gathering of Developers 0.0600000000
## 640        Racing                Gathering of Developers 0.1700000000
## 641       Shooter                Gathering of Developers 0.0500000000
## 642      Strategy                Gathering of Developers 0.0000000000
## 643      Strategy                  General Entertainment 0.0000000000
## 644        Action                                  Genki 0.0250000000
## 645        Racing                                  Genki 0.0880000000
## 646        Sports                                  Genki 0.0000000000
## 647        Puzzle                            Genterprise 0.0000000000
## 648  Role-Playing                             Ghostlight 0.1077777778
## 649    Simulation                             Ghostlight 0.0000000000
## 650        Sports                             Ghostlight 0.0266666667
## 651      Strategy                             Ghostlight 0.0850000000
## 652     Adventure                                   Giga 0.0000000000
## 653        Action                                 Giza10 0.0000000000
## 654      Strategy                                  Glams 0.0000000000
## 655          Misc                 Global A Entertainment 0.0000000000
## 656  Role-Playing                 Global A Entertainment 0.0433333333
## 657        Action                            Global Star 0.0800000000
## 658     Adventure                            Global Star 0.1366666667
## 659      Fighting                            Global Star 0.0900000000
## 660      Platform                            Global Star 0.0360000000
## 661        Racing                            Global Star 0.0480000000
## 662       Shooter                            Global Star 0.0487500000
## 663    Simulation                            Global Star 0.0400000000
## 664        Sports                            Global Star 0.3320000000
## 665      Strategy                            Global Star 0.0500000000
## 666     Adventure                            GN Software 0.0000000000
## 667  Role-Playing                                    GOA 0.0000000000
## 668      Fighting                           Gotham Games 0.2650000000
## 669      Platform                           Gotham Games 0.1766666667
## 670       Shooter                           Gotham Games 0.9800000000
## 671        Sports                           Gotham Games 0.2300000000
## 672          Misc                               Graffiti 0.0950000000
## 673  Role-Playing                               Graffiti 0.0450000000
## 674       Shooter                               Graffiti 0.0300000000
## 675    Simulation                               Graffiti 0.0500000000
## 676      Fighting                       Grand Prix Games 0.0000000000
## 677    Simulation                 Graphsim Entertainment 0.0000000000
## 678        Action                Gremlin Interactive Ltd 0.0900000000
## 679      Platform                Gremlin Interactive Ltd 0.0300000000
## 680        Racing                Gremlin Interactive Ltd 0.0550000000
## 681       Shooter                Gremlin Interactive Ltd 0.1600000000
## 682        Sports                Gremlin Interactive Ltd 0.0675000000
## 683        Sports                  Griffin International 0.0800000000
## 684       Shooter                           Groove Games 0.0350000000
## 685     Adventure                                    GSP 0.0883333333
## 686          Misc                                    GSP 0.0660000000
## 687        Puzzle                                    GSP 0.0233333333
## 688    Simulation                                    GSP 0.1150000000
## 689        Action                         GT Interactive 0.4850000000
## 690      Fighting                         GT Interactive 0.6571428571
## 691          Misc                         GT Interactive 0.5200000000
## 692      Platform                         GT Interactive 0.4900000000
## 693        Racing                         GT Interactive 0.2366666667
## 694       Shooter                         GT Interactive 0.1700000000
## 695    Simulation                         GT Interactive 0.0400000000
## 696        Sports                         GT Interactive 0.1260000000
## 697        Action                                 GungHo 0.0000000000
## 698     Adventure                                 GungHo 0.0000000000
## 699          Misc                                 GungHo 0.0000000000
## 700  Role-Playing                                 GungHo 0.0933333333
## 701     Adventure                                   Gust 0.0000000000
## 702  Role-Playing                                   Gust 0.0136363636
## 703      Strategy                                   Gust 0.0000000000
## 704          Misc                              Hackberry 0.0000000000
## 705        Puzzle                         HAL Laboratory 0.0600000000
## 706        Action                    Hamster Corporation 0.1600000000
## 707    Simulation                    Hamster Corporation 0.0000000000
## 708     Adventure                               Happinet 0.0000000000
## 709          Misc                               Happinet 0.0000000000
## 710    Simulation                               Happinet 0.0000000000
## 711          Misc                 Harmonix Music Systems 0.3000000000
## 712        Action                     Hasbro Interactive 2.2950000000
## 713          Misc                     Hasbro Interactive 0.5775000000
## 714      Platform                     Hasbro Interactive 0.7200000000
## 715        Puzzle                     Hasbro Interactive 0.3100000000
## 716        Racing                     Hasbro Interactive 0.1550000000
## 717       Shooter                     Hasbro Interactive 0.1300000000
## 718  Role-Playing                      Havas Interactive 0.0100000000
## 719     Adventure                           Headup Games 0.0000000000
## 720    Simulation                           Hearty Robin 0.0000000000
## 721    Simulation                                   Hect 0.0000000000
## 722        Action                            Hello Games 0.5800000000
## 723     Adventure                        Her Interactive 0.0300000000
## 724        Action                        Hip Interactive 0.0575000000
## 725       Shooter                        Hip Interactive 0.0300000000
## 726     Adventure                        HMH Interactive 0.0000000000
## 727          Misc                        HMH Interactive 0.0000000000
## 728        Sports           Home Entertainment Suppliers 0.0180000000
## 729          Misc                   Hudson Entertainment 0.0366666667
## 730      Platform                   Hudson Entertainment 0.0600000000
## 731        Puzzle                   Hudson Entertainment 0.0000000000
## 732  Role-Playing                   Hudson Entertainment 0.0100000000
## 733       Shooter                   Hudson Entertainment 0.0500000000
## 734    Simulation                   Hudson Entertainment 0.0000000000
## 735        Sports                   Hudson Entertainment 0.0900000000
## 736        Action                            Hudson Soft 0.0000000000
## 737     Adventure                            Hudson Soft 0.0366666667
## 738      Fighting                            Hudson Soft 0.0175000000
## 739          Misc                            Hudson Soft 0.0004761905
## 740      Platform                            Hudson Soft 0.0000000000
## 741        Puzzle                            Hudson Soft 0.0791666667
## 742  Role-Playing                            Hudson Soft 0.0066666667
## 743       Shooter                            Hudson Soft 0.0800000000
## 744    Simulation                            Hudson Soft 0.0200000000
## 745        Sports                            Hudson Soft 0.0775000000
## 746      Strategy                            Hudson Soft 0.0200000000
## 747     Adventure                    Human Entertainment 0.0100000000
## 748      Fighting                    Human Entertainment 0.0000000000
## 749        Racing                    Human Entertainment 0.0000000000
## 750    Simulation                    Human Entertainment 0.0000000000
## 751        Sports                    Human Entertainment 0.0000000000
## 752      Strategy                    Human Entertainment 0.0400000000
## 753        Action                                  HuneX 0.0000000000
## 754     Adventure                                  HuneX 0.0000000000
## 755  Role-Playing                    Iceberg Interactive 0.0200000000
## 756      Strategy                    Iceberg Interactive 0.0000000000
## 757       Shooter                            id Software 0.0200000000
## 758        Action                           Idea Factory 0.0000000000
## 759     Adventure                           Idea Factory 0.0023456790
## 760          Misc                           Idea Factory 0.0000000000
## 761  Role-Playing                           Idea Factory 0.0261538462
## 762      Strategy                           Idea Factory 0.0000000000
## 763        Action             Idea Factory International 0.0525000000
## 764  Role-Playing             Idea Factory International 0.0100000000
## 765        Action                           IE Institute 0.0000000000
## 766          Misc                           IE Institute 0.0000000000
## 767        Action                 Ignition Entertainment 0.0920000000
## 768     Adventure                 Ignition Entertainment 0.0300000000
## 769      Fighting                 Ignition Entertainment 0.0604761905
## 770          Misc                 Ignition Entertainment 0.0775000000
## 771      Platform                 Ignition Entertainment 0.0300000000
## 772        Puzzle                 Ignition Entertainment 0.0975000000
## 773        Racing                 Ignition Entertainment 0.0866666667
## 774  Role-Playing                 Ignition Entertainment 0.0566666667
## 775       Shooter                 Ignition Entertainment 0.0683333333
## 776        Sports                 Ignition Entertainment 0.0266666667
## 777      Strategy                 Ignition Entertainment 0.0900000000
## 778        Action                     Illusion Softworks 0.3400000000
## 779     Adventure                                 Imadio 0.0000000000
## 780  Role-Playing                            Image Epoch 0.0000000000
## 781     Adventure                        imageepoch Inc. 0.0000000000
## 782  Role-Playing                        imageepoch Inc. 0.0000000000
## 783    Simulation                             Imageworks 0.0000000000
## 784        Action                                 Imagic 0.3500000000
## 785       Shooter                                 Imagic 1.3866666667
## 786     Adventure                              Imagineer 0.0000000000
## 787      Fighting                              Imagineer 0.0400000000
## 788        Racing                              Imagineer 0.0300000000
## 789  Role-Playing                              Imagineer 0.0000000000
## 790    Simulation                              Imagineer 0.0000000000
## 791        Sports                              Imagineer 0.0033333333
## 792          Misc                                   Imax 0.0000000000
## 793     Adventure                            Indie Games 0.0150000000
## 794    Simulation                            Indie Games 0.0600000000
## 795        Action                             Infogrames 0.0900000000
## 796     Adventure                             Infogrames 0.0975000000
## 797      Fighting                             Infogrames 0.1900000000
## 798          Misc                             Infogrames 0.3642857143
## 799      Platform                             Infogrames 0.0800000000
## 800        Racing                             Infogrames 0.1400000000
## 801  Role-Playing                             Infogrames 0.8750000000
## 802       Shooter                             Infogrames 0.1866666667
## 803    Simulation                             Infogrames 0.0300000000
## 804        Sports                             Infogrames 0.1257142857
## 805      Strategy                             Infogrames 0.0166666667
## 806        Action                        Insomniac Games 0.0333333333
## 807     Adventure                           Interchannel 0.0000000000
## 808      Strategy                     Interchannel-Holon 0.0000000000
## 809      Platform                              Intergrow 0.0000000000
## 810        Action                              Interplay 0.1400000000
## 811     Adventure                              Interplay 0.4600000000
## 812      Fighting                              Interplay 0.1700000000
## 813          Misc                              Interplay 0.2850000000
## 814      Platform                              Interplay 0.1666666667
## 815        Racing                              Interplay 0.0450000000
## 816  Role-Playing                              Interplay 0.1166666667
## 817       Shooter                              Interplay 0.0720000000
## 818    Simulation                              Interplay 0.0200000000
## 819        Sports                              Interplay 0.1300000000
## 820       Shooter                  Interplay Productions 0.0500000000
## 821        Sports             Interworks Unlimited, Inc. 0.0100000000
## 822        Action                           Inti Creates 0.0000000000
## 823        Action                  Introversion Software 0.0100000000
## 824  Role-Playing                   inXile Entertainment 0.0200000000
## 825        Action              Irem Software Engineering 0.0200000000
## 826      Fighting              Irem Software Engineering 0.0500000000
## 827          Misc              Irem Software Engineering 0.0000000000
## 828  Role-Playing              Irem Software Engineering 0.0000000000
## 829       Shooter              Irem Software Engineering 0.0100000000
## 830      Strategy              Irem Software Engineering 0.0000000000
## 831        Action                       ITT Family Games 0.3200000000
## 832        Puzzle                              Ivolgamus 0.0300000000
## 833        Puzzle                                   iWin 0.0000000000
## 834      Platform                      Jack of All Games 0.1450000000
## 835       Shooter                      Jack of All Games 0.0200000000
## 836        Action                                 Jaleco 0.0300000000
## 837      Fighting                                 Jaleco 0.0100000000
## 838          Misc                                 Jaleco 0.0000000000
## 839        Puzzle                                 Jaleco 0.0433333333
## 840        Racing                                 Jaleco 0.0166666667
## 841       Shooter                                 Jaleco 0.0100000000
## 842        Sports                                 Jaleco 0.0660000000
## 843      Strategy                                 Jaleco 0.0500000000
## 844          Misc                     Jester Interactive 0.0200000000
## 845        Racing                     Jester Interactive 0.3400000000
## 846    Simulation                                Jorudan 0.0000000000
## 847        Action                     JoWood Productions 0.0300000000
## 848     Adventure                     JoWood Productions 0.0700000000
## 849          Misc                     JoWood Productions 0.0500000000
## 850      Platform                     JoWood Productions 0.0100000000
## 851        Puzzle                     JoWood Productions 0.0500000000
## 852  Role-Playing                     JoWood Productions 0.0240000000
## 853    Simulation                     JoWood Productions 0.0700000000
## 854        Sports                     JoWood Productions 0.1500000000
## 855      Strategy                     JoWood Productions 0.0100000000
## 856    Simulation                            Just Flight 0.0000000000
## 857        Action                                    JVC 0.0300000000
## 858      Fighting                                    JVC 0.0000000000
## 859          Misc                                    JVC 0.0400000000
## 860        Puzzle                                    JVC 2.1000000000
## 861        Racing                                    JVC 0.0250000000
## 862       Shooter                                    JVC 0.0150000000
## 863        Action                         Kadokawa Games 0.0000000000
## 864     Adventure                         Kadokawa Games 0.0000000000
## 865          Misc                         Kadokawa Games 0.0000000000
## 866  Role-Playing                         Kadokawa Games 0.0000000000
## 867    Simulation                         Kadokawa Games 0.0000000000
## 868        Action                        Kadokawa Shoten 0.0000000000
## 869     Adventure                        Kadokawa Shoten 0.0000000000
## 870          Misc                        Kadokawa Shoten 0.0000000000
## 871  Role-Playing                        Kadokawa Shoten 0.0418181818
## 872    Simulation                        Kadokawa Shoten 0.0000000000
## 873        Sports                        Kadokawa Shoten 0.0000000000
## 874      Strategy                        Kadokawa Shoten 0.0000000000
## 875        Action                            Kaga Create 0.0000000000
## 876     Adventure                            Kaga Create 0.0000000000
## 877          Misc                            Kaga Create 0.0000000000
## 878        Action                          Kalypso Media 0.0400000000
## 879     Adventure                          Kalypso Media 0.0000000000
## 880          Misc                          Kalypso Media 0.0000000000
## 881    Simulation                          Kalypso Media 0.0471428571
## 882      Strategy                          Kalypso Media 0.0343750000
## 883          Misc                                  Kamui 0.0000000000
## 884    Simulation                            Kando Games 0.0200000000
## 885          Misc                    Karin Entertainment 0.0000000000
## 886        Action                                  Kemco 0.0683333333
## 887     Adventure                                  Kemco 0.0600000000
## 888          Misc                                  Kemco 0.0800000000
## 889      Platform                                  Kemco 0.0450000000
## 890        Puzzle                                  Kemco 0.0133333333
## 891        Racing                                  Kemco 0.1500000000
## 892  Role-Playing                                  Kemco 0.0000000000
## 893       Shooter                                  Kemco 0.0200000000
## 894        Sports                                  Kemco 0.1600000000
## 895     Adventure                                    KID 0.0000000000
## 896     Adventure                           Kids Station 0.0000000000
## 897  Role-Playing                           King Records 0.0000000000
## 898        Action                    Knowledge Adventure 0.1700000000
## 899     Adventure                    Knowledge Adventure 0.3900000000
## 900          Misc                    Knowledge Adventure 0.4100000000
## 901        Sports                    Knowledge Adventure 0.2600000000
## 902        Action                             Koch Media 0.4350000000
## 903     Adventure                             Koch Media 0.0250000000
## 904        Puzzle                             Koch Media 0.0000000000
## 905  Role-Playing                             Koch Media 0.0000000000
## 906    Simulation                             Koch Media 0.0866666667
## 907        Sports                             Koch Media 0.0000000000
## 908      Strategy                             Koch Media 0.0000000000
## 909      Fighting               Kokopeli Digital Studios 0.0200000000
## 910        Action           Konami Digital Entertainment 0.2058783784
## 911     Adventure           Konami Digital Entertainment 0.0943396226
## 912      Fighting           Konami Digital Entertainment 0.0375000000
## 913          Misc           Konami Digital Entertainment 0.1372727273
## 914      Platform           Konami Digital Entertainment 0.1765000000
## 915        Puzzle           Konami Digital Entertainment 0.0520000000
## 916        Racing           Konami Digital Entertainment 0.0707692308
## 917  Role-Playing           Konami Digital Entertainment 0.1478378378
## 918       Shooter           Konami Digital Entertainment 0.0820000000
## 919    Simulation           Konami Digital Entertainment 0.1647674419
## 920        Sports           Konami Digital Entertainment 0.0339285714
## 921      Strategy           Konami Digital Entertainment 0.1589285714
## 922      Strategy                              Kool Kizz 0.0300000000
## 923          Misc                                    KSS 0.0000000000
## 924        Action                                 Laguna 0.0400000000
## 925      Platform                                 Laguna 0.0600000000
## 926  Role-Playing                                 Laguna 0.0000000000
## 927     Adventure                     Legacy Interactive 0.0400000000
## 928        Action                             LEGO Media 0.0000000000
## 929     Adventure                             LEGO Media 0.1000000000
## 930      Platform                             LEGO Media 0.0400000000
## 931        Racing                             LEGO Media 0.2700000000
## 932      Strategy                             LEGO Media 0.0600000000
## 933        Action                                Level 5 0.0000000000
## 934     Adventure                                Level 5 0.0000000000
## 935          Misc                                Level 5 0.0000000000
## 936        Puzzle                                Level 5 0.0666666667
## 937  Role-Playing                                Level 5 0.0000000000
## 938        Sports                                Level 5 0.0000000000
## 939      Strategy                                Level 5 0.0000000000
## 940       Shooter                  Lexicon Entertainment 0.0200000000
## 941    Simulation                  Lexicon Entertainment 0.0200000000
## 942        Action                            Licensed 4U 0.0000000000
## 943        Puzzle                            Licensed 4U 0.0000000000
## 944    Simulation                 Lighthouse Interactive 0.0000000000
## 945        Puzzle                           Liquid Games 0.0100000000
## 946        Racing                           Liquid Games 0.1800000000
## 947        Action                           Little Orbit 0.0094117647
## 948     Adventure                           Little Orbit 0.0328571429
## 949    Simulation                           Little Orbit 0.0700000000
## 950  Role-Playing                                  Locus 0.0000000000
## 951        Action                              LSP Games 0.0200000000
## 952      Platform                              LSP Games 0.0250000000
## 953       Shooter                              LSP Games 0.0100000000
## 954        Action                              LucasArts 0.7418750000
## 955     Adventure                              LucasArts 0.2566666667
## 956        Racing                              LucasArts 0.1150000000
## 957  Role-Playing                              LucasArts 0.0100000000
## 958       Shooter                              LucasArts 0.5168421053
## 959    Simulation                              LucasArts 0.4316666667
## 960      Strategy                              LucasArts 0.0930000000
## 961          Misc                               Mad Catz 0.1500000000
## 962    Simulation                               Mad Catz 0.0700000000
## 963        Sports                               Mad Catz 0.0200000000
## 964        Sports                        Magical Company 0.1500000000
## 965          Misc                                  Magix 0.0850000000
## 966        Action                  Majesco Entertainment 0.1340000000
## 967     Adventure                  Majesco Entertainment 0.1750000000
## 968      Fighting                  Majesco Entertainment 0.0800000000
## 969          Misc                  Majesco Entertainment 0.1004761905
## 970      Platform                  Majesco Entertainment 0.0800000000
## 971        Puzzle                  Majesco Entertainment 0.1144444444
## 972        Racing                  Majesco Entertainment 0.1380000000
## 973  Role-Playing                  Majesco Entertainment 0.0450000000
## 974       Shooter                  Majesco Entertainment 0.0744444444
## 975    Simulation                  Majesco Entertainment 0.1353846154
## 976        Sports                  Majesco Entertainment 0.4500000000
## 977      Strategy                  Majesco Entertainment 0.1050000000
## 978     Adventure                            Mamba Games 0.0000000000
## 979      Strategy                            Mamba Games 0.0000000000
## 980        Action                   Marvel Entertainment 0.0000000000
## 981        Action                Marvelous Entertainment 0.0833333333
## 982      Fighting                Marvelous Entertainment 0.1300000000
## 983          Misc                Marvelous Entertainment 0.0000000000
## 984  Role-Playing                Marvelous Entertainment 0.0650000000
## 985    Simulation                Marvelous Entertainment 0.0400000000
## 986     Adventure                        Marvelous Games 0.0000000000
## 987        Action                  Marvelous Interactive 0.0130000000
## 988     Adventure                  Marvelous Interactive 0.0078571429
## 989      Fighting                  Marvelous Interactive 0.0077777778
## 990          Misc                  Marvelous Interactive 0.0000000000
## 991  Role-Playing                  Marvelous Interactive 0.0615384615
## 992    Simulation                  Marvelous Interactive 0.0633333333
## 993        Sports                  Marvelous Interactive 0.0600000000
## 994    Simulation                      Masque Publishing 0.0100000000
## 995     Adventure                           Mastertronic 0.0000000000
## 996          Misc                           Mastertronic 0.0000000000
## 997        Puzzle                           Mastertronic 0.0250000000
## 998        Racing                           Mastertronic 0.0000000000
## 999       Shooter                           Mastertronic 0.0025000000
## 1000       Sports                           Mastertronic 0.0100000000
## 1001     Strategy                           Mastertronic 0.9500000000
## 1002    Adventure                                Mastiff 0.0400000000
## 1003         Misc                                Mastiff 0.0200000000
## 1004      Shooter                                Mastiff 0.1000000000
## 1005   Simulation                                Mastiff 0.0700000000
## 1006       Sports                                Mastiff 0.1862500000
## 1007       Action                     Mattel Interactive 0.3500000000
## 1008    Adventure                     Mattel Interactive 0.0900000000
## 1009       Puzzle                     Mattel Interactive 0.5500000000
## 1010       Racing                     Mattel Interactive 0.3700000000
## 1011      Shooter                     Mattel Interactive 0.2200000000
## 1012       Sports                     Mattel Interactive 0.1100000000
## 1013 Role-Playing                               Max Five 0.0300000000
## 1014       Action                   Maximum Family Games 0.0300000000
## 1015   Simulation                                  Maxis 0.6266666667
## 1016    Adventure                      MC2 Entertainment 0.0150000000
## 1017      Shooter                      MC2 Entertainment 0.0000000000
## 1018         Misc                    Media Entertainment 0.0000000000
## 1019    Adventure                          Media Factory 0.0000000000
## 1020       Sports                          Media Factory 0.0000000000
## 1021       Racing                            Media Rings 0.0000000000
## 1022 Role-Playing                            Media Rings 0.1400000000
## 1023       Sports                            Media Rings 0.0000000000
## 1024    Adventure                            Media Works 0.0000000000
## 1025         Misc                            Media Works 0.0000000000
## 1026     Strategy                            Media Works 0.0000000000
## 1027       Puzzle                             MediaQuest 0.0300000000
## 1028       Action                           Men-A-Vision 0.7200000000
## 1029         Misc                     Mentor Interactive 0.1980000000
## 1030 Role-Playing                          Mercury Games 0.0250000000
## 1031   Simulation                          Mercury Games 0.0600000000
## 1032    Adventure                            Merscom LLC 0.0000000000
## 1033     Fighting                               Metro 3D 0.0200000000
## 1034     Platform                               Metro 3D 0.0600000000
## 1035       Racing                               Metro 3D 0.0350000000
## 1036 Role-Playing                               Metro 3D 0.0450000000
## 1037      Shooter                               Metro 3D 0.0900000000
## 1038   Simulation                               Metro 3D 0.1233333333
## 1039 Role-Playing                            Michaelsoft 0.0000000000
## 1040       Puzzle                            Micro Cabin 0.0000000000
## 1041 Role-Playing                            Micro Cabin 0.0000000000
## 1042   Simulation                            Micro Cabin 0.0000000000
## 1043       Action                               Microids 0.0333333333
## 1044    Adventure                               Microids 0.0166666667
## 1045       Sports                               Microids 0.0300000000
## 1046         Misc                             Microprose 0.3000000000
## 1047   Simulation                             Microprose 0.1500000000
## 1048     Strategy                             Microprose 0.0625000000
## 1049       Action                 Microsoft Game Studios 0.3852380952
## 1050    Adventure                 Microsoft Game Studios 0.3633333333
## 1051     Fighting                 Microsoft Game Studios 0.3360000000
## 1052         Misc                 Microsoft Game Studios 0.9002941176
## 1053     Platform                 Microsoft Game Studios 0.1566666667
## 1054       Puzzle                 Microsoft Game Studios 0.0700000000
## 1055       Racing                 Microsoft Game Studios 0.7650000000
## 1056 Role-Playing                 Microsoft Game Studios 0.7993750000
## 1057      Shooter                 Microsoft Game Studios 2.3089285714
## 1058   Simulation                 Microsoft Game Studios 0.3944444444
## 1059       Sports                 Microsoft Game Studios 0.5700000000
## 1060     Strategy                 Microsoft Game Studios 0.1005555556
## 1061       Action        Midas Interactive Entertainment 0.0000000000
## 1062     Fighting        Midas Interactive Entertainment 0.0400000000
## 1063         Misc        Midas Interactive Entertainment 0.0000000000
## 1064     Platform        Midas Interactive Entertainment 0.0200000000
## 1065       Puzzle        Midas Interactive Entertainment 0.0233333333
## 1066       Racing        Midas Interactive Entertainment 0.1033333333
## 1067 Role-Playing        Midas Interactive Entertainment 0.0500000000
## 1068      Shooter        Midas Interactive Entertainment 0.0775000000
## 1069   Simulation        Midas Interactive Entertainment 0.0000000000
## 1070       Sports        Midas Interactive Entertainment 0.1275000000
## 1071     Strategy        Midas Interactive Entertainment 0.0100000000
## 1072       Action                           Midway Games 0.1822222222
## 1073    Adventure                           Midway Games 0.0800000000
## 1074     Fighting                           Midway Games 0.4680000000
## 1075         Misc                           Midway Games 0.3010000000
## 1076     Platform                           Midway Games 0.0857142857
## 1077       Puzzle                           Midway Games 0.2275000000
## 1078       Racing                           Midway Games 0.1744000000
## 1079 Role-Playing                           Midway Games 0.1375000000
## 1080      Shooter                           Midway Games 0.1947058824
## 1081       Sports                           Midway Games 0.2098275862
## 1082      Shooter                              Milestone 0.0800000000
## 1083       Racing                        Milestone S.r.l 0.0000000000
## 1084       Racing                       Milestone S.r.l. 0.0143750000
## 1085       Action                         Minato Station 0.0000000000
## 1086    Adventure                         Minato Station 0.0000000000
## 1087       Action                              Mindscape 0.0700000000
## 1088    Adventure                              Mindscape 0.0200000000
## 1089         Misc                              Mindscape 0.2466666667
## 1090       Puzzle                              Mindscape 0.0240000000
## 1091       Racing                              Mindscape 0.0350000000
## 1092 Role-Playing                              Mindscape 0.0400000000
## 1093       Sports                              Mindscape 0.0800000000
## 1094     Strategy                              Mindscape 0.1100000000
## 1095         Misc                          Mirai Shounen 0.0000000000
## 1096       Sports                                 Misawa 0.0000000000
## 1097      Shooter                                 Mitsui 0.0600000000
## 1098       Action                              mixi, Inc 0.0000000000
## 1099       Sports                                MLB.com 0.0400000000
## 1100    Adventure                                 Mojang 0.2500000000
## 1101   Simulation               Monte Christo Multimedia 0.0000000000
## 1102      Shooter                                   Moss 0.0500000000
## 1103       Action                                    MTO 0.0000000000
## 1104       Racing                                    MTO 0.0000000000
## 1105   Simulation                                    MTO 0.0000000000
## 1106         Misc                              MTV Games 0.3653658537
## 1107         Misc                   Mud Duck Productions 0.1500000000
## 1108       Sports                   Mud Duck Productions 0.2200000000
## 1109       Puzzle                            Mumbo Jumbo 0.1250000000
## 1110       Sports                            Mumbo Jumbo 0.0200000000
## 1111     Strategy                            Mumbo Jumbo 0.0100000000
## 1112       Action                                  Mycom 0.0000000000
## 1113         Misc                           Myelin Media 0.0300000000
## 1114       Action                               Mystique 0.7600000000
## 1115       Action                                    N/A 0.0414285714
## 1116    Adventure                                    N/A 0.0325000000
## 1117     Fighting                                    N/A 0.8350000000
## 1118         Misc                                    N/A 0.2062962963
## 1119     Platform                                    N/A 0.0000000000
## 1120       Puzzle                                    N/A 0.0000000000
## 1121       Racing                                    N/A 0.0000000000
## 1122 Role-Playing                                    N/A 0.0000000000
## 1123      Shooter                                    N/A 0.0050000000
## 1124   Simulation                                    N/A 0.0000000000
## 1125       Sports                                    N/A 0.2700000000
## 1126     Strategy                                    N/A 0.0200000000
## 1127       Action                     Namco Bandai Games 0.0352822581
## 1128    Adventure                     Namco Bandai Games 0.0148275862
## 1129     Fighting                     Namco Bandai Games 0.1601492537
## 1130         Misc                     Namco Bandai Games 0.1214432990
## 1131     Platform                     Namco Bandai Games 0.0589473684
## 1132       Puzzle                     Namco Bandai Games 0.1065000000
## 1133       Racing                     Namco Bandai Games 0.0981481481
## 1134 Role-Playing                     Namco Bandai Games 0.0831788079
## 1135      Shooter                     Namco Bandai Games 0.0654054054
## 1136   Simulation                     Namco Bandai Games 0.0579310345
## 1137       Sports                     Namco Bandai Games 0.0778431373
## 1138     Strategy                     Namco Bandai Games 0.0022950820
## 1139    Adventure                                Natsume 0.0700000000
## 1140     Fighting                                Natsume 0.0800000000
## 1141         Misc                                Natsume 0.0400000000
## 1142     Platform                                Natsume 0.0100000000
## 1143       Puzzle                                Natsume 0.0950000000
## 1144 Role-Playing                                Natsume 0.1100000000
## 1145   Simulation                                Natsume 0.1366666667
## 1146       Sports                                Natsume 0.2920000000
## 1147     Strategy                                Natsume 0.0400000000
## 1148       Sports                           Navarre Corp 0.0400000000
## 1149         Misc                             Naxat Soft 0.0000000000
## 1150     Strategy                                    NCS 0.0000000000
## 1151       Action                                 NCSoft 0.9500000000
## 1152 Role-Playing                                 NCSoft 0.0200000000
## 1153      Shooter                        NDA Productions 0.0900000000
## 1154    Adventure                                    NEC 0.0000000000
## 1155 Role-Playing                                    NEC 0.0000000000
## 1156    Adventure                       NEC Interchannel 0.0000000000
## 1157 Role-Playing                       NEC Interchannel 0.0000000000
## 1158   Simulation                       NEC Interchannel 0.0000000000
## 1159     Strategy                       NEC Interchannel 0.0000000000
## 1160       Action                     Neko Entertainment 0.0000000000
## 1161    Adventure                     Neko Entertainment 0.0300000000
## 1162         Misc                     Neko Entertainment 0.0300000000
## 1163       Puzzle                     Neko Entertainment 0.0100000000
## 1164      Shooter                     Neko Entertainment 0.0500000000
## 1165       Action                                NetRevo 0.0000000000
## 1166    Adventure                                NetRevo 0.0000000000
## 1167     Fighting                                    New 0.0000000000
## 1168     Strategy                    New World Computing 0.0100000000
## 1169       Action                               NewKidCo 0.0250000000
## 1170    Adventure                               NewKidCo 0.1900000000
## 1171     Fighting                               NewKidCo 0.0500000000
## 1172         Misc                               NewKidCo 0.1475000000
## 1173     Platform                               NewKidCo 0.0100000000
## 1174 Role-Playing                                  Nexon 0.0000000000
## 1175         Misc                             Nichibutsu 0.0000000000
## 1176       Action               Nihon Falcom Corporation 0.0750000000
## 1177 Role-Playing               Nihon Falcom Corporation 0.0000000000
## 1178       Action                               Nintendo 0.8036708861
## 1179    Adventure                               Nintendo 0.5062857143
## 1180     Fighting                               Nintendo 1.5055555556
## 1181         Misc                               Nintendo 0.6198000000
## 1182     Platform                               Nintendo 1.9655357143
## 1183       Puzzle                               Nintendo 0.7532432432
## 1184       Racing                               Nintendo 1.9878378378
## 1185 Role-Playing                               Nintendo 0.9965094340
## 1186      Shooter                               Nintendo 1.9765384615
## 1187   Simulation                               Nintendo 1.0241379310
## 1188       Sports                               Nintendo 1.7958181818
## 1189     Strategy                               Nintendo 0.3643750000
## 1190         Misc                           Nippon Amuse 0.0000000000
## 1191       Action                        Nippon Columbia 0.0000000000
## 1192         Misc                        Nippon Columbia 0.0000000000
## 1193       Action                   Nippon Ichi Software 0.0369230769
## 1194    Adventure                   Nippon Ichi Software 0.0075000000
## 1195     Fighting                   Nippon Ichi Software 0.1650000000
## 1196         Misc                   Nippon Ichi Software 0.1333333333
## 1197     Platform                   Nippon Ichi Software 0.0466666667
## 1198 Role-Playing                   Nippon Ichi Software 0.0546376812
## 1199      Shooter                   Nippon Ichi Software 0.0100000000
## 1200     Strategy                   Nippon Ichi Software 0.0000000000
## 1201         Misc                         Nippon Telenet 0.0000000000
## 1202    Adventure                              Nitroplus 0.0000000000
## 1203     Fighting                              Nitroplus 0.0000000000
## 1204       Action                                Nobilis 0.0250000000
## 1205    Adventure                                Nobilis 0.0000000000
## 1206         Misc                                Nobilis 0.3200000000
## 1207       Racing                                Nobilis 0.0000000000
## 1208 Role-Playing                                Nobilis 0.0700000000
## 1209   Simulation                                Nobilis 0.2200000000
## 1210       Action                            Nordcurrent 0.0500000000
## 1211         Misc                            Nordcurrent 0.1900000000
## 1212       Puzzle                            Nordcurrent 0.0500000000
## 1213       Sports                            Nordcurrent 0.0500000000
## 1214       Action                           Nordic Games 0.0250000000
## 1215    Adventure                           Nordic Games 0.0000000000
## 1216         Misc                           Nordic Games 0.0300000000
## 1217       Racing                           Nordic Games 0.0214285714
## 1218 Role-Playing                           Nordic Games 0.0400000000
## 1219      Shooter                           Nordic Games 0.0100000000
## 1220       Sports                           Nordic Games 0.0100000000
## 1221     Strategy                           Nordic Games 0.0000000000
## 1222      Shooter                              NovaLogic 0.1600000000
## 1223     Platform                            Number None 0.0000000000
## 1224    Adventure                                O-Games 0.0200000000
## 1225         Misc                                O-Games 0.0325000000
## 1226       Puzzle                                O-Games 0.0280000000
## 1227       Racing                                O-Games 0.0200000000
## 1228      Shooter                                O-Games 0.0300000000
## 1229       Sports                                O-Games 0.0200000000
## 1230       Puzzle                       O3 Entertainment 0.0200000000
## 1231      Shooter                       O3 Entertainment 0.0700000000
## 1232   Simulation                       O3 Entertainment 0.1000000000
## 1233       Action                                  Ocean 0.3466666667
## 1234     Fighting                                  Ocean 0.0800000000
## 1235         Misc                                  Ocean 0.0200000000
## 1236     Platform                                  Ocean 0.1466666667
## 1237       Puzzle                                  Ocean 0.0600000000
## 1238       Racing                                  Ocean 0.1400000000
## 1239      Shooter                                  Ocean 0.0600000000
## 1240       Sports                                  Ocean 0.0000000000
## 1241   Simulation                          Office Create 0.0000000000
## 1242 Role-Playing                              On Demand 0.1200000000
## 1243   Simulation                              Ongakukan 0.0000000000
## 1244   Simulation                         Origin Systems 0.0500000000
## 1245    Adventure                                Otomate 0.0000000000
## 1246       Action                     Oxygen Interactive 0.0600000000
## 1247    Adventure                     Oxygen Interactive 0.0750000000
## 1248         Misc                     Oxygen Interactive 0.1700000000
## 1249     Platform                     Oxygen Interactive 0.0200000000
## 1250       Puzzle                     Oxygen Interactive 0.0500000000
## 1251       Sports                     Oxygen Interactive 0.0360000000
## 1252         Misc                               P2 Games 0.0000000000
## 1253       Puzzle                               P2 Games 0.0200000000
## 1254         Misc            Pacific Century Cyber Works 0.1100000000
## 1255    Adventure                          Pack-In-Video 0.0000000000
## 1256   Simulation                          Pack-In-Video 0.0000000000
## 1257   Simulation                           Pack In Soft 0.2500000000
## 1258       Action                                 Palcom 3.3800000000
## 1259 Role-Playing                       Panther Software 0.0200000000
## 1260         Misc                                   Paon 0.0000000000
## 1261         Misc                       Paon Corporation 0.0000000000
## 1262   Simulation                    Paradox Development 0.0000000000
## 1263         Misc                    Paradox Interactive 0.0000000000
## 1264 Role-Playing                    Paradox Interactive 0.0020000000
## 1265   Simulation                    Paradox Interactive 0.0025000000
## 1266     Strategy                    Paradox Interactive 0.0023076923
## 1267       Action                           Parker Bros. 0.7200000000
## 1268     Platform                           Parker Bros. 0.5000000000
## 1269       Puzzle                           Parker Bros. 0.5500000000
## 1270       Puzzle          Performance Designed Products 0.1700000000
## 1271   Simulation                             Phantagram 0.0300000000
## 1272      Shooter                            Phantom EFX 0.0900000000
## 1273     Platform                             Phenomedia 0.0400000000
## 1274       Puzzle                             Phenomedia 0.0450000000
## 1275       Racing                             Phenomedia 0.0300000000
## 1276      Shooter                          Phoenix Games 0.0200000000
## 1277    Adventure                                 Piacci 0.0000000000
## 1278         Misc                               Pinnacle 0.0000000000
## 1279       Puzzle                               Pinnacle 0.0000000000
## 1280       Sports                               Pinnacle 0.0000000000
## 1281     Strategy                               Pinnacle 0.0000000000
## 1282    Adventure                            Pioneer LDC 0.0000000000
## 1283       Racing                            Pioneer LDC 0.2300000000
## 1284         Misc                                Play It 0.3100000000
## 1285     Platform                                Play It 0.0200000000
## 1286       Racing                                Play It 0.1850000000
## 1287      Shooter                                Play It 0.0575000000
## 1288       Sports                                Play It 0.3000000000
## 1289       Action                 Playlogic Game Factory 0.0900000000
## 1290         Misc                 Playlogic Game Factory 0.0900000000
## 1291       Puzzle                 Playlogic Game Factory 0.0400000000
## 1292      Shooter                 Playlogic Game Factory 0.0600000000
## 1293       Sports                 Playlogic Game Factory 0.0400000000
## 1294     Strategy                 Playlogic Game Factory 0.0350000000
## 1295       Racing                              Playmates 0.1600000000
## 1296     Fighting                               Playmore 0.0000000000
## 1297       Action                                  PlayV 0.0000000000
## 1298         Misc                                  PlayV 0.0000000000
## 1299       Puzzle                                  PlayV 0.0500000000
## 1300         Misc                                 Plenty 0.0000000000
## 1301         Misc                             PM Studios 0.0900000000
## 1302         Misc                            Pony Canyon 0.0300000000
## 1303    Adventure                           PopCap Games 0.1300000000
## 1304         Misc                           PopCap Games 0.0150000000
## 1305       Puzzle                           PopCap Games 0.0577777778
## 1306     Strategy                           PopCap Games 0.1400000000
## 1307       Action                         Popcorn Arcade 0.0700000000
## 1308     Platform                         Popcorn Arcade 0.0300000000
## 1309       Puzzle                         Popcorn Arcade 0.1050000000
## 1310       Racing                         Popcorn Arcade 0.0175000000
## 1311      Shooter                         Popcorn Arcade 0.0400000000
## 1312     Strategy                        PopTop Software 0.0600000000
## 1313       Puzzle                                    Pow 0.0000000000
## 1314       Action                                  PQube 0.0220000000
## 1315    Adventure                                  PQube 0.0280000000
## 1316     Fighting                                  PQube 0.0782352941
## 1317         Misc                                  PQube 0.0000000000
## 1318       Racing                                  PQube 0.1000000000
## 1319      Shooter                                  PQube 0.0400000000
## 1320   Simulation                                  PQube 0.0400000000
## 1321       Sports                                  PQube 0.0000000000
## 1322    Adventure                          Princess Soft 0.0000000000
## 1323       Action                              Prototype 0.0000000000
## 1324    Adventure                              Prototype 0.0000000000
## 1325       Action                              Psygnosis 0.1400000000
## 1326    Adventure                              Psygnosis 0.0333333333
## 1327         Misc                              Psygnosis 0.0200000000
## 1328     Platform                              Psygnosis 0.0100000000
## 1329       Puzzle                              Psygnosis 0.0300000000
## 1330       Racing                              Psygnosis 0.2400000000
## 1331 Role-Playing                              Psygnosis 0.1300000000
## 1332      Shooter                              Psygnosis 0.0366666667
## 1333   Simulation                              Psygnosis 0.1200000000
## 1334       Sports                              Psygnosis 0.0150000000
## 1335         Misc                                 Quelle 0.8100000000
## 1336 Role-Playing                                  Quest 0.0000000000
## 1337       Action                               Quinrose 0.0000000000
## 1338    Adventure                               Quinrose 0.0000000000
## 1339    Adventure                                Quintet 0.0000000000
## 1340     Fighting                          Rage Software 0.2000000000
## 1341       Puzzle                          Rage Software 0.0300000000
## 1342       Racing                          Rage Software 0.0500000000
## 1343      Shooter                          Rage Software 0.0800000000
## 1344     Platform                             Rain Games 0.0000000000
## 1345       Racing                              Rebellion 0.1750000000
## 1346      Shooter                 Rebellion Developments 0.0400000000
## 1347    Adventure                      RED Entertainment 0.0000000000
## 1348    Adventure                                Red Orb 0.7700000000
## 1349       Action                Red Storm Entertainment 0.0200000000
## 1350      Shooter                Red Storm Entertainment 0.7050000000
## 1351         Misc                              RedOctane 1.6100000000
## 1352    Adventure                     Reef Entertainment 0.0000000000
## 1353      Shooter                     Reef Entertainment 0.0750000000
## 1354       Sports                     Reef Entertainment 0.0200000000
## 1355       Sports                           responDESIGN 0.0450000000
## 1356    Adventure                     Revolution (Japan) 0.0000000000
## 1357    Adventure                    Revolution Software 0.0000000000
## 1358       Action                      Rising Star Games 0.1212500000
## 1359    Adventure                      Rising Star Games 0.0340000000
## 1360     Fighting                      Rising Star Games 0.1566666667
## 1361         Misc                      Rising Star Games 0.2066666667
## 1362     Platform                      Rising Star Games 0.0250000000
## 1363       Puzzle                      Rising Star Games 0.0376923077
## 1364 Role-Playing                      Rising Star Games 0.1288461538
## 1365      Shooter                      Rising Star Games 0.0425000000
## 1366   Simulation                      Rising Star Games 0.2827272727
## 1367       Sports                      Rising Star Games 0.0425000000
## 1368     Strategy                      Rising Star Games 0.0775000000
## 1369   Simulation                          Riverhillsoft 0.0000000000
## 1370       Action                         Rocket Company 0.0000000000
## 1371    Adventure                         Rocket Company 0.0000000000
## 1372         Misc                         Rocket Company 0.0000000000
## 1373 Role-Playing                         Rocket Company 0.0000000000
## 1374   Simulation                         Rocket Company 0.0000000000
## 1375       Sports                         Rocket Company 0.0000000000
## 1376       Action                             Rondomedia 0.5600000000
## 1377    Adventure                             Rondomedia 0.0000000000
## 1378         Misc                             Rondomedia 0.0000000000
## 1379       Puzzle                             Rondomedia 0.1060000000
## 1380       Racing                             Rondomedia 0.0400000000
## 1381   Simulation                             Rondomedia 0.0000000000
## 1382       Racing                                    RTL 0.0300000000
## 1383   Simulation                                    RTL 0.0150000000
## 1384       Sports                                    RTL 0.1540000000
## 1385       Action                                 Russel 0.0000000000
## 1386    Adventure                                 Russel 0.0000000000
## 1387       Sports                                 Russel 0.0000000000
## 1388    Adventure                      Sammy Corporation 0.0300000000
## 1389     Fighting                      Sammy Corporation 0.0475000000
## 1390         Misc                      Sammy Corporation 0.0000000000
## 1391   Simulation                      Sammy Corporation 0.0950000000
## 1392       Action                                 Saurus 0.0100000000
## 1393       Action                        Scholastic Inc. 0.3500000000
## 1394    Adventure                        Scholastic Inc. 0.2340000000
## 1395         Misc                        Scholastic Inc. 0.0600000000
## 1396       Puzzle                        Scholastic Inc. 0.3633333333
## 1397       Action                                    SCi 0.0520000000
## 1398     Platform                                    SCi 0.0350000000
## 1399       Racing                                    SCi 0.0050000000
## 1400      Shooter                                    SCi 0.2087500000
## 1401       Action                             Screenlife 0.0000000000
## 1402     Fighting                             Screenlife 0.0000000000
## 1403 Role-Playing                             Screenlife 0.1100000000
## 1404       Action                           SCS Software 0.0000000000
## 1405       Puzzle                                  Sears 0.2000000000
## 1406       Action                                   Sega 0.1493069307
## 1407    Adventure                                   Sega 0.0270967742
## 1408     Fighting                                   Sega 0.1218918919
## 1409         Misc                                   Sega 0.1395161290
## 1410     Platform                                   Sega 0.6494230769
## 1411       Puzzle                                   Sega 0.0345454545
## 1412       Racing                                   Sega 0.1781250000
## 1413 Role-Playing                                   Sega 0.0607812500
## 1414      Shooter                                   Sega 0.1537500000
## 1415   Simulation                                   Sega 0.0300000000
## 1416       Sports                                   Sega 0.1900000000
## 1417     Strategy                                   Sega 0.0340000000
## 1418         Misc                       Seta Corporation 0.0000000000
## 1419 Role-Playing                       Seta Corporation 0.0000000000
## 1420       Sports                       Seta Corporation 0.0000000000
## 1421       Action                          Seventh Chord 0.0000000000
## 1422    Adventure                             Shogakukan 0.0000000000
## 1423         Misc                             Shogakukan 0.0000000000
## 1424       Sports           Simon & Schuster Interactive 0.0800000000
## 1425       Racing                   Slightly Mad Studios 0.0833333333
## 1426     Strategy                    Slitherine Software 0.0200000000
## 1427     Fighting                                    SNK 0.0018181818
## 1428    Adventure                           SNK Playmore 0.0000000000
## 1429     Fighting                           SNK Playmore 0.0125000000
## 1430 Role-Playing                           SNK Playmore 0.0000000000
## 1431      Shooter                           SNK Playmore 0.0400000000
## 1432    Adventure                                Societa 0.0000000000
## 1433       Action                               Sold Out 0.0100000000
## 1434         Misc                                 Sonnet 0.0000000000
## 1435       Action            Sony Computer Entertainment 0.5121111111
## 1436    Adventure            Sony Computer Entertainment 0.1114634146
## 1437     Fighting            Sony Computer Entertainment 0.3433333333
## 1438         Misc            Sony Computer Entertainment 0.1989843750
## 1439     Platform            Sony Computer Entertainment 0.8036363636
## 1440       Puzzle            Sony Computer Entertainment 0.0533333333
## 1441       Racing            Sony Computer Entertainment 0.6527692308
## 1442 Role-Playing            Sony Computer Entertainment 0.3244897959
## 1443      Shooter            Sony Computer Entertainment 0.6121568627
## 1444   Simulation            Sony Computer Entertainment 0.2086666667
## 1445       Sports            Sony Computer Entertainment 0.2587903226
## 1446     Strategy            Sony Computer Entertainment 0.0283333333
## 1447       Sports    Sony Computer Entertainment America 0.3466666667
## 1448       Action     Sony Computer Entertainment Europe 2.4100000000
## 1449    Adventure     Sony Computer Entertainment Europe 0.2166666667
## 1450         Misc     Sony Computer Entertainment Europe 0.4150000000
## 1451     Platform     Sony Computer Entertainment Europe 0.2625000000
## 1452      Shooter     Sony Computer Entertainment Europe 0.2500000000
## 1453   Simulation     Sony Computer Entertainment Europe 1.4700000000
## 1454         Misc               Sony Music Entertainment 0.0000000000
## 1455 Role-Playing              Sony Online Entertainment 0.2600000000
## 1456     Strategy              Sony Online Entertainment 0.1400000000
## 1457       Action                        SouthPeak Games 0.0822222222
## 1458    Adventure                        SouthPeak Games 0.0050000000
## 1459     Fighting                        SouthPeak Games 0.0533333333
## 1460         Misc                        SouthPeak Games 0.0650000000
## 1461       Puzzle                        SouthPeak Games 0.0600000000
## 1462       Racing                        SouthPeak Games 0.5133333333
## 1463 Role-Playing                        SouthPeak Games 0.3850000000
## 1464      Shooter                        SouthPeak Games 0.0800000000
## 1465   Simulation                        SouthPeak Games 0.2000000000
## 1466       Sports                        SouthPeak Games 0.0466666667
## 1467     Strategy                        SouthPeak Games 0.1200000000
## 1468       Action                                  Spike 0.0060000000
## 1469    Adventure                                  Spike 0.0000000000
## 1470     Fighting                                  Spike 0.0450000000
## 1471         Misc                                  Spike 0.0000000000
## 1472 Role-Playing                                  Spike 0.0400000000
## 1473   Simulation                                  Spike 0.0000000000
## 1474       Sports                                  Spike 0.2663636364
## 1475       Sports                                    SPS 0.0700000000
## 1476       Racing                                 Square 0.0000000000
## 1477 Role-Playing                                 Square 0.1060000000
## 1478 Role-Playing                              Square EA 0.4500000000
## 1479       Action                            Square Enix 0.1844230769
## 1480    Adventure                            Square Enix 0.1070000000
## 1481     Fighting                            Square Enix 0.2400000000
## 1482         Misc                            Square Enix 0.0583333333
## 1483       Puzzle                            Square Enix 0.0825000000
## 1484 Role-Playing                            Square Enix 0.2510852713
## 1485      Shooter                            Square Enix 0.1962500000
## 1486   Simulation                            Square Enix 0.1500000000
## 1487     Strategy                            Square Enix 0.0511111111
## 1488     Fighting                             SquareSoft 0.1050000000
## 1489       Racing                             SquareSoft 0.0700000000
## 1490 Role-Playing                             SquareSoft 0.2728947368
## 1491      Shooter                             SquareSoft 0.1000000000
## 1492   Simulation                             SquareSoft 0.0000000000
## 1493       Sports                             SquareSoft 0.0000000000
## 1494     Strategy                             SquareSoft 0.0250000000
## 1495     Strategy                                    SSI 0.1100000000
## 1496       Action                        Stainless Games 0.0100000000
## 1497       Action                               Starfish 0.0600000000
## 1498 Role-Playing                               Starfish 0.0000000000
## 1499      Shooter                               Starfish 0.0400000000
## 1500       Sports                               Starfish 0.0966666667
## 1501       Action                         Starpath Corp. 0.3000000000
## 1502 Role-Playing                                  Sting 0.0444444444
## 1503       Action                       Storm City Games 0.0100000000
## 1504    Adventure                       Storm City Games 0.0300000000
## 1505         Misc                       Storm City Games 0.0400000000
## 1506     Platform                       Storm City Games 0.0200000000
## 1507       Puzzle                       Storm City Games 0.1328571429
## 1508       Racing                       Storm City Games 0.0433333333
## 1509       Sports                       Storm City Games 0.0400000000
## 1510     Strategy                       Storm City Games 0.0200000000
## 1511     Strategy                         Strategy First 0.0000000000
## 1512       Action                                Success 0.0700000000
## 1513    Adventure                                Success 0.0000000000
## 1514         Misc                                Success 0.0050000000
## 1515       Puzzle                                Success 0.0100000000
## 1516 Role-Playing                                Success 0.0471428571
## 1517      Shooter                                Success 0.6400000000
## 1518   Simulation                                Success 0.0000000000
## 1519     Strategy                                Success 0.0300000000
## 1520       Sports                             Summitsoft 0.0300000000
## 1521     Strategy                             Sunflowers 0.0000000000
## 1522       Action                    Sunrise Interactive 0.0000000000
## 1523     Fighting                    Sunrise Interactive 0.0000000000
## 1524       Racing                    Sunrise Interactive 0.0000000000
## 1525 Role-Playing                    Sunrise Interactive 0.0000000000
## 1526    Adventure                                Sunsoft 0.0400000000
## 1527     Fighting                                Sunsoft 0.0000000000
## 1528         Misc                                Sunsoft 0.0000000000
## 1529     Platform                                Sunsoft 0.0900000000
## 1530       Puzzle                                Sunsoft 0.0700000000
## 1531 Role-Playing                                Sunsoft 0.0600000000
## 1532      Shooter                                Sunsoft 0.1400000000
## 1533    Adventure                                 Sweets 0.0000000000
## 1534       Action                   Swing! Entertainment 0.0300000000
## 1535    Adventure                   Swing! Entertainment 0.1100000000
## 1536     Platform                   Swing! Entertainment 0.0200000000
## 1537      Shooter                   Swing! Entertainment 0.0350000000
## 1538   Simulation                   Swing! Entertainment 0.0500000000
## 1539         Misc                                 Syscom 0.0000000000
## 1540       Racing                                 Syscom 0.0600000000
## 1541     Platform                               System 3 0.0266666667
## 1542         Misc               System 3 Arcade Software 0.2133333333
## 1543     Platform               System 3 Arcade Software 0.0600000000
## 1544       Puzzle               System 3 Arcade Software 0.0100000000
## 1545       Racing               System 3 Arcade Software 0.0228571429
## 1546       Sports               System 3 Arcade Software 0.0300000000
## 1547    Adventure                            System Soft 0.0000000000
## 1548     Strategy                            System Soft 0.0000000000
## 1549       Sports                               T&E Soft 0.0000000000
## 1550       Action                                  Taito 0.2200000000
## 1551    Adventure                                  Taito 0.0000000000
## 1552     Fighting                                  Taito 0.0000000000
## 1553         Misc                                  Taito 0.0166666667
## 1554 Role-Playing                                  Taito 0.0400000000
## 1555      Shooter                                  Taito 0.0150000000
## 1556   Simulation                                  Taito 0.0000000000
## 1557       Action                                 Takara 0.0000000000
## 1558     Fighting                                 Takara 0.0000000000
## 1559         Misc                                 Takara 0.0400000000
## 1560       Racing                                 Takara 0.0000000000
## 1561 Role-Playing                                 Takara 0.0000000000
## 1562       Action                            Takara Tomy 0.0066666667
## 1563     Fighting                            Takara Tomy 0.0220000000
## 1564         Misc                            Takara Tomy 0.0000000000
## 1565       Racing                            Takara Tomy 0.0350000000
## 1566 Role-Playing                            Takara Tomy 0.0733333333
## 1567       Sports                            Takara Tomy 0.0300000000
## 1568     Strategy                            Takara Tomy 0.0800000000
## 1569       Action                   Take-Two Interactive 1.0908602151
## 1570    Adventure                   Take-Two Interactive 0.3300000000
## 1571     Fighting                   Take-Two Interactive 0.0600000000
## 1572         Misc                   Take-Two Interactive 0.2477777778
## 1573     Platform                   Take-Two Interactive 0.2236363636
## 1574       Puzzle                   Take-Two Interactive 0.0500000000
## 1575       Racing                   Take-Two Interactive 0.6970000000
## 1576 Role-Playing                   Take-Two Interactive 0.5033333333
## 1577      Shooter                   Take-Two Interactive 0.4556923077
## 1578   Simulation                   Take-Two Interactive 0.1225000000
## 1579       Sports                   Take-Two Interactive 0.3621192053
## 1580     Strategy                   Take-Two Interactive 0.1850000000
## 1581    Adventure                                 Takuyo 0.0000000000
## 1582      Shooter                              TalonSoft 0.4900000000
## 1583       Action                               TDK Core 0.1200000000
## 1584         Misc                               TDK Core 0.0000000000
## 1585   Simulation                               TDK Core 0.0000000000
## 1586       Action                         TDK Mediactive 0.1025000000
## 1587    Adventure                         TDK Mediactive 0.0350000000
## 1588         Misc                         TDK Mediactive 0.0660000000
## 1589     Platform                         TDK Mediactive 0.2187500000
## 1590       Racing                         TDK Mediactive 0.2250000000
## 1591      Shooter                         TDK Mediactive 0.1550000000
## 1592       Sports                         TDK Mediactive 0.1566666667
## 1593     Strategy                        Team17 Software 0.0000000000
## 1594       Sports              Technos Japan Corporation 0.0000000000
## 1595      Shooter                             TechnoSoft 0.0300000000
## 1596       Action                             Tecmo Koei 0.0580291971
## 1597    Adventure                             Tecmo Koei 0.0000000000
## 1598     Fighting                             Tecmo Koei 0.1075000000
## 1599         Misc                             Tecmo Koei 0.0035714286
## 1600     Platform                             Tecmo Koei 0.0200000000
## 1601       Racing                             Tecmo Koei 0.0340000000
## 1602 Role-Playing                             Tecmo Koei 0.0510638298
## 1603      Shooter                             Tecmo Koei 0.0400000000
## 1604   Simulation                             Tecmo Koei 0.0361538462
## 1605       Sports                             Tecmo Koei 0.0169230769
## 1606     Strategy                             Tecmo Koei 0.0190000000
## 1607         Misc                              Telegames 0.1750000000
## 1608       Puzzle                              Telegames 0.0600000000
## 1609   Simulation                              Telegames 0.0100000000
## 1610     Strategy                              Telegames 0.0800000000
## 1611       Action                         Telltale Games 0.0250000000
## 1612    Adventure                         Telltale Games 0.0534782609
## 1613       Action                                Telstar 0.0700000000
## 1614       Racing                                Telstar 0.0500000000
## 1615      Shooter                                Telstar 0.0400000000
## 1616       Puzzle                          Tetris Online 0.2000000000
## 1617    Adventure                                    TGL 0.0000000000
## 1618    Adventure                  The Adventure Company 0.0666666667
## 1619       Puzzle                  The Adventure Company 0.0700000000
## 1620       Racing                   The Learning Company 0.0300000000
## 1621       Action                                    THQ 0.2802577320
## 1622    Adventure                                    THQ 0.2387234043
## 1623     Fighting                                    THQ 0.6004225352
## 1624         Misc                                    THQ 0.2666666667
## 1625     Platform                                    THQ 0.3049411765
## 1626       Puzzle                                    THQ 0.3158823529
## 1627       Racing                                    THQ 0.2707920792
## 1628 Role-Playing                                    THQ 0.0787500000
## 1629      Shooter                                    THQ 0.2019444444
## 1630   Simulation                                    THQ 0.2000000000
## 1631       Sports                                    THQ 0.2464516129
## 1632     Strategy                                    THQ 0.1053125000
## 1633       Action                            Tigervision 0.4433333333
## 1634     Fighting                Time Warner Interactive 0.0600000000
## 1635      Shooter                Time Warner Interactive 0.0200000000
## 1636       Sports                Time Warner Interactive 0.0250000000
## 1637     Strategy                Time Warner Interactive 0.0500000000
## 1638       Action                                  Titus 0.0950000000
## 1639     Fighting                                  Titus 0.1466666667
## 1640         Misc                                  Titus 0.0500000000
## 1641     Platform                                  Titus 0.0100000000
## 1642       Racing                                  Titus 0.0950000000
## 1643 Role-Playing                                  Titus 0.0400000000
## 1644      Shooter                                  Titus 0.0400000000
## 1645   Simulation                                  Titus 0.2850000000
## 1646     Strategy                                  Titus 0.0100000000
## 1647         Misc                                 Tivola 0.0266666667
## 1648 Role-Playing                                   TOHO 0.0000000000
## 1649         Misc                                  Tommo 0.0333333333
## 1650      Shooter                                  Tommo 0.0600000000
## 1651       Sports                                  Tommo 0.0400000000
## 1652       Action                       Tomy Corporation 0.1400000000
## 1653     Fighting                       Tomy Corporation 0.1320000000
## 1654         Misc                       Tomy Corporation 0.0200000000
## 1655       Racing                       Tomy Corporation 0.0400000000
## 1656 Role-Playing                       Tomy Corporation 0.0200000000
## 1657   Simulation                       Tomy Corporation 0.1200000000
## 1658         Misc                    TopWare Interactive 0.0000000000
## 1659 Role-Playing                    TopWare Interactive 0.0000000000
## 1660       Action                             Touchstone 0.2700000000
## 1661   Simulation                             Touchstone 0.0700000000
## 1662       Sports                              Tradewest 0.0066666667
## 1663      Shooter                           Trion Worlds 0.2366666667
## 1664     Strategy                           Trion Worlds 0.0100000000
## 1665      Shooter                   Tripwire Interactive 0.0400000000
## 1666       Action                  Tru Blu Entertainment 0.0000000000
## 1667       Sports                  Tru Blu Entertainment 0.0025000000
## 1668     Fighting                               Tryfirst 0.0000000000
## 1669       Racing                                    TYO 0.2300000000
## 1670    Adventure                              Type-Moon 0.0000000000
## 1671     Platform                              U.S. Gold 0.0300000000
## 1672       Sports                              U.S. Gold 0.0533333333
## 1673       Action                                Ubisoft 0.3594818653
## 1674    Adventure                                Ubisoft 0.1933898305
## 1675     Fighting                                Ubisoft 0.2047368421
## 1676         Misc                                Ubisoft 0.3873509934
## 1677     Platform                                Ubisoft 0.1435714286
## 1678       Puzzle                                Ubisoft 0.1095833333
## 1679       Racing                                Ubisoft 0.1486538462
## 1680 Role-Playing                                Ubisoft 0.2209756098
## 1681      Shooter                                Ubisoft 0.3805434783
## 1682   Simulation                                Ubisoft 0.2353781513
## 1683       Sports                                Ubisoft 0.2019444444
## 1684     Strategy                                Ubisoft 0.1113793103
## 1685       Action                         Ubisoft Annecy 0.0820000000
## 1686     Fighting                         Ubisoft Annecy 0.1600000000
## 1687         Misc                         Ubisoft Annecy 0.0700000000
## 1688 Role-Playing                         Ubisoft Annecy 0.0600000000
## 1689       Sports                            UEP Systems 1.5200000000
## 1690       Action                        UFO Interactive 0.0200000000
## 1691         Misc                        UFO Interactive 0.0762500000
## 1692       Puzzle                        UFO Interactive 0.0550000000
## 1693      Shooter                        UFO Interactive 0.0200000000
## 1694       Sports                        UFO Interactive 0.0250000000
## 1695   Simulation                      UIG Entertainment 0.0000000000
## 1696     Fighting                            Ultravision 0.4400000000
## 1697       Action                        Universal Gamex 0.5800000000
## 1698       Action                  Universal Interactive 0.2388888889
## 1699     Fighting                  Universal Interactive 0.2300000000
## 1700         Misc                  Universal Interactive 0.4000000000
## 1701     Platform                  Universal Interactive 0.7971428571
## 1702      Shooter                  Universal Interactive 0.1200000000
## 1703       Sports                  Universal Interactive 0.2400000000
## 1704       Action                                Unknown 0.0810714286
## 1705    Adventure                                Unknown 0.0376470588
## 1706     Fighting                                Unknown 0.0266666667
## 1707         Misc                                Unknown 0.1151612903
## 1708     Platform                                Unknown 0.0220000000
## 1709       Puzzle                                Unknown 0.0588235294
## 1710       Racing                                Unknown 0.1061538462
## 1711 Role-Playing                                Unknown 0.0886363636
## 1712      Shooter                                Unknown 0.0907692308
## 1713   Simulation                                Unknown 0.0846153846
## 1714       Sports                                Unknown 0.1930769231
## 1715     Strategy                                Unknown 0.0000000000
## 1716    Adventure                           Valcon Games 0.0100000000
## 1717       Racing                           Valcon Games 0.0533333333
## 1718      Shooter                           Valcon Games 0.0600000000
## 1719   Simulation                           Valcon Games 0.0200000000
## 1720       Sports                           Valcon Games 0.0300000000
## 1721    Adventure                               ValuSoft 0.0100000000
## 1722       Puzzle                               ValuSoft 0.0650000000
## 1723       Racing                               ValuSoft 0.1200000000
## 1724      Shooter                                  Valve 0.8300000000
## 1725      Shooter                         Valve Software 0.5800000000
## 1726         Misc                                    Vap 0.0000000000
## 1727       Racing                  Vatical Entertainment 0.0700000000
## 1728     Fighting                              Vic Tokai 0.0950000000
## 1729    Adventure                     Victor Interactive 0.0000000000
## 1730         Misc                     Victor Interactive 0.0000000000
## 1731 Role-Playing                     Victor Interactive 0.0100000000
## 1732   Simulation                     Victor Interactive 0.0000000000
## 1733       Sports                     Victor Interactive 0.0250000000
## 1734       Action                           Video System 0.1500000000
## 1735       Racing                           Video System 0.1733333333
## 1736       Action                                  Views 0.0000000000
## 1737    Adventure                                  Views 0.0000000000
## 1738       Action                          Vir2L Studios 0.1400000000
## 1739       Racing                          Vir2L Studios 0.0200000000
## 1740       Sports                          Vir2L Studios 0.0600000000
## 1741       Action                     Virgin Interactive 0.6716666667
## 1742    Adventure                     Virgin Interactive 0.0100000000
## 1743     Fighting                     Virgin Interactive 0.1336842105
## 1744         Misc                     Virgin Interactive 0.0200000000
## 1745     Platform                     Virgin Interactive 0.4000000000
## 1746       Puzzle                     Virgin Interactive 0.0750000000
## 1747       Racing                     Virgin Interactive 0.0100000000
## 1748 Role-Playing                     Virgin Interactive 0.2900000000
## 1749      Shooter                     Virgin Interactive 0.3500000000
## 1750   Simulation                     Virgin Interactive 0.0750000000
## 1751       Sports                     Virgin Interactive 0.0450000000
## 1752     Strategy                     Virgin Interactive 0.3733333333
## 1753         Misc                     Virtual Play Games 0.0400000000
## 1754       Sports                     Virtual Play Games 0.0200000000
## 1755      Shooter                                  Visco 0.0200000000
## 1756       Action                          Vivendi Games 0.1821739130
## 1757    Adventure                          Vivendi Games 0.1257142857
## 1758     Fighting                          Vivendi Games 0.0725000000
## 1759         Misc                          Vivendi Games 0.1125000000
## 1760     Platform                          Vivendi Games 0.2735135135
## 1761       Puzzle                          Vivendi Games 0.0600000000
## 1762       Racing                          Vivendi Games 0.3907142857
## 1763 Role-Playing                          Vivendi Games 1.0300000000
## 1764      Shooter                          Vivendi Games 0.3180000000
## 1765   Simulation                          Vivendi Games 0.0000000000
## 1766       Sports                          Vivendi Games 0.0450000000
## 1767     Strategy                          Vivendi Games 0.0150000000
## 1768       Action                                Wanadoo 0.1350000000
## 1769     Platform                                Wanadoo 0.0100000000
## 1770       Racing                                Wanadoo 0.0100000000
## 1771      Shooter                                Warashi 0.0000000000
## 1772      Shooter                          Wargaming.net 0.0000000000
## 1773       Action Warner Bros. Interactive Entertainment 0.3499393939
## 1774    Adventure Warner Bros. Interactive Entertainment 0.1033333333
## 1775     Fighting Warner Bros. Interactive Entertainment 0.7890909091
## 1776         Misc Warner Bros. Interactive Entertainment 0.1931818182
## 1777     Platform Warner Bros. Interactive Entertainment 0.1387500000
## 1778       Puzzle Warner Bros. Interactive Entertainment 0.6025000000
## 1779       Racing Warner Bros. Interactive Entertainment 0.2500000000
## 1780      Shooter Warner Bros. Interactive Entertainment 0.1640000000
## 1781     Strategy Warner Bros. Interactive Entertainment 0.9400000000
## 1782    Adventure                                   Warp 0.0000000000
## 1783    Adventure                WayForward Technologies 0.0500000000
## 1784     Strategy                       Westwood Studios 1.5500000000
## 1785       Puzzle                White Park Bay Software 0.1300000000
## 1786       Action                     Wizard Video Games 0.5800000000
## 1787       Racing                      Xicat Interactive 0.0200000000
## 1788 Role-Playing                      Xicat Interactive 0.0200000000
## 1789       Sports                      Xicat Interactive 0.0500000000
## 1790     Fighting                     Xing Entertainment 0.0400000000
## 1791         Misc                                Xplosiv 0.0700000000
## 1792       Puzzle                                Xplosiv 0.0250000000
## 1793       Racing                                Xplosiv 0.0700000000
## 1794         Misc                               XS Games 0.0250000000
## 1795       Racing                               XS Games 0.0440000000
## 1796       Sports                               XS Games 0.1820000000
## 1797       Action                            Xseed Games 0.0400000000
## 1798 Role-Playing                            Xseed Games 0.1750000000
## 1799      Shooter                            Xseed Games 0.0200000000
## 1800     Platform                       Yacht Club Games 0.0533333333
## 1801         Misc                   Yamasa Entertainment 0.0000000000
## 1802       Action                                   Yeti 0.0000000000
## 1803    Adventure                                   Yeti 0.0000000000
## 1804     Fighting                                   Yeti 0.0000000000
## 1805     Fighting                                 Yuke's 0.0000000000
## 1806       Racing                                 Yuke's 0.0100000000
## 1807    Adventure                                Yumedia 0.0000000000
## 1808         Misc                                 Zenrin 0.0000000000
## 1809       Action                 Zoo Digital Publishing 0.0850000000
## 1810    Adventure                 Zoo Digital Publishing 0.0485714286
## 1811     Fighting                 Zoo Digital Publishing 0.0766666667
## 1812         Misc                 Zoo Digital Publishing 0.1088888889
## 1813     Platform                 Zoo Digital Publishing 0.1150000000
## 1814       Puzzle                 Zoo Digital Publishing 0.0792857143
## 1815       Racing                 Zoo Digital Publishing 0.1015384615
## 1816      Shooter                 Zoo Digital Publishing 0.0437500000
## 1817   Simulation                 Zoo Digital Publishing 0.0800000000
## 1818       Sports                 Zoo Digital Publishing 0.1131250000
## 1819     Strategy                 Zoo Digital Publishing 0.0900000000
## 1820       Action                              Zoo Games 0.0866666667
## 1821    Adventure                              Zoo Games 0.0200000000
## 1822         Misc                              Zoo Games 0.2227272727
## 1823       Puzzle                              Zoo Games 0.0700000000
## 1824       Racing                              Zoo Games 0.1016666667
## 1825      Shooter                              Zoo Games 0.1125000000
## 1826   Simulation                              Zoo Games 0.0700000000
## 1827       Sports                              Zoo Games 0.1125000000
## 1828       Action                            Zushi Games 0.0000000000
## 1829    Adventure                            Zushi Games 0.0400000000
## 1830         Misc                            Zushi Games 0.0800000000
## 1831       Puzzle                            Zushi Games 0.0300000000
## 1832       Racing                            Zushi Games 0.0533333333
## 1833 Role-Playing                            Zushi Games 0.1000000000
## 1834      Shooter                            Zushi Games 0.1750000000
## 1835   Simulation                            Zushi Games 0.0200000000
## 1836       Sports                            Zushi Games 0.2566666667
## 1837     Strategy                            Zushi Games 0.0350000000
aggregate(EU_Sales,by=list(Platform = Platform,Year = Year),sum)
##     Platform Year     x
## 1       2600 1980  0.67
## 2       2600 1981  1.96
## 3       2600 1982  1.65
## 4       2600 1983  0.34
## 5        NES 1983  0.46
## 6       2600 1984  0.01
## 7        NES 1984  2.09
## 8       2600 1985  0.03
## 9         DS 1985  0.00
## 10       NES 1985  4.68
## 11        PC 1985  0.03
## 12      2600 1986  0.04
## 13       NES 1986  2.80
## 14      2600 1987  0.09
## 15       NES 1987  1.32
## 16      2600 1988  0.04
## 17        GB 1988  0.23
## 18       NES 1988  6.30
## 19        PC 1988  0.02
## 20      2600 1989  0.03
## 21        GB 1989  7.60
## 22       NES 1989  0.81
## 23        GB 1990  0.89
## 24       GEN 1990  0.55
## 25       NES 1990  1.59
## 26      SNES 1990  4.60
## 27        GB 1991  0.68
## 28       GEN 1991  0.91
## 29       NES 1991  0.52
## 30      SNES 1991  1.84
## 31        GB 1992  4.24
## 32       GEN 1992  2.38
## 33        GG 1992  0.00
## 34       NES 1992  0.14
## 35        PC 1992  1.66
## 36      SNES 1992  3.29
## 37       GEN 1993  0.00
## 38       NES 1993  0.44
## 39        NG 1993  0.00
## 40       SCD 1993  0.36
## 41      SNES 1993  3.85
## 42       3DO 1994  0.00
## 43        GB 1994  2.36
## 44       GEN 1994  1.68
## 45       NES 1994  0.00
## 46        NG 1994  0.00
## 47        PC 1994  6.85
## 48        PS 1994  1.20
## 49       SAT 1994  0.12
## 50       SCD 1994  0.00
## 51      SNES 1994  2.67
## 52       3DO 1995  0.00
## 53        GB 1995  0.14
## 54        NG 1995  0.00
## 55        PC 1995  2.27
## 56        PS 1995  9.85
## 57       SAT 1995  0.42
## 58      SNES 1995  2.22
## 59      TG16 1995  0.00
## 60        GB 1996  9.37
## 61       N64 1996  6.72
## 62        NG 1996  0.00
## 63        PC 1996  4.68
## 64      PCFX 1996  0.00
## 65        PS 1996 25.92
## 66       SAT 1996  0.00
## 67      SNES 1996  0.57
## 68        GB 1997  0.90
## 69       N64 1997  8.09
## 70        PC 1997  2.19
## 71        PS 1997 37.14
## 72       SAT 1997  0.00
## 73      SNES 1997  0.00
## 74        DC 1998  0.61
## 75        GB 1998  7.00
## 76       N64 1998 10.35
## 77        PC 1998  0.20
## 78        PS 1998 48.74
## 79       SAT 1998  0.00
## 80      SNES 1998  0.00
## 81        DC 1999  0.29
## 82        GB 1999  8.91
## 83       N64 1999  9.74
## 84        PC 1999  1.13
## 85        PS 1999 42.60
## 86       SAT 1999  0.00
## 87      SNES 1999  0.00
## 88        WS 1999  0.00
## 89        DC 2000  0.79
## 90        GB 2000  3.52
## 91       GBA 2000  0.02
## 92       N64 2000  5.59
## 93        PC 2000  1.44
## 94        PS 2000 30.54
## 95       PS2 2000 10.64
## 96        WS 2000  0.00
## 97        XB 2000  0.21
## 98        DC 2001  0.00
## 99        GB 2001  1.67
## 100      GBA 2001 15.92
## 101       GC 2001  4.80
## 102      N64 2001  0.52
## 103       PC 2001  1.24
## 104       PS 2001 13.72
## 105      PS2 2001 52.37
## 106       WS 2001  0.00
## 107       XB 2001  4.65
## 108       DC 2002  0.00
## 109      GBA 2002 17.12
## 110       GC 2002 10.49
## 111      N64 2002  0.02
## 112       PC 2002  3.17
## 113       PS 2002  1.89
## 114      PS2 2002 65.27
## 115       XB 2002 11.78
## 116      GBA 2003 13.19
## 117       GC 2003 10.23
## 118       PC 2003  4.92
## 119       PS 2003  0.78
## 120      PS2 2003 61.20
## 121       XB 2003 13.49
## 122       DS 2004  3.97
## 123      GBA 2004 18.15
## 124       GC 2004  5.33
## 125       PC 2004  7.52
## 126      PS2 2004 56.01
## 127      PSP 2004  1.72
## 128       XB 2004 14.62
## 129       DS 2005 42.06
## 130      GBA 2005  8.31
## 131       GC 2005  5.13
## 132       PC 2005  2.67
## 133      PS2 2005 40.86
## 134      PSP 2005  9.91
## 135     X360 2005  0.51
## 136       XB 2005 12.49
## 137       DS 2006 23.53
## 138      GBA 2006  0.98
## 139       GC 2006  2.28
## 140       PC 2006  1.92
## 141      PS2 2006 21.61
## 142      PS3 2006  7.47
## 143      PSP 2006 14.24
## 144      Wii 2006 43.84
## 145     X360 2006 11.12
## 146       XB 2006  2.25
## 147       DC 2007  0.00
## 148       DS 2007 34.58
## 149      GBA 2007  0.90
## 150       GC 2007  0.06
## 151       PC 2007  6.22
## 152      PS2 2007 10.43
## 153      PS3 2007 26.59
## 154      PSP 2007 14.37
## 155      Wii 2007 44.65
## 156     X360 2007 22.58
## 157       XB 2007  0.12
## 158       DC 2008  0.00
## 159       DS 2008 33.05
## 160       PC 2008  9.83
## 161      PS2 2008  7.63
## 162      PS3 2008 39.71
## 163      PSP 2008  8.14
## 164      Wii 2008 47.36
## 165     X360 2008 38.64
## 166       XB 2008  0.04
## 167       DS 2009 26.52
## 168       PC 2009 13.51
## 169      PS2 2009  4.94
## 170      PS3 2009 42.43
## 171      PSP 2009 10.92
## 172      Wii 2009 59.36
## 173     X360 2009 33.91
## 174       DS 2010 20.07
## 175       PC 2010 12.09
## 176      PS2 2010  1.54
## 177      PS3 2010 52.15
## 178      PSP 2010  5.96
## 179      Wii 2010 37.50
## 180     X360 2010 47.42
## 181      3DS 2011 18.42
## 182       DS 2011  6.18
## 183       PC 2011 18.89
## 184      PS2 2011  0.13
## 185      PS3 2011 58.11
## 186      PSP 2011  1.45
## 187      PSV 2011  1.89
## 188      Wii 2011 18.52
## 189     X360 2011 43.85
## 190      3DS 2012 11.59
## 191       DS 2012  3.04
## 192       PC 2012 12.36
## 193      PS3 2012 40.55
## 194      PSP 2012  0.26
## 195      PSV 2012  6.17
## 196      Wii 2012  6.39
## 197     WiiU 2012  5.25
## 198     X360 2012 33.17
## 199      3DS 2013 14.34
## 200       DS 2013  1.07
## 201       PC 2013  7.34
## 202      PS3 2013 44.66
## 203      PS4 2013 10.99
## 204      PSP 2013  0.19
## 205      PSV 2013  3.15
## 206      Wii 2013  3.61
## 207     WiiU 2013  6.60
## 208     X360 2013 28.56
## 209     XOne 2013  5.29
## 210      3DS 2014  8.61
## 211       DS 2014  0.00
## 212       PC 2014  8.62
## 213      PS3 2014 20.57
## 214      PS4 2014 44.80
## 215      PSP 2014  0.00
## 216      PSV 2014  3.48
## 217      Wii 2014  2.25
## 218     WiiU 2014  6.49
## 219     X360 2014 13.08
## 220     XOne 2014 17.75
## 221      3DS 2015  4.77
## 222       PC 2015  5.28
## 223      PS3 2015  7.43
## 224      PS4 2015 50.43
## 225      PSP 2015  0.00
## 226      PSV 2015  1.28
## 227      Wii 2015  0.87
## 228     WiiU 2015  4.90
## 229     X360 2015  4.77
## 230     XOne 2015 17.98
## 231      3DS 2016  0.57
## 232       PC 2016  1.59
## 233      PS3 2016  0.80
## 234      PS4 2016 17.48
## 235      PSV 2016  0.30
## 236     WiiU 2016  0.99
## 237     X360 2016  0.40
## 238     XOne 2016  4.63
## 239      PS4 2017  0.00
## 240      PSV 2017  0.00
## 241       DS 2020  0.00
## 242     2600  N/A  0.61
## 243      3DS  N/A  0.22
## 244       DS  N/A  0.58
## 245       GB  N/A  0.31
## 246      GBA  N/A  0.66
## 247       GC  N/A  0.39
## 248      N64  N/A  0.03
## 249       PC  N/A  2.04
## 250       PS  N/A  1.22
## 251      PS2  N/A  6.66
## 252      PS3  N/A  3.24
## 253      PSP  N/A  1.09
## 254      PSV  N/A  0.06
## 255      Wii  N/A  4.03
## 256     X360  N/A  2.57
## 257       XB  N/A  1.30
aggregate(EU_Sales,by=list(Platform = Platform,Genre = Genre),sum)
##     Platform        Genre      x
## 1       2600       Action   1.64
## 2        3DS       Action  12.53
## 3         DC       Action   0.23
## 4         DS       Action  27.04
## 5         GB       Action   2.11
## 6        GBA       Action  14.70
## 7         GC       Action   7.77
## 8        GEN       Action   0.55
## 9        N64       Action   6.35
## 10       NES       Action   3.34
## 11        PC       Action  17.95
## 12        PS       Action  45.13
## 13       PS2       Action  71.44
## 14       PS3       Action 110.62
## 15       PS4       Action  38.19
## 16       PSP       Action  17.68
## 17       PSV       Action   5.68
## 18       SAT       Action   0.00
## 19      SNES       Action   1.33
## 20       Wii       Action  33.04
## 21      WiiU       Action   6.59
## 22      X360       Action  76.81
## 23        XB       Action  12.81
## 24      XOne       Action  11.47
## 25      2600    Adventure   0.10
## 26       3DO    Adventure   0.00
## 27       3DS    Adventure   0.80
## 28        DC    Adventure   0.24
## 29        DS    Adventure  10.47
## 30        GB    Adventure   3.50
## 31       GBA    Adventure   3.52
## 32        GC    Adventure   1.26
## 33       GEN    Adventure   0.00
## 34       N64    Adventure   0.05
## 35       NES    Adventure   0.50
## 36        PC    Adventure   7.65
## 37        PS    Adventure   7.72
## 38       PS2    Adventure   5.09
## 39       PS3    Adventure   8.13
## 40       PS4    Adventure   2.19
## 41       PSP    Adventure   0.92
## 42       PSV    Adventure   0.65
## 43       SAT    Adventure   0.00
## 44      SNES    Adventure   0.00
## 45      TG16    Adventure   0.00
## 46       Wii    Adventure   4.59
## 47      WiiU    Adventure   0.08
## 48      X360    Adventure   4.86
## 49        XB    Adventure   0.73
## 50      XOne    Adventure   1.08
## 51      2600     Fighting   0.07
## 52       3DS     Fighting   2.20
## 53        DC     Fighting   0.00
## 54        DS     Fighting   0.32
## 55       GBA     Fighting   1.07
## 56        GC     Fighting   2.91
## 57       GEN     Fighting   1.20
## 58       N64     Fighting   3.70
## 59       NES     Fighting   0.66
## 60        NG     Fighting   0.00
## 61        PC     Fighting   0.16
## 62        PS     Fighting  20.88
## 63       PS2     Fighting  23.51
## 64       PS3     Fighting  14.69
## 65       PS4     Fighting   2.73
## 66       PSP     Fighting   4.52
## 67       PSV     Fighting   0.70
## 68       SAT     Fighting   0.38
## 69      SNES     Fighting   2.90
## 70       Wii     Fighting   5.11
## 71      WiiU     Fighting   1.43
## 72      X360     Fighting   8.92
## 73        XB     Fighting   2.74
## 74      XOne     Fighting   0.52
## 75      2600         Misc   0.20
## 76       3DS         Misc   2.13
## 77        DS         Misc  35.65
## 78        GB         Misc   2.15
## 79       GBA         Misc   9.23
## 80        GC         Misc   2.62
## 81       GEN         Misc   0.00
## 82       N64         Misc   1.44
## 83       NES         Misc   0.00
## 84        PC         Misc   2.53
## 85        PS         Misc  13.52
## 86       PS2         Misc  29.91
## 87       PS3         Misc  16.92
## 88       PS4         Misc   3.03
## 89       PSP         Misc   1.42
## 90       PSV         Misc   1.28
## 91       SAT         Misc   0.00
## 92       SCD         Misc   0.00
## 93      SNES         Misc   0.54
## 94       Wii         Misc  65.57
## 95      WiiU         Misc   3.49
## 96      X360         Misc  20.54
## 97        XB         Misc   1.99
## 98      XOne         Misc   1.82
## 99      2600     Platform   0.72
## 100      3DS     Platform  10.35
## 101       DC     Platform   0.61
## 102       DS     Platform  18.98
## 103       GB     Platform   9.72
## 104      GBA     Platform  18.85
## 105       GC     Platform   5.95
## 106      GEN     Platform   3.38
## 107       GG     Platform   0.00
## 108      N64     Platform   7.59
## 109      NES     Platform  10.19
## 110       PC     Platform   0.33
## 111       PS     Platform  21.64
## 112      PS2     Platform  23.32
## 113      PS3     Platform  11.38
## 114      PS4     Platform   3.32
## 115      PSP     Platform   5.36
## 116      PSV     Platform   1.42
## 117      SAT     Platform   0.00
## 118      SCD     Platform   0.36
## 119     SNES     Platform  10.74
## 120      Wii     Platform  24.08
## 121     WiiU     Platform   6.16
## 122     X360     Platform   4.19
## 123       XB     Platform   2.70
## 124     XOne     Platform   0.29
## 125     2600       Puzzle   0.86
## 126      3DO       Puzzle   0.00
## 127      3DS       Puzzle   2.12
## 128       DS       Puzzle  26.29
## 129       GB       Puzzle   5.03
## 130      GBA       Puzzle   2.57
## 131       GC       Puzzle   0.89
## 132      N64       Puzzle   0.57
## 133      NES       Puzzle   1.98
## 134       PC       Puzzle   0.68
## 135       PS       Puzzle   2.37
## 136      PS2       Puzzle   1.93
## 137      PS3       Puzzle   0.05
## 138      PS4       Puzzle   0.02
## 139      PSP       Puzzle   1.26
## 140      PSV       Puzzle   0.05
## 141      SAT       Puzzle   0.00
## 142     SNES       Puzzle   0.00
## 143      Wii       Puzzle   3.63
## 144     WiiU       Puzzle   0.36
## 145     X360       Puzzle   0.04
## 146       XB       Puzzle   0.08
## 147     2600       Racing   0.16
## 148      3DS       Racing   4.58
## 149       DC       Racing   0.51
## 150       DS       Racing  10.07
## 151       GB       Racing   1.06
## 152      GBA       Racing   5.04
## 153       GC       Racing   4.83
## 154      GEN       Racing   0.00
## 155      N64       Racing   8.29
## 156      NES       Racing   1.23
## 157       PC       Racing   3.01
## 158       PS       Racing  35.08
## 159      PS2       Racing  47.38
## 160      PS3       Racing  33.86
## 161      PS4       Racing   7.12
## 162      PSP       Racing  11.77
## 163      PSV       Racing   1.32
## 164      SAT       Racing   0.16
## 165      SCD       Racing   0.00
## 166     SNES       Racing   1.75
## 167      Wii       Racing  19.98
## 168     WiiU       Racing   2.46
## 169     X360       Racing  25.90
## 170       XB       Racing   8.67
## 171     XOne       Racing   4.16
## 172      3DS Role-Playing  13.00
## 173       DC Role-Playing   0.00
## 174       DS Role-Playing  18.30
## 175       GB Role-Playing  21.67
## 176      GBA Role-Playing  12.87
## 177       GC Role-Playing   2.44
## 178      GEN Role-Playing   0.00
## 179      N64 Role-Playing   0.35
## 180      NES Role-Playing   0.00
## 181       PC Role-Playing  25.40
## 182     PCFX Role-Playing   0.00
## 183       PS Role-Playing  12.42
## 184      PS2 Role-Playing  18.42
## 185      PS3 Role-Playing  19.79
## 186      PS4 Role-Playing  10.55
## 187      PSP Role-Playing   3.76
## 188      PSV Role-Playing   1.70
## 189      SAT Role-Playing   0.00
## 190      SCD Role-Playing   0.00
## 191     SNES Role-Playing   0.16
## 192      Wii Role-Playing   1.95
## 193     WiiU Role-Playing   0.62
## 194       WS Role-Playing   0.00
## 195     X360 Role-Playing  18.56
## 196       XB Role-Playing   3.04
## 197     XOne Role-Playing   3.06
## 198     2600      Shooter   1.51
## 199      3DS      Shooter   0.35
## 200       DC      Shooter   0.00
## 201       DS      Shooter   0.59
## 202       GB      Shooter   0.39
## 203      GBA      Shooter   0.87
## 204       GC      Shooter   2.90
## 205      GEN      Shooter   0.00
## 206      N64      Shooter   4.02
## 207      NES      Shooter   1.13
## 208       PC      Shooter  22.27
## 209       PS      Shooter  13.57
## 210      PS2      Shooter  33.70
## 211      PS3      Shooter  75.14
## 212      PS4      Shooter  33.15
## 213      PSP      Shooter   5.39
## 214      PSV      Shooter   1.76
## 215      SAT      Shooter   0.00
## 216     SNES      Shooter   0.89
## 217     TG16      Shooter   0.00
## 218      Wii      Shooter   6.82
## 219     WiiU      Shooter   1.71
## 220     X360      Shooter  76.59
## 221       XB      Shooter  15.25
## 222     XOne      Shooter  15.27
## 223     2600   Simulation   0.02
## 224      3DO   Simulation   0.00
## 225      3DS   Simulation   7.93
## 226       DC   Simulation   0.00
## 227       DS   Simulation  36.51
## 228       GB   Simulation   0.00
## 229      GBA   Simulation   1.43
## 230       GC   Simulation   1.74
## 231      N64   Simulation   1.57
## 232       PC   Simulation  27.37
## 233       PS   Simulation   4.34
## 234      PS2   Simulation  12.25
## 235      PS3   Simulation   3.78
## 236      PS4   Simulation   0.37
## 237      PSP   Simulation   2.09
## 238      PSV   Simulation   0.00
## 239      SAT   Simulation   0.00
## 240     SNES   Simulation   0.44
## 241      Wii   Simulation   7.83
## 242     WiiU   Simulation   0.04
## 243     X360   Simulation   4.03
## 244       XB   Simulation   1.43
## 245     XOne   Simulation   0.21
## 246     2600       Sports   0.19
## 247      3DS       Sports   2.18
## 248       DC       Sports   0.10
## 249       DS       Sports   7.89
## 250       GB       Sports   1.46
## 251      GBA       Sports   3.79
## 252       GC       Sports   4.78
## 253      GEN       Sports   0.39
## 254      N64       Sports   5.43
## 255      NES       Sports   2.12
## 256       NG       Sports   0.00
## 257       PC       Sports  10.05
## 258       PS       Sports  31.75
## 259      PS2       Sports  69.96
## 260      PS3       Sports  48.02
## 261      PS4       Sports  22.88
## 262      PSP       Sports  11.85
## 263      PSV       Sports   1.72
## 264      SAT       Sports   0.00
## 265     SNES       Sports   0.29
## 266      Wii       Sports  94.99
## 267     WiiU       Sports   0.94
## 268     X360       Sports  37.50
## 269       XB       Sports  10.90
## 270     XOne       Sports   7.67
## 271      3DS     Strategy   0.35
## 272       DS     Strategy   2.54
## 273       GB     Strategy   0.73
## 274      GBA     Strategy   1.31
## 275       GC     Strategy   0.62
## 276      GEN     Strategy   0.00
## 277      N64     Strategy   1.70
## 278       PC     Strategy  22.28
## 279       PS     Strategy   5.18
## 280      PS2     Strategy   2.38
## 281      PS3     Strategy   1.33
## 282      PS4     Strategy   0.15
## 283      PSP     Strategy   2.23
## 284      PSV     Strategy   0.05
## 285      SAT     Strategy   0.00
## 286      SCD     Strategy   0.00
## 287     SNES     Strategy   0.00
## 288      Wii     Strategy   0.79
## 289     WiiU     Strategy   0.35
## 290       WS     Strategy   0.00
## 291     X360     Strategy   2.64
## 292       XB     Strategy   0.61
## 293     XOne     Strategy   0.10
aggregate(EU_Sales,by=list(Platform = Platform,Publisher = Publisher),sum)
##      Platform                              Publisher      x
## 1          DS                        10TACLE Studios   0.03
## 2         PS2                        10TACLE Studios   0.01
## 3          PC                             1C Company   0.07
## 4        2600           20th Century Fox Video Games   0.10
## 5          PC                                 2D Boy   0.03
## 6          GC                                    3DO   0.00
## 7         N64                                    3DO   0.37
## 8          PS                                    3DO   1.91
## 9         PS2                                    3DO   0.74
## 10         XB                                    3DO   0.02
## 11       X360                                49Games   0.04
## 12        3DS                              505 Games   0.14
## 13         DS                              505 Games   4.90
## 14         PC                              505 Games   0.15
## 15        PS2                              505 Games   0.78
## 16        PS3                              505 Games   2.00
## 17        PS4                              505 Games   0.78
## 18        PSP                              505 Games   0.07
## 19        PSV                              505 Games   0.05
## 20        Wii                              505 Games   4.61
## 21       WiiU                              505 Games   0.04
## 22       X360                              505 Games   2.57
## 23         XB                              505 Games   0.01
## 24       XOne                              505 Games   0.33
## 25        3DS                                    5pb   0.00
## 26        PS2                                    5pb   0.00
## 27        PS3                                    5pb   0.00
## 28        PS4                                    5pb   0.00
## 29        PSP                                    5pb   0.00
## 30        PSV                                    5pb   0.00
## 31       X360                                    5pb   0.00
## 32       XOne                                    5pb   0.00
## 33         DS                               7G//AMES   0.02
## 34        Wii                               7G//AMES   0.04
## 35         PS                             989 Sports   0.14
## 36         PS                            989 Studios   3.30
## 37        PS3                               Abylight   0.00
## 38         DC                  Acclaim Entertainment   0.00
## 39        GBA                  Acclaim Entertainment   0.27
## 40         GC                  Acclaim Entertainment   0.69
## 41        GEN                  Acclaim Entertainment   0.41
## 42        N64                  Acclaim Entertainment   2.02
## 43         PC                  Acclaim Entertainment   0.00
## 44         PS                  Acclaim Entertainment   5.81
## 45        PS2                  Acclaim Entertainment   5.90
## 46        SAT                  Acclaim Entertainment   0.00
## 47       SNES                  Acclaim Entertainment   0.96
## 48         XB                  Acclaim Entertainment   0.69
## 49         PS                               Accolade   0.34
## 50        3DS                            Ackkstudios   0.00
## 51         DS                            Ackkstudios   0.00
## 52        PS3                            Ackkstudios   0.00
## 53        PSP                            Ackkstudios   0.00
## 54        Wii                            Ackkstudios   0.04
## 55        3DS                                Acquire   0.00
## 56        PS2                                Acquire   0.00
## 57        PS3                                Acquire   0.00
## 58        PS4                                Acquire   0.00
## 59        PSP                                Acquire   0.00
## 60       2600                             Activision   1.08
## 61        3DS                             Activision   1.36
## 62         DC                             Activision   0.00
## 63         DS                             Activision   7.98
## 64         GB                             Activision   0.38
## 65        GBA                             Activision   4.02
## 66         GC                             Activision   2.76
## 67        N64                             Activision   1.28
## 68         PC                             Activision  25.77
## 69         PS                             Activision  10.60
## 70        PS2                             Activision  22.25
## 71        PS3                             Activision  46.68
## 72        PS4                             Activision  16.41
## 73        PSP                             Activision   3.15
## 74        PSV                             Activision   0.57
## 75        Wii                             Activision  15.07
## 76       WiiU                             Activision   1.26
## 77       X360                             Activision  39.99
## 78         XB                             Activision   8.29
## 79       XOne                             Activision   6.63
## 80         PC                    Activision Blizzard   0.36
## 81        GBA                       Activision Value   0.02
## 82         GC                       Activision Value   0.01
## 83         PS                       Activision Value   0.08
## 84        PS2                       Activision Value   0.70
## 85        PS3                       Activision Value   0.00
## 86        PSP                       Activision Value   0.00
## 87        Wii                       Activision Value   0.00
## 88       X360                       Activision Value   0.01
## 89         XB                       Activision Value   0.06
## 90         PS                       Adeline Software   0.07
## 91         PC                               Aerosoft   0.02
## 92        3DS                 Agatsuma Entertainment   0.00
## 93        GBA                 Agatsuma Entertainment   0.02
## 94         PS                                 Agetec   0.06
## 95        PS2                                 Agetec   0.52
## 96        PSP                                 Agetec   0.00
## 97        3DS                            Aksys Games   0.00
## 98         DS                            Aksys Games   0.00
## 99        PS3                            Aksys Games   0.00
## 100       PS4                            Aksys Games   0.00
## 101       PSV                            Aksys Games   0.01
## 102        PC                   Alawar Entertainment   0.04
## 103       3DS                              Alchemist   0.00
## 104        DS                              Alchemist   0.00
## 105       PS2                              Alchemist   0.46
## 106       PS3                              Alchemist   0.00
## 107       PSP                              Alchemist   0.00
## 108      X360                              Alchemist   0.00
## 109        PC                   Alternative Software   0.02
## 110       PS3                   Alternative Software   0.04
## 111       PS4                   Alternative Software   0.03
## 112       Wii                   Alternative Software   0.06
## 113      X360                   Alternative Software   0.02
## 114      XOne                   Alternative Software   0.01
## 115       GBA                                 Altron   0.02
## 116        DS                                 Alvion   0.00
## 117        PS                     American Softworks   0.09
## 118      SNES                          Angel Studios   0.00
## 119      2600                        Answer Software   0.03
## 120        DS                         AQ Interactive   0.01
## 121       PS2                         AQ Interactive   0.05
## 122       PSP                         AQ Interactive   0.00
## 123        PS                              Aqua Plus   0.00
## 124       PS2                              Aqua Plus   0.00
## 125       PS3                              Aqua Plus   0.00
## 126       PS4                              Aqua Plus   0.00
## 127       PSP                              Aqua Plus   0.00
## 128       PSV                              Aqua Plus   0.00
## 129        PS                                  Aques   0.00
## 130       3DS                       Arc System Works   0.00
## 131        DS                       Arc System Works   0.00
## 132       PS3                       Arc System Works   0.00
## 133       PS4                       Arc System Works   0.00
## 134       PSP                       Arc System Works   0.00
## 135       PSV                       Arc System Works   0.00
## 136       GEN                    Arena Entertainment   0.88
## 137       PS2                                   Aria   0.00
## 138        DS                                  Arika   0.00
## 139       PS2                                  Arika   0.03
## 140       3DS                                ArtDink   0.00
## 141        DS                                ArtDink   0.00
## 142        PS                                ArtDink   0.05
## 143       PS2                                ArtDink   0.00
## 144       PSP                                ArtDink   0.00
## 145        PS                             Aruze Corp   0.00
## 146        PS                              ASC Games   0.77
## 147        PC                  Ascaron Entertainment   0.01
## 148        PC             Ascaron Entertainment GmbH   0.09
## 149        GB                    ASCII Entertainment   0.00
## 150       N64                    ASCII Entertainment   0.01
## 151        PS                    ASCII Entertainment   0.43
## 152       PS2                    ASCII Entertainment   0.00
## 153       SAT                    ASCII Entertainment   0.00
## 154      SNES                    ASCII Entertainment   0.00
## 155        DS                      ASCII Media Works   0.00
## 156       PS2                      ASCII Media Works   0.00
## 157       PSP                      ASCII Media Works   0.00
## 158       PSV                      ASCII Media Works   0.00
## 159       PSP                                 Asgard   0.00
## 160       PSV                                 Asgard   0.00
## 161       SAT                                    ASK   0.00
## 162        PS                Asmik Ace Entertainment   0.00
## 163       PS2                Asmik Ace Entertainment   0.00
## 164      SNES                             Asmik Corp   0.00
## 165        DS                                  Aspyr   0.00
## 166       GBA                                  Aspyr   0.01
## 167        PC                                  Aspyr   0.03
## 168      X360                                  Aspyr   0.00
## 169        DS                               Astragon   0.28
## 170        PC                               Astragon   0.04
## 171       3DS                   Asylum Entertainment   0.06
## 172        DS                   Asylum Entertainment   0.21
## 173       Wii                   Asylum Entertainment   0.16
## 174      2600                                  Atari   2.86
## 175       3DS                                  Atari   0.00
## 176        DS                                  Atari   0.23
## 177       GBA                                  Atari   3.37
## 178        GC                                  Atari   1.37
## 179        PC                                  Atari   0.82
## 180        PS                                  Atari   3.55
## 181       PS2                                  Atari   8.44
## 182       PS3                                  Atari   0.93
## 183       PSP                                  Atari   0.47
## 184       Wii                                  Atari   1.46
## 185      X360                                  Atari   1.67
## 186        XB                                  Atari   1.95
## 187       N64                                 Athena   0.00
## 188       PS2                                 Athena   0.00
## 189       3DS                                  Atlus   0.14
## 190        DS                                  Atlus   0.00
## 191       GBA                                  Atlus   0.05
## 192        GC                                  Atlus   0.01
## 193       N64                                  Atlus   0.06
## 194        PS                                  Atlus   0.12
## 195       PS2                                  Atlus   0.13
## 196       PS3                                  Atlus   0.13
## 197       PS4                                  Atlus   0.00
## 198       PSP                                  Atlus   0.03
## 199       PSV                                  Atlus   0.37
## 200       SAT                                  Atlus   0.00
## 201      SNES                                  Atlus   0.00
## 202      WiiU                                  Atlus   0.03
## 203      X360                                  Atlus   0.03
## 204        XB                                  Atlus   0.00
## 205      2600                     Avalon Interactive   0.01
## 206        PS                     Avalon Interactive   0.04
## 207       PS2                     Avalon Interactive   0.05
## 208        XB                     Avalon Interactive   0.02
## 209        DS                              Avanquest   1.48
## 210        PC                              Avanquest   0.06
## 211       PS4                              Avanquest   0.04
## 212       Wii                              Avanquest   0.04
## 213       3DS                     Avanquest Software   0.04
## 214        DS                     Avanquest Software   0.05
## 215        PC                     Avanquest Software   0.05
## 216       PS3                     Avanquest Software   0.25
## 217      X360                     Avanquest Software   0.14
## 218        PS                                  Axela   0.00
## 219       GBA                     BAM! Entertainment   0.58
## 220        GC                     BAM! Entertainment   0.08
## 221       N64                     BAM! Entertainment   0.03
## 222        PS                     BAM! Entertainment   0.14
## 223       PS2                     BAM! Entertainment   0.55
## 224        XB                     BAM! Entertainment   0.07
## 225        DS                              Banpresto   0.00
## 226        GB                              Banpresto   0.00
## 227       GBA                              Banpresto   0.04
## 228       N64                              Banpresto   0.00
## 229        PS                              Banpresto   0.03
## 230       PS2                              Banpresto   0.05
## 231       PSP                              Banpresto   0.00
## 232       SAT                              Banpresto   0.00
## 233      SNES                              Banpresto   0.00
## 234      X360                              Banpresto   0.08
## 235        DS                                Benesse   0.00
## 236        PS                               Berkeley   0.01
## 237        PC                     Bethesda Softworks   5.66
## 238       PS2                     Bethesda Softworks   0.75
## 239       PS3                     Bethesda Softworks   7.67
## 240       PS4                     Bethesda Softworks   6.66
## 241       Wii                     Bethesda Softworks   0.06
## 242      X360                     Bethesda Softworks   7.35
## 243        XB                     Bethesda Softworks   0.06
## 244      XOne                     Bethesda Softworks   2.52
## 245       3DS                    Big Ben Interactive   0.02
## 246        DS                    Big Ben Interactive   0.00
## 247       PS2                    Big Ben Interactive   0.03
## 248       Wii                    Big Ben Interactive   0.08
## 249        PC                         Big Fish Games   0.04
## 250       PS3                     Bigben Interactive   0.22
## 251       PS4                     Bigben Interactive   0.15
## 252       PSV                     Bigben Interactive   0.11
## 253      X360                     Bigben Interactive   0.08
## 254      XOne                     Bigben Interactive   0.06
## 255        PC                      bitComposer Games   0.12
## 256       PS3                      bitComposer Games   0.06
## 257      X360                      bitComposer Games   0.02
## 258        DS                       Black Bean Games   0.00
## 259        PC                       Black Bean Games   0.04
## 260       PS2                       Black Bean Games   0.05
## 261       PS3                       Black Bean Games   0.77
## 262       PSP                       Black Bean Games   0.00
## 263       Wii                       Black Bean Games   0.15
## 264      X360                       Black Bean Games   0.55
## 265       PS2                      Black Label Games   0.46
## 266        DS               Blast! Entertainment Ltd   0.00
## 267       PS2               Blast! Entertainment Ltd   0.06
## 268       Wii               Blast! Entertainment Ltd   0.05
## 269        PC                              Blue Byte   0.03
## 270        PS          BMG Interactive Entertainment   0.44
## 271        PC                    Bohemia Interactive   0.10
## 272      2600                                   Bomb   0.01
## 273       PSP                               Boost On   0.00
## 274       NES                                    BPS   0.00
## 275      SNES                                    BPS   0.00
## 276        DS                    Brash Entertainment   0.00
## 277       PS2                    Brash Entertainment   0.21
## 278       Wii                    Brash Entertainment   0.00
## 279      X360                    Brash Entertainment   0.00
## 280        DS                               Broccoli   0.00
## 281       PS2                               Broccoli   0.00
## 282       PSP                               Broccoli   0.00
## 283       PSV                               Broccoli   0.00
## 284       PSP                              BushiRoad   0.00
## 285       3DS                                 Capcom   1.02
## 286        DC                                 Capcom   0.00
## 287        DS                                 Capcom   0.58
## 288        GB                                 Capcom   0.23
## 289       GBA                                 Capcom   0.67
## 290        GC                                 Capcom   1.51
## 291       GEN                                 Capcom   0.00
## 292       N64                                 Capcom   0.03
## 293       NES                                 Capcom   1.56
## 294        PC                                 Capcom   0.44
## 295        PS                                 Capcom   2.62
## 296       PS2                                 Capcom   9.38
## 297       PS3                                 Capcom   8.43
## 298       PS4                                 Capcom   0.88
## 299       PSP                                 Capcom   0.95
## 300       PSV                                 Capcom   0.19
## 301       SAT                                 Capcom   0.00
## 302      SNES                                 Capcom   2.37
## 303       Wii                                 Capcom   1.90
## 304      WiiU                                 Capcom   0.08
## 305      X360                                 Capcom   6.02
## 306        XB                                 Capcom   0.28
## 307      XOne                                 Capcom   0.08
## 308        DS                                   Cave   0.00
## 309      X360                                   Cave   0.00
## 310      2600                        CBS Electronics   0.02
## 311        PC                                    CCP   0.19
## 312        DS             CDV Software Entertainment   0.03
## 313        PC             CDV Software Entertainment   0.03
## 314       Wii             CDV Software Entertainment   0.00
## 315       3DS                               ChunSoft   0.00
## 316        DS                               ChunSoft   0.00
## 317        GB                               ChunSoft   0.00
## 318       N64                               ChunSoft   0.00
## 319        PS                               ChunSoft   0.00
## 320       PS2                               ChunSoft   0.00
## 321       PSP                               ChunSoft   0.00
## 322       PSV                               ChunSoft   0.00
## 323       SAT                               ChunSoft   0.00
## 324      SNES                               ChunSoft   0.00
## 325      X360                               ChunSoft   0.00
## 326        DS                       City Interactive   0.24
## 327        PC                       City Interactive   0.63
## 328       PS3                       City Interactive   0.60
## 329       Wii                       City Interactive   0.16
## 330      X360                       City Interactive   0.64
## 331       PS3       Cloud Imperium Games Corporation   0.00
## 332      X360       Cloud Imperium Games Corporation   0.00
## 333        PS                         Coconuts Japan   0.01
## 334      SNES                         Coconuts Japan   0.00
## 335       3DS                            Codemasters   0.08
## 336        DS                            Codemasters   0.09
## 337       GBA                            Codemasters   0.07
## 338        GC                            Codemasters   0.01
## 339       N64                            Codemasters   0.03
## 340        PC                            Codemasters   1.05
## 341        PS                            Codemasters   7.83
## 342       PS2                            Codemasters   3.18
## 343       PS3                            Codemasters   7.42
## 344       PS4                            Codemasters   0.89
## 345       PSP                            Codemasters   0.54
## 346       PSV                            Codemasters   0.08
## 347       Wii                            Codemasters   1.31
## 348      X360                            Codemasters   5.58
## 349        XB                            Codemasters   0.23
## 350      XOne                            Codemasters   0.30
## 351        PC                     Codemasters Online   0.02
## 352        DS                      CokeM Interactive   0.00
## 353      2600                                 Coleco   0.17
## 354       PS2                                Comfort   0.00
## 355       PSP                                Comfort   0.00
## 356        DS                               Commseed   0.00
## 357       N64                                Compile   0.00
## 358        PS                                Compile   0.00
## 359       SAT                                Compile   0.00
## 360      SNES                                Compile   0.00
## 361       PS3                          Compile Heart   0.03
## 362       PS4                          Compile Heart   0.00
## 363       PSP                          Compile Heart   0.00
## 364       PSV                          Compile Heart   0.00
## 365      X360                          Compile Heart   0.00
## 366        DS               Conspiracy Entertainment   0.00
## 367       GBA               Conspiracy Entertainment   0.01
## 368        PS               Conspiracy Entertainment   0.10
## 369       PS2               Conspiracy Entertainment   0.03
## 370       PS3               Conspiracy Entertainment   0.00
## 371       PSP               Conspiracy Entertainment   0.00
## 372       Wii               Conspiracy Entertainment   0.00
## 373      X360               Conspiracy Entertainment   0.00
## 374        PS                       Core Design Ltd.   0.11
## 375      2600                           CPG Products   0.03
## 376       3DS                    Crave Entertainment   0.00
## 377        DS                    Crave Entertainment   0.00
## 378       GBA                    Crave Entertainment   0.17
## 379        GC                    Crave Entertainment   0.03
## 380       N64                    Crave Entertainment   0.12
## 381        PS                    Crave Entertainment   0.45
## 382       PS2                    Crave Entertainment   0.84
## 383       PS3                    Crave Entertainment   0.00
## 384       PSP                    Crave Entertainment   0.00
## 385       Wii                    Crave Entertainment   0.01
## 386      X360                    Crave Entertainment   0.00
## 387        XB                    Crave Entertainment   0.25
## 388        DS                          Creative Core   0.00
## 389        PC                            Crimson Cow   0.06
## 390        PS                       Crystal Dynamics   0.65
## 391        PS                                CTO SpA   0.34
## 392        DS                          Culture Brain   0.00
## 393      SNES                          Culture Brain   0.00
## 394        PS                     Culture Publishers   0.03
## 395       PS2                             CyberFront   0.00
## 396       PSP                             CyberFront   0.00
## 397       PSV                             CyberFront   0.00
## 398      X360                             CyberFront   0.00
## 399       PSV                                Cygames   0.00
## 400       3DS                            D3Publisher   0.17
## 401        DS                            D3Publisher   1.46
## 402       GBA                            D3Publisher   0.02
## 403        GC                            D3Publisher   0.03
## 404        PS                            D3Publisher   0.27
## 405       PS2                            D3Publisher   0.28
## 406       PS3                            D3Publisher   0.40
## 407       PS4                            D3Publisher   0.00
## 408       PSP                            D3Publisher   0.67
## 409       PSV                            D3Publisher   0.02
## 410       Wii                            D3Publisher   1.11
## 411      WiiU                            D3Publisher   0.04
## 412      X360                            D3Publisher   0.54
## 413        PC                               Daedalic   0.24
## 414        PC                 Daedalic Entertainment   0.11
## 415       PS2                                  Daito   0.00
## 416       PSP                                  Daito   0.00
## 417      2600                               Data Age   0.04
## 418       Wii                Data Design Interactive   0.01
## 419       SAT                              Data East   0.00
## 420      SNES                              Data East   0.00
## 421       PS2                         Datam Polystar   0.00
## 422       3DS                            Deep Silver   0.02
## 423        DS                            Deep Silver   0.10
## 424        PC                            Deep Silver   1.40
## 425       PS3                            Deep Silver   2.73
## 426       PS4                            Deep Silver   0.84
## 427       PSP                            Deep Silver   0.02
## 428       Wii                            Deep Silver   0.85
## 429      WiiU                            Deep Silver   0.01
## 430      X360                            Deep Silver   2.57
## 431        XB                            Deep Silver   0.10
## 432      XOne                            Deep Silver   0.32
## 433        DS              Destination Software, Inc   0.00
## 434       GBA              Destination Software, Inc   0.08
## 435        DS                              Destineer   0.00
## 436        PC                              Destineer   0.00
## 437       PS2                              Destineer   0.01
## 438       PSP                              Destineer   0.00
## 439       Wii                              Destineer   0.04
## 440       Wii                            Detn8 Games   0.00
## 441        PC                       Devolver Digital   0.02
## 442       PS4                       Devolver Digital   0.02
## 443        DS                        DHM Interactive   0.00
## 444       PSP                        DHM Interactive   0.00
## 445       PS2                               DigiCube   0.00
## 446       3DS             Disney Interactive Studios   0.79
## 447        DS             Disney Interactive Studios  10.95
## 448       GBA             Disney Interactive Studios   1.93
## 449        GC             Disney Interactive Studios   0.12
## 450        PC             Disney Interactive Studios   0.04
## 451       PS2             Disney Interactive Studios   1.50
## 452       PS3             Disney Interactive Studios   4.43
## 453       PS4             Disney Interactive Studios   0.60
## 454       PSP             Disney Interactive Studios   0.77
## 455       PSV             Disney Interactive Studios   0.11
## 456       Wii             Disney Interactive Studios   8.73
## 457      WiiU             Disney Interactive Studios   0.77
## 458      X360             Disney Interactive Studios   3.52
## 459        XB             Disney Interactive Studios   0.10
## 460      XOne             Disney Interactive Studios   0.28
## 461       PSP                                 Dorart   0.00
## 462       PSV                        dramatic create   0.00
## 463        DS               DreamCatcher Interactive   0.00
## 464        PC               DreamCatcher Interactive   0.06
## 465       PS2               DreamCatcher Interactive   0.05
## 466        XB               DreamCatcher Interactive   0.03
## 467        PS                 DreamWorks Interactive   0.05
## 468        DS                              DSI Games   0.00
## 469       GBA                              DSI Games   0.04
## 470       3DS                      DTP Entertainment   0.08
## 471        DS                      DTP Entertainment   0.11
## 472       GBA                      DTP Entertainment   0.06
## 473        PC                      DTP Entertainment   0.46
## 474       PS2                      DTP Entertainment   0.00
## 475       PS3                      DTP Entertainment   0.17
## 476       Wii                      DTP Entertainment   0.34
## 477      X360                      DTP Entertainment   0.21
## 478       PS4               Dusenberry Martin Racing   0.00
## 479      XOne               Dusenberry Martin Racing   0.00
## 480       PS3                               EA Games   0.06
## 481        DS                       Easy Interactive   0.03
## 482       PS2                                  Ecole   0.00
## 483       PSP                                   Edia   0.00
## 484        DC                      Eidos Interactive   0.23
## 485        DS                      Eidos Interactive   0.45
## 486        GB                      Eidos Interactive   0.00
## 487       GBA                      Eidos Interactive   0.31
## 488        GC                      Eidos Interactive   0.48
## 489        PC                      Eidos Interactive   5.08
## 490        PS                      Eidos Interactive  13.64
## 491       PS2                      Eidos Interactive   6.80
## 492       PS3                      Eidos Interactive   2.84
## 493       PSP                      Eidos Interactive   0.51
## 494       Wii                      Eidos Interactive   1.17
## 495      X360                      Eidos Interactive   2.52
## 496        XB                      Eidos Interactive   1.60
## 497       3DS                        Electronic Arts   1.49
## 498        DS                        Electronic Arts  10.57
## 499        GB                        Electronic Arts   0.62
## 500       GBA                        Electronic Arts   4.17
## 501        GC                        Electronic Arts   6.14
## 502       N64                        Electronic Arts   2.92
## 503        PC                        Electronic Arts  35.81
## 504        PS                        Electronic Arts  30.22
## 505       PS2                        Electronic Arts  68.64
## 506       PS3                        Electronic Arts  68.73
## 507       PS4                        Electronic Arts  27.98
## 508       PSP                        Electronic Arts  12.37
## 509       PSV                        Electronic Arts   1.89
## 510       SAT                        Electronic Arts   0.00
## 511       Wii                        Electronic Arts  20.68
## 512      WiiU                        Electronic Arts   0.49
## 513      X360                        Electronic Arts  54.39
## 514        XB                        Electronic Arts  13.78
## 515      XOne                        Electronic Arts  10.38
## 516        PS                 Electronic Arts Victor   0.17
## 517       SAT                                    Elf   0.00
## 518        PS                                  Elite   0.03
## 519        DS                     Empire Interactive   0.24
## 520       GBA                     Empire Interactive   0.03
## 521        GC                     Empire Interactive   0.05
## 522        PC                     Empire Interactive   0.07
## 523        PS                     Empire Interactive   0.73
## 524       PS2                     Empire Interactive   2.17
## 525       PSP                     Empire Interactive   0.19
## 526      X360                     Empire Interactive   0.03
## 527        XB                     Empire Interactive   0.26
## 528        GC                                 Encore   0.00
## 529        PC                                 Encore   0.02
## 530        PS                                 Encore   0.01
## 531        XB                                 Encore   0.00
## 532        GB                       Enix Corporation   0.00
## 533       GBA                       Enix Corporation   0.00
## 534       N64                       Enix Corporation   0.00
## 535       NES                       Enix Corporation   0.00
## 536        PS                       Enix Corporation   0.23
## 537       PS2                       Enix Corporation   0.08
## 538      SNES                       Enix Corporation   0.00
## 539        DS                      Enjoy Gaming ltd.   0.00
## 540        DS                             Enterbrain   0.00
## 541       GBA                             Enterbrain   0.00
## 542        PS                             Enterbrain   0.00
## 543       PS2                             Enterbrain   0.10
## 544       PSP                             Enterbrain   0.00
## 545        PS              EON Digital Entertainment   0.00
## 546       PS4                             Epic Games   0.00
## 547       N64                                  Epoch   0.00
## 548      SNES                                  Epoch   0.00
## 549        DS                                 Ertain   0.00
## 550       GBA                                    ESP   0.00
## 551        PS                                    ESP   0.02
## 552       SAT                                    ESP   0.00
## 553       PS2                        Essential Games   0.00
## 554        PS                        Evolution Games   0.00
## 555        PC                          Evolved Games   0.00
## 556       PS2                          Evolved Games   0.03
## 557       PS3                          Evolved Games   0.00
## 558      X360                          Evolved Games   0.01
## 559        XB                          Evolved Games   0.00
## 560       3DS                   Excalibur Publishing   0.12
## 561        PC                   Excalibur Publishing   0.12
## 562       PSV                        Experience Inc.   0.00
## 563       3DS            Extreme Entertainment Group   0.00
## 564       PS3                     Falcom Corporation   0.00
## 565       PSP                     Falcom Corporation   0.00
## 566       PSV                     Falcom Corporation   0.00
## 567       PS3                                 Fields   0.00
## 568       GBA                       Flashpoint Games   0.01
## 569       Wii                       Flashpoint Games   0.00
## 570       PS2                            Flight-Plan   0.00
## 571        DS                 Focus Home Interactive   0.47
## 572        PC                 Focus Home Interactive   2.74
## 573       PS3                 Focus Home Interactive   0.42
## 574       PS4                 Focus Home Interactive   0.44
## 575       PSV                 Focus Home Interactive   0.00
## 576       Wii                 Focus Home Interactive   0.15
## 577      X360                 Focus Home Interactive   0.40
## 578      XOne                 Focus Home Interactive   0.07
## 579        PC                       Focus Multimedia   0.05
## 580       PSP                                 fonfun   0.00
## 581        DS                    Foreign Media Games   0.30
## 582        DC                              Fortyfive   0.00
## 583       N64                        Fox Interactive   0.05
## 584        PS                        Fox Interactive   3.14
## 585        DS                          From Software   0.00
## 586        PS                          From Software   0.18
## 587       PS2                          From Software   0.02
## 588       PS3                          From Software   0.00
## 589       PSP                          From Software   0.00
## 590        XB                          From Software   0.01
## 591        PS                                   Fuji   0.00
## 592       3DS                           Funbox Media   0.03
## 593       PS3                           Funbox Media   0.01
## 594       PSV                           Funbox Media   0.01
## 595       Wii                           Funbox Media   0.08
## 596        PC                                 Funcom   0.10
## 597        PS                                FunSoft   0.05
## 598        DS                                 Funsta   0.02
## 599       PSP                                 Funsta   0.00
## 600       Wii                                 Funsta   0.03
## 601       3DS                                  FuRyu   0.02
## 602        DS                                  FuRyu   0.00
## 603       PSP                                  FuRyu   0.00
## 604       PSV                                  FuRyu   0.00
## 605       PS4                      FuRyu Corporation   0.00
## 606      X360                                  G.Rev   0.00
## 607       SAT                                   Gaga   0.00
## 608        PS                 Gainax Network Systems   0.00
## 609        DS                                 Gakken   0.00
## 610       GEN                              Game Arts   0.00
## 611        DS                           Game Factory   0.05
## 612       GBA                           Game Factory   0.09
## 613       PS2                           Game Factory   0.03
## 614       PSP                           Game Factory   0.00
## 615       Wii                           Game Factory   0.03
## 616        DS                              Game Life   0.13
## 617       PS3                             Gamebridge   0.08
## 618      X360                             Gamebridge   0.05
## 619        DS                               Gamecock   0.00
## 620        PC                               Gamecock   0.02
## 621       PS3                               Gamecock   0.00
## 622      X360                               Gamecock   0.00
## 623        DS                               Gameloft   0.00
## 624        DS                 GameMill Entertainment   0.04
## 625       Wii                 GameMill Entertainment   0.00
## 626      X360                 GameMill Entertainment   0.00
## 627       N64                                GameTek   0.02
## 628        PC                Gathering of Developers   0.14
## 629       PS2                Gathering of Developers   0.24
## 630        XB                Gathering of Developers   0.09
## 631        PS                  General Entertainment   0.00
## 632       3DS                                  Genki   0.00
## 633        DC                                  Genki   0.00
## 634        DS                                  Genki   0.00
## 635       PS2                                  Genki   0.34
## 636       PS3                                  Genki   0.00
## 637       PSP                                  Genki   0.00
## 638        XB                                  Genki   0.01
## 639        DS                            Genterprise   0.00
## 640       3DS                             Ghostlight   0.01
## 641        DS                             Ghostlight   0.05
## 642       PS2                             Ghostlight   0.19
## 643       PS3                             Ghostlight   0.03
## 644       PSP                             Ghostlight   0.09
## 645       Wii                             Ghostlight   0.09
## 646       PSV                                   Giga   0.00
## 647       PSP                                 Giza10   0.00
## 648       SAT                                  Glams   0.00
## 649        DS                 Global A Entertainment   0.00
## 650       PSP                 Global A Entertainment   0.00
## 651       GBA                            Global Star   0.11
## 652        GC                            Global Star   0.11
## 653       PS2                            Global Star   1.18
## 654        XB                            Global Star   0.31
## 655       PS2                            GN Software   0.00
## 656       PSP                            GN Software   0.00
## 657        PC                                    GOA   0.02
## 658       GBA                           Gotham Games   0.16
## 659        GC                           Gotham Games   0.01
## 660        PS                           Gotham Games   0.16
## 661       PS2                           Gotham Games   0.86
## 662        XB                           Gotham Games   0.05
## 663        DS                               Graffiti   0.00
## 664       PSP                               Graffiti   0.00
## 665       Wii                               Graffiti   0.00
## 666       PSP                       Grand Prix Games   0.00
## 667        PC                 Graphsim Entertainment   0.02
## 668       N64                Gremlin Interactive Ltd   0.04
## 669        PS                Gremlin Interactive Ltd   0.33
## 670      X360                  Griffin International   0.00
## 671        XB                           Groove Games   0.02
## 672        DS                                    GSP   2.06
## 673        PC                                    GSP   0.03
## 674       Wii                                    GSP   0.07
## 675       N64                         GT Interactive   1.15
## 676        PS                         GT Interactive   7.34
## 677       3DS                                 GungHo   0.00
## 678        DS                                 GungHo   0.00
## 679       PS3                                 GungHo   0.01
## 680       PSP                                 GungHo   0.00
## 681       PSV                                 GungHo   0.01
## 682        DS                                   Gust   0.00
## 683        PS                                   Gust   0.00
## 684       PS2                                   Gust   0.05
## 685       PSP                                   Gust   0.00
## 686       PSV                                   Gust   0.00
## 687       PS2                              Hackberry   0.00
## 688       NES                         HAL Laboratory   0.00
## 689        PS                    Hamster Corporation   0.11
## 690       PS2                    Hamster Corporation   0.00
## 691       3DS                               Happinet   0.00
## 692       PS4                 Harmonix Music Systems   0.05
## 693      XOne                 Harmonix Music Systems   0.04
## 694       GBA                     Hasbro Interactive   0.00
## 695       N64                     Hasbro Interactive   0.21
## 696        PC                     Hasbro Interactive   0.81
## 697        PS                     Hasbro Interactive   2.56
## 698        PC                      Havas Interactive   0.09
## 699        PC                           Headup Games   0.03
## 700        PS                           Hearty Robin   0.00
## 701        PS                                   Hect   0.00
## 702      SNES                                   Hect   0.00
## 703       PS4                            Hello Games   0.74
## 704        PC                        Her Interactive   0.00
## 705       GBA                        Hip Interactive   0.05
## 706       PS2                        Hip Interactive   0.01
## 707        XB                        Hip Interactive   0.03
## 708        DS                        HMH Interactive   0.03
## 709        PC                        HMH Interactive   0.08
## 710        PC           Home Entertainment Suppliers   0.04
## 711       PS3           Home Entertainment Suppliers   0.22
## 712      X360           Home Entertainment Suppliers   0.23
## 713        DS                   Hudson Entertainment   0.00
## 714       GBA                   Hudson Entertainment   0.04
## 715       N64                   Hudson Entertainment   0.01
## 716        PS                   Hudson Entertainment   0.00
## 717       PSP                   Hudson Entertainment   0.00
## 718       Wii                   Hudson Entertainment   0.00
## 719       3DS                            Hudson Soft   0.03
## 720        DS                            Hudson Soft   0.06
## 721       GBA                            Hudson Soft   0.00
## 722        GC                            Hudson Soft   0.02
## 723       N64                            Hudson Soft   0.22
## 724       NES                            Hudson Soft   0.09
## 725        NG                            Hudson Soft   0.00
## 726        PS                            Hudson Soft   0.01
## 727       PS2                            Hudson Soft   0.00
## 728       PS3                            Hudson Soft   0.00
## 729       PSP                            Hudson Soft   0.00
## 730       SAT                            Hudson Soft   0.00
## 731      SNES                            Hudson Soft   0.00
## 732      TG16                            Hudson Soft   0.00
## 733       Wii                            Hudson Soft   0.46
## 734      X360                            Hudson Soft   0.04
## 735        XB                            Hudson Soft   0.01
## 736        PS                    Human Entertainment   0.04
## 737       SAT                    Human Entertainment   0.00
## 738      SNES                    Human Entertainment   0.00
## 739       PSV                                  HuneX   0.00
## 740        PC                    Iceberg Interactive   0.05
## 741        PC                            id Software   0.00
## 742        DS                           Idea Factory   0.00
## 743       PS2                           Idea Factory   0.00
## 744       PS3                           Idea Factory   0.00
## 745       PS4                           Idea Factory   0.00
## 746       PSP                           Idea Factory   0.00
## 747       PSV                           Idea Factory   0.05
## 748      X360                           Idea Factory   0.00
## 749       PS4             Idea Factory International   0.00
## 750       PSV             Idea Factory International   0.08
## 751       3DS                           IE Institute   0.00
## 752        DS                           IE Institute   0.00
## 753        DS                 Ignition Entertainment   0.06
## 754       GBA                 Ignition Entertainment   0.07
## 755        GC                 Ignition Entertainment   0.02
## 756       PS2                 Ignition Entertainment   0.79
## 757       PS3                 Ignition Entertainment   0.08
## 758       PSP                 Ignition Entertainment   0.24
## 759       Wii                 Ignition Entertainment   0.01
## 760      X360                 Ignition Entertainment   0.05
## 761        XB                 Ignition Entertainment   0.04
## 762       PS2                     Illusion Softworks   0.27
## 763       SAT                                 Imadio   0.00
## 764       PSP                            Image Epoch   0.00
## 765       3DS                        imageepoch Inc.   0.00
## 766       3DO                             Imageworks   0.00
## 767      2600                                 Imagic   0.27
## 768        GB                              Imagineer   0.00
## 769       N64                              Imagineer   0.03
## 770        PS                              Imagineer   0.00
## 771       SAT                              Imagineer   0.00
## 772      SNES                              Imagineer   0.00
## 773      SNES                                   Imax   0.00
## 774       PS2                            Indie Games   0.07
## 775        DC                             Infogrames   0.00
## 776       GBA                             Infogrames   0.70
## 777        GC                             Infogrames   0.70
## 778       N64                             Infogrames   0.10
## 779        PC                             Infogrames   0.00
## 780        PS                             Infogrames   1.85
## 781       PS2                             Infogrames   1.04
## 782        XB                             Infogrames   0.21
## 783        PC                        Insomniac Games   0.00
## 784       PS4                        Insomniac Games   0.00
## 785      XOne                        Insomniac Games   0.00
## 786       PS2                           Interchannel   0.00
## 787       PS2                     Interchannel-Holon   0.00
## 788       3DS                              Intergrow   0.00
## 789       GBA                              Interplay   0.15
## 790       N64                              Interplay   0.08
## 791        PC                              Interplay   0.04
## 792        PS                              Interplay   1.36
## 793       PS2                              Interplay   0.52
## 794      SNES                              Interplay   0.00
## 795        XB                              Interplay   0.12
## 796        PS                  Interplay Productions   0.04
## 797       PS3             Interworks Unlimited, Inc.   0.00
## 798       3DS                           Inti Creates   0.00
## 799       PS4                  Introversion Software   0.01
## 800        PC                   inXile Entertainment   0.06
## 801       3DS              Irem Software Engineering   0.00
## 802        PS              Irem Software Engineering   0.01
## 803       PS2              Irem Software Engineering   0.00
## 804       PS3              Irem Software Engineering   0.00
## 805       PSP              Irem Software Engineering   0.00
## 806      2600                       ITT Family Games   0.02
## 807       PSP                              Ivolgamus   0.00
## 808        DS                                   iWin   0.05
## 809        DS                      Jack of All Games   0.00
## 810       GBA                      Jack of All Games   0.10
## 811        DS                                 Jaleco   0.00
## 812       GBA                                 Jaleco   0.00
## 813        GC                                 Jaleco   0.01
## 814        PS                                 Jaleco   0.27
## 815       PS2                                 Jaleco   0.09
## 816       SAT                                 Jaleco   0.00
## 817       Wii                                 Jaleco   0.00
## 818        XB                                 Jaleco   0.05
## 819       PS2                     Jester Interactive   0.29
## 820        GB                                Jorudan   0.00
## 821       GBA                                Jorudan   0.00
## 822        DS                     JoWood Productions   0.06
## 823        GC                     JoWood Productions   0.00
## 824        PC                     JoWood Productions   0.28
## 825       PS2                     JoWood Productions   0.03
## 826       Wii                     JoWood Productions   0.06
## 827      X360                     JoWood Productions   0.04
## 828        XB                     JoWood Productions   0.01
## 829        PC                            Just Flight   0.03
## 830        PS                                    JVC   0.34
## 831       SAT                                    JVC   0.00
## 832       3DS                         Kadokawa Games   0.00
## 833       PS3                         Kadokawa Games   0.00
## 834       PSP                         Kadokawa Games   0.00
## 835       PSV                         Kadokawa Games   0.00
## 836       3DS                        Kadokawa Shoten   0.00
## 837        DS                        Kadokawa Shoten   0.00
## 838        PS                        Kadokawa Shoten   0.31
## 839       PS2                        Kadokawa Shoten   0.00
## 840       PSP                        Kadokawa Shoten   0.00
## 841       PSV                        Kadokawa Shoten   0.00
## 842       SAT                        Kadokawa Shoten   0.00
## 843       Wii                        Kadokawa Shoten   0.00
## 844       PS3                            Kaga Create   0.00
## 845       PSP                            Kaga Create   0.00
## 846       PSV                            Kaga Create   0.00
## 847        PC                          Kalypso Media   0.54
## 848       PS3                          Kalypso Media   0.00
## 849       PS4                          Kalypso Media   0.21
## 850      X360                          Kalypso Media   0.31
## 851        DS                                  Kamui   0.00
## 852       PS2                            Kando Games   0.01
## 853       PSP                    Karin Entertainment   0.00
## 854       GBA                                  Kemco   0.02
## 855        GC                                  Kemco   0.05
## 856       N64                                  Kemco   0.22
## 857        PS                                  Kemco   0.05
## 858       PS2                                  Kemco   0.10
## 859      SNES                                  Kemco   0.00
## 860        XB                                  Kemco   0.05
## 861       PS2                                    KID   0.00
## 862       SAT                                    KID   0.00
## 863        DS                           Kids Station   0.00
## 864       GBA                           King Records   0.00
## 865       GBA                    Knowledge Adventure   0.16
## 866       Wii                    Knowledge Adventure   0.00
## 867       3DS                             Koch Media   0.04
## 868        DS                             Koch Media   0.22
## 869        PC                             Koch Media   0.12
## 870       PS2                             Koch Media   0.02
## 871       PS3                             Koch Media   0.35
## 872       PS4                             Koch Media   0.20
## 873       PSP                             Koch Media   0.14
## 874       Wii                             Koch Media   0.23
## 875      X360                             Koch Media   0.20
## 876      XOne                             Koch Media   0.08
## 877        PS               Kokopeli Digital Studios   0.01
## 878       3DO           Konami Digital Entertainment   0.00
## 879       3DS           Konami Digital Entertainment   0.49
## 880        DC           Konami Digital Entertainment   0.00
## 881        DS           Konami Digital Entertainment   0.59
## 882        GB           Konami Digital Entertainment   0.00
## 883       GBA           Konami Digital Entertainment   3.63
## 884        GC           Konami Digital Entertainment   0.48
## 885       GEN           Konami Digital Entertainment   0.00
## 886       N64           Konami Digital Entertainment   1.17
## 887       NES           Konami Digital Entertainment   0.70
## 888        PC           Konami Digital Entertainment   0.53
## 889        PS           Konami Digital Entertainment   5.50
## 890       PS2           Konami Digital Entertainment  23.39
## 891       PS3           Konami Digital Entertainment  11.96
## 892       PS4           Konami Digital Entertainment   3.03
## 893       PSP           Konami Digital Entertainment   5.41
## 894       PSV           Konami Digital Entertainment   0.24
## 895       SAT           Konami Digital Entertainment   0.00
## 896      SNES           Konami Digital Entertainment   0.06
## 897       Wii           Konami Digital Entertainment   4.70
## 898      X360           Konami Digital Entertainment   5.93
## 899        XB           Konami Digital Entertainment   1.33
## 900      XOne           Konami Digital Entertainment   0.55
## 901        XB                              Kool Kizz   0.01
## 902      SNES                                    KSS   0.00
## 903      SNES                                 Laguna   0.04
## 904        DS                     Legacy Interactive   0.00
## 905       GBA                             LEGO Media   0.06
## 906       N64                             LEGO Media   0.18
## 907        PC                             LEGO Media   0.01
## 908        PS                             LEGO Media   0.25
## 909       3DS                                Level 5   0.27
## 910        DS                                Level 5   0.00
## 911       PSP                                Level 5   0.00
## 912       PSV                                Level 5   0.00
## 913       Wii                                Level 5   0.00
## 914      WiiU                                Level 5   0.00
## 915        DS                  Lexicon Entertainment   0.00
## 916       3DS                            Licensed 4U   0.02
## 917        DS                            Licensed 4U   0.04
## 918        PC                 Lighthouse Interactive   0.01
## 919       GBA                           Liquid Games   0.07
## 920       3DS                           Little Orbit   0.38
## 921        DS                           Little Orbit   0.00
## 922       PS3                           Little Orbit   0.23
## 923       PS4                           Little Orbit   0.04
## 924       Wii                           Little Orbit   0.23
## 925      WiiU                           Little Orbit   0.07
## 926      X360                           Little Orbit   0.34
## 927      XOne                           Little Orbit   0.02
## 928        PS                                  Locus   0.00
## 929       GBA                              LSP Games   0.02
## 930       PS2                              LSP Games   0.02
## 931       3DS                              LucasArts   0.43
## 932        DS                              LucasArts   2.60
## 933       GBA                              LucasArts   0.02
## 934        GC                              LucasArts   1.15
## 935       N64                              LucasArts   0.05
## 936        PC                              LucasArts   1.65
## 937        PS                              LucasArts   1.84
## 938       PS2                              LucasArts   5.54
## 939       PS3                              LucasArts   3.12
## 940       PSP                              LucasArts   2.48
## 941       Wii                              LucasArts   4.30
## 942      X360                              LucasArts   2.98
## 943        XB                              LucasArts   0.47
## 944        GC                               Mad Catz   0.04
## 945      X360                               Mad Catz   0.00
## 946        XB                               Mad Catz   0.01
## 947        PS                        Magical Company   0.10
## 948       PS2                                  Magix   0.13
## 949       3DS                  Majesco Entertainment   0.00
## 950        DS                  Majesco Entertainment   0.21
## 951       GBA                  Majesco Entertainment   1.18
## 952       PS2                  Majesco Entertainment   0.04
## 953       PS3                  Majesco Entertainment   0.00
## 954       PSP                  Majesco Entertainment   0.00
## 955       Wii                  Majesco Entertainment   1.38
## 956      X360                  Majesco Entertainment   0.04
## 957        XB                  Majesco Entertainment   0.01
## 958      XOne                  Majesco Entertainment   0.05
## 959        PC                            Mamba Games   0.04
## 960       PSV                   Marvel Entertainment   0.00
## 961       3DS                Marvelous Entertainment   0.20
## 962       PSP                Marvelous Entertainment   0.00
## 963       PSV                Marvelous Entertainment   0.02
## 964       PSV                        Marvelous Games   0.00
## 965       3DS                  Marvelous Interactive   0.00
## 966        DS                  Marvelous Interactive   0.00
## 967       GBA                  Marvelous Interactive   0.03
## 968        GC                  Marvelous Interactive   0.05
## 969       PS2                  Marvelous Interactive   0.00
## 970       PS3                  Marvelous Interactive   0.00
## 971       PS4                  Marvelous Interactive   0.00
## 972       PSP                  Marvelous Interactive   0.01
## 973       PSV                  Marvelous Interactive   0.08
## 974       Wii                  Marvelous Interactive   0.00
## 975      X360                  Marvelous Interactive   0.00
## 976        PC                      Masque Publishing   0.00
## 977        DS                           Mastertronic   0.27
## 978        PC                           Mastertronic   0.14
## 979       PS2                           Mastertronic   0.01
## 980       Wii                           Mastertronic   0.01
## 981      X360                           Mastertronic   0.07
## 982       3DS                                Mastiff   0.00
## 983        DS                                Mastiff   0.00
## 984       GBA                                Mastiff   0.03
## 985        PC                                Mastiff   0.00
## 986       PS2                                Mastiff   0.02
## 987       Wii                                Mastiff   0.00
## 988        XB                                Mastiff   0.00
## 989      2600                     Mattel Interactive   0.15
## 990        PS                     Mattel Interactive   0.22
## 991        PS                               Max Five   0.02
## 992       3DS                   Maximum Family Games   0.00
## 993        PC                                  Maxis   0.86
## 994        PS                                  Maxis   0.46
## 995        PC                      MC2 Entertainment   0.02
## 996        XB                      MC2 Entertainment   0.01
## 997       PS2                    Media Entertainment   0.00
## 998        GB                          Media Factory   0.00
## 999       N64                          Media Factory   0.00
## 1000      GBA                            Media Rings   0.05
## 1001     SNES                            Media Rings   0.00
## 1002       PS                            Media Works   0.00
## 1003      PS2                            Media Works   0.00
## 1004      SAT                            Media Works   0.00
## 1005       PS                             MediaQuest   0.02
## 1006     2600                           Men-A-Vision   0.04
## 1007       DS                     Mentor Interactive   0.00
## 1008       DS                          Mercury Games   0.00
## 1009      PSP                          Mercury Games   0.00
## 1010       PC                            Merscom LLC   0.17
## 1011      PS2                               Metro 3D   0.46
## 1012      Wii                               Metro 3D   0.00
## 1013       XB                               Metro 3D   0.01
## 1014      PS2                            Michaelsoft   0.00
## 1015      3DO                            Micro Cabin   0.00
## 1016      SAT                            Micro Cabin   0.00
## 1017      GBA                               Microids   0.00
## 1018       PC                               Microids   0.05
## 1019      PS2                               Microids   0.03
## 1020      PS4                               Microids   0.01
## 1021       XB                               Microids   0.05
## 1022       PC                             Microprose   0.03
## 1023       PS                             Microprose   1.16
## 1024       PC                 Microsoft Game Studios   3.60
## 1025     WiiU                 Microsoft Game Studios   0.09
## 1026     X360                 Microsoft Game Studios  46.80
## 1027       XB                 Microsoft Game Studios  10.09
## 1028     XOne                 Microsoft Game Studios   8.03
## 1029       DS        Midas Interactive Entertainment   0.08
## 1030       PS        Midas Interactive Entertainment   0.22
## 1031      PS2        Midas Interactive Entertainment   0.65
## 1032      PSP        Midas Interactive Entertainment   0.00
## 1033      Wii        Midas Interactive Entertainment   0.02
## 1034       DS                           Midway Games   1.78
## 1035      GBA                           Midway Games   0.12
## 1036       GC                           Midway Games   0.68
## 1037      N64                           Midway Games   1.11
## 1038       PC                           Midway Games   0.07
## 1039       PS                           Midway Games   2.12
## 1040      PS2                           Midway Games   7.73
## 1041      PS3                           Midway Games   0.73
## 1042      PSP                           Midway Games   0.03
## 1043      Wii                           Midway Games   1.30
## 1044     X360                           Midway Games   1.14
## 1045       XB                           Midway Games   1.57
## 1046      Wii                              Milestone   0.00
## 1047      PS4                        Milestone S.r.l   0.04
## 1048     XOne                        Milestone S.r.l   0.01
## 1049       PC                       Milestone S.r.l.   0.04
## 1050      PS3                       Milestone S.r.l.   0.15
## 1051      PS4                       Milestone S.r.l.   0.41
## 1052      PSV                       Milestone S.r.l.   0.01
## 1053     X360                       Milestone S.r.l.   0.07
## 1054     XOne                       Milestone S.r.l.   0.10
## 1055      PS2                         Minato Station   0.00
## 1056      PS3                         Minato Station   0.00
## 1057      PSV                         Minato Station   0.00
## 1058       DS                              Mindscape   0.88
## 1059      N64                              Mindscape   0.00
## 1060       PS                              Mindscape   0.34
## 1061      PS2                              Mindscape   0.05
## 1062      Wii                              Mindscape   1.22
## 1063     X360                              Mindscape   0.01
## 1064       XB                              Mindscape   0.01
## 1065       DS                          Mirai Shounen   0.00
## 1066     SNES                                 Misawa   0.00
## 1067      N64                                 Mitsui   0.02
## 1068      3DS                              mixi, Inc   0.00
## 1069     XOne                                MLB.com   0.00
## 1070       PC                                 Mojang   0.05
## 1071      PS3                                 Mojang   0.33
## 1072      PS4                                 Mojang   0.33
## 1073     X360                                 Mojang   0.38
## 1074     XOne                                 Mojang   0.21
## 1075       PC               Monte Christo Multimedia   0.04
## 1076     X360                                   Moss   0.00
## 1077       DS                                    MTO   0.00
## 1078       PS                                    MTO   0.00
## 1079       DS                              MTV Games   0.01
## 1080      PS2                              MTV Games   0.63
## 1081      PS3                              MTV Games   0.76
## 1082      PSP                              MTV Games   0.15
## 1083      Wii                              MTV Games   1.22
## 1084     X360                              MTV Games   1.24
## 1085      PS2                   Mud Duck Productions   0.16
## 1086       XB                   Mud Duck Productions   0.09
## 1087       DS                            Mumbo Jumbo   0.00
## 1088       PC                            Mumbo Jumbo   0.00
## 1089      PSP                            Mumbo Jumbo   0.00
## 1090      Wii                            Mumbo Jumbo   0.00
## 1091       DS                                  Mycom   0.00
## 1092      PS2                           Myelin Media   0.03
## 1093      PSP                           Myelin Media   0.00
## 1094       XB                           Myelin Media   0.01
## 1095     2600                               Mystique   0.05
## 1096      3DS                                    N/A   0.01
## 1097       DS                                    N/A   0.02
## 1098      GBA                                    N/A   2.10
## 1099       PC                                    N/A   0.30
## 1100       PS                                    N/A   0.58
## 1101      PS2                                    N/A   1.10
## 1102      PS3                                    N/A   0.48
## 1103      PSP                                    N/A   0.00
## 1104      PSV                                    N/A   0.00
## 1105      Wii                                    N/A   0.05
## 1106     X360                                    N/A   0.04
## 1107      3DS                     Namco Bandai Games   0.93
## 1108       DC                     Namco Bandai Games   0.00
## 1109       DS                     Namco Bandai Games   0.25
## 1110       GB                     Namco Bandai Games   0.00
## 1111      GBA                     Namco Bandai Games   1.39
## 1112       GC                     Namco Bandai Games   0.83
## 1113      N64                     Namco Bandai Games   0.21
## 1114      NES                     Namco Bandai Games   0.59
## 1115       PC                     Namco Bandai Games   1.30
## 1116       PS                     Namco Bandai Games   2.63
## 1117      PS2                     Namco Bandai Games  10.53
## 1118      PS3                     Namco Bandai Games  10.11
## 1119      PS4                     Namco Bandai Games   4.62
## 1120      PSP                     Namco Bandai Games   0.80
## 1121      PSV                     Namco Bandai Games   0.65
## 1122      SAT                     Namco Bandai Games   0.00
## 1123     SNES                     Namco Bandai Games   0.00
## 1124      Wii                     Namco Bandai Games   2.38
## 1125     WiiU                     Namco Bandai Games   0.40
## 1126       WS                     Namco Bandai Games   0.00
## 1127     X360                     Namco Bandai Games   3.65
## 1128       XB                     Namco Bandai Games   0.53
## 1129     XOne                     Namco Bandai Games   0.83
## 1130      3DS                                Natsume   0.02
## 1131       DS                                Natsume   0.06
## 1132      GBA                                Natsume   0.08
## 1133      N64                                Natsume   0.02
## 1134       PS                                Natsume   0.23
## 1135      PS2                                Natsume   0.25
## 1136      PSP                                Natsume   0.00
## 1137      Wii                                Natsume   0.00
## 1138     X360                           Navarre Corp   0.00
## 1139      PS2                             Naxat Soft   0.00
## 1140      SAT                                    NCS   0.00
## 1141       PC                                 NCSoft   1.19
## 1142       GC                        NDA Productions   0.02
## 1143     PCFX                                    NEC   0.00
## 1144      SAT                                    NEC   0.00
## 1145     TG16                                    NEC   0.00
## 1146       DC                       NEC Interchannel   0.00
## 1147      SAT                       NEC Interchannel   0.00
## 1148       DS                     Neko Entertainment   0.01
## 1149      Wii                     Neko Entertainment   0.07
## 1150      PSP                                NetRevo   0.00
## 1151       PS                                    New   0.00
## 1152       PC                    New World Computing   0.00
## 1153      GBA                               NewKidCo   0.08
## 1154       GC                               NewKidCo   0.01
## 1155      N64                               NewKidCo   0.08
## 1156       PS                               NewKidCo   0.21
## 1157       DS                                  Nexon   0.00
## 1158     SNES                             Nichibutsu   0.00
## 1159      PS4               Nihon Falcom Corporation   0.00
## 1160      PSP               Nihon Falcom Corporation   0.00
## 1161      PSV               Nihon Falcom Corporation   0.01
## 1162      3DS                               Nintendo  42.61
## 1163       DS                               Nintendo  96.89
## 1164       GB                               Nintendo  46.59
## 1165      GBA                               Nintendo  22.94
## 1166       GC                               Nintendo  13.78
## 1167      N64                               Nintendo  24.14
## 1168      NES                               Nintendo  17.67
## 1169     SNES                               Nintendo  15.06
## 1170      Wii                               Nintendo 123.01
## 1171     WiiU                               Nintendo  16.05
## 1172      PS2                           Nippon Amuse   0.00
## 1173      3DS                        Nippon Columbia   0.00
## 1174      3DS                   Nippon Ichi Software   0.11
## 1175       DS                   Nippon Ichi Software   0.00
## 1176       PS                   Nippon Ichi Software   0.01
## 1177      PS2                   Nippon Ichi Software   0.05
## 1178      PS3                   Nippon Ichi Software   0.88
## 1179      PS4                   Nippon Ichi Software   0.17
## 1180      PSP                   Nippon Ichi Software   0.01
## 1181      PSV                   Nippon Ichi Software   0.68
## 1182      Wii                   Nippon Ichi Software   0.00
## 1183     WiiU                   Nippon Ichi Software   0.02
## 1184     SNES                         Nippon Telenet   0.00
## 1185      PS3                              Nitroplus   0.00
## 1186      PSV                              Nitroplus   0.00
## 1187       DS                                Nobilis   0.17
## 1188       PC                                Nobilis   0.01
## 1189      Wii                                Nobilis   0.00
## 1190       DS                            Nordcurrent   0.13
## 1191      Wii                            Nordcurrent   0.01
## 1192       DS                           Nordic Games   0.00
## 1193       PC                           Nordic Games   0.18
## 1194      PS3                           Nordic Games   0.03
## 1195      PS4                           Nordic Games   0.26
## 1196      Wii                           Nordic Games   2.59
## 1197     WiiU                           Nordic Games   0.04
## 1198     X360                           Nordic Games   0.06
## 1199     XOne                           Nordic Games   0.02
## 1200       PC                              NovaLogic   0.00
## 1201      PS2                              NovaLogic   0.17
## 1202       XB                              NovaLogic   0.07
## 1203       PC                            Number None   0.02
## 1204       DS                                O-Games   0.12
## 1205      PS3                                O-Games   0.12
## 1206      Wii                                O-Games   0.28
## 1207     X360                                O-Games   0.02
## 1208       DS                       O3 Entertainment   0.00
## 1209       GC                       O3 Entertainment   0.02
## 1210      N64                                  Ocean   0.50
## 1211      NES                                  Ocean   0.10
## 1212       PS                                  Ocean   0.40
## 1213     SNES                                  Ocean   0.00
## 1214      3DS                          Office Create   0.00
## 1215       PS                              On Demand   0.08
## 1216      PS3                              Ongakukan   0.00
## 1217       PS                         Origin Systems   0.03
## 1218      PSP                                Otomate   0.00
## 1219       DS                     Oxygen Interactive   0.04
## 1220      PS2                     Oxygen Interactive   0.77
## 1221      PSP                     Oxygen Interactive   0.00
## 1222      Wii                     Oxygen Interactive   0.23
## 1223     X360                     Oxygen Interactive   0.00
## 1224       DS                               P2 Games   0.33
## 1225      Wii                               P2 Games   0.00
## 1226      PS2            Pacific Century Cyber Works   0.09
## 1227     SNES                          Pack-In-Video   0.00
## 1228      N64                           Pack In Soft   0.06
## 1229      NES                                 Palcom   0.44
## 1230       PS                       Panther Software   0.02
## 1231       DS                                   Paon   0.00
## 1232      PS2                                   Paon   0.00
## 1233      PSP                                   Paon   0.00
## 1234      PS3                       Paon Corporation   0.00
## 1235       PC                    Paradox Development   0.01
## 1236       PC                    Paradox Interactive   0.57
## 1237     2600                           Parker Bros.   0.27
## 1238       DS          Performance Designed Products   0.00
## 1239      Wii          Performance Designed Products   0.00
## 1240       XB                             Phantagram   0.01
## 1241     X360                            Phantom EFX   0.00
## 1242       DS                             Phenomedia   0.00
## 1243       DS                          Phoenix Games   0.00
## 1244      PSP                                 Piacci   0.00
## 1245       DS                               Pinnacle   0.95
## 1246       PC                               Pinnacle   0.02
## 1247      Wii                               Pinnacle   0.35
## 1248       PS                            Pioneer LDC   0.16
## 1249      GBA                                Play It   0.01
## 1250      PS2                                Play It   1.21
## 1251      PSP                                Play It   0.01
## 1252       DS                 Playlogic Game Factory   0.00
## 1253       PC                 Playlogic Game Factory   0.00
## 1254      PS2                 Playlogic Game Factory   0.05
## 1255      PS3                 Playlogic Game Factory   0.04
## 1256      PSP                 Playlogic Game Factory   0.03
## 1257      Wii                 Playlogic Game Factory   0.01
## 1258     X360                 Playlogic Game Factory   0.03
## 1259       PS                              Playmates   0.11
## 1260      PS2                               Playmore   0.00
## 1261       DS                                  PlayV   0.30
## 1262       DS                                 Plenty   0.00
## 1263      PSP                             PM Studios   0.00
## 1264       PS                            Pony Canyon   0.02
## 1265       DS                           PopCap Games   0.18
## 1266       PC                           PopCap Games   0.14
## 1267      PS3                           PopCap Games   0.00
## 1268     X360                           PopCap Games   0.02
## 1269      Wii                         Popcorn Arcade   0.00
## 1270       PS                        PopTop Software   0.04
## 1271     SNES                                    Pow   0.00
## 1272      3DS                                  PQube   0.01
## 1273       DS                                  PQube   0.05
## 1274       PC                                  PQube   0.01
## 1275      PS2                                  PQube   0.02
## 1276      PS3                                  PQube   0.33
## 1277      PS4                                  PQube   0.03
## 1278      PSP                                  PQube   0.05
## 1279      PSV                                  PQube   0.23
## 1280      Wii                                  PQube   0.03
## 1281     X360                                  PQube   0.15
## 1282     XOne                                  PQube   0.01
## 1283      PS2                          Princess Soft   0.00
## 1284      PS2                              Prototype   0.00
## 1285      PS3                              Prototype   0.00
## 1286      PSP                              Prototype   0.00
## 1287      PSV                              Prototype   0.00
## 1288     X360                              Prototype   0.00
## 1289       PS                              Psygnosis   2.48
## 1290     2600                                 Quelle   0.05
## 1291     SNES                                  Quest   0.00
## 1292      PSP                               Quinrose   0.00
## 1293      SAT                                Quintet   0.00
## 1294      GBA                          Rage Software   0.01
## 1295       GC                          Rage Software   0.02
## 1296      PS2                          Rage Software   0.37
## 1297       XB                          Rage Software   0.07
## 1298      PSV                             Rain Games   0.01
## 1299      GBA                              Rebellion   0.13
## 1300      PS4                 Rebellion Developments   0.12
## 1301     XOne                 Rebellion Developments   0.05
## 1302      PS2                      RED Entertainment   0.00
## 1303       PC                                Red Orb   3.61
## 1304      N64                Red Storm Entertainment   0.15
## 1305       PS                Red Storm Entertainment   0.65
## 1306      PS2                              RedOctane   1.31
## 1307       DS                     Reef Entertainment   0.03
## 1308       PC                     Reef Entertainment   0.02
## 1309      PS3                     Reef Entertainment   0.02
## 1310      Wii                     Reef Entertainment   0.06
## 1311      PS2                           responDESIGN   0.02
## 1312       XB                           responDESIGN   0.02
## 1313      PS2                     Revolution (Japan)   0.00
## 1314      PS4                    Revolution Software   0.06
## 1315     XOne                    Revolution Software   0.01
## 1316      3DS                      Rising Star Games   0.18
## 1317       DS                      Rising Star Games   1.16
## 1318       PC                      Rising Star Games   0.04
## 1319      PS2                      Rising Star Games   0.12
## 1320      PS3                      Rising Star Games   0.12
## 1321      PS4                      Rising Star Games   0.00
## 1322      PSP                      Rising Star Games   0.08
## 1323      PSV                      Rising Star Games   0.00
## 1324      Wii                      Rising Star Games   1.03
## 1325     X360                      Rising Star Games   0.25
## 1326       PS                          Riverhillsoft   0.00
## 1327      3DS                         Rocket Company   0.00
## 1328       DS                         Rocket Company   0.00
## 1329      Wii                         Rocket Company   0.00
## 1330       DS                             Rondomedia   0.50
## 1331       PC                             Rondomedia   0.59
## 1332      Wii                             Rondomedia   0.04
## 1333       DS                                    RTL   0.06
## 1334      Wii                                    RTL   0.91
## 1335     X360                                    RTL   0.01
## 1336       DS                                 Russel   0.00
## 1337       PC                                 Russel   1.12
## 1338      PS2                                 Russel   0.00
## 1339      PSP                                 Russel   0.00
## 1340      GBA                      Sammy Corporation   0.02
## 1341      PS2                      Sammy Corporation   0.29
## 1342     SNES                      Sammy Corporation   0.00
## 1343       PS                                 Saurus   0.01
## 1344       DS                        Scholastic Inc.   0.00
## 1345      PS2                        Scholastic Inc.   0.03
## 1346      Wii                        Scholastic Inc.   0.00
## 1347       GC                                    SCi   0.03
## 1348       PC                                    SCi   0.03
## 1349      PS2                                    SCi   0.63
## 1350       XB                                    SCi   0.54
## 1351      3DS                             Screenlife   0.00
## 1352      PSV                             Screenlife   0.01
## 1353       PC                           SCS Software   0.12
## 1354     2600                                  Sears   0.01
## 1355     2600                                   Sega   0.02
## 1356      3DS                                   Sega   1.91
## 1357       DC                                   Sega   1.46
## 1358       DS                                   Sega   9.58
## 1359      GBA                                   Sega   1.46
## 1360       GC                                   Sega   2.08
## 1361      GEN                                   Sega   3.86
## 1362       GG                                   Sega   0.00
## 1363       PC                                   Sega   9.37
## 1364      PS2                                   Sega   7.28
## 1365      PS3                                   Sega  10.36
## 1366      PS4                                   Sega   0.60
## 1367      PSP                                   Sega   4.65
## 1368      PSV                                   Sega   0.71
## 1369      SAT                                   Sega   0.54
## 1370      SCD                                   Sega   0.36
## 1371      Wii                                   Sega  16.51
## 1372     WiiU                                   Sega   0.48
## 1373     X360                                   Sega   8.52
## 1374       XB                                   Sega   2.01
## 1375     XOne                                   Sega   0.24
## 1376      N64                       Seta Corporation   0.00
## 1377       PS                       Seta Corporation   0.00
## 1378      SAT                       Seta Corporation   0.00
## 1379      3DS                          Seventh Chord   0.00
## 1380      3DS                             Shogakukan   0.00
## 1381       DS                             Shogakukan   0.00
## 1382      SAT                             Shogakukan   0.00
## 1383       XB           Simon & Schuster Interactive   0.02
## 1384       PC                   Slightly Mad Studios   0.10
## 1385      PS4                   Slightly Mad Studios   0.69
## 1386     XOne                   Slightly Mad Studios   0.13
## 1387       DS                    Slitherine Software   0.01
## 1388      PS3                    Slitherine Software   0.04
## 1389      PSP                    Slitherine Software   0.01
## 1390     X360                    Slitherine Software   0.04
## 1391       DC                                    SNK   0.00
## 1392       NG                                    SNK   0.00
## 1393       PS                                    SNK   0.00
## 1394      PS2                                    SNK   0.03
## 1395      SAT                                    SNK   0.00
## 1396       DS                           SNK Playmore   0.00
## 1397       PS                           SNK Playmore   0.05
## 1398      PS2                           SNK Playmore   0.07
## 1399      PSP                           SNK Playmore   0.00
## 1400      SAT                           SNK Playmore   0.00
## 1401       XB                           SNK Playmore   0.02
## 1402      SAT                                Societa   0.00
## 1403      PS4                               Sold Out   0.01
## 1404      SAT                                 Sonnet   0.00
## 1405       PS            Sony Computer Entertainment  53.67
## 1406      PS2            Sony Computer Entertainment  48.76
## 1407      PS3            Sony Computer Entertainment  52.46
## 1408      PS4            Sony Computer Entertainment  13.07
## 1409      PSP            Sony Computer Entertainment  16.25
## 1410      PSV            Sony Computer Entertainment   3.51
## 1411      PS3    Sony Computer Entertainment America   0.00
## 1412      PS4    Sony Computer Entertainment America   0.00
## 1413      PSV    Sony Computer Entertainment America   0.00
## 1414      PS2     Sony Computer Entertainment Europe   0.90
## 1415      PS3     Sony Computer Entertainment Europe   2.78
## 1416      PS4     Sony Computer Entertainment Europe   3.59
## 1417      PSV     Sony Computer Entertainment Europe   1.73
## 1418      PS2               Sony Music Entertainment   0.00
## 1419       PC              Sony Online Entertainment   0.06
## 1420      PS2              Sony Online Entertainment   0.97
## 1421      PS3              Sony Online Entertainment   0.12
## 1422      PSP              Sony Online Entertainment   0.00
## 1423       DS                        SouthPeak Games   0.21
## 1424       PC                        SouthPeak Games   0.01
## 1425       PS                        SouthPeak Games   0.04
## 1426      PS2                        SouthPeak Games   0.08
## 1427      PS3                        SouthPeak Games   0.16
## 1428      PSP                        SouthPeak Games   0.00
## 1429      Wii                        SouthPeak Games   0.06
## 1430     X360                        SouthPeak Games   0.35
## 1431       DS                                  Spike   0.00
## 1432      GBA                                  Spike   0.03
## 1433      PS2                                  Spike   0.30
## 1434      PS3                                  Spike   0.00
## 1435      PSP                                  Spike   0.00
## 1436     X360                                  Spike   0.00
## 1437       PS                                    SPS   0.04
## 1438      NES                                 Square   0.00
## 1439       PS                                 Square   0.20
## 1440     SNES                                 Square   0.09
## 1441       PS                              Square EA   0.30
## 1442      3DS                            Square Enix   0.67
## 1443       DS                            Square Enix   1.60
## 1444      GBA                            Square Enix   0.18
## 1445       PC                            Square Enix   2.06
## 1446      PS2                            Square Enix   3.19
## 1447      PS3                            Square Enix   9.99
## 1448      PS4                            Square Enix   4.10
## 1449      PSP                            Square Enix   2.41
## 1450      PSV                            Square Enix   0.35
## 1451      Wii                            Square Enix   0.15
## 1452     WiiU                            Square Enix   0.05
## 1453     X360                            Square Enix   6.27
## 1454     XOne                            Square Enix   1.80
## 1455       GB                             SquareSoft   0.00
## 1456      GBA                             SquareSoft   0.37
## 1457      NES                             SquareSoft   0.00
## 1458       PS                             SquareSoft   4.51
## 1459      PS2                             SquareSoft   0.00
## 1460     SNES                             SquareSoft   0.07
## 1461       WS                             SquareSoft   0.00
## 1462       PS                                    SSI   0.07
## 1463     XOne                        Stainless Games   0.01
## 1464       DS                               Starfish   0.00
## 1465      GBA                               Starfish   0.01
## 1466       PS                               Starfish   0.18
## 1467      PSP                               Starfish   0.00
## 1468      Wii                               Starfish   0.00
## 1469     2600                         Starpath Corp.   0.02
## 1470       DS                                  Sting   0.00
## 1471      GBA                                  Sting   0.03
## 1472      PS2                                  Sting   0.04
## 1473      PSP                                  Sting   0.00
## 1474      Wii                                  Sting   0.00
## 1475       DS                       Storm City Games   0.10
## 1476      Wii                       Storm City Games   0.00
## 1477       PC                         Strategy First   0.02
## 1478      3DS                                Success   0.00
## 1479       DS                                Success   0.00
## 1480       PS                                Success   0.48
## 1481      PS2                                Success   0.01
## 1482      PSP                                Success   0.00
## 1483     X360                                Success   0.00
## 1484      GBA                             Summitsoft   0.01
## 1485       PC                             Sunflowers   0.02
## 1486      PS2                    Sunrise Interactive   0.00
## 1487      3DS                                Sunsoft   0.00
## 1488      N64                                Sunsoft   0.02
## 1489       PS                                Sunsoft   0.23
## 1490      SAT                                Sunsoft   0.00
## 1491     SNES                                Sunsoft   0.00
## 1492      PS2                                 Sweets   0.00
## 1493      GBA                   Swing! Entertainment   0.01
## 1494       PS                   Swing! Entertainment   0.02
## 1495      PS2                   Swing! Entertainment   0.10
## 1496       XB                   Swing! Entertainment   0.03
## 1497       PS                                 Syscom   0.04
## 1498      PS3                               System 3   0.01
## 1499      PS4                               System 3   0.07
## 1500      PSV                               System 3   0.02
## 1501       DS               System 3 Arcade Software   0.01
## 1502      PS2               System 3 Arcade Software   0.05
## 1503      PS3               System 3 Arcade Software   0.06
## 1504      PSP               System 3 Arcade Software   0.05
## 1505      Wii               System 3 Arcade Software   0.46
## 1506      PSP                            System Soft   0.00
## 1507     SNES                               T&E Soft   0.00
## 1508     2600                                  Taito   0.01
## 1509       DS                                  Taito   0.00
## 1510      GBA                                  Taito   0.01
## 1511       GC                                  Taito   0.00
## 1512      N64                                  Taito   0.00
## 1513       PS                                  Taito   0.00
## 1514      PS2                                  Taito   0.07
## 1515      SAT                                  Taito   0.00
## 1516     SNES                                  Taito   0.00
## 1517      Wii                                  Taito   0.00
## 1518      GBA                                 Takara   0.06
## 1519      N64                                 Takara   0.00
## 1520       PS                                 Takara   0.00
## 1521      PS2                                 Takara   0.00
## 1522     SNES                                 Takara   0.00
## 1523      3DS                            Takara Tomy   0.00
## 1524       DS                            Takara Tomy   0.03
## 1525      PSP                            Takara Tomy   0.00
## 1526      Wii                            Takara Tomy   0.00
## 1527     X360                            Takara Tomy   0.00
## 1528      3DS                   Take-Two Interactive   0.02
## 1529       DS                   Take-Two Interactive   1.53
## 1530      GBA                   Take-Two Interactive   0.09
## 1531       GC                   Take-Two Interactive   0.08
## 1532      N64                   Take-Two Interactive   0.20
## 1533       PC                   Take-Two Interactive   7.04
## 1534       PS                   Take-Two Interactive   6.28
## 1535      PS2                   Take-Two Interactive  21.89
## 1536      PS3                   Take-Two Interactive  29.28
## 1537      PS4                   Take-Two Interactive   9.55
## 1538      PSP                   Take-Two Interactive   7.13
## 1539      PSV                   Take-Two Interactive   0.21
## 1540      Wii                   Take-Two Interactive   4.40
## 1541     WiiU                   Take-Two Interactive   0.04
## 1542     X360                   Take-Two Interactive  24.52
## 1543       XB                   Take-Two Interactive   2.53
## 1544     XOne                   Take-Two Interactive   3.35
## 1545      PSP                                 Takuyo   0.00
## 1546       PS                              TalonSoft   0.33
## 1547       DS                               TDK Core   0.00
## 1548      GBA                               TDK Core   0.05
## 1549       PS                               TDK Core   0.07
## 1550      GBA                         TDK Mediactive   0.91
## 1551       GC                         TDK Mediactive   0.10
## 1552       PS                         TDK Mediactive   0.12
## 1553      PS2                         TDK Mediactive   0.97
## 1554       XB                         TDK Mediactive   0.32
## 1555       PC                        Team17 Software   0.04
## 1556       NG              Technos Japan Corporation   0.00
## 1557       PS                             TechnoSoft   0.02
## 1558      3DS                             Tecmo Koei   0.05
## 1559       DS                             Tecmo Koei   0.02
## 1560      GBA                             Tecmo Koei   0.00
## 1561       GC                             Tecmo Koei   0.01
## 1562       PS                             Tecmo Koei   0.33
## 1563      PS2                             Tecmo Koei   3.04
## 1564      PS3                             Tecmo Koei   1.41
## 1565      PS4                             Tecmo Koei   0.68
## 1566      PSP                             Tecmo Koei   0.03
## 1567      PSV                             Tecmo Koei   0.34
## 1568      SAT                             Tecmo Koei   0.00
## 1569     SNES                             Tecmo Koei   0.00
## 1570      Wii                             Tecmo Koei   0.05
## 1571     WiiU                             Tecmo Koei   0.02
## 1572     X360                             Tecmo Koei   0.81
## 1573       XB                             Tecmo Koei   0.18
## 1574     XOne                             Tecmo Koei   0.11
## 1575       DS                              Telegames   0.00
## 1576      GBA                              Telegames   0.05
## 1577       PS                              Telegames   0.01
## 1578      PS3                         Telltale Games   0.17
## 1579      PS4                         Telltale Games   0.54
## 1580      PSV                         Telltale Games   0.00
## 1581      Wii                         Telltale Games   0.00
## 1582     X360                         Telltale Games   0.12
## 1583     XOne                         Telltale Games   0.17
## 1584       PS                                Telstar   0.10
## 1585      3DS                          Tetris Online   0.13
## 1586      PSP                                    TGL   0.00
## 1587      PSV                                    TGL   0.00
## 1588       DS                  The Adventure Company   0.06
## 1589      Wii                  The Adventure Company   0.07
## 1590       PS                   The Learning Company   0.02
## 1591      3DS                                    THQ   0.13
## 1592       DS                                    THQ   6.60
## 1593      GBA                                    THQ  13.69
## 1594       GC                                    THQ   2.82
## 1595      N64                                    THQ   1.93
## 1596       PC                                    THQ   1.96
## 1597       PS                                    THQ  10.66
## 1598      PS2                                    THQ  22.39
## 1599      PS3                                    THQ   9.81
## 1600      PSP                                    THQ   4.25
## 1601     SNES                                    THQ   0.00
## 1602      Wii                                    THQ   7.42
## 1603     WiiU                                    THQ   0.07
## 1604     X360                                    THQ  10.90
## 1605       XB                                    THQ   2.10
## 1606     2600                            Tigervision   0.09
## 1607       PS                Time Warner Interactive   0.12
## 1608      GBA                                  Titus   0.03
## 1609       GC                                  Titus   0.03
## 1610      N64                                  Titus   0.45
## 1611       PS                                  Titus   0.14
## 1612      PS2                                  Titus   0.43
## 1613     SNES                                  Titus   0.00
## 1614       XB                                  Titus   0.00
## 1615       DS                                 Tivola   0.07
## 1616     SNES                                   TOHO   0.00
## 1617       DS                                  Tommo   0.00
## 1618      Wii                                  Tommo   0.00
## 1619       DS                       Tomy Corporation   0.00
## 1620      GBA                       Tomy Corporation   0.08
## 1621       GC                       Tomy Corporation   0.17
## 1622       PS                       Tomy Corporation   0.02
## 1623      Wii                       Tomy Corporation   0.48
## 1624       PC                    TopWare Interactive   0.02
## 1625      PS3                    TopWare Interactive   0.04
## 1626      PS4                    TopWare Interactive   0.01
## 1627     X360                    TopWare Interactive   0.03
## 1628       DS                             Touchstone   0.06
## 1629       PC                             Touchstone   0.01
## 1630      PS3                             Touchstone   0.22
## 1631     X360                             Touchstone   0.21
## 1632      PS3                              Tradewest   0.03
## 1633      Wii                              Tradewest   0.02
## 1634     X360                              Tradewest   0.01
## 1635       PC                           Trion Worlds   0.04
## 1636      PS3                           Trion Worlds   0.11
## 1637     X360                           Trion Worlds   0.15
## 1638       PC                   Tripwire Interactive   0.07
## 1639      PS3                  Tru Blu Entertainment   0.05
## 1640      PS4                  Tru Blu Entertainment   0.11
## 1641     X360                  Tru Blu Entertainment   0.04
## 1642     XOne                  Tru Blu Entertainment   0.05
## 1643      PS2                               Tryfirst   0.00
## 1644       PS                                    TYO   0.16
## 1645      PSV                              Type-Moon   0.00
## 1646       PS                              U.S. Gold   0.13
## 1647      3DS                                Ubisoft   1.53
## 1648       DC                                Ubisoft   0.00
## 1649       DS                                Ubisoft  17.22
## 1650       GB                                Ubisoft   0.00
## 1651      GBA                                Ubisoft   2.53
## 1652       GC                                Ubisoft   0.87
## 1653      N64                                Ubisoft   0.56
## 1654       PC                                Ubisoft  10.17
## 1655       PS                                Ubisoft   3.17
## 1656      PS2                                Ubisoft  12.09
## 1657      PS3                                Ubisoft  28.15
## 1658      PS4                                Ubisoft  16.10
## 1659      PSP                                Ubisoft   2.34
## 1660      PSV                                Ubisoft   1.49
## 1661      Wii                                Ubisoft  28.40
## 1662     WiiU                                Ubisoft   2.22
## 1663     X360                                Ubisoft  23.77
## 1664       XB                                Ubisoft   6.86
## 1665     XOne                                Ubisoft   5.85
## 1666      3DS                         Ubisoft Annecy   0.21
## 1667      PS3                         Ubisoft Annecy   0.26
## 1668      PSP                         Ubisoft Annecy   0.06
## 1669     X360                         Ubisoft Annecy   0.13
## 1670       PS                            UEP Systems   0.46
## 1671      3DS                        UFO Interactive   0.00
## 1672       DS                        UFO Interactive   0.00
## 1673      Wii                        UFO Interactive   0.00
## 1674      PS4                      UIG Entertainment   0.01
## 1675     2600                            Ultravision   0.03
## 1676     2600                        Universal Gamex   0.04
## 1677      GBA                  Universal Interactive   1.09
## 1678       GC                  Universal Interactive   0.34
## 1679      PS2                  Universal Interactive   4.35
## 1680       XB                  Universal Interactive   0.95
## 1681     2600                                Unknown   0.02
## 1682      3DS                                Unknown   0.14
## 1683       DS                                Unknown   0.37
## 1684      GBA                                Unknown   0.58
## 1685       GC                                Unknown   0.18
## 1686      N64                                Unknown   0.03
## 1687       PC                                Unknown   0.86
## 1688       PS                                Unknown   0.54
## 1689      PS2                                Unknown   3.70
## 1690      PS3                                Unknown   0.20
## 1691      PS4                                Unknown   0.02
## 1692      PSP                                Unknown   0.03
## 1693      PSV                                Unknown   0.00
## 1694      Wii                                Unknown   0.34
## 1695     X360                                Unknown   0.22
## 1696       XB                                Unknown   0.30
## 1697     XOne                                Unknown   0.00
## 1698       DS                           Valcon Games   0.00
## 1699      PS2                           Valcon Games   0.05
## 1700      Wii                           Valcon Games   0.00
## 1701     X360                           Valcon Games   0.03
## 1702       DS                               ValuSoft   0.00
## 1703       PC                               ValuSoft   0.00
## 1704      PS2                               ValuSoft   0.09
## 1705      PS3                                  Valve   0.63
## 1706       PC                         Valve Software   0.64
## 1707     X360                         Valve Software   0.51
## 1708     SNES                                    Vap   0.00
## 1709      N64                  Vatical Entertainment   0.01
## 1710       PS                  Vatical Entertainment   0.06
## 1711      N64                              Vic Tokai   0.03
## 1712       PS                              Vic Tokai   0.05
## 1713       GB                     Victor Interactive   0.00
## 1714      GBA                     Victor Interactive   0.01
## 1715       PS                     Victor Interactive   0.07
## 1716      PS2                     Victor Interactive   0.00
## 1717      SAT                     Victor Interactive   0.00
## 1718     SNES                     Victor Interactive   0.00
## 1719      N64                           Video System   1.00
## 1720       PS                           Video System   0.04
## 1721     SNES                           Video System   0.00
## 1722      PS3                                  Views   0.00
## 1723      PSP                                  Views   0.00
## 1724       DS                          Vir2L Studios   0.00
## 1725      Wii                          Vir2L Studios   0.01
## 1726       DC                     Virgin Interactive   0.00
## 1727       GC                     Virgin Interactive   0.05
## 1728      GEN                     Virgin Interactive   0.37
## 1729      N64                     Virgin Interactive   0.14
## 1730       PC                     Virgin Interactive   3.52
## 1731       PS                     Virgin Interactive   7.00
## 1732      PS2                     Virgin Interactive   1.43
## 1733      SAT                     Virgin Interactive   0.00
## 1734     SNES                     Virgin Interactive   0.39
## 1735       XB                     Virgin Interactive   0.04
## 1736      Wii                     Virtual Play Games   0.00
## 1737       PC                                  Visco   0.00
## 1738       DS                          Vivendi Games   0.27
## 1739      GBA                          Vivendi Games   3.29
## 1740       GC                          Vivendi Games   0.63
## 1741       PC                          Vivendi Games   0.54
## 1742       PS                          Vivendi Games   0.19
## 1743      PS2                          Vivendi Games   7.31
## 1744      PS3                          Vivendi Games   0.71
## 1745      PSP                          Vivendi Games   0.65
## 1746      Wii                          Vivendi Games   0.32
## 1747     X360                          Vivendi Games   0.58
## 1748       XB                          Vivendi Games   1.55
## 1749      GBA                                Wanadoo   0.00
## 1750       GC                                Wanadoo   0.00
## 1751      PS2                                Wanadoo   0.21
## 1752       XB                                Wanadoo   0.00
## 1753       DC                                Warashi   0.00
## 1754       PC                          Wargaming.net   0.23
## 1755      3DS Warner Bros. Interactive Entertainment   2.37
## 1756       DS Warner Bros. Interactive Entertainment   5.48
## 1757       GC Warner Bros. Interactive Entertainment   0.03
## 1758       PC Warner Bros. Interactive Entertainment   1.62
## 1759      PS2 Warner Bros. Interactive Entertainment   0.63
## 1760      PS3 Warner Bros. Interactive Entertainment  11.46
## 1761      PS4 Warner Bros. Interactive Entertainment   8.45
## 1762      PSP Warner Bros. Interactive Entertainment   1.04
## 1763      PSV Warner Bros. Interactive Entertainment   2.46
## 1764      Wii Warner Bros. Interactive Entertainment   4.48
## 1765     WiiU Warner Bros. Interactive Entertainment   1.92
## 1766     X360 Warner Bros. Interactive Entertainment  10.23
## 1767     XOne Warner Bros. Interactive Entertainment   2.95
## 1768      SAT                                   Warp   0.00
## 1769      3DS                WayForward Technologies   0.00
## 1770       PC                       Westwood Studios   0.00
## 1771       DS                White Park Bay Software   0.01
## 1772     2600                     Wizard Video Games   0.03
## 1773      PS2                      Xicat Interactive   0.04
## 1774       XB                      Xicat Interactive   0.02
## 1775       PS                     Xing Entertainment   0.03
## 1776      PS2                                Xplosiv   0.38
## 1777      PSP                                Xplosiv   0.08
## 1778      Wii                                Xplosiv   0.40
## 1779      GBA                               XS Games   0.00
## 1780       PS                               XS Games   0.09
## 1781      PS2                               XS Games   0.07
## 1782      Wii                               XS Games   0.00
## 1783     X360                               XS Games   0.00
## 1784       XB                               XS Games   0.01
## 1785      3DS                            Xseed Games   0.00
## 1786      PS4                            Xseed Games   0.02
## 1787      PSV                            Xseed Games   0.02
## 1788      3DS                       Yacht Club Games   0.04
## 1789      PS4                       Yacht Club Games   0.03
## 1790     WiiU                       Yacht Club Games   0.04
## 1791      PS2                   Yamasa Entertainment   0.00
## 1792      PSP                   Yamasa Entertainment   0.00
## 1793      PS2                                   Yeti   0.00
## 1794      PS4                                   Yeti   0.00
## 1795      PSP                                   Yeti   0.00
## 1796     X360                                   Yeti   0.00
## 1797      PS2                                 Yuke's   0.01
## 1798      SAT                                Yumedia   0.00
## 1799      PSP                                 Zenrin   0.00
## 1800       DS                 Zoo Digital Publishing   0.04
## 1801      GBA                 Zoo Digital Publishing   1.09
## 1802       GC                 Zoo Digital Publishing   0.00
## 1803      PS2                 Zoo Digital Publishing   1.00
## 1804      Wii                 Zoo Digital Publishing   0.03
## 1805       XB                 Zoo Digital Publishing   0.29
## 1806       DS                              Zoo Games   0.00
## 1807      Wii                              Zoo Games   0.00
## 1808     X360                              Zoo Games   0.00
## 1809       DS                            Zushi Games   0.03
## 1810      PSP                            Zushi Games   0.00
## 1811      Wii                            Zushi Games   0.01
## 1812     X360                            Zushi Games   0.01
aggregate(EU_Sales,by=list(Year = Year,Genre = Genre),sum)
##     Year        Genre     x
## 1   1980       Action  0.02
## 2   1981       Action  0.81
## 3   1982       Action  0.38
## 4   1983       Action  0.17
## 5   1984       Action  0.19
## 6   1985       Action  0.38
## 7   1986       Action  1.66
## 8   1987       Action  0.06
## 9   1988       Action  0.16
## 10  1989       Action  0.46
## 11  1990       Action  0.97
## 12  1991       Action  1.08
## 13  1992       Action  0.96
## 14  1993       Action  0.22
## 15  1994       Action  0.12
## 16  1995       Action  0.45
## 17  1996       Action  5.88
## 18  1997       Action  9.86
## 19  1998       Action 11.90
## 20  1999       Action  8.68
## 21  2000       Action 10.84
## 22  2001       Action 19.25
## 23  2002       Action 27.01
## 24  2003       Action 20.88
## 25  2004       Action 16.03
## 26  2005       Action 21.95
## 27  2006       Action 15.29
## 28  2007       Action 25.86
## 29  2008       Action 39.49
## 30  2009       Action 39.20
## 31  2010       Action 35.75
## 32  2011       Action 41.04
## 33  2012       Action 42.78
## 34  2013       Action 45.21
## 35  2014       Action 40.48
## 36  2015       Action 24.65
## 37  2016       Action  6.36
## 38  2017       Action  0.00
## 39   N/A       Action  8.52
## 40  1983    Adventure  0.02
## 41  1987    Adventure  0.50
## 42  1991    Adventure  0.31
## 43  1992    Adventure  2.81
## 44  1993    Adventure  0.00
## 45  1994    Adventure  2.81
## 46  1995    Adventure  0.01
## 47  1996    Adventure  0.60
## 48  1997    Adventure  1.34
## 49  1998    Adventure  2.52
## 50  1999    Adventure  2.78
## 51  2000    Adventure  0.69
## 52  2001    Adventure  3.67
## 53  2002    Adventure  2.51
## 54  2003    Adventure  0.57
## 55  2004    Adventure  2.13
## 56  2005    Adventure  2.05
## 57  2006    Adventure  2.64
## 58  2007    Adventure  5.56
## 59  2008    Adventure  5.62
## 60  2009    Adventure  5.56
## 61  2010    Adventure  5.24
## 62  2011    Adventure  4.69
## 63  2012    Adventure  1.31
## 64  2013    Adventure  1.97
## 65  2014    Adventure  2.11
## 66  2015    Adventure  3.38
## 67  2016    Adventure  0.39
## 68   N/A    Adventure  0.34
## 69  1980     Fighting  0.04
## 70  1985     Fighting  0.00
## 71  1987     Fighting  0.65
## 72  1991     Fighting  0.00
## 73  1992     Fighting  2.28
## 74  1993     Fighting  0.55
## 75  1994     Fighting  0.98
## 76  1995     Fighting  2.84
## 77  1996     Fighting  4.05
## 78  1997     Fighting  2.65
## 79  1998     Fighting  7.80
## 80  1999     Fighting  2.65
## 81  2000     Fighting  6.31
## 82  2001     Fighting  5.00
## 83  2002     Fighting  6.21
## 84  2003     Fighting  5.78
## 85  2004     Fighting  4.12
## 86  2005     Fighting  4.47
## 87  2006     Fighting  4.52
## 88  2007     Fighting  3.47
## 89  2008     Fighting  7.17
## 90  2009     Fighting  7.59
## 91  2010     Fighting  4.22
## 92  2011     Fighting  5.67
## 93  2012     Fighting  2.43
## 94  2013     Fighting  1.95
## 95  2014     Fighting  3.07
## 96  2015     Fighting  2.38
## 97  2016     Fighting  1.15
## 98   N/A     Fighting  1.32
## 99  1980         Misc  0.15
## 100 1982         Misc  0.05
## 101 1983         Misc  0.00
## 102 1984         Misc  0.00
## 103 1989         Misc  0.00
## 104 1991         Misc  0.00
## 105 1992         Misc  0.71
## 106 1993         Misc  0.00
## 107 1994         Misc  0.81
## 108 1995         Misc  1.56
## 109 1996         Misc  2.75
## 110 1997         Misc  1.22
## 111 1998         Misc  2.91
## 112 1999         Misc  3.73
## 113 2000         Misc  4.91
## 114 2001         Misc  4.25
## 115 2002         Misc  3.56
## 116 2003         Misc  7.46
## 117 2004         Misc  9.44
## 118 2005         Misc 20.32
## 119 2006         Misc 19.35
## 120 2007         Misc 20.97
## 121 2008         Misc 21.04
## 122 2009         Misc 20.64
## 123 2010         Misc 27.11
## 124 2011         Misc 14.08
## 125 2012         Misc  6.63
## 126 2013         Misc  7.50
## 127 2014         Misc  8.87
## 128 2015         Misc  3.71
## 129 2016         Misc  0.09
## 130  N/A         Misc  2.16
## 131 1981     Platform  0.37
## 132 1982     Platform  0.28
## 133 1983     Platform  0.43
## 134 1984     Platform  0.00
## 135 1985     Platform  3.77
## 136 1986     Platform  0.18
## 137 1987     Platform  0.14
## 138 1988     Platform  4.99
## 139 1989     Platform  3.08
## 140 1990     Platform  3.99
## 141 1991     Platform  1.19
## 142 1992     Platform  2.05
## 143 1993     Platform  3.16
## 144 1994     Platform  5.73
## 145 1995     Platform  3.22
## 146 1996     Platform  6.83
## 147 1997     Platform  6.45
## 148 1998     Platform  8.19
## 149 1999     Platform  5.34
## 150 2000     Platform  4.64
## 151 2001     Platform 11.62
## 152 2002     Platform 12.30
## 153 2003     Platform 12.50
## 154 2004     Platform 12.05
## 155 2005     Platform  5.38
## 156 2006     Platform 11.97
## 157 2007     Platform  9.77
## 158 2008     Platform 10.78
## 159 2009     Platform 11.58
## 160 2010     Platform  8.55
## 161 2011     Platform  8.86
## 162 2012     Platform  5.88
## 163 2013     Platform  9.09
## 164 2014     Platform  3.63
## 165 2015     Platform  1.81
## 166 2016     Platform  0.87
## 167  N/A     Platform  0.96
## 168 1981       Puzzle  0.13
## 169 1982       Puzzle  0.58
## 170 1983       Puzzle  0.05
## 171 1984       Puzzle  0.18
## 172 1985       Puzzle  0.19
## 173 1988       Puzzle  0.69
## 174 1989       Puzzle  3.61
## 175 1990       Puzzle  0.80
## 176 1991       Puzzle  0.16
## 177 1992       Puzzle  0.52
## 178 1993       Puzzle  0.13
## 179 1994       Puzzle  0.00
## 180 1995       Puzzle  0.13
## 181 1996       Puzzle  0.29
## 182 1997       Puzzle  0.53
## 183 1998       Puzzle  1.59
## 184 1999       Puzzle  0.45
## 185 2000       Puzzle  0.93
## 186 2001       Puzzle  1.84
## 187 2002       Puzzle  1.41
## 188 2003       Puzzle  0.28
## 189 2004       Puzzle  1.48
## 190 2005       Puzzle  6.07
## 191 2006       Puzzle  2.14
## 192 2007       Puzzle  8.80
## 193 2008       Puzzle  5.13
## 194 2009       Puzzle  5.64
## 195 2010       Puzzle  3.20
## 196 2011       Puzzle  2.19
## 197 2012       Puzzle  0.42
## 198 2013       Puzzle  0.48
## 199 2014       Puzzle  0.38
## 200 2015       Puzzle  0.11
## 201  N/A       Puzzle  0.25
## 202 1981       Racing  0.03
## 203 1982       Racing  0.09
## 204 1984       Racing  0.49
## 205 1986       Racing  0.37
## 206 1988       Racing  0.38
## 207 1990       Racing  1.20
## 208 1991       Racing  0.37
## 209 1992       Racing  1.24
## 210 1993       Racing  0.00
## 211 1994       Racing  0.00
## 212 1995       Racing  1.56
## 213 1996       Racing  5.19
## 214 1997       Racing 10.82
## 215 1998       Racing  9.62
## 216 1999       Racing 11.11
## 217 2000       Racing  6.50
## 218 2001       Racing 17.89
## 219 2002       Racing  8.89
## 220 2003       Racing 17.23
## 221 2004       Racing 12.47
## 222 2005       Racing 15.85
## 223 2006       Racing  8.90
## 224 2007       Racing 13.17
## 225 2008       Racing 24.32
## 226 2009       Racing 13.11
## 227 2010       Racing 14.52
## 228 2011       Racing 13.52
## 229 2012       Racing  7.58
## 230 2013       Racing  6.32
## 231 2014       Racing  7.70
## 232 2015       Racing  4.74
## 233 2016       Racing  1.14
## 234  N/A       Racing  2.07
## 235 1986 Role-Playing  0.00
## 236 1987 Role-Playing  0.00
## 237 1988 Role-Playing  0.00
## 238 1989 Role-Playing  0.00
## 239 1990 Role-Playing  0.00
## 240 1991 Role-Playing  0.09
## 241 1992 Role-Playing  0.00
## 242 1993 Role-Playing  0.07
## 243 1994 Role-Playing  0.00
## 244 1995 Role-Playing  0.30
## 245 1996 Role-Playing 11.04
## 246 1997 Role-Playing  3.44
## 247 1998 Role-Playing  6.44
## 248 1999 Role-Playing 11.17
## 249 2000 Role-Playing  4.20
## 250 2001 Role-Playing  4.14
## 251 2002 Role-Playing  9.39
## 252 2003 Role-Playing  5.70
## 253 2004 Role-Playing 16.73
## 254 2005 Role-Playing  4.96
## 255 2006 Role-Playing  8.12
## 256 2007 Role-Playing  8.37
## 257 2008 Role-Playing 11.30
## 258 2009 Role-Playing  8.36
## 259 2010 Role-Playing 13.70
## 260 2011 Role-Playing 14.10
## 261 2012 Role-Playing 11.97
## 262 2013 Role-Playing  8.94
## 263 2014 Role-Playing 11.24
## 264 2015 Role-Playing 12.52
## 265 2016 Role-Playing  1.29
## 266 2017 Role-Playing  0.00
## 267  N/A Role-Playing  0.48
## 268 1980      Shooter  0.43
## 269 1981      Shooter  0.56
## 270 1982      Shooter  0.21
## 271 1983      Shooter  0.03
## 272 1984      Shooter  0.85
## 273 1985      Shooter  0.14
## 274 1986      Shooter  0.16
## 275 1987      Shooter  0.03
## 276 1988      Shooter  0.03
## 277 1989      Shooter  0.39
## 278 1991      Shooter  0.38
## 279 1992      Shooter  0.00
## 280 1993      Shooter  0.51
## 281 1994      Shooter  2.57
## 282 1995      Shooter  0.48
## 283 1996      Shooter  2.14
## 284 1997      Shooter  4.50
## 285 1998      Shooter  3.36
## 286 1999      Shooter  3.73
## 287 2000      Shooter  2.17
## 288 2001      Shooter  7.50
## 289 2002      Shooter 14.98
## 290 2003      Shooter  8.54
## 291 2004      Shooter 12.75
## 292 2005      Shooter  9.21
## 293 2006      Shooter  8.81
## 294 2007      Shooter 22.09
## 295 2008      Shooter 16.29
## 296 2009      Shooter 21.17
## 297 2010      Shooter 23.90
## 298 2011      Shooter 35.31
## 299 2012      Shooter 26.34
## 300 2013      Shooter 23.15
## 301 2014      Shooter 25.81
## 302 2015      Shooter 24.23
## 303 2016      Shooter  7.70
## 304  N/A      Shooter  2.82
## 305 1981   Simulation  0.02
## 306 1985   Simulation  0.03
## 307 1988   Simulation  0.02
## 308 1990   Simulation  0.17
## 309 1991   Simulation  0.27
## 310 1992   Simulation  0.84
## 311 1993   Simulation  0.00
## 312 1994   Simulation  0.23
## 313 1995   Simulation  0.63
## 314 1996   Simulation  3.05
## 315 1997   Simulation  1.29
## 316 1998   Simulation  0.77
## 317 1999   Simulation  1.33
## 318 2000   Simulation  0.77
## 319 2001   Simulation  4.35
## 320 2002   Simulation  3.53
## 321 2003   Simulation  6.47
## 322 2004   Simulation  3.56
## 323 2005   Simulation 16.45
## 324 2006   Simulation  6.22
## 325 2007   Simulation 14.03
## 326 2008   Simulation 12.12
## 327 2009   Simulation 11.64
## 328 2010   Simulation  6.98
## 329 2011   Simulation  5.21
## 330 2012   Simulation  3.62
## 331 2013   Simulation  3.56
## 332 2014   Simulation  3.44
## 333 2015   Simulation  2.51
## 334 2016   Simulation  0.09
## 335 2020   Simulation  0.00
## 336  N/A   Simulation  0.18
## 337 1980       Sports  0.03
## 338 1981       Sports  0.04
## 339 1982       Sports  0.06
## 340 1983       Sports  0.10
## 341 1984       Sports  0.39
## 342 1985       Sports  0.23
## 343 1986       Sports  0.47
## 344 1987       Sports  0.03
## 345 1988       Sports  0.32
## 346 1989       Sports  0.90
## 347 1990       Sports  0.50
## 348 1991       Sports  0.10
## 349 1992       Sports  0.25
## 350 1993       Sports  0.01
## 351 1994       Sports  0.55
## 352 1995       Sports  1.28
## 353 1996       Sports  3.78
## 354 1997       Sports  5.47
## 355 1998       Sports 10.21
## 356 1999       Sports  7.03
## 357 2000       Sports  9.77
## 358 2001       Sports 14.14
## 359 2002       Sports 19.24
## 360 2003       Sports 15.96
## 361 2004       Sports 14.86
## 362 2005       Sports 14.10
## 363 2006       Sports 40.20
## 364 2007       Sports 26.54
## 365 2008       Sports 26.96
## 366 2009       Sports 42.17
## 367 2010       Sports 29.05
## 368 2011       Sports 19.86
## 369 2012       Sports  8.83
## 370 2013       Sports 15.16
## 371 2014       Sports 18.70
## 372 2015       Sports 16.69
## 373 2016       Sports  7.36
## 374  N/A       Sports  5.51
## 375 1991     Strategy  0.00
## 376 1992     Strategy  0.05
## 377 1993     Strategy  0.00
## 378 1994     Strategy  1.08
## 379 1995     Strategy  2.44
## 380 1996     Strategy  1.66
## 381 1997     Strategy  0.75
## 382 1998     Strategy  1.59
## 383 1999     Strategy  4.67
## 384 2000     Strategy  1.02
## 385 2001     Strategy  1.24
## 386 2002     Strategy  0.71
## 387 2003     Strategy  2.44
## 388 2004     Strategy  1.70
## 389 2005     Strategy  1.13
## 390 2006     Strategy  1.08
## 391 2007     Strategy  1.87
## 392 2008     Strategy  4.18
## 393 2009     Strategy  4.93
## 394 2010     Strategy  4.51
## 395 2011     Strategy  2.91
## 396 2012     Strategy  0.99
## 397 2013     Strategy  2.47
## 398 2014     Strategy  0.22
## 399 2015     Strategy  0.98
## 400 2016     Strategy  0.32
## 401  N/A     Strategy  0.40
aggregate(EU_Sales,by=list(Year = Year,Publisher = Publisher),sum)
##      Year                              Publisher     x
## 1    2006                        10TACLE Studios  0.01
## 2    2007                        10TACLE Studios  0.03
## 3    2009                             1C Company  0.01
## 4    2011                             1C Company  0.06
## 5    1981           20th Century Fox Video Games  0.07
## 6    1982           20th Century Fox Video Games  0.03
## 7    2008                                 2D Boy  0.03
## 8    1998                                    3DO  0.09
## 9    1999                                    3DO  0.96
## 10   2000                                    3DO  1.04
## 11   2001                                    3DO  0.56
## 12   2002                                    3DO  0.23
## 13   2003                                    3DO  0.16
## 14   2009                                49Games  0.04
## 15   2002                              505 Games  0.02
## 16   2003                              505 Games  0.04
## 17   2004                              505 Games  0.30
## 18   2005                              505 Games  0.17
## 19   2006                              505 Games  2.10
## 20   2007                              505 Games  2.81
## 21   2008                              505 Games  0.30
## 22   2009                              505 Games  1.89
## 23   2010                              505 Games  4.42
## 24   2011                              505 Games  0.90
## 25   2012                              505 Games  1.07
## 26   2013                              505 Games  0.95
## 27   2014                              505 Games  0.82
## 28   2015                              505 Games  0.30
## 29   2016                              505 Games  0.34
## 30   2008                                    5pb  0.00
## 31   2009                                    5pb  0.00
## 32   2010                                    5pb  0.00
## 33   2011                                    5pb  0.00
## 34   2012                                    5pb  0.00
## 35   2013                                    5pb  0.00
## 36   2014                                    5pb  0.00
## 37   2015                                    5pb  0.00
## 38   2016                                    5pb  0.00
## 39   2010                               7G//AMES  0.01
## 40   2011                               7G//AMES  0.05
## 41   1999                             989 Sports  0.14
## 42   1997                            989 Studios  0.19
## 43   1998                            989 Studios  1.45
## 44   1999                            989 Studios  1.66
## 45   2010                               Abylight  0.00
## 46   1993                  Acclaim Entertainment  0.39
## 47   1994                  Acclaim Entertainment  0.90
## 48   1995                  Acclaim Entertainment  0.50
## 49   1996                  Acclaim Entertainment  1.14
## 50   1997                  Acclaim Entertainment  0.92
## 51   1998                  Acclaim Entertainment  2.95
## 52   1999                  Acclaim Entertainment  0.76
## 53   2000                  Acclaim Entertainment  1.56
## 54   2001                  Acclaim Entertainment  3.55
## 55   2002                  Acclaim Entertainment  2.37
## 56   2003                  Acclaim Entertainment  1.38
## 57   2004                  Acclaim Entertainment  0.33
## 58   1996                               Accolade  0.07
## 59   1997                               Accolade  0.20
## 60   1999                               Accolade  0.07
## 61   2009                            Ackkstudios  0.00
## 62   2010                            Ackkstudios  0.04
## 63   2011                            Ackkstudios  0.00
## 64   2012                            Ackkstudios  0.00
## 65   2006                                Acquire  0.00
## 66   2008                                Acquire  0.00
## 67   2009                                Acquire  0.00
## 68   2010                                Acquire  0.00
## 69   2011                                Acquire  0.00
## 70   2012                                Acquire  0.00
## 71   2014                                Acquire  0.00
## 72   1980                             Activision  0.18
## 73   1981                             Activision  0.46
## 74   1982                             Activision  0.11
## 75   1983                             Activision  0.11
## 76   1984                             Activision  0.01
## 77   1985                             Activision  0.06
## 78   1987                             Activision  0.06
## 79   1988                             Activision  0.04
## 80   1989                             Activision  0.02
## 81   1994                             Activision  1.08
## 82   1995                             Activision  2.27
## 83   1996                             Activision  1.67
## 84   1997                             Activision  0.80
## 85   1998                             Activision  2.72
## 86   1999                             Activision  2.07
## 87   2000                             Activision  4.50
## 88   2001                             Activision  6.19
## 89   2002                             Activision  7.75
## 90   2003                             Activision  6.40
## 91   2004                             Activision 16.24
## 92   2005                             Activision  7.78
## 93   2006                             Activision  2.56
## 94   2007                             Activision 13.48
## 95   2008                             Activision 16.19
## 96   2009                             Activision 21.88
## 97   2010                             Activision 16.88
## 98   2011                             Activision 16.78
## 99   2012                             Activision 19.45
## 100  2013                             Activision 14.80
## 101  2014                             Activision 16.38
## 102  2015                             Activision 13.41
## 103  2016                             Activision  1.39
## 104   N/A                             Activision  1.81
## 105  2014                    Activision Blizzard  0.36
## 106  2001                       Activision Value  0.08
## 107  2002                       Activision Value  0.02
## 108  2003                       Activision Value  0.34
## 109  2004                       Activision Value  0.01
## 110  2005                       Activision Value  0.01
## 111  2006                       Activision Value  0.00
## 112  2007                       Activision Value  0.19
## 113  2008                       Activision Value  0.18
## 114  2009                       Activision Value  0.05
## 115  1996                       Adeline Software  0.07
## 116  2010                               Aerosoft  0.00
## 117  2013                               Aerosoft  0.02
## 118  2004                 Agatsuma Entertainment  0.02
## 119  2012                 Agatsuma Entertainment  0.00
## 120  2013                 Agatsuma Entertainment  0.00
## 121  1997                                 Agetec  0.01
## 122  1998                                 Agetec  0.05
## 123  2002                                 Agetec  0.43
## 124  2003                                 Agetec  0.09
## 125  2009                                 Agetec  0.00
## 126  2008                            Aksys Games  0.00
## 127  2014                            Aksys Games  0.01
## 128  2015                            Aksys Games  0.00
## 129  2016                            Aksys Games  0.00
## 130  2009                   Alawar Entertainment  0.03
## 131  2015                   Alawar Entertainment  0.01
## 132  2006                              Alchemist  0.46
## 133  2007                              Alchemist  0.00
## 134  2008                              Alchemist  0.00
## 135  2009                              Alchemist  0.00
## 136  2010                              Alchemist  0.00
## 137  2011                              Alchemist  0.00
## 138  2012                              Alchemist  0.00
## 139  2013                              Alchemist  0.00
## 140  2015                              Alchemist  0.00
## 141  2010                   Alternative Software  0.06
## 142  2015                   Alternative Software  0.02
## 143  2016                   Alternative Software  0.10
## 144  2001                                 Altron  0.02
## 145  2009                                 Alvion  0.00
## 146  2010                                 Alvion  0.00
## 147  1996                     American Softworks  0.09
## 148  1991                          Angel Studios  0.00
## 149  1994                          Angel Studios  0.00
## 150  1995                          Angel Studios  0.00
## 151  1982                        Answer Software  0.03
## 152  2007                         AQ Interactive  0.05
## 153  2008                         AQ Interactive  0.01
## 154  2009                         AQ Interactive  0.00
## 155  1999                              Aqua Plus  0.00
## 156  2006                              Aqua Plus  0.00
## 157  2007                              Aqua Plus  0.00
## 158  2008                              Aqua Plus  0.00
## 159  2009                              Aqua Plus  0.00
## 160  2010                              Aqua Plus  0.00
## 161  2011                              Aqua Plus  0.00
## 162  2012                              Aqua Plus  0.00
## 163  2013                              Aqua Plus  0.00
## 164  2015                              Aqua Plus  0.00
## 165  2016                              Aqua Plus  0.00
## 166  1997                                  Aques  0.00
## 167  2008                       Arc System Works  0.00
## 168  2009                       Arc System Works  0.00
## 169  2010                       Arc System Works  0.00
## 170  2012                       Arc System Works  0.00
## 171  2013                       Arc System Works  0.00
## 172  2014                       Arc System Works  0.00
## 173  2015                       Arc System Works  0.00
## 174  1992                    Arena Entertainment  0.88
## 175  2006                                   Aria  0.00
## 176  2002                                  Arika  0.01
## 177  2004                                  Arika  0.02
## 178  2008                                  Arika  0.00
## 179  1994                                ArtDink  0.00
## 180  1996                                ArtDink  0.05
## 181  1998                                ArtDink  0.00
## 182  2001                                ArtDink  0.00
## 183  2009                                ArtDink  0.00
## 184  2010                                ArtDink  0.00
## 185  2014                                ArtDink  0.00
## 186  1999                             Aruze Corp  0.00
## 187  2000                             Aruze Corp  0.00
## 188  1996                              ASC Games  0.50
## 189  1998                              ASC Games  0.25
## 190  1999                              ASC Games  0.02
## 191  2012                  Ascaron Entertainment  0.01
## 192  2004             Ascaron Entertainment GmbH  0.03
## 193  2008             Ascaron Entertainment GmbH  0.06
## 194  1994                    ASCII Entertainment  0.00
## 195  1995                    ASCII Entertainment  0.00
## 196  1996                    ASCII Entertainment  0.05
## 197  1997                    ASCII Entertainment  0.12
## 198  1998                    ASCII Entertainment  0.13
## 199  1999                    ASCII Entertainment  0.14
## 200  2001                    ASCII Entertainment  0.00
## 201  2008                      ASCII Media Works  0.00
## 202  2009                      ASCII Media Works  0.00
## 203  2010                      ASCII Media Works  0.00
## 204  2011                      ASCII Media Works  0.00
## 205  2014                      ASCII Media Works  0.00
## 206  2010                                 Asgard  0.00
## 207  2011                                 Asgard  0.00
## 208  2012                                 Asgard  0.00
## 209  2013                                 Asgard  0.00
## 210  2015                                 Asgard  0.00
## 211  1996                                    ASK  0.00
## 212  1996                Asmik Ace Entertainment  0.00
## 213  2000                Asmik Ace Entertainment  0.00
## 214  2006                Asmik Ace Entertainment  0.00
## 215  1994                             Asmik Corp  0.00
## 216  1995                             Asmik Corp  0.00
## 217  2003                                  Aspyr  0.01
## 218  2007                                  Aspyr  0.00
## 219  2008                                  Aspyr  0.00
## 220  2009                                  Aspyr  0.03
## 221  2009                               Astragon  0.01
## 222  2010                               Astragon  0.27
## 223  2011                               Astragon  0.02
## 224  2016                               Astragon  0.02
## 225  2010                   Asylum Entertainment  0.37
## 226  2011                   Asylum Entertainment  0.06
## 227  1980                                  Atari  0.49
## 228  1981                                  Atari  0.47
## 229  1982                                  Atari  1.11
## 230  1983                                  Atari  0.20
## 231  1986                                  Atari  0.04
## 232  1987                                  Atari  0.03
## 233  1989                                  Atari  0.01
## 234  1998                                  Atari  0.56
## 235  1999                                  Atari  0.86
## 236  2000                                  Atari  2.13
## 237  2001                                  Atari  1.88
## 238  2002                                  Atari  4.27
## 239  2003                                  Atari  4.50
## 240  2004                                  Atari  3.38
## 241  2005                                  Atari  1.06
## 242  2006                                  Atari  0.47
## 243  2007                                  Atari  0.98
## 244  2008                                  Atari  2.38
## 245  2009                                  Atari  0.94
## 246  2010                                  Atari  0.02
## 247  2011                                  Atari  0.00
## 248  2012                                  Atari  0.00
## 249  2016                                  Atari  0.02
## 250   N/A                                  Atari  1.32
## 251  1999                                 Athena  0.00
## 252  2001                                 Athena  0.00
## 253  1994                                  Atlus  0.00
## 254  1995                                  Atlus  0.00
## 255  1996                                  Atlus  0.04
## 256  1997                                  Atlus  0.03
## 257  1998                                  Atlus  0.07
## 258  1999                                  Atlus  0.02
## 259  2000                                  Atlus  0.02
## 260  2001                                  Atlus  0.00
## 261  2002                                  Atlus  0.02
## 262  2003                                  Atlus  0.06
## 263  2004                                  Atlus  0.02
## 264  2006                                  Atlus  0.00
## 265  2007                                  Atlus  0.00
## 266  2008                                  Atlus  0.09
## 267  2009                                  Atlus  0.00
## 268  2010                                  Atlus  0.00
## 269  2011                                  Atlus  0.03
## 270  2012                                  Atlus  0.58
## 271  2013                                  Atlus  0.01
## 272  2014                                  Atlus  0.07
## 273  2015                                  Atlus  0.04
## 274  2016                                  Atlus  0.00
## 275  1982                     Avalon Interactive  0.01
## 276  1999                     Avalon Interactive  0.04
## 277  2002                     Avalon Interactive  0.02
## 278  2003                     Avalon Interactive  0.01
## 279  2004                     Avalon Interactive  0.04
## 280  2007                              Avanquest  0.45
## 281  2008                              Avanquest  0.01
## 282  2009                              Avanquest  0.32
## 283  2010                              Avanquest  0.43
## 284  2011                              Avanquest  0.31
## 285  2016                              Avanquest  0.04
## 286   N/A                              Avanquest  0.06
## 287  2012                     Avanquest Software  0.48
## 288  2013                     Avanquest Software  0.01
## 289  2015                     Avanquest Software  0.04
## 290  1998                                  Axela  0.00
## 291  2000                     BAM! Entertainment  0.04
## 292  2001                     BAM! Entertainment  0.37
## 293  2002                     BAM! Entertainment  0.82
## 294  2003                     BAM! Entertainment  0.19
## 295  2004                     BAM! Entertainment  0.03
## 296  1991                              Banpresto  0.00
## 297  1992                              Banpresto  0.00
## 298  1993                              Banpresto  0.00
## 299  1994                              Banpresto  0.00
## 300  1995                              Banpresto  0.00
## 301  1996                              Banpresto  0.00
## 302  1997                              Banpresto  0.00
## 303  1998                              Banpresto  0.00
## 304  1999                              Banpresto  0.00
## 305  2000                              Banpresto  0.00
## 306  2001                              Banpresto  0.03
## 307  2002                              Banpresto  0.02
## 308  2003                              Banpresto  0.02
## 309  2004                              Banpresto  0.00
## 310  2005                              Banpresto  0.00
## 311  2006                              Banpresto  0.00
## 312  2007                              Banpresto  0.00
## 313  2008                              Banpresto  0.05
## 314  2009                              Banpresto  0.08
## 315  2011                              Banpresto  0.00
## 316  2007                                Benesse  0.00
## 317  2008                                Benesse  0.00
## 318  2001                               Berkeley  0.01
## 319  2002                     Bethesda Softworks  0.50
## 320  2003                     Bethesda Softworks  0.04
## 321  2004                     Bethesda Softworks  0.08
## 322  2005                     Bethesda Softworks  0.06
## 323  2006                     Bethesda Softworks  0.03
## 324  2007                     Bethesda Softworks  0.01
## 325  2008                     Bethesda Softworks  3.17
## 326  2009                     Bethesda Softworks  0.42
## 327  2010                     Bethesda Softworks  2.59
## 328  2011                     Bethesda Softworks  9.96
## 329  2012                     Bethesda Softworks  1.66
## 330  2014                     Bethesda Softworks  4.13
## 331  2015                     Bethesda Softworks  6.84
## 332  2016                     Bethesda Softworks  0.99
## 333   N/A                     Bethesda Softworks  0.25
## 334  2002                    Big Ben Interactive  0.03
## 335  2004                    Big Ben Interactive  0.00
## 336  2008                    Big Ben Interactive  0.00
## 337  2009                    Big Ben Interactive  0.08
## 338  2011                    Big Ben Interactive  0.00
## 339  2013                    Big Ben Interactive  0.02
## 340  2008                         Big Fish Games  0.01
## 341  2014                         Big Fish Games  0.03
## 342  2015                     Bigben Interactive  0.62
## 343  2009                      bitComposer Games  0.03
## 344  2011                      bitComposer Games  0.17
## 345  2005                       Black Bean Games  0.01
## 346  2007                       Black Bean Games  0.03
## 347  2008                       Black Bean Games  0.26
## 348  2009                       Black Bean Games  0.08
## 349  2010                       Black Bean Games  0.49
## 350  2011                       Black Bean Games  0.36
## 351   N/A                       Black Bean Games  0.33
## 352  2002                      Black Label Games  0.46
## 353  2007               Blast! Entertainment Ltd  0.06
## 354  2008               Blast! Entertainment Ltd  0.00
## 355  2009               Blast! Entertainment Ltd  0.05
## 356  2001                              Blue Byte  0.03
## 357  1996          BMG Interactive Entertainment  0.10
## 358  1997          BMG Interactive Entertainment  0.12
## 359  1998          BMG Interactive Entertainment  0.22
## 360  2013                    Bohemia Interactive  0.10
## 361  1982                                   Bomb  0.01
## 362  2013                               Boost On  0.00
## 363  1991                                    BPS  0.00
## 364  1994                                    BPS  0.00
## 365  2007                    Brash Entertainment  0.03
## 366  2008                    Brash Entertainment  0.18
## 367  2006                               Broccoli  0.00
## 368  2007                               Broccoli  0.00
## 369  2008                               Broccoli  0.00
## 370  2009                               Broccoli  0.00
## 371  2010                               Broccoli  0.00
## 372  2011                               Broccoli  0.00
## 373  2012                               Broccoli  0.00
## 374  2013                               Broccoli  0.00
## 375  2015                               Broccoli  0.00
## 376  2016                               Broccoli  0.00
## 377  2012                              BushiRoad  0.00
## 378  1985                                 Capcom  0.14
## 379  1986                                 Capcom  0.42
## 380  1987                                 Capcom  0.08
## 381  1988                                 Capcom  0.38
## 382  1989                                 Capcom  0.30
## 383  1990                                 Capcom  0.41
## 384  1991                                 Capcom  0.23
## 385  1992                                 Capcom  1.58
## 386  1993                                 Capcom  0.62
## 387  1994                                 Capcom  0.00
## 388  1996                                 Capcom  0.30
## 389  1997                                 Capcom  0.59
## 390  1998                                 Capcom  0.91
## 391  1999                                 Capcom  0.30
## 392  2000                                 Capcom  0.44
## 393  2001                                 Capcom  2.18
## 394  2002                                 Capcom  2.03
## 395  2003                                 Capcom  2.09
## 396  2004                                 Capcom  1.94
## 397  2005                                 Capcom  2.61
## 398  2006                                 Capcom  1.90
## 399  2007                                 Capcom  1.43
## 400  2008                                 Capcom  2.29
## 401  2009                                 Capcom  5.13
## 402  2010                                 Capcom  2.55
## 403  2011                                 Capcom  1.58
## 404  2012                                 Capcom  3.92
## 405  2013                                 Capcom  1.43
## 406  2014                                 Capcom  0.00
## 407  2015                                 Capcom  0.87
## 408  2016                                 Capcom  0.51
## 409   N/A                                 Capcom  0.06
## 410  2008                                   Cave  0.00
## 411  2009                                   Cave  0.00
## 412  2010                                   Cave  0.00
## 413  2011                                   Cave  0.00
## 414  2012                                   Cave  0.00
## 415  2013                                   Cave  0.00
## 416  1982                        CBS Electronics  0.02
## 417  2003                                    CCP  0.19
## 418  2005             CDV Software Entertainment  0.01
## 419  2008             CDV Software Entertainment  0.01
## 420  2009             CDV Software Entertainment  0.04
## 421  2011             CDV Software Entertainment  0.00
## 422  1992                               ChunSoft  0.00
## 423  1993                               ChunSoft  0.00
## 424  1994                               ChunSoft  0.00
## 425  1995                               ChunSoft  0.00
## 426  1996                               ChunSoft  0.00
## 427  1998                               ChunSoft  0.00
## 428  1999                               ChunSoft  0.00
## 429  2000                               ChunSoft  0.00
## 430  2002                               ChunSoft  0.00
## 431  2006                               ChunSoft  0.00
## 432  2009                               ChunSoft  0.00
## 433  2010                               ChunSoft  0.00
## 434  2011                               ChunSoft  0.00
## 435  2012                               ChunSoft  0.00
## 436  2008                       City Interactive  0.45
## 437  2009                       City Interactive  0.12
## 438  2010                       City Interactive  0.82
## 439  2011                       City Interactive  0.46
## 440  2013                       City Interactive  0.37
## 441  2014                       City Interactive  0.05
## 442   N/A                       City Interactive  0.00
## 443  2012       Cloud Imperium Games Corporation  0.00
## 444  1993                         Coconuts Japan  0.00
## 445  1996                         Coconuts Japan  0.01
## 446  1997                            Codemasters  2.04
## 447  1998                            Codemasters  4.77
## 448  1999                            Codemasters  0.21
## 449  2000                            Codemasters  0.84
## 450  2001                            Codemasters  0.61
## 451  2002                            Codemasters  1.18
## 452  2003                            Codemasters  1.23
## 453  2004                            Codemasters  0.28
## 454  2005                            Codemasters  0.43
## 455  2006                            Codemasters  0.08
## 456  2007                            Codemasters  1.18
## 457  2008                            Codemasters  1.39
## 458  2009                            Codemasters  4.62
## 459  2010                            Codemasters  1.67
## 460  2011                            Codemasters  3.13
## 461  2012                            Codemasters  1.78
## 462  2013                            Codemasters  1.19
## 463  2014                            Codemasters  0.74
## 464  2015                            Codemasters  0.63
## 465  2016                            Codemasters  0.65
## 466   N/A                            Codemasters  0.04
## 467  2008                     Codemasters Online  0.02
## 468  2007                      CokeM Interactive  0.00
## 469  1981                                 Coleco  0.15
## 470  1982                                 Coleco  0.02
## 471  2010                                Comfort  0.00
## 472  2011                                Comfort  0.00
## 473  2012                                Comfort  0.00
## 474  2013                                Comfort  0.00
## 475  2008                               Commseed  0.00
## 476  1995                                Compile  0.00
## 477  1996                                Compile  0.00
## 478  1997                                Compile  0.00
## 479  1998                                Compile  0.00
## 480  2008                          Compile Heart  0.00
## 481  2009                          Compile Heart  0.00
## 482  2010                          Compile Heart  0.00
## 483  2011                          Compile Heart  0.00
## 484  2012                          Compile Heart  0.03
## 485  2013                          Compile Heart  0.00
## 486  2014                          Compile Heart  0.00
## 487  2015                          Compile Heart  0.00
## 488  2016                          Compile Heart  0.00
## 489  2001               Conspiracy Entertainment  0.10
## 490  2002               Conspiracy Entertainment  0.01
## 491  2007               Conspiracy Entertainment  0.00
## 492  2008               Conspiracy Entertainment  0.03
## 493  2009               Conspiracy Entertainment  0.00
## 494  2010               Conspiracy Entertainment  0.00
## 495  1994                       Core Design Ltd.  0.07
## 496  1995                       Core Design Ltd.  0.04
## 497  1982                           CPG Products  0.03
## 498  1998                    Crave Entertainment  0.12
## 499  1999                    Crave Entertainment  0.24
## 500  2000                    Crave Entertainment  0.73
## 501  2002                    Crave Entertainment  0.14
## 502  2003                    Crave Entertainment  0.02
## 503  2004                    Crave Entertainment  0.29
## 504  2005                    Crave Entertainment  0.20
## 505  2006                    Crave Entertainment  0.04
## 506  2007                    Crave Entertainment  0.00
## 507  2008                    Crave Entertainment  0.08
## 508  2009                    Crave Entertainment  0.00
## 509  2010                    Crave Entertainment  0.00
## 510  2011                    Crave Entertainment  0.01
## 511  2008                          Creative Core  0.00
## 512  2009                          Creative Core  0.00
## 513  2008                            Crimson Cow  0.01
## 514  2011                            Crimson Cow  0.05
## 515  1995                       Crystal Dynamics  0.42
## 516  1996                       Crystal Dynamics  0.23
## 517  1996                                CTO SpA  0.33
## 518  1997                                CTO SpA  0.01
## 519  1991                          Culture Brain  0.00
## 520  1994                          Culture Brain  0.00
## 521  2008                          Culture Brain  0.00
## 522  2010                          Culture Brain  0.00
## 523  1998                     Culture Publishers  0.03
## 524  2007                             CyberFront  0.00
## 525  2008                             CyberFront  0.00
## 526  2009                             CyberFront  0.00
## 527  2010                             CyberFront  0.00
## 528  2011                             CyberFront  0.00
## 529  2012                             CyberFront  0.00
## 530  2013                             CyberFront  0.00
## 531  2015                                Cygames  0.00
## 532  1998                            D3Publisher  0.00
## 533  2000                            D3Publisher  0.03
## 534  2001                            D3Publisher  0.24
## 535  2005                            D3Publisher  0.02
## 536  2006                            D3Publisher  0.06
## 537  2007                            D3Publisher  1.75
## 538  2008                            D3Publisher  0.39
## 539  2009                            D3Publisher  0.76
## 540  2010                            D3Publisher  0.89
## 541  2011                            D3Publisher  0.41
## 542  2012                            D3Publisher  0.02
## 543  2013                            D3Publisher  0.42
## 544  2014                            D3Publisher  0.00
## 545  2015                            D3Publisher  0.00
## 546  2016                            D3Publisher  0.00
## 547   N/A                            D3Publisher  0.02
## 548  2009                               Daedalic  0.09
## 549  2010                               Daedalic  0.02
## 550  2012                               Daedalic  0.13
## 551  2012                 Daedalic Entertainment  0.02
## 552  2013                 Daedalic Entertainment  0.09
## 553  2006                                  Daito  0.00
## 554  1981                               Data Age  0.02
## 555  1982                               Data Age  0.02
## 556  2007                Data Design Interactive  0.01
## 557  2008                Data Design Interactive  0.00
## 558  2009                Data Design Interactive  0.00
## 559  1995                              Data East  0.00
## 560  1998                              Data East  0.00
## 561  2002                         Datam Polystar  0.00
## 562  2007                         Datam Polystar  0.00
## 563  2004                            Deep Silver  0.07
## 564  2005                            Deep Silver  0.03
## 565  2006                            Deep Silver  0.29
## 566  2007                            Deep Silver  0.00
## 567  2008                            Deep Silver  0.42
## 568  2009                            Deep Silver  0.97
## 569  2010                            Deep Silver  1.05
## 570  2011                            Deep Silver  1.99
## 571  2012                            Deep Silver  0.43
## 572  2013                            Deep Silver  2.06
## 573  2014                            Deep Silver  0.82
## 574  2015                            Deep Silver  0.36
## 575  2016                            Deep Silver  0.40
## 576   N/A                            Deep Silver  0.07
## 577  2001              Destination Software, Inc  0.03
## 578  2002              Destination Software, Inc  0.01
## 579  2003              Destination Software, Inc  0.01
## 580  2004              Destination Software, Inc  0.01
## 581  2005              Destination Software, Inc  0.02
## 582  2006              Destination Software, Inc  0.00
## 583  2007              Destination Software, Inc  0.00
## 584  2008              Destination Software, Inc  0.00
## 585  2007                              Destineer  0.00
## 586  2008                              Destineer  0.01
## 587  2009                              Destineer  0.04
## 588  2010                              Destineer  0.00
## 589  2011                              Destineer  0.00
## 590  2007                            Detn8 Games  0.00
## 591  2010                       Devolver Digital  0.02
## 592  2015                       Devolver Digital  0.02
## 593  2007                        DHM Interactive  0.00
## 594  2009                        DHM Interactive  0.00
## 595  2002                               DigiCube  0.00
## 596  1999             Disney Interactive Studios  0.00
## 597  2002             Disney Interactive Studios  0.07
## 598  2003             Disney Interactive Studios  0.19
## 599  2004             Disney Interactive Studios  0.89
## 600  2005             Disney Interactive Studios  1.08
## 601  2006             Disney Interactive Studios  1.13
## 602  2007             Disney Interactive Studios  3.61
## 603  2008             Disney Interactive Studios  6.92
## 604  2009             Disney Interactive Studios  3.38
## 605  2010             Disney Interactive Studios  6.24
## 606  2011             Disney Interactive Studios  4.94
## 607  2012             Disney Interactive Studios  0.75
## 608  2013             Disney Interactive Studios  2.33
## 609  2014             Disney Interactive Studios  1.59
## 610  2015             Disney Interactive Studios  1.24
## 611   N/A             Disney Interactive Studios  0.28
## 612  2008                                 Dorart  0.00
## 613  2010                                 Dorart  0.00
## 614  2015                        dramatic create  0.00
## 615  2016                        dramatic create  0.00
## 616  2001               DreamCatcher Interactive  0.02
## 617  2003               DreamCatcher Interactive  0.04
## 618  2004               DreamCatcher Interactive  0.02
## 619  2005               DreamCatcher Interactive  0.01
## 620  2006               DreamCatcher Interactive  0.05
## 621  2008               DreamCatcher Interactive  0.00
## 622  2009               DreamCatcher Interactive  0.00
## 623  2010               DreamCatcher Interactive  0.00
## 624  1998                 DreamWorks Interactive  0.05
## 625  2005                              DSI Games  0.04
## 626  2006                              DSI Games  0.00
## 627  2007                              DSI Games  0.00
## 628  2008                              DSI Games  0.00
## 629  2005                      DTP Entertainment  0.06
## 630  2007                      DTP Entertainment  0.02
## 631  2008                      DTP Entertainment  0.32
## 632  2009                      DTP Entertainment  0.24
## 633  2010                      DTP Entertainment  0.14
## 634  2011                      DTP Entertainment  0.59
## 635  2012                      DTP Entertainment  0.05
## 636   N/A                      DTP Entertainment  0.01
## 637  2016               Dusenberry Martin Racing  0.00
## 638  2012                               EA Games  0.06
## 639  2012                       Easy Interactive  0.03
## 640  2009                                  Ecole  0.00
## 641  2006                                   Edia  0.00
## 642  2009                                   Edia  0.00
## 643  1996                      Eidos Interactive  2.13
## 644  1997                      Eidos Interactive  6.23
## 645  1998                      Eidos Interactive  1.80
## 646  1999                      Eidos Interactive  4.34
## 647  2000                      Eidos Interactive  1.41
## 648  2001                      Eidos Interactive  0.76
## 649  2002                      Eidos Interactive  2.49
## 650  2003                      Eidos Interactive  3.42
## 651  2004                      Eidos Interactive  1.01
## 652  2005                      Eidos Interactive  2.27
## 653  2006                      Eidos Interactive  1.12
## 654  2007                      Eidos Interactive  2.28
## 655  2008                      Eidos Interactive  1.74
## 656  2009                      Eidos Interactive  3.85
## 657   N/A                      Eidos Interactive  0.78
## 658  1992                        Electronic Arts  0.05
## 659  1994                        Electronic Arts  0.16
## 660  1995                        Electronic Arts  1.27
## 661  1996                        Electronic Arts  2.37
## 662  1997                        Electronic Arts  6.06
## 663  1998                        Electronic Arts  7.90
## 664  1999                        Electronic Arts  6.33
## 665  2000                        Electronic Arts  7.14
## 666  2001                        Electronic Arts 14.46
## 667  2002                        Electronic Arts 24.37
## 668  2003                        Electronic Arts 21.11
## 669  2004                        Electronic Arts 18.88
## 670  2005                        Electronic Arts 13.49
## 671  2006                        Electronic Arts 13.22
## 672  2007                        Electronic Arts 20.67
## 673  2008                        Electronic Arts 25.59
## 674  2009                        Electronic Arts 30.97
## 675  2010                        Electronic Arts 31.18
## 676  2011                        Electronic Arts 28.47
## 677  2012                        Electronic Arts 21.46
## 678  2013                        Electronic Arts 22.98
## 679  2014                        Electronic Arts 21.20
## 680  2015                        Electronic Arts 21.14
## 681  2016                        Electronic Arts  6.91
## 682   N/A                        Electronic Arts  3.89
## 683  1996                 Electronic Arts Victor  0.17
## 684  1996                                    Elf  0.00
## 685  1997                                    Elf  0.00
## 686  1996                                  Elite  0.03
## 687  1996                     Empire Interactive  0.15
## 688  1998                     Empire Interactive  0.01
## 689  1999                     Empire Interactive  0.01
## 690  2000                     Empire Interactive  0.30
## 691  2001                     Empire Interactive  0.38
## 692  2002                     Empire Interactive  0.48
## 693  2003                     Empire Interactive  0.84
## 694  2004                     Empire Interactive  0.68
## 695  2005                     Empire Interactive  0.14
## 696  2006                     Empire Interactive  0.09
## 697  2007                     Empire Interactive  0.36
## 698  2008                     Empire Interactive  0.27
## 699   N/A                     Empire Interactive  0.06
## 700  2001                                 Encore  0.01
## 701  2003                                 Encore  0.00
## 702  2005                                 Encore  0.02
## 703  1987                       Enix Corporation  0.00
## 704  1988                       Enix Corporation  0.00
## 705  1990                       Enix Corporation  0.00
## 706  1992                       Enix Corporation  0.00
## 707  1993                       Enix Corporation  0.00
## 708  1994                       Enix Corporation  0.00
## 709  1995                       Enix Corporation  0.00
## 710  1996                       Enix Corporation  0.00
## 711  1999                       Enix Corporation  0.09
## 712  2000                       Enix Corporation  0.14
## 713  2001                       Enix Corporation  0.00
## 714  2002                       Enix Corporation  0.08
## 715  2003                       Enix Corporation  0.00
## 716  2004                       Enix Corporation  0.00
## 717  2009                      Enjoy Gaming ltd.  0.00
## 718  2001                             Enterbrain  0.00
## 719  2002                             Enterbrain  0.08
## 720  2004                             Enterbrain  0.02
## 721  2006                             Enterbrain  0.00
## 722  2007                             Enterbrain  0.00
## 723  2008                             Enterbrain  0.00
## 724  2009                             Enterbrain  0.00
## 725  2010                             Enterbrain  0.00
## 726  1999              EON Digital Entertainment  0.00
## 727  2016                             Epic Games  0.00
## 728  1991                                  Epoch  0.00
## 729  1992                                  Epoch  0.00
## 730  1993                                  Epoch  0.00
## 731  1995                                  Epoch  0.00
## 732  1996                                  Epoch  0.00
## 733  2000                                  Epoch  0.00
## 734  2007                                 Ertain  0.00
## 735  1997                                    ESP  0.00
## 736  1998                                    ESP  0.02
## 737  2002                                    ESP  0.00
## 738  2005                        Essential Games  0.00
## 739  2006                        Essential Games  0.00
## 740  1998                        Evolution Games  0.00
## 741  2004                          Evolved Games  0.03
## 742  2009                          Evolved Games  0.01
## 743  2011                          Evolved Games  0.00
## 744  2011                   Excalibur Publishing  0.12
## 745  2012                   Excalibur Publishing  0.12
## 746  2014                        Experience Inc.  0.00
## 747  2015                        Experience Inc.  0.00
## 748  2016                        Experience Inc.  0.00
## 749  2015            Extreme Entertainment Group  0.00
## 750  2007                     Falcom Corporation  0.00
## 751  2008                     Falcom Corporation  0.00
## 752  2009                     Falcom Corporation  0.00
## 753  2010                     Falcom Corporation  0.00
## 754  2011                     Falcom Corporation  0.00
## 755  2012                     Falcom Corporation  0.00
## 756  2013                     Falcom Corporation  0.00
## 757  2012                                 Fields  0.00
## 758  2005                       Flashpoint Games  0.01
## 759  2010                       Flashpoint Games  0.00
## 760  2007                            Flight-Plan  0.00
## 761  2009                            Flight-Plan  0.00
## 762  2006                 Focus Home Interactive  0.03
## 763  2007                 Focus Home Interactive  0.02
## 764  2008                 Focus Home Interactive  0.01
## 765  2009                 Focus Home Interactive  0.47
## 766  2010                 Focus Home Interactive  0.34
## 767  2011                 Focus Home Interactive  0.47
## 768  2012                 Focus Home Interactive  1.29
## 769  2013                 Focus Home Interactive  0.24
## 770  2014                 Focus Home Interactive  1.47
## 771  2015                 Focus Home Interactive  0.16
## 772  2016                 Focus Home Interactive  0.12
## 773   N/A                 Focus Home Interactive  0.07
## 774  2012                       Focus Multimedia  0.03
## 775  2015                       Focus Multimedia  0.02
## 776  2008                                 fonfun  0.00
## 777  2010                    Foreign Media Games  0.30
## 778  1998                              Fortyfive  0.00
## 779  1996                        Fox Interactive  0.58
## 780  1997                        Fox Interactive  1.96
## 781  1998                        Fox Interactive  0.13
## 782  1999                        Fox Interactive  0.46
## 783  2000                        Fox Interactive  0.06
## 784  1994                          From Software  0.00
## 785  1996                          From Software  0.06
## 786  1997                          From Software  0.04
## 787  1998                          From Software  0.03
## 788  1999                          From Software  0.05
## 789  2001                          From Software  0.02
## 790  2002                          From Software  0.01
## 791  2006                          From Software  0.00
## 792  2009                          From Software  0.00
## 793  2010                          From Software  0.00
## 794  2013                          From Software  0.00
## 795  1995                                   Fuji  0.00
## 796  2011                           Funbox Media  0.08
## 797  2012                           Funbox Media  0.04
## 798  2015                           Funbox Media  0.01
## 799  2010                                 Funcom  0.02
## 800  2012                                 Funcom  0.08
## 801  1996                                FunSoft  0.05
## 802  2006                                 Funsta  0.00
## 803  2007                                 Funsta  0.02
## 804   N/A                                 Funsta  0.03
## 805  2010                                  FuRyu  0.00
## 806  2011                                  FuRyu  0.00
## 807  2012                                  FuRyu  0.00
## 808  2013                                  FuRyu  0.00
## 809  2014                                  FuRyu  0.00
## 810  2015                                  FuRyu  0.02
## 811  2016                                  FuRyu  0.00
## 812  2015                      FuRyu Corporation  0.00
## 813  2009                                  G.Rev  0.00
## 814  2010                                  G.Rev  0.00
## 815  1996                                   Gaga  0.00
## 816  1998                 Gainax Network Systems  0.00
## 817  2007                                 Gakken  0.00
## 818  1994                              Game Arts  0.00
## 819  2003                           Game Factory  0.01
## 820  2004                           Game Factory  0.06
## 821  2005                           Game Factory  0.02
## 822  2006                           Game Factory  0.03
## 823  2007                           Game Factory  0.04
## 824  2008                           Game Factory  0.04
## 825  2010                           Game Factory  0.00
## 826  2007                              Game Life  0.02
## 827  2009                              Game Life  0.11
## 828  2008                             Gamebridge  0.08
## 829  2009                             Gamebridge  0.05
## 830  2008                               Gamecock  0.02
## 831  2007                               Gameloft  0.00
## 832  2010                 GameMill Entertainment  0.00
## 833  2011                 GameMill Entertainment  0.00
## 834  2012                 GameMill Entertainment  0.04
## 835  1998                                GameTek  0.02
## 836  2001                Gathering of Developers  0.26
## 837  2003                Gathering of Developers  0.05
## 838  2004                Gathering of Developers  0.16
## 839  1998                  General Entertainment  0.00
## 840  1999                                  Genki  0.00
## 841  2001                                  Genki  0.01
## 842  2003                                  Genki  0.34
## 843  2007                                  Genki  0.00
## 844  2012                                  Genki  0.00
## 845  2009                            Genterprise  0.00
## 846  2003                             Ghostlight  0.05
## 847  2004                             Ghostlight  0.05
## 848  2005                             Ghostlight  0.09
## 849  2006                             Ghostlight  0.03
## 850  2007                             Ghostlight  0.03
## 851  2008                             Ghostlight  0.02
## 852  2009                             Ghostlight  0.06
## 853  2010                             Ghostlight  0.11
## 854  2011                             Ghostlight  0.02
## 855   N/A                             Ghostlight  0.00
## 856  2014                                   Giga  0.00
## 857  2012                                 Giza10  0.00
## 858  1995                                  Glams  0.00
## 859  2006                 Global A Entertainment  0.00
## 860  2007                 Global A Entertainment  0.00
## 861  2008                 Global A Entertainment  0.00
## 862  2004                            Global Star  1.08
## 863  2005                            Global Star  0.61
## 864  2006                            Global Star  0.02
## 865  2006                            GN Software  0.00
## 866  2008                            GN Software  0.00
## 867  2010                            GN Software  0.00
## 868  2008                                    GOA  0.02
## 869  2002                           Gotham Games  0.53
## 870  2003                           Gotham Games  0.55
## 871  2004                           Gotham Games  0.16
## 872  2008                               Graffiti  0.00
## 873  2009                               Graffiti  0.00
## 874  2010                               Graffiti  0.00
## 875  2007                       Grand Prix Games  0.00
## 876  2005                 Graphsim Entertainment  0.02
## 877  1996                Gremlin Interactive Ltd  0.14
## 878  1997                Gremlin Interactive Ltd  0.12
## 879  1998                Gremlin Interactive Ltd  0.11
## 880  2010                  Griffin International  0.00
## 881  2005                           Groove Games  0.01
## 882  2006                           Groove Games  0.01
## 883  2008                                    GSP  0.74
## 884  2009                                    GSP  1.01
## 885  2010                                    GSP  0.25
## 886  2011                                    GSP  0.16
## 887  1995                         GT Interactive  0.10
## 888  1996                         GT Interactive  1.63
## 889  1997                         GT Interactive  1.96
## 890  1998                         GT Interactive  1.79
## 891  1999                         GT Interactive  3.01
## 892  2008                                 GungHo  0.00
## 893  2009                                 GungHo  0.00
## 894  2011                                 GungHo  0.00
## 895  2012                                 GungHo  0.01
## 896  2013                                 GungHo  0.00
## 897  2014                                 GungHo  0.01
## 898  2016                                 GungHo  0.00
## 899  1996                                   Gust  0.00
## 900  1997                                   Gust  0.00
## 901  2001                                   Gust  0.00
## 902  2002                                   Gust  0.00
## 903  2007                                   Gust  0.00
## 904  2008                                   Gust  0.05
## 905  2009                                   Gust  0.00
## 906  2010                                   Gust  0.00
## 907  2011                                   Gust  0.00
## 908  2012                                   Gust  0.00
## 909  2013                                   Gust  0.00
## 910  2007                              Hackberry  0.00
## 911  2008                              Hackberry  0.00
## 912  2010                              Hackberry  0.00
## 913  1989                         HAL Laboratory  0.00
## 914  2002                    Hamster Corporation  0.11
## 915  2006                    Hamster Corporation  0.00
## 916  2014                               Happinet  0.00
## 917  2015                               Happinet  0.00
## 918  2016                               Happinet  0.00
## 919  2015                 Harmonix Music Systems  0.09
## 920  1994                     Hasbro Interactive  0.81
## 921  1997                     Hasbro Interactive  0.81
## 922  1998                     Hasbro Interactive  0.77
## 923  1999                     Hasbro Interactive  0.62
## 924  2000                     Hasbro Interactive  0.51
## 925  2001                     Hasbro Interactive  0.06
## 926  2006                     Hasbro Interactive  0.00
## 927  2000                      Havas Interactive  0.09
## 928  2013                           Headup Games  0.03
## 929  1996                           Hearty Robin  0.00
## 930  1993                                   Hect  0.00
## 931  1994                                   Hect  0.00
## 932  1995                                   Hect  0.00
## 933  2016                            Hello Games  0.74
## 934  2011                        Her Interactive  0.00
## 935  2004                        Hip Interactive  0.05
## 936  2005                        Hip Interactive  0.04
## 937  2008                        HMH Interactive  0.03
## 938  2009                        HMH Interactive  0.08
## 939  2010           Home Entertainment Suppliers  0.04
## 940  2011           Home Entertainment Suppliers  0.25
## 941   N/A           Home Entertainment Suppliers  0.20
## 942  1997                   Hudson Entertainment  0.00
## 943  1998                   Hudson Entertainment  0.01
## 944  1999                   Hudson Entertainment  0.00
## 945  2001                   Hudson Entertainment  0.02
## 946  2003                   Hudson Entertainment  0.02
## 947  2006                   Hudson Entertainment  0.00
## 948  2007                   Hudson Entertainment  0.00
## 949  2008                   Hudson Entertainment  0.00
## 950  2009                   Hudson Entertainment  0.00
## 951  1984                            Hudson Soft  0.00
## 952  1985                            Hudson Soft  0.00
## 953  1986                            Hudson Soft  0.06
## 954  1991                            Hudson Soft  0.03
## 955  1992                            Hudson Soft  0.00
## 956  1993                            Hudson Soft  0.00
## 957  1994                            Hudson Soft  0.00
## 958  1995                            Hudson Soft  0.00
## 959  1996                            Hudson Soft  0.00
## 960  1997                            Hudson Soft  0.21
## 961  1998                            Hudson Soft  0.01
## 962  1999                            Hudson Soft  0.01
## 963  2000                            Hudson Soft  0.00
## 964  2001                            Hudson Soft  0.00
## 965  2002                            Hudson Soft  0.02
## 966  2003                            Hudson Soft  0.01
## 967  2004                            Hudson Soft  0.00
## 968  2005                            Hudson Soft  0.00
## 969  2006                            Hudson Soft  0.00
## 970  2007                            Hudson Soft  0.00
## 971  2008                            Hudson Soft  0.06
## 972  2009                            Hudson Soft  0.39
## 973  2010                            Hudson Soft  0.11
## 974  2011                            Hudson Soft  0.03
## 975  1991                    Human Entertainment  0.00
## 976  1994                    Human Entertainment  0.00
## 977  1995                    Human Entertainment  0.00
## 978  1996                    Human Entertainment  0.00
## 979  1997                    Human Entertainment  0.00
## 980  1998                    Human Entertainment  0.04
## 981  1999                    Human Entertainment  0.00
## 982  2015                                  HuneX  0.00
## 983  2011                    Iceberg Interactive  0.03
## 984  2012                    Iceberg Interactive  0.02
## 985  1992                            id Software  0.00
## 986  2002                           Idea Factory  0.00
## 987  2005                           Idea Factory  0.00
## 988  2006                           Idea Factory  0.00
## 989  2007                           Idea Factory  0.00
## 990  2008                           Idea Factory  0.00
## 991  2009                           Idea Factory  0.00
## 992  2010                           Idea Factory  0.00
## 993  2011                           Idea Factory  0.00
## 994  2012                           Idea Factory  0.00
## 995  2013                           Idea Factory  0.00
## 996  2014                           Idea Factory  0.04
## 997  2015                           Idea Factory  0.01
## 998  2016                           Idea Factory  0.00
## 999  2017                           Idea Factory  0.00
## 1000  N/A                           Idea Factory  0.00
## 1001 2014             Idea Factory International  0.05
## 1002 2015             Idea Factory International  0.03
## 1003 2006                           IE Institute  0.00
## 1004 2007                           IE Institute  0.00
## 1005 2008                           IE Institute  0.00
## 1006 2012                           IE Institute  0.00
## 1007 2002                 Ignition Entertainment  0.19
## 1008 2003                 Ignition Entertainment  0.07
## 1009 2004                 Ignition Entertainment  0.20
## 1010 2005                 Ignition Entertainment  0.39
## 1011 2006                 Ignition Entertainment  0.17
## 1012 2007                 Ignition Entertainment  0.01
## 1013 2008                 Ignition Entertainment  0.20
## 1014 2009                 Ignition Entertainment  0.01
## 1015 2011                 Ignition Entertainment  0.12
## 1016  N/A                 Ignition Entertainment  0.00
## 1017 2004                     Illusion Softworks  0.27
## 1018 1997                                 Imadio  0.00
## 1019 2012                            Image Epoch  0.00
## 1020 2014                        imageepoch Inc.  0.00
## 1021 1995                             Imageworks  0.00
## 1022 1981                                 Imagic  0.27
## 1023 1991                              Imagineer  0.00
## 1024 1996                              Imagineer  0.00
## 1025 1997                              Imagineer  0.00
## 1026 1998                              Imagineer  0.01
## 1027 1999                              Imagineer  0.02
## 1028 2000                              Imagineer  0.00
## 1029 2001                              Imagineer  0.00
## 1030 1993                                   Imax  0.00
## 1031 2004                            Indie Games  0.07
## 1032 1994                             Infogrames  0.30
## 1033 1996                             Infogrames  0.12
## 1034 1997                             Infogrames  0.29
## 1035 1998                             Infogrames  0.20
## 1036 1999                             Infogrames  0.44
## 1037 2000                             Infogrames  0.61
## 1038 2001                             Infogrames  0.66
## 1039 2002                             Infogrames  1.89
## 1040 2003                             Infogrames  0.03
## 1041  N/A                             Infogrames  0.06
## 1042 2016                        Insomniac Games  0.00
## 1043 2006                           Interchannel  0.00
## 1044 2008                           Interchannel  0.00
## 1045 2007                     Interchannel-Holon  0.00
## 1046 2015                              Intergrow  0.00
## 1047 1993                              Interplay  0.00
## 1048 1995                              Interplay  0.11
## 1049 1996                              Interplay  0.38
## 1050 1997                              Interplay  0.34
## 1051 1998                              Interplay  0.29
## 1052 1999                              Interplay  0.05
## 1053 2000                              Interplay  0.38
## 1054 2001                              Interplay  0.17
## 1055 2002                              Interplay  0.09
## 1056 2003                              Interplay  0.20
## 1057 2004                              Interplay  0.26
## 1058 1997                  Interplay Productions  0.04
## 1059 2012             Interworks Unlimited, Inc.  0.00
## 1060 2016                           Inti Creates  0.00
## 1061 2016                  Introversion Software  0.01
## 1062 2015                   inXile Entertainment  0.06
## 1063 1998              Irem Software Engineering  0.01
## 1064 2006              Irem Software Engineering  0.00
## 1065 2007              Irem Software Engineering  0.00
## 1066 2008              Irem Software Engineering  0.00
## 1067 2009              Irem Software Engineering  0.00
## 1068 2010              Irem Software Engineering  0.00
## 1069 2011              Irem Software Engineering  0.00
## 1070 2012              Irem Software Engineering  0.00
## 1071 1982                       ITT Family Games  0.02
## 1072 2008                              Ivolgamus  0.00
## 1073 2011                                   iWin  0.05
## 1074 2005                      Jack of All Games  0.10
## 1075 2011                      Jack of All Games  0.00
## 1076 1995                                 Jaleco  0.19
## 1077 1996                                 Jaleco  0.04
## 1078 1998                                 Jaleco  0.02
## 1079 1999                                 Jaleco  0.02
## 1080 2002                                 Jaleco  0.01
## 1081 2003                                 Jaleco  0.11
## 1082 2004                                 Jaleco  0.03
## 1083 2007                                 Jaleco  0.00
## 1084 2008                                 Jaleco  0.00
## 1085 2002                     Jester Interactive  0.27
## 1086 2003                     Jester Interactive  0.01
## 1087 2005                     Jester Interactive  0.01
## 1088 1999                                Jorudan  0.00
## 1089 2002                                Jorudan  0.00
## 1090 2003                                Jorudan  0.00
## 1091 2002                     JoWood Productions  0.02
## 1092 2004                     JoWood Productions  0.01
## 1093 2005                     JoWood Productions  0.04
## 1094 2006                     JoWood Productions  0.05
## 1095 2007                     JoWood Productions  0.03
## 1096 2008                     JoWood Productions  0.04
## 1097 2009                     JoWood Productions  0.13
## 1098 2010                     JoWood Productions  0.16
## 1099 2010                            Just Flight  0.03
## 1100 1994                                    JVC  0.00
## 1101 1996                                    JVC  0.27
## 1102 1997                                    JVC  0.01
## 1103 1998                                    JVC  0.03
## 1104 1999                                    JVC  0.01
## 1105 2000                                    JVC  0.02
## 1106 2012                         Kadokawa Games  0.00
## 1107 2013                         Kadokawa Games  0.00
## 1108 2014                         Kadokawa Games  0.00
## 1109 2015                         Kadokawa Games  0.00
## 1110 2016                         Kadokawa Games  0.00
## 1111 1996                        Kadokawa Shoten  0.00
## 1112 1997                        Kadokawa Shoten  0.00
## 1113 1998                        Kadokawa Shoten  0.18
## 1114 1999                        Kadokawa Shoten  0.13
## 1115 2004                        Kadokawa Shoten  0.00
## 1116 2005                        Kadokawa Shoten  0.00
## 1117 2006                        Kadokawa Shoten  0.00
## 1118 2007                        Kadokawa Shoten  0.00
## 1119 2008                        Kadokawa Shoten  0.00
## 1120 2009                        Kadokawa Shoten  0.00
## 1121 2010                        Kadokawa Shoten  0.00
## 1122 2011                        Kadokawa Shoten  0.00
## 1123 2012                        Kadokawa Shoten  0.00
## 1124 2013                        Kadokawa Shoten  0.00
## 1125 2014                        Kadokawa Shoten  0.00
## 1126 2015                        Kadokawa Shoten  0.00
## 1127 2013                            Kaga Create  0.00
## 1128 2015                            Kaga Create  0.00
## 1129 2007                          Kalypso Media  0.01
## 1130 2008                          Kalypso Media  0.03
## 1131 2009                          Kalypso Media  0.11
## 1132 2010                          Kalypso Media  0.13
## 1133 2011                          Kalypso Media  0.26
## 1134 2012                          Kalypso Media  0.02
## 1135 2014                          Kalypso Media  0.12
## 1136 2015                          Kalypso Media  0.25
## 1137  N/A                          Kalypso Media  0.13
## 1138 2010                                  Kamui  0.00
## 1139 2006                            Kando Games  0.01
## 1140 2010                    Karin Entertainment  0.00
## 1141 1991                                  Kemco  0.00
## 1142 1997                                  Kemco  0.12
## 1143 1998                                  Kemco  0.10
## 1144 1999                                  Kemco  0.05
## 1145 2001                                  Kemco  0.02
## 1146 2002                                  Kemco  0.01
## 1147 2003                                  Kemco  0.19
## 1148 2005                                  Kemco  0.00
## 1149 1998                                    KID  0.00
## 1150 2006                                    KID  0.00
## 1151 2007                           Kids Station  0.00
## 1152 2002                           King Records  0.00
## 1153 2003                    Knowledge Adventure  0.16
## 1154 2009                    Knowledge Adventure  0.00
## 1155 2008                             Koch Media  0.62
## 1156 2011                             Koch Media  0.11
## 1157 2013                             Koch Media  0.08
## 1158 2015                             Koch Media  0.75
## 1159 2016                             Koch Media  0.04
## 1160 1995               Kokopeli Digital Studios  0.01
## 1161 1986           Konami Digital Entertainment  0.14
## 1162 1987           Konami Digital Entertainment  0.06
## 1163 1989           Konami Digital Entertainment  0.07
## 1164 1990           Konami Digital Entertainment  0.25
## 1165 1991           Konami Digital Entertainment  0.22
## 1166 1992           Konami Digital Entertainment  0.01
## 1167 1993           Konami Digital Entertainment  0.00
## 1168 1994           Konami Digital Entertainment  0.00
## 1169 1995           Konami Digital Entertainment  0.26
## 1170 1996           Konami Digital Entertainment  0.57
## 1171 1997           Konami Digital Entertainment  0.90
## 1172 1998           Konami Digital Entertainment  2.44
## 1173 1999           Konami Digital Entertainment  2.24
## 1174 2000           Konami Digital Entertainment  0.62
## 1175 2001           Konami Digital Entertainment  6.58
## 1176 2002           Konami Digital Entertainment  3.20
## 1177 2003           Konami Digital Entertainment  4.29
## 1178 2004           Konami Digital Entertainment  5.12
## 1179 2005           Konami Digital Entertainment  4.96
## 1180 2006           Konami Digital Entertainment  4.82
## 1181 2007           Konami Digital Entertainment  3.32
## 1182 2008           Konami Digital Entertainment  7.75
## 1183 2009           Konami Digital Entertainment  4.86
## 1184 2010           Konami Digital Entertainment  4.57
## 1185 2011           Konami Digital Entertainment  2.65
## 1186 2012           Konami Digital Entertainment  2.17
## 1187 2013           Konami Digital Entertainment  1.43
## 1188 2014           Konami Digital Entertainment  1.92
## 1189 2015           Konami Digital Entertainment  2.72
## 1190 2016           Konami Digital Entertainment  0.48
## 1191  N/A           Konami Digital Entertainment  1.07
## 1192 2003                              Kool Kizz  0.01
## 1193 1996                                    KSS  0.00
## 1194 1993                                 Laguna  0.02
## 1195 1994                                 Laguna  0.00
## 1196 1995                                 Laguna  0.02
## 1197 2008                     Legacy Interactive  0.00
## 1198 1999                             LEGO Media  0.37
## 1199 2001                             LEGO Media  0.09
## 1200 2002                             LEGO Media  0.04
## 1201 2009                                Level 5  0.00
## 1202 2010                                Level 5  0.00
## 1203 2011                                Level 5  0.00
## 1204 2012                                Level 5  0.27
## 1205 2013                                Level 5  0.00
## 1206 2014                                Level 5  0.00
## 1207 2015                                Level 5  0.00
## 1208 2016                                Level 5  0.00
## 1209 2007                  Lexicon Entertainment  0.00
## 1210 2008                  Lexicon Entertainment  0.00
## 1211 2012                            Licensed 4U  0.06
## 1212 2007                 Lighthouse Interactive  0.01
## 1213 2002                           Liquid Games  0.07
## 1214 2006                           Liquid Games  0.00
## 1215 2010                           Little Orbit  0.00
## 1216 2013                           Little Orbit  0.02
## 1217 2014                           Little Orbit  0.80
## 1218 2015                           Little Orbit  0.49
## 1219 1998                                  Locus  0.00
## 1220 2002                              LSP Games  0.01
## 1221 2003                              LSP Games  0.03
## 1222 1994                              LucasArts  0.77
## 1223 1996                              LucasArts  0.21
## 1224 1997                              LucasArts  0.26
## 1225 1999                              LucasArts  1.37
## 1226 2000                              LucasArts  0.05
## 1227 2001                              LucasArts  0.95
## 1228 2002                              LucasArts  0.78
## 1229 2003                              LucasArts  0.62
## 1230 2004                              LucasArts  1.38
## 1231 2005                              LucasArts  2.81
## 1232 2006                              LucasArts  1.62
## 1233 2007                              LucasArts  5.75
## 1234 2008                              LucasArts  4.08
## 1235 2009                              LucasArts  1.24
## 1236 2010                              LucasArts  1.16
## 1237 2011                              LucasArts  2.95
## 1238  N/A                              LucasArts  0.63
## 1239 2004                               Mad Catz  0.04
## 1240 2006                               Mad Catz  0.01
## 1241 2012                               Mad Catz  0.00
## 1242 1998                        Magical Company  0.10
## 1243 2001                                  Magix  0.12
## 1244 2009                                  Magix  0.01
## 1245 2001                  Majesco Entertainment  0.29
## 1246 2002                  Majesco Entertainment  0.01
## 1247 2003                  Majesco Entertainment  0.19
## 1248 2004                  Majesco Entertainment  0.68
## 1249 2005                  Majesco Entertainment  0.06
## 1250 2006                  Majesco Entertainment  0.01
## 1251 2007                  Majesco Entertainment  0.01
## 1252 2008                  Majesco Entertainment  0.03
## 1253 2009                  Majesco Entertainment  0.38
## 1254 2010                  Majesco Entertainment  0.02
## 1255 2011                  Majesco Entertainment  1.07
## 1256 2013                  Majesco Entertainment  0.16
## 1257  N/A                  Majesco Entertainment  0.00
## 1258 2008                            Mamba Games  0.03
## 1259 2010                            Mamba Games  0.01
## 1260 2015                   Marvel Entertainment  0.00
## 1261 2012                Marvelous Entertainment  0.17
## 1262 2013                Marvelous Entertainment  0.02
## 1263 2014                Marvelous Entertainment  0.03
## 1264 2015                Marvelous Entertainment  0.00
## 1265 2016                Marvelous Entertainment  0.00
## 1266 2015                        Marvelous Games  0.00
## 1267 2002                  Marvelous Interactive  0.02
## 1268 2003                  Marvelous Interactive  0.01
## 1269 2004                  Marvelous Interactive  0.05
## 1270 2005                  Marvelous Interactive  0.00
## 1271 2006                  Marvelous Interactive  0.00
## 1272 2007                  Marvelous Interactive  0.00
## 1273 2008                  Marvelous Interactive  0.00
## 1274 2009                  Marvelous Interactive  0.00
## 1275 2010                  Marvelous Interactive  0.01
## 1276 2011                  Marvelous Interactive  0.00
## 1277 2014                  Marvelous Interactive  0.03
## 1278 2015                  Marvelous Interactive  0.05
## 1279 2016                  Marvelous Interactive  0.00
## 1280 2011                      Masque Publishing  0.00
## 1281 2006                           Mastertronic  0.01
## 1282 2009                           Mastertronic  0.04
## 1283 2010                           Mastertronic  0.05
## 1284 2011                           Mastertronic  0.39
## 1285 2012                           Mastertronic  0.01
## 1286 2004                                Mastiff  0.03
## 1287 2005                                Mastiff  0.02
## 1288 2009                                Mastiff  0.00
## 1289 2010                                Mastiff  0.00
## 1290 2011                                Mastiff  0.00
## 1291 1981                     Mattel Interactive  0.13
## 1292 1982                     Mattel Interactive  0.02
## 1293 1999                     Mattel Interactive  0.13
## 1294 2000                     Mattel Interactive  0.09
## 1295 2001                               Max Five  0.02
## 1296 2012                   Maximum Family Games  0.00
## 1297 1988                                  Maxis  0.02
## 1298 1992                                  Maxis  0.84
## 1299 1996                                  Maxis  0.46
## 1300 2004                      MC2 Entertainment  0.02
## 1301 2005                      MC2 Entertainment  0.01
## 1302 2002                    Media Entertainment  0.00
## 1303 2000                          Media Factory  0.00
## 1304 2001                          Media Factory  0.00
## 1305 1994                            Media Rings  0.00
## 1306 1995                            Media Rings  0.00
## 1307 2002                            Media Rings  0.05
## 1308 1996                            Media Works  0.00
## 1309 1998                            Media Works  0.00
## 1310 2006                            Media Works  0.00
## 1311 2007                            Media Works  0.00
## 1312 1995                             MediaQuest  0.02
## 1313 1981                           Men-A-Vision  0.04
## 1314 2009                     Mentor Interactive  0.00
## 1315 2010                     Mentor Interactive  0.00
## 1316 2011                     Mentor Interactive  0.00
## 1317 2007                          Mercury Games  0.00
## 1318 2008                          Mercury Games  0.00
## 1319 2009                            Merscom LLC  0.17
## 1320 2001                               Metro 3D  0.15
## 1321 2002                               Metro 3D  0.20
## 1322 2003                               Metro 3D  0.12
## 1323 2007                               Metro 3D  0.00
## 1324 2008                               Metro 3D  0.00
## 1325 2006                            Michaelsoft  0.00
## 1326 1994                            Micro Cabin  0.00
## 1327 1995                            Micro Cabin  0.00
## 1328 1996                            Micro Cabin  0.00
## 1329 2002                               Microids  0.03
## 1330 2003                               Microids  0.03
## 1331 2004                               Microids  0.03
## 1332 2005                               Microids  0.02
## 1333 2016                               Microids  0.03
## 1334 1995                             Microprose  0.04
## 1335 1996                             Microprose  0.31
## 1336 1997                             Microprose  0.01
## 1337 1999                             Microprose  0.81
## 1338  N/A                             Microprose  0.02
## 1339 1996                 Microsoft Game Studios  1.69
## 1340 1999                 Microsoft Game Studios  0.08
## 1341 2000                 Microsoft Game Studios  0.21
## 1342 2001                 Microsoft Game Studios  2.84
## 1343 2002                 Microsoft Game Studios  1.48
## 1344 2003                 Microsoft Game Studios  2.18
## 1345 2004                 Microsoft Game Studios  2.64
## 1346 2005                 Microsoft Game Studios  1.57
## 1347 2006                 Microsoft Game Studios  3.63
## 1348 2007                 Microsoft Game Studios  7.43
## 1349 2008                 Microsoft Game Studios  5.27
## 1350 2009                 Microsoft Game Studios  4.74
## 1351 2010                 Microsoft Game Studios 11.91
## 1352 2011                 Microsoft Game Studios  6.39
## 1353 2012                 Microsoft Game Studios  4.38
## 1354 2013                 Microsoft Game Studios  5.14
## 1355 2014                 Microsoft Game Studios  3.85
## 1356 2015                 Microsoft Game Studios  2.67
## 1357 2016                 Microsoft Game Studios  0.51
## 1358 1997        Midas Interactive Entertainment  0.01
## 1359 1998        Midas Interactive Entertainment  0.05
## 1360 1999        Midas Interactive Entertainment  0.01
## 1361 2000        Midas Interactive Entertainment  0.40
## 1362 2001        Midas Interactive Entertainment  0.20
## 1363 2002        Midas Interactive Entertainment  0.20
## 1364 2005        Midas Interactive Entertainment  0.00
## 1365 2006        Midas Interactive Entertainment  0.01
## 1366 2007        Midas Interactive Entertainment  0.00
## 1367 2008        Midas Interactive Entertainment  0.03
## 1368 2009        Midas Interactive Entertainment  0.06
## 1369 1996                           Midway Games  0.05
## 1370 1997                           Midway Games  0.23
## 1371 1998                           Midway Games  1.11
## 1372 1999                           Midway Games  0.78
## 1373 2000                           Midway Games  1.32
## 1374 2001                           Midway Games  1.50
## 1375 2002                           Midway Games  2.08
## 1376 2003                           Midway Games  1.49
## 1377 2004                           Midway Games  2.61
## 1378 2005                           Midway Games  1.21
## 1379 2006                           Midway Games  0.80
## 1380 2007                           Midway Games  3.02
## 1381 2008                           Midway Games  2.02
## 1382  N/A                           Midway Games  0.16
## 1383 2008                              Milestone  0.00
## 1384 2016                        Milestone S.r.l  0.05
## 1385 2014                       Milestone S.r.l.  0.22
## 1386 2015                       Milestone S.r.l.  0.48
## 1387 2016                       Milestone S.r.l.  0.08
## 1388 2008                         Minato Station  0.00
## 1389 2012                         Minato Station  0.00
## 1390 2015                         Minato Station  0.00
## 1391 1995                              Mindscape  0.09
## 1392 1996                              Mindscape  0.09
## 1393 1997                              Mindscape  0.05
## 1394 1998                              Mindscape  0.09
## 1395 1999                              Mindscape  0.02
## 1396 2000                              Mindscape  0.00
## 1397 2003                              Mindscape  0.06
## 1398 2007                              Mindscape  0.41
## 1399 2008                              Mindscape  0.22
## 1400 2009                              Mindscape  1.10
## 1401 2010                              Mindscape  0.38
## 1402 2008                          Mirai Shounen  0.00
## 1403 1993                                 Misawa  0.00
## 1404 1994                                 Misawa  0.00
## 1405 1998                                 Mitsui  0.02
## 1406 2015                              mixi, Inc  0.00
## 1407 2016                                MLB.com  0.00
## 1408 2015                                 Mojang  1.30
## 1409 2007               Monte Christo Multimedia  0.04
## 1410 2008                                   Moss  0.00
## 1411 2013                                   Moss  0.00
## 1412 1998                                    MTO  0.00
## 1413 2006                                    MTO  0.00
## 1414 2007                                    MTO  0.00
## 1415 2008                                    MTO  0.00
## 1416 2010                                    MTO  0.00
## 1417 2008                              MTV Games  0.69
## 1418 2009                              MTV Games  1.32
## 1419 2010                              MTV Games  1.44
## 1420 2011                              MTV Games  0.00
## 1421  N/A                              MTV Games  0.56
## 1422 2003                   Mud Duck Productions  0.06
## 1423 2004                   Mud Duck Productions  0.19
## 1424 2006                            Mumbo Jumbo  0.00
## 1425 2007                            Mumbo Jumbo  0.00
## 1426 2008                            Mumbo Jumbo  0.00
## 1427 1985                                  Mycom  0.00
## 1428 2006                           Myelin Media  0.04
## 1429 1981                               Mystique  0.05
## 1430 2004                                    N/A  1.40
## 1431 2005                                    N/A  0.38
## 1432 2007                                    N/A  0.32
## 1433 2010                                    N/A  0.16
## 1434 2011                                    N/A  0.13
## 1435 2012                                    N/A  0.02
## 1436 2014                                    N/A  0.02
## 1437 2016                                    N/A  0.00
## 1438  N/A                                    N/A  2.25
## 1439 1984                     Namco Bandai Games  0.14
## 1440 1985                     Namco Bandai Games  0.00
## 1441 1986                     Namco Bandai Games  0.45
## 1442 1987                     Namco Bandai Games  0.00
## 1443 1988                     Namco Bandai Games  0.00
## 1444 1989                     Namco Bandai Games  0.00
## 1445 1990                     Namco Bandai Games  0.00
## 1446 1991                     Namco Bandai Games  0.00
## 1447 1992                     Namco Bandai Games  0.00
## 1448 1993                     Namco Bandai Games  0.00
## 1449 1994                     Namco Bandai Games  0.00
## 1450 1995                     Namco Bandai Games  0.00
## 1451 1996                     Namco Bandai Games  0.00
## 1452 1997                     Namco Bandai Games  1.02
## 1453 1998                     Namco Bandai Games  0.72
## 1454 1999                     Namco Bandai Games  0.63
## 1455 2000                     Namco Bandai Games  2.30
## 1456 2001                     Namco Bandai Games  1.48
## 1457 2002                     Namco Bandai Games  2.14
## 1458 2003                     Namco Bandai Games  1.84
## 1459 2004                     Namco Bandai Games  0.86
## 1460 2005                     Namco Bandai Games  4.15
## 1461 2006                     Namco Bandai Games  1.84
## 1462 2007                     Namco Bandai Games  0.38
## 1463 2008                     Namco Bandai Games  1.25
## 1464 2009                     Namco Bandai Games  2.85
## 1465 2010                     Namco Bandai Games  3.43
## 1466 2011                     Namco Bandai Games  4.35
## 1467 2012                     Namco Bandai Games  2.46
## 1468 2013                     Namco Bandai Games  1.49
## 1469 2014                     Namco Bandai Games  1.83
## 1470 2015                     Namco Bandai Games  5.42
## 1471 2016                     Namco Bandai Games  1.58
## 1472  N/A                     Namco Bandai Games  0.02
## 1473 1996                                Natsume  0.13
## 1474 1997                                Natsume  0.02
## 1475 2000                                Natsume  0.10
## 1476 2001                                Natsume  0.03
## 1477 2002                                Natsume  0.15
## 1478 2003                                Natsume  0.14
## 1479 2006                                Natsume  0.01
## 1480 2007                                Natsume  0.00
## 1481 2009                                Natsume  0.00
## 1482 2010                                Natsume  0.06
## 1483 2014                                Natsume  0.02
## 1484 2008                           Navarre Corp  0.00
## 1485 2008                             Naxat Soft  0.00
## 1486 1996                                    NCS  0.00
## 1487 1997                                    NCS  0.00
## 1488 1998                                    NCS  0.00
## 1489 2005                                 NCSoft  0.03
## 1490 2006                                 NCSoft  0.03
## 1491 2012                                 NCSoft  1.06
## 1492 2014                                 NCSoft  0.07
## 1493 2002                        NDA Productions  0.02
## 1494 1995                                    NEC  0.00
## 1495 1996                                    NEC  0.00
## 1496 1996                       NEC Interchannel  0.00
## 1497 1997                       NEC Interchannel  0.00
## 1498 1998                       NEC Interchannel  0.00
## 1499 2000                       NEC Interchannel  0.00
## 1500 2008                       NEC Interchannel  0.00
## 1501 2007                     Neko Entertainment  0.00
## 1502 2008                     Neko Entertainment  0.00
## 1503 2009                     Neko Entertainment  0.01
## 1504 2010                     Neko Entertainment  0.07
## 1505 2010                                NetRevo  0.00
## 1506 2012                                NetRevo  0.00
## 1507 1995                                    New  0.00
## 1508 1992                    New World Computing  0.00
## 1509 1998                               NewKidCo  0.21
## 1510 1999                               NewKidCo  0.08
## 1511 2001                               NewKidCo  0.00
## 1512 2002                               NewKidCo  0.07
## 1513 2003                               NewKidCo  0.02
## 1514 2010                                  Nexon  0.00
## 1515 1995                             Nichibutsu  0.00
## 1516 2012               Nihon Falcom Corporation  0.01
## 1517 2014               Nihon Falcom Corporation  0.00
## 1518 2015               Nihon Falcom Corporation  0.00
## 1519 2016               Nihon Falcom Corporation  0.00
## 1520 1983                               Nintendo  0.46
## 1521 1984                               Nintendo  1.95
## 1522 1985                               Nintendo  4.54
## 1523 1986                               Nintendo  1.73
## 1524 1987                               Nintendo  1.18
## 1525 1988                               Nintendo  6.15
## 1526 1989                               Nintendo  7.60
## 1527 1990                               Nintendo  6.42
## 1528 1991                               Nintendo  2.47
## 1529 1992                               Nintendo  6.08
## 1530 1993                               Nintendo  3.09
## 1531 1994                               Nintendo  4.19
## 1532 1995                               Nintendo  2.21
## 1533 1996                               Nintendo 16.31
## 1534 1997                               Nintendo  5.22
## 1535 1998                               Nintendo 12.27
## 1536 1999                               Nintendo 13.74
## 1537 2000                               Nintendo  6.42
## 1538 2001                               Nintendo  8.84
## 1539 2002                               Nintendo  9.89
## 1540 2003                               Nintendo  7.08
## 1541 2004                               Nintendo 12.43
## 1542 2005                               Nintendo 42.69
## 1543 2006                               Nintendo 60.35
## 1544 2007                               Nintendo 32.81
## 1545 2008                               Nintendo 25.13
## 1546 2009                               Nintendo 36.18
## 1547 2010                               Nintendo 16.52
## 1548 2011                               Nintendo 14.38
## 1549 2012                               Nintendo 13.97
## 1550 2013                               Nintendo 16.21
## 1551 2014                               Nintendo 11.37
## 1552 2015                               Nintendo  7.49
## 1553 2016                               Nintendo  0.93
## 1554  N/A                               Nintendo  0.44
## 1555 2002                           Nippon Amuse  0.00
## 1556 2012                        Nippon Columbia  0.00
## 1557 2013                        Nippon Columbia  0.00
## 1558 2014                        Nippon Columbia  0.00
## 1559 2015                        Nippon Columbia  0.00
## 1560 2016                        Nippon Columbia  0.00
## 1561 1998                   Nippon Ichi Software  0.01
## 1562 2007                   Nippon Ichi Software  0.05
## 1563 2008                   Nippon Ichi Software  0.02
## 1564 2009                   Nippon Ichi Software  0.19
## 1565 2010                   Nippon Ichi Software  0.08
## 1566 2011                   Nippon Ichi Software  0.29
## 1567 2012                   Nippon Ichi Software  0.06
## 1568 2013                   Nippon Ichi Software  0.46
## 1569 2014                   Nippon Ichi Software  0.35
## 1570 2015                   Nippon Ichi Software  0.26
## 1571 2016                   Nippon Ichi Software  0.10
## 1572  N/A                   Nippon Ichi Software  0.06
## 1573 1996                         Nippon Telenet  0.00
## 1574 2014                              Nitroplus  0.00
## 1575 2015                              Nitroplus  0.00
## 1576 2007                                Nobilis  0.00
## 1577 2008                                Nobilis  0.15
## 1578 2009                                Nobilis  0.03
## 1579 2010                                Nobilis  0.00
## 1580 2007                            Nordcurrent  0.00
## 1581 2008                            Nordcurrent  0.13
## 1582 2009                            Nordcurrent  0.01
## 1583 2010                            Nordcurrent  0.00
## 1584 2008                           Nordic Games  0.00
## 1585 2009                           Nordic Games  1.07
## 1586 2010                           Nordic Games  0.61
## 1587 2011                           Nordic Games  0.71
## 1588 2012                           Nordic Games  0.36
## 1589 2013                           Nordic Games  0.03
## 1590 2014                           Nordic Games  0.06
## 1591 2015                           Nordic Games  0.31
## 1592 2016                           Nordic Games  0.03
## 1593 2005                              NovaLogic  0.24
## 1594 2009                              NovaLogic  0.00
## 1595 2009                            Number None  0.02
## 1596 2009                                O-Games  0.00
## 1597 2010                                O-Games  0.46
## 1598 2011                                O-Games  0.08
## 1599 2004                       O3 Entertainment  0.02
## 1600 2006                       O3 Entertainment  0.00
## 1601 2007                       O3 Entertainment  0.00
## 1602 1992                                  Ocean  0.00
## 1603 1993                                  Ocean  0.10
## 1604 1995                                  Ocean  0.06
## 1605 1996                                  Ocean  0.04
## 1606 1997                                  Ocean  0.52
## 1607 1998                                  Ocean  0.28
## 1608 2013                          Office Create  0.00
## 1609 2014                          Office Create  0.00
## 1610 1997                              On Demand  0.08
## 1611 2006                              Ongakukan  0.00
## 1612 1997                         Origin Systems  0.03
## 1613 2013                                Otomate  0.00
## 1614 2005                     Oxygen Interactive  0.13
## 1615 2006                     Oxygen Interactive  0.64
## 1616 2007                     Oxygen Interactive  0.00
## 1617 2008                     Oxygen Interactive  0.25
## 1618 2009                     Oxygen Interactive  0.02
## 1619  N/A                     Oxygen Interactive  0.00
## 1620 2009                               P2 Games  0.05
## 1621 2011                               P2 Games  0.28
## 1622 2002            Pacific Century Cyber Works  0.09
## 1623 1995                          Pack-In-Video  0.00
## 1624 1999                           Pack In Soft  0.06
## 1625 1989                                 Palcom  0.44
## 1626 1995                       Panther Software  0.02
## 1627 2007                                   Paon  0.00
## 1628 2008                                   Paon  0.00
## 1629 2010                                   Paon  0.00
## 1630 2011                                   Paon  0.00
## 1631 2013                       Paon Corporation  0.00
## 1632 2016                    Paradox Development  0.01
## 1633 2007                    Paradox Interactive  0.03
## 1634 2008                    Paradox Interactive  0.04
## 1635 2009                    Paradox Interactive  0.04
## 1636 2010                    Paradox Interactive  0.11
## 1637 2011                    Paradox Interactive  0.13
## 1638 2012                    Paradox Interactive  0.02
## 1639 2014                    Paradox Interactive  0.01
## 1640 2015                    Paradox Interactive  0.13
## 1641 2016                    Paradox Interactive  0.06
## 1642 1981                           Parker Bros.  0.18
## 1643 1982                           Parker Bros.  0.06
## 1644 1983                           Parker Bros.  0.03
## 1645 2009          Performance Designed Products  0.00
## 1646 2002                             Phantagram  0.01
## 1647 2009                            Phantom EFX  0.00
## 1648 2007                             Phenomedia  0.00
## 1649 2008                             Phenomedia  0.00
## 1650 2009                             Phenomedia  0.00
## 1651 2007                          Phoenix Games  0.00
## 1652 2010                                 Piacci  0.00
## 1653 2008                               Pinnacle  0.97
## 1654 2009                               Pinnacle  0.35
## 1655 1996                            Pioneer LDC  0.16
## 1656 1998                            Pioneer LDC  0.00
## 1657 2001                            Pioneer LDC  0.00
## 1658 2002                                Play It  0.43
## 1659 2003                                Play It  0.12
## 1660 2004                                Play It  0.59
## 1661 2005                                Play It  0.09
## 1662 2005                 Playlogic Game Factory  0.05
## 1663 2008                 Playlogic Game Factory  0.00
## 1664 2009                 Playlogic Game Factory  0.11
## 1665 1997                              Playmates  0.11
## 1666 2002                               Playmore  0.00
## 1667 2009                                  PlayV  0.02
## 1668 2010                                  PlayV  0.28
## 1669 2011                                 Plenty  0.00
## 1670 2009                             PM Studios  0.00
## 1671 2000                            Pony Canyon  0.02
## 1672 2006                           PopCap Games  0.00
## 1673 2007                           PopCap Games  0.00
## 1674 2008                           PopCap Games  0.13
## 1675 2009                           PopCap Games  0.05
## 1676 2010                           PopCap Games  0.14
## 1677 2011                           PopCap Games  0.02
## 1678 2007                         Popcorn Arcade  0.00
## 1679 2008                         Popcorn Arcade  0.00
## 1680 1999                        PopTop Software  0.04
## 1681 1995                                    Pow  0.00
## 1682 2007                                  PQube  0.00
## 1683 2008                                  PQube  0.03
## 1684 2009                                  PQube  0.20
## 1685 2010                                  PQube  0.16
## 1686 2011                                  PQube  0.24
## 1687 2012                                  PQube  0.04
## 1688 2013                                  PQube  0.09
## 1689 2015                                  PQube  0.12
## 1690 2016                                  PQube  0.04
## 1691 2002                          Princess Soft  0.00
## 1692 2006                          Princess Soft  0.00
## 1693 2008                          Princess Soft  0.00
## 1694 2007                              Prototype  0.00
## 1695 2008                              Prototype  0.00
## 1696 2009                              Prototype  0.00
## 1697 2010                              Prototype  0.00
## 1698 2011                              Prototype  0.00
## 1699 2012                              Prototype  0.00
## 1700 2013                              Prototype  0.00
## 1701 2014                              Prototype  0.00
## 1702 2015                              Prototype  0.00
## 1703 2016                              Prototype  0.00
## 1704 1994                              Psygnosis  0.02
## 1705 1995                              Psygnosis  0.62
## 1706 1996                              Psygnosis  0.71
## 1707 1997                              Psygnosis  0.56
## 1708 1998                              Psygnosis  0.29
## 1709 1999                              Psygnosis  0.23
## 1710 2000                              Psygnosis  0.05
## 1711 1982                                 Quelle  0.05
## 1712 1995                                  Quest  0.00
## 1713 2011                               Quinrose  0.00
## 1714 2012                               Quinrose  0.00
## 1715 2013                               Quinrose  0.00
## 1716 2014                               Quinrose  0.00
## 1717 1998                                Quintet  0.00
## 1718 2001                          Rage Software  0.05
## 1719 2002                          Rage Software  0.42
## 1720 2015                             Rain Games  0.01
## 1721 2001                              Rebellion  0.13
## 1722 2002                              Rebellion  0.00
## 1723 2015                 Rebellion Developments  0.17
## 1724 2010                      RED Entertainment  0.00
## 1725 1994                                Red Orb  2.79
## 1726 1997                                Red Orb  0.82
## 1727 1999                Red Storm Entertainment  0.78
## 1728 2001                Red Storm Entertainment  0.02
## 1729 2005                              RedOctane  0.64
## 1730 2006                              RedOctane  0.63
## 1731 2007                              RedOctane  0.04
## 1732 2009                     Reef Entertainment  0.02
## 1733 2010                     Reef Entertainment  0.03
## 1734 2012                     Reef Entertainment  0.08
## 1735 2004                           responDESIGN  0.02
## 1736 2005                           responDESIGN  0.02
## 1737 2009                     Revolution (Japan)  0.00
## 1738 2015                    Revolution Software  0.07
## 1739 2005                      Rising Star Games  0.07
## 1740 2006                      Rising Star Games  0.14
## 1741 2007                      Rising Star Games  0.80
## 1742 2008                      Rising Star Games  0.54
## 1743 2009                      Rising Star Games  0.53
## 1744 2010                      Rising Star Games  0.30
## 1745 2011                      Rising Star Games  0.41
## 1746 2012                      Rising Star Games  0.05
## 1747 2013                      Rising Star Games  0.14
## 1748 2016                      Rising Star Games  0.00
## 1749  N/A                      Rising Star Games  0.00
## 1750 1995                          Riverhillsoft  0.00
## 1751 2006                         Rocket Company  0.00
## 1752 2007                         Rocket Company  0.00
## 1753 2008                         Rocket Company  0.00
## 1754 2009                         Rocket Company  0.00
## 1755 2010                         Rocket Company  0.00
## 1756 2011                         Rocket Company  0.00
## 1757 2012                         Rocket Company  0.00
## 1758 2013                         Rocket Company  0.00
## 1759 2014                         Rocket Company  0.00
## 1760 2015                         Rocket Company  0.00
## 1761 2016                         Rocket Company  0.00
## 1762 2008                             Rondomedia  0.45
## 1763 2009                             Rondomedia  0.49
## 1764 2010                             Rondomedia  0.04
## 1765 2011                             Rondomedia  0.12
## 1766 2015                             Rondomedia  0.03
## 1767 2007                                    RTL  0.68
## 1768 2008                                    RTL  0.26
## 1769 2009                                    RTL  0.04
## 1770 2007                                 Russel  1.12
## 1771 2008                                 Russel  0.00
## 1772 2009                                 Russel  0.00
## 1773 2010                                 Russel  0.00
## 1774 1993                      Sammy Corporation  0.00
## 1775 2001                      Sammy Corporation  0.13
## 1776 2002                      Sammy Corporation  0.12
## 1777 2003                      Sammy Corporation  0.06
## 1778 2004                      Sammy Corporation  0.00
## 1779 2006                      Sammy Corporation  0.00
## 1780 1998                                 Saurus  0.01
## 1781 2007                        Scholastic Inc.  0.00
## 1782 2008                        Scholastic Inc.  0.03
## 1783 2010                        Scholastic Inc.  0.00
## 1784 2011                        Scholastic Inc.  0.00
## 1785 2002                                    SCi  0.37
## 1786 2003                                    SCi  0.49
## 1787 2004                                    SCi  0.30
## 1788 2005                                    SCi  0.07
## 1789 2013                             Screenlife  0.01
## 1790 2015                             Screenlife  0.00
## 1791 2016                             Screenlife  0.00
## 1792 2012                           SCS Software  0.12
## 1793  N/A                                  Sears  0.01
## 1794 1982                                   Sega  0.02
## 1795 1990                                   Sega  0.55
## 1796 1991                                   Sega  0.91
## 1797 1992                                   Sega  1.50
## 1798 1993                                   Sega  0.36
## 1799 1994                                   Sega  1.02
## 1800 1995                                   Sega  0.42
## 1801 1996                                   Sega  0.00
## 1802 1997                                   Sega  0.00
## 1803 1998                                   Sega  0.61
## 1804 1999                                   Sega  0.29
## 1805 2000                                   Sega  0.56
## 1806 2001                                   Sega  1.65
## 1807 2002                                   Sega  3.23
## 1808 2003                                   Sega  3.98
## 1809 2004                                   Sega  2.51
## 1810 2005                                   Sega  2.92
## 1811 2006                                   Sega  3.05
## 1812 2007                                   Sega  9.84
## 1813 2008                                   Sega 12.90
## 1814 2009                                   Sega  9.18
## 1815 2010                                   Sega  9.60
## 1816 2011                                   Sega  7.17
## 1817 2012                                   Sega  4.33
## 1818 2013                                   Sega  2.25
## 1819 2014                                   Sega  1.96
## 1820 2015                                   Sega  0.46
## 1821 2016                                   Sega  0.14
## 1822 2017                                   Sega  0.00
## 1823  N/A                                   Sega  0.59
## 1824 1995                       Seta Corporation  0.00
## 1825 1996                       Seta Corporation  0.00
## 1826 2013                          Seventh Chord  0.00
## 1827 1995                             Shogakukan  0.00
## 1828 2006                             Shogakukan  0.00
## 1829 2007                             Shogakukan  0.00
## 1830 2015                             Shogakukan  0.00
## 1831 2002           Simon & Schuster Interactive  0.02
## 1832 2015                   Slightly Mad Studios  0.92
## 1833 2009                    Slitherine Software  0.02
## 1834 2010                    Slitherine Software  0.04
## 1835  N/A                    Slitherine Software  0.04
## 1836 1993                                    SNK  0.00
## 1837 1994                                    SNK  0.00
## 1838 1995                                    SNK  0.00
## 1839 1996                                    SNK  0.00
## 1840 1997                                    SNK  0.00
## 1841 1998                                    SNK  0.00
## 1842 1999                                    SNK  0.00
## 1843 2000                                    SNK  0.00
## 1844 2005                                    SNK  0.03
## 1845 1995                           SNK Playmore  0.00
## 1846 1998                           SNK Playmore  0.00
## 1847 1999                           SNK Playmore  0.05
## 1848 2005                           SNK Playmore  0.06
## 1849 2006                           SNK Playmore  0.00
## 1850 2007                           SNK Playmore  0.03
## 1851 2008                           SNK Playmore  0.00
## 1852 2009                           SNK Playmore  0.00
## 1853 2010                           SNK Playmore  0.00
## 1854 1996                                Societa  0.00
## 1855 2016                               Sold Out  0.01
## 1856 1995                                 Sonnet  0.00
## 1857 1996                                 Sonnet  0.00
## 1858 1994            Sony Computer Entertainment  0.57
## 1859 1995            Sony Computer Entertainment  4.57
## 1860 1996            Sony Computer Entertainment  8.77
## 1861 1997            Sony Computer Entertainment 11.34
## 1862 1998            Sony Computer Entertainment  9.38
## 1863 1999            Sony Computer Entertainment 10.84
## 1864 2000            Sony Computer Entertainment  7.68
## 1865 2001            Sony Computer Entertainment 12.64
## 1866 2002            Sony Computer Entertainment  7.32
## 1867 2003            Sony Computer Entertainment  8.68
## 1868 2004            Sony Computer Entertainment  8.68
## 1869 2005            Sony Computer Entertainment  5.92
## 1870 2006            Sony Computer Entertainment 11.99
## 1871 2007            Sony Computer Entertainment 11.65
## 1872 2008            Sony Computer Entertainment  8.50
## 1873 2009            Sony Computer Entertainment 13.36
## 1874 2010            Sony Computer Entertainment 12.75
## 1875 2011            Sony Computer Entertainment  9.17
## 1876 2012            Sony Computer Entertainment  3.38
## 1877 2013            Sony Computer Entertainment  5.18
## 1878 2014            Sony Computer Entertainment  8.47
## 1879 2015            Sony Computer Entertainment  3.84
## 1880 2016            Sony Computer Entertainment  2.87
## 1881  N/A            Sony Computer Entertainment  0.17
## 1882 2014    Sony Computer Entertainment America  0.00
## 1883 2001     Sony Computer Entertainment Europe  0.56
## 1884 2004     Sony Computer Entertainment Europe  0.34
## 1885 2012     Sony Computer Entertainment Europe  0.15
## 1886 2013     Sony Computer Entertainment Europe  4.12
## 1887 2014     Sony Computer Entertainment Europe  2.94
## 1888 2015     Sony Computer Entertainment Europe  0.89
## 1889 2001               Sony Music Entertainment  0.00
## 1890 2003              Sony Online Entertainment  0.23
## 1891 2004              Sony Online Entertainment  0.49
## 1892 2005              Sony Online Entertainment  0.25
## 1893 2006              Sony Online Entertainment  0.00
## 1894 2011              Sony Online Entertainment  0.18
## 1895 1999                        SouthPeak Games  0.04
## 1896 2004                        SouthPeak Games  0.04
## 1897 2005                        SouthPeak Games  0.00
## 1898 2006                        SouthPeak Games  0.03
## 1899 2007                        SouthPeak Games  0.24
## 1900 2008                        SouthPeak Games  0.06
## 1901 2009                        SouthPeak Games  0.31
## 1902 2010                        SouthPeak Games  0.19
## 1903 2001                                  Spike  0.03
## 1904 2002                                  Spike  0.00
## 1905 2004                                  Spike  0.00
## 1906 2006                                  Spike  0.01
## 1907 2007                                  Spike  0.23
## 1908 2008                                  Spike  0.00
## 1909 2009                                  Spike  0.06
## 1910 2010                                  Spike  0.00
## 1911 2011                                  Spike  0.00
## 1912 2012                                  Spike  0.00
## 1913 1996                                    SPS  0.04
## 1914 1991                                 Square  0.09
## 1915 1994                                 Square  0.00
## 1916 1997                                 Square  0.00
## 1917 1999                                 Square  0.00
## 1918 2001                                 Square  0.20
## 1919 1999                              Square EA  0.30
## 1920 2003                            Square Enix  0.38
## 1921 2004                            Square Enix  1.12
## 1922 2005                            Square Enix  0.86
## 1923 2006                            Square Enix  0.60
## 1924 2007                            Square Enix  2.13
## 1925 2008                            Square Enix  1.28
## 1926 2009                            Square Enix  2.05
## 1927 2010                            Square Enix  5.25
## 1928 2011                            Square Enix  3.73
## 1929 2012                            Square Enix  3.43
## 1930 2013                            Square Enix  4.19
## 1931 2014                            Square Enix  3.71
## 1932 2015                            Square Enix  3.17
## 1933 2016                            Square Enix  0.67
## 1934  N/A                            Square Enix  0.25
## 1935 1987                             SquareSoft  0.00
## 1936 1988                             SquareSoft  0.00
## 1937 1989                             SquareSoft  0.00
## 1938 1990                             SquareSoft  0.00
## 1939 1991                             SquareSoft  0.00
## 1940 1992                             SquareSoft  0.00
## 1941 1993                             SquareSoft  0.07
## 1942 1994                             SquareSoft  0.00
## 1943 1995                             SquareSoft  0.00
## 1944 1996                             SquareSoft  0.00
## 1945 1997                             SquareSoft  0.23
## 1946 1998                             SquareSoft  0.75
## 1947 1999                             SquareSoft  2.76
## 1948 2000                             SquareSoft  0.77
## 1949 2001                             SquareSoft  0.00
## 1950 2002                             SquareSoft  0.00
## 1951 2003                             SquareSoft  0.37
## 1952 1996                                    SSI  0.07
## 1953 2016                        Stainless Games  0.01
## 1954 1997                               Starfish  0.14
## 1955 1999                               Starfish  0.04
## 1956 2001                               Starfish  0.01
## 1957 2007                               Starfish  0.00
## 1958 2009                               Starfish  0.00
## 1959 2010                               Starfish  0.00
## 1960 2011                               Starfish  0.00
## 1961 2012                               Starfish  0.00
## 1962 1981                         Starpath Corp.  0.02
## 1963 2004                                  Sting  0.03
## 1964 2006                                  Sting  0.00
## 1965 2007                                  Sting  0.04
## 1966 2008                                  Sting  0.00
## 1967 2010                                  Sting  0.00
## 1968 2009                       Storm City Games  0.00
## 1969 2010                       Storm City Games  0.10
## 1970 2011                       Storm City Games  0.00
## 1971 2001                         Strategy First  0.02
## 1972 1998                                Success  0.43
## 1973 1999                                Success  0.01
## 1974 2000                                Success  0.00
## 1975 2001                                Success  0.04
## 1976 2002                                Success  0.00
## 1977 2005                                Success  0.01
## 1978 2006                                Success  0.00
## 1979 2007                                Success  0.00
## 1980 2008                                Success  0.00
## 1981 2009                                Success  0.00
## 1982 2013                                Success  0.00
## 1983 2014                                Success  0.00
## 1984 2004                             Summitsoft  0.01
## 1985 2004                             Sunflowers  0.02
## 1986 2000                    Sunrise Interactive  0.00
## 1987 2006                    Sunrise Interactive  0.00
## 1988 2007                    Sunrise Interactive  0.00
## 1989 1994                                Sunsoft  0.00
## 1990 1995                                Sunsoft  0.00
## 1991 1996                                Sunsoft  0.03
## 1992 1997                                Sunsoft  0.02
## 1993 1998                                Sunsoft  0.05
## 1994 1999                                Sunsoft  0.05
## 1995 2000                                Sunsoft  0.10
## 1996 2011                                Sunsoft  0.00
## 1997 2006                                 Sweets  0.00
## 1998 2009                                 Sweets  0.00
## 1999 1998                   Swing! Entertainment  0.02
## 2000 2000                   Swing! Entertainment  0.07
## 2001 2001                   Swing! Entertainment  0.04
## 2002 2002                   Swing! Entertainment  0.03
## 2003 1998                                 Syscom  0.00
## 2004 1999                                 Syscom  0.04
## 2005 2013                               System 3  0.10
## 2006 2006               System 3 Arcade Software  0.00
## 2007 2007               System 3 Arcade Software  0.04
## 2008 2008               System 3 Arcade Software  0.53
## 2009 2009               System 3 Arcade Software  0.05
## 2010  N/A               System 3 Arcade Software  0.01
## 2011 2008                            System Soft  0.00
## 2012 2010                            System Soft  0.00
## 2013 2011                            System Soft  0.00
## 2014 1993                               T&E Soft  0.00
## 2015 1981                                  Taito  0.01
## 2016 1994                                  Taito  0.00
## 2017 1995                                  Taito  0.00
## 2018 1997                                  Taito  0.00
## 2019 1999                                  Taito  0.00
## 2020 2001                                  Taito  0.00
## 2021 2002                                  Taito  0.08
## 2022 2003                                  Taito  0.00
## 2023 2006                                  Taito  0.00
## 2024 2007                                  Taito  0.00
## 2025 2010                                  Taito  0.00
## 2026 1992                                 Takara  0.00
## 2027 1993                                 Takara  0.00
## 2028 1994                                 Takara  0.00
## 2029 1995                                 Takara  0.00
## 2030 1996                                 Takara  0.00
## 2031 1997                                 Takara  0.00
## 2032 1998                                 Takara  0.00
## 2033 1999                                 Takara  0.00
## 2034 2001                                 Takara  0.06
## 2035 2002                                 Takara  0.00
## 2036 2003                                 Takara  0.00
## 2037 2006                            Takara Tomy  0.00
## 2038 2007                            Takara Tomy  0.00
## 2039 2008                            Takara Tomy  0.03
## 2040 2009                            Takara Tomy  0.00
## 2041 2010                            Takara Tomy  0.00
## 2042 2011                            Takara Tomy  0.00
## 2043 2013                            Takara Tomy  0.00
## 2044 2015                            Takara Tomy  0.00
## 2045 1997                   Take-Two Interactive  1.43
## 2046 1998                   Take-Two Interactive  2.86
## 2047 1999                   Take-Two Interactive  0.53
## 2048 2000                   Take-Two Interactive  1.77
## 2049 2001                   Take-Two Interactive  6.82
## 2050 2002                   Take-Two Interactive  6.72
## 2051 2003                   Take-Two Interactive  3.00
## 2052 2004                   Take-Two Interactive  1.44
## 2053 2005                   Take-Two Interactive  8.43
## 2054 2006                   Take-Two Interactive  5.61
## 2055 2007                   Take-Two Interactive  5.20
## 2056 2008                   Take-Two Interactive 13.78
## 2057 2009                   Take-Two Interactive  4.44
## 2058 2010                   Take-Two Interactive 10.38
## 2059 2011                   Take-Two Interactive  4.68
## 2060 2012                   Take-Two Interactive  6.27
## 2061 2013                   Take-Two Interactive 18.30
## 2062 2014                   Take-Two Interactive 11.41
## 2063 2015                   Take-Two Interactive  4.26
## 2064 2016                   Take-Two Interactive  0.62
## 2065  N/A                   Take-Two Interactive  0.19
## 2066 2011                                 Takuyo  0.00
## 2067 2001                              TalonSoft  0.33
## 2068 2000                               TDK Core  0.07
## 2069 2002                               TDK Core  0.05
## 2070 2006                               TDK Core  0.00
## 2071 2007                               TDK Core  0.00
## 2072 2001                         TDK Mediactive  0.23
## 2073 2002                         TDK Mediactive  1.00
## 2074 2003                         TDK Mediactive  0.68
## 2075 2004                         TDK Mediactive  0.51
## 2076 2010                        Team17 Software  0.04
## 2077 1995              Technos Japan Corporation  0.00
## 2078 1998                             TechnoSoft  0.02
## 2079 1991                             Tecmo Koei  0.00
## 2080 1992                             Tecmo Koei  0.00
## 2081 1993                             Tecmo Koei  0.00
## 2082 1994                             Tecmo Koei  0.00
## 2083 1995                             Tecmo Koei  0.03
## 2084 1996                             Tecmo Koei  0.07
## 2085 1997                             Tecmo Koei  0.14
## 2086 1998                             Tecmo Koei  0.02
## 2087 1999                             Tecmo Koei  0.03
## 2088 2000                             Tecmo Koei  0.36
## 2089 2001                             Tecmo Koei  0.15
## 2090 2002                             Tecmo Koei  0.34
## 2091 2003                             Tecmo Koei  0.67
## 2092 2004                             Tecmo Koei  0.35
## 2093 2005                             Tecmo Koei  0.49
## 2094 2006                             Tecmo Koei  0.43
## 2095 2007                             Tecmo Koei  0.65
## 2096 2008                             Tecmo Koei  0.40
## 2097 2009                             Tecmo Koei  0.19
## 2098 2010                             Tecmo Koei  0.32
## 2099 2011                             Tecmo Koei  0.61
## 2100 2012                             Tecmo Koei  0.43
## 2101 2013                             Tecmo Koei  0.36
## 2102 2014                             Tecmo Koei  0.60
## 2103 2015                             Tecmo Koei  0.37
## 2104 2016                             Tecmo Koei  0.07
## 2105 1999                              Telegames  0.01
## 2106 2003                              Telegames  0.05
## 2107 2005                              Telegames  0.00
## 2108 2007                              Telegames  0.00
## 2109 2008                              Telegames  0.00
## 2110 2010                              Telegames  0.00
## 2111 2011                         Telltale Games  0.04
## 2112 2014                         Telltale Games  0.73
## 2113 2015                         Telltale Games  0.11
## 2114 2016                         Telltale Games  0.12
## 2115 1995                                Telstar  0.02
## 2116 1998                                Telstar  0.08
## 2117 2011                          Tetris Online  0.13
## 2118 2009                                    TGL  0.00
## 2119 2015                                    TGL  0.00
## 2120 2008                  The Adventure Company  0.04
## 2121 2009                  The Adventure Company  0.09
## 2122 2000                   The Learning Company  0.02
## 2123 1995                                    THQ  0.02
## 2124 1997                                    THQ  0.36
## 2125 1998                                    THQ  3.38
## 2126 1999                                    THQ  1.15
## 2127 2000                                    THQ  5.30
## 2128 2001                                    THQ  8.01
## 2129 2002                                    THQ  8.24
## 2130 2003                                    THQ  8.63
## 2131 2004                                    THQ  8.82
## 2132 2005                                    THQ  5.15
## 2133 2006                                    THQ  5.69
## 2134 2007                                    THQ  7.74
## 2135 2008                                    THQ  7.83
## 2136 2009                                    THQ  8.07
## 2137 2010                                    THQ  5.26
## 2138 2011                                    THQ  8.34
## 2139 2012                                    THQ  2.36
## 2140 2013                                    THQ  0.25
## 2141  N/A                                    THQ  0.13
## 2142 1981                            Tigervision  0.07
## 2143 1982                            Tigervision  0.02
## 2144 1994                Time Warner Interactive  0.04
## 2145 1995                Time Warner Interactive  0.03
## 2146 1996                Time Warner Interactive  0.05
## 2147 1993                                  Titus  0.00
## 2148 1997                                  Titus  0.17
## 2149 1998                                  Titus  0.11
## 2150 1999                                  Titus  0.29
## 2151 2000                                  Titus  0.02
## 2152 2001                                  Titus  0.37
## 2153 2002                                  Titus  0.12
## 2154 2003                                  Titus  0.00
## 2155 2008                                 Tivola  0.00
## 2156 2009                                 Tivola  0.07
## 2157 1993                                   TOHO  0.00
## 2158 2007                                  Tommo  0.00
## 2159 2009                                  Tommo  0.00
## 2160 2011                                  Tommo  0.00
## 2161 1995                       Tomy Corporation  0.00
## 2162 1996                       Tomy Corporation  0.02
## 2163 1998                       Tomy Corporation  0.00
## 2164 2003                       Tomy Corporation  0.25
## 2165 2004                       Tomy Corporation  0.00
## 2166 2005                       Tomy Corporation  0.00
## 2167 2006                       Tomy Corporation  0.00
## 2168 2007                       Tomy Corporation  0.46
## 2169 2008                       Tomy Corporation  0.02
## 2170 2009                       Tomy Corporation  0.00
## 2171 2010                       Tomy Corporation  0.00
## 2172 2011                    TopWare Interactive  0.03
## 2173 2015                    TopWare Interactive  0.01
## 2174  N/A                    TopWare Interactive  0.06
## 2175 2007                             Touchstone  0.06
## 2176 2008                             Touchstone  0.44
## 2177 2010                              Tradewest  0.06
## 2178 2012                           Trion Worlds  0.00
## 2179 2013                           Trion Worlds  0.30
## 2180 2011                   Tripwire Interactive  0.07
## 2181 2014                  Tru Blu Entertainment  0.03
## 2182 2015                  Tru Blu Entertainment  0.22
## 2183 2008                               Tryfirst  0.00
## 2184 1998                                    TYO  0.16
## 2185 2014                              Type-Moon  0.00
## 2186 1995                              U.S. Gold  0.07
## 2187 1996                              U.S. Gold  0.06
## 2188 1995                                Ubisoft  1.33
## 2189 1996                                Ubisoft  0.06
## 2190 1997                                Ubisoft  0.13
## 2191 1998                                Ubisoft  0.07
## 2192 1999                                Ubisoft  1.27
## 2193 2000                                Ubisoft  1.46
## 2194 2001                                Ubisoft  1.51
## 2195 2002                                Ubisoft  4.47
## 2196 2003                                Ubisoft  5.53
## 2197 2004                                Ubisoft  5.39
## 2198 2005                                Ubisoft  4.56
## 2199 2006                                Ubisoft  2.34
## 2200 2007                                Ubisoft 15.02
## 2201 2008                                Ubisoft 18.96
## 2202 2009                                Ubisoft 14.97
## 2203 2010                                Ubisoft 13.98
## 2204 2011                                Ubisoft 17.85
## 2205 2012                                Ubisoft 14.23
## 2206 2013                                Ubisoft 10.64
## 2207 2014                                Ubisoft 18.72
## 2208 2015                                Ubisoft  6.16
## 2209 2016                                Ubisoft  4.38
## 2210 2020                                Ubisoft  0.00
## 2211  N/A                                Ubisoft  0.29
## 2212 2009                         Ubisoft Annecy  0.20
## 2213 2010                         Ubisoft Annecy  0.10
## 2214 2011                         Ubisoft Annecy  0.28
## 2215 2012                         Ubisoft Annecy  0.08
## 2216 1997                            UEP Systems  0.46
## 2217 2007                        UFO Interactive  0.00
## 2218 2008                        UFO Interactive  0.00
## 2219 2009                        UFO Interactive  0.00
## 2220 2010                        UFO Interactive  0.00
## 2221 2011                        UFO Interactive  0.00
## 2222 2012                        UFO Interactive  0.00
## 2223 2016                      UIG Entertainment  0.01
## 2224  N/A                            Ultravision  0.03
## 2225 1982                        Universal Gamex  0.04
## 2226 2001                  Universal Interactive  2.48
## 2227 2002                  Universal Interactive  3.24
## 2228 2003                  Universal Interactive  0.94
## 2229  N/A                  Universal Interactive  0.07
## 2230 1981                                Unknown  0.02
## 2231 1998                                Unknown  0.31
## 2232 2001                                Unknown  1.22
## 2233 2002                                Unknown  0.02
## 2234 2003                                Unknown  0.25
## 2235 2004                                Unknown  0.01
## 2236 2005                                Unknown  0.03
## 2237 2006                                Unknown  0.02
## 2238 2007                                Unknown  0.02
## 2239 2008                                Unknown  0.00
## 2240 2009                                Unknown  0.01
## 2241 2010                                Unknown  0.19
## 2242 2011                                Unknown  1.33
## 2243 2012                                Unknown  0.06
## 2244 2013                                Unknown  0.06
## 2245 2014                                Unknown  0.11
## 2246 2015                                Unknown  0.06
## 2247 2016                                Unknown  0.00
## 2248  N/A                                Unknown  3.81
## 2249 2005                           Valcon Games  0.04
## 2250 2006                           Valcon Games  0.01
## 2251 2008                           Valcon Games  0.03
## 2252 2009                           Valcon Games  0.00
## 2253 2010                           Valcon Games  0.00
## 2254 2005                               ValuSoft  0.09
## 2255 2008                               ValuSoft  0.00
## 2256 2009                               ValuSoft  0.00
## 2257 2011                               ValuSoft  0.00
## 2258 2011                                  Valve  0.63
## 2259 2009                         Valve Software  0.32
## 2260 2011                         Valve Software  0.83
## 2261 1994                                    Vap  0.00
## 2262 2000                  Vatical Entertainment  0.07
## 2263 1996                              Vic Tokai  0.05
## 2264 1997                              Vic Tokai  0.03
## 2265 1993                     Victor Interactive  0.00
## 2266 1995                     Victor Interactive  0.00
## 2267 1997                     Victor Interactive  0.00
## 2268 1998                     Victor Interactive  0.00
## 2269 2000                     Victor Interactive  0.07
## 2270 2001                     Victor Interactive  0.01
## 2271 2002                     Victor Interactive  0.00
## 2272 1992                           Video System  0.00
## 2273 1997                           Video System  0.04
## 2274 1998                           Video System  0.96
## 2275 2000                           Video System  0.04
## 2276 2012                                  Views  0.00
## 2277 2014                                  Views  0.00
## 2278 2008                          Vir2L Studios  0.00
## 2279 2009                          Vir2L Studios  0.01
## 2280 1992                     Virgin Interactive  0.77
## 2281 1994                     Virgin Interactive  2.16
## 2282 1995                     Virgin Interactive  0.16
## 2283 1996                     Virgin Interactive  4.54
## 2284 1997                     Virgin Interactive  0.73
## 2285 1998                     Virgin Interactive  2.17
## 2286 1999                     Virgin Interactive  0.32
## 2287 2000                     Virgin Interactive  0.78
## 2288 2001                     Virgin Interactive  1.18
## 2289 2002                     Virgin Interactive  0.13
## 2290 2010                     Virtual Play Games  0.00
## 2291 2011                                  Visco  0.00
## 2292 1995                          Vivendi Games  0.00
## 2293 1997                          Vivendi Games  0.01
## 2294 1998                          Vivendi Games  0.07
## 2295 1999                          Vivendi Games  0.15
## 2296 2000                          Vivendi Games  0.04
## 2297 2001                          Vivendi Games  1.12
## 2298 2002                          Vivendi Games  1.44
## 2299 2003                          Vivendi Games  6.16
## 2300 2004                          Vivendi Games  1.41
## 2301 2005                          Vivendi Games  2.02
## 2302 2006                          Vivendi Games  0.62
## 2303 2007                          Vivendi Games  1.04
## 2304 2008                          Vivendi Games  1.46
## 2305 2009                          Vivendi Games  0.11
## 2306  N/A                          Vivendi Games  0.39
## 2307 2001                                Wanadoo  0.06
## 2308 2002                                Wanadoo  0.15
## 2309 2003                                Wanadoo  0.00
## 2310 2005                                Wanadoo  0.00
## 2311 2007                                Warashi  0.00
## 2312 2011                          Wargaming.net  0.23
## 2313 2003 Warner Bros. Interactive Entertainment  0.22
## 2314 2005 Warner Bros. Interactive Entertainment  0.02
## 2315 2006 Warner Bros. Interactive Entertainment  0.06
## 2316 2007 Warner Bros. Interactive Entertainment  0.25
## 2317 2008 Warner Bros. Interactive Entertainment  3.20
## 2318 2009 Warner Bros. Interactive Entertainment  3.24
## 2319 2010 Warner Bros. Interactive Entertainment  4.82
## 2320 2011 Warner Bros. Interactive Entertainment  5.52
## 2321 2012 Warner Bros. Interactive Entertainment  5.17
## 2322 2013 Warner Bros. Interactive Entertainment  7.71
## 2323 2014 Warner Bros. Interactive Entertainment  8.49
## 2324 2015 Warner Bros. Interactive Entertainment  8.45
## 2325 2016 Warner Bros. Interactive Entertainment  1.68
## 2326  N/A Warner Bros. Interactive Entertainment  4.29
## 2327 1997                                   Warp  0.00
## 2328 2015                WayForward Technologies  0.00
## 2329 1999                       Westwood Studios  0.00
## 2330 2007                White Park Bay Software  0.01
## 2331 1982                     Wizard Video Games  0.03
## 2332 2002                      Xicat Interactive  0.05
## 2333 2003                      Xicat Interactive  0.01
## 2334 1997                     Xing Entertainment  0.03
## 2335 2005                                Xplosiv  0.07
## 2336 2006                                Xplosiv  0.23
## 2337 2007                                Xplosiv  0.00
## 2338 2008                                Xplosiv  0.56
## 2339 2002                               XS Games  0.09
## 2340 2004                               XS Games  0.01
## 2341 2005                               XS Games  0.05
## 2342 2007                               XS Games  0.01
## 2343 2008                               XS Games  0.01
## 2344 2009                               XS Games  0.00
## 2345 2010                               XS Games  0.00
## 2346 2012                            Xseed Games  0.00
## 2347 2013                            Xseed Games  0.01
## 2348 2014                            Xseed Games  0.01
## 2349 2015                            Xseed Games  0.02
## 2350 2015                       Yacht Club Games  0.11
## 2351 2006                   Yamasa Entertainment  0.00
## 2352 2006                                   Yeti  0.00
## 2353 2007                                   Yeti  0.00
## 2354 2008                                   Yeti  0.00
## 2355 2009                                   Yeti  0.00
## 2356 2010                                   Yeti  0.00
## 2357 2012                                   Yeti  0.00
## 2358 2016                                   Yeti  0.00
## 2359 2005                                 Yuke's  0.01
## 2360 2006                                 Yuke's  0.00
## 2361 2007                                 Yuke's  0.00
## 2362 1995                                Yumedia  0.00
## 2363 2006                                 Zenrin  0.00
## 2364 2007                                 Zenrin  0.00
## 2365 2002                 Zoo Digital Publishing  0.06
## 2366 2003                 Zoo Digital Publishing  0.76
## 2367 2004                 Zoo Digital Publishing  0.71
## 2368 2005                 Zoo Digital Publishing  0.85
## 2369 2006                 Zoo Digital Publishing  0.00
## 2370 2007                 Zoo Digital Publishing  0.01
## 2371 2008                 Zoo Digital Publishing  0.05
## 2372 2009                 Zoo Digital Publishing  0.01
## 2373 2008                              Zoo Games  0.00
## 2374 2009                              Zoo Games  0.00
## 2375 2010                              Zoo Games  0.00
## 2376 2011                              Zoo Games  0.00
## 2377 2007                            Zushi Games  0.00
## 2378 2008                            Zushi Games  0.00
## 2379 2009                            Zushi Games  0.05
aggregate(EU_Sales,by=list(Genre = Genre,Publisher=Publisher),sum)
##             Genre                              Publisher      x
## 1       Adventure                        10TACLE Studios   0.01
## 2          Puzzle                        10TACLE Studios   0.03
## 3        Strategy                        10TACLE Studios   0.00
## 4          Racing                             1C Company   0.03
## 5    Role-Playing                             1C Company   0.01
## 6        Strategy                             1C Company   0.03
## 7          Action           20th Century Fox Video Games   0.09
## 8         Shooter           20th Century Fox Video Games   0.01
## 9          Puzzle                                 2D Boy   0.03
## 10         Action                                    3DO   1.67
## 11      Adventure                                    3DO   0.14
## 12       Fighting                                    3DO   0.21
## 13       Platform                                    3DO   0.05
## 14         Puzzle                                    3DO   0.04
## 15   Role-Playing                                    3DO   0.10
## 16        Shooter                                    3DO   0.20
## 17         Sports                                    3DO   0.59
## 18       Strategy                                    3DO   0.04
## 19         Sports                                49Games   0.04
## 20         Action                              505 Games   1.21
## 21      Adventure                              505 Games   0.14
## 22       Fighting                              505 Games   0.22
## 23           Misc                              505 Games   0.52
## 24       Platform                              505 Games   0.01
## 25         Puzzle                              505 Games   0.47
## 26         Racing                              505 Games   0.05
## 27   Role-Playing                              505 Games   0.27
## 28        Shooter                              505 Games   2.14
## 29     Simulation                              505 Games   6.76
## 30         Sports                              505 Games   4.58
## 31       Strategy                              505 Games   0.06
## 32         Action                                    5pb   0.00
## 33      Adventure                                    5pb   0.00
## 34       Fighting                                    5pb   0.00
## 35   Role-Playing                                    5pb   0.00
## 36        Shooter                                    5pb   0.00
## 37     Simulation                                    5pb   0.00
## 38           Misc                               7G//AMES   0.02
## 39         Puzzle                               7G//AMES   0.01
## 40     Simulation                               7G//AMES   0.03
## 41         Sports                             989 Sports   0.14
## 42         Action                            989 Studios   0.54
## 43         Racing                            989 Studios   0.32
## 44         Sports                            989 Studios   2.44
## 45         Action                               Abylight   0.00
## 46         Action                  Acclaim Entertainment   0.53
## 47      Adventure                  Acclaim Entertainment   0.42
## 48       Fighting                  Acclaim Entertainment   3.99
## 49           Misc                  Acclaim Entertainment   0.34
## 50       Platform                  Acclaim Entertainment   0.56
## 51         Puzzle                  Acclaim Entertainment   0.46
## 52         Racing                  Acclaim Entertainment   4.57
## 53   Role-Playing                  Acclaim Entertainment   0.06
## 54        Shooter                  Acclaim Entertainment   1.77
## 55         Sports                  Acclaim Entertainment   3.96
## 56       Strategy                  Acclaim Entertainment   0.09
## 57       Platform                               Accolade   0.07
## 58         Racing                               Accolade   0.20
## 59         Sports                               Accolade   0.07
## 60         Action                            Ackkstudios   0.00
## 61      Adventure                            Ackkstudios   0.00
## 62   Role-Playing                            Ackkstudios   0.04
## 63         Sports                            Ackkstudios   0.00
## 64       Strategy                            Ackkstudios   0.00
## 65         Action                                Acquire   0.00
## 66      Adventure                                Acquire   0.00
## 67   Role-Playing                                Acquire   0.00
## 68       Strategy                                Acquire   0.00
## 69         Action                             Activision  40.02
## 70      Adventure                             Activision   0.87
## 71       Fighting                             Activision   0.76
## 72           Misc                             Activision  17.63
## 73       Platform                             Activision   7.85
## 74         Puzzle                             Activision   0.11
## 75         Racing                             Activision   3.66
## 76   Role-Playing                             Activision  18.40
## 77        Shooter                             Activision  98.59
## 78     Simulation                             Activision   2.14
## 79         Sports                             Activision  17.56
## 80       Strategy                             Activision   7.94
## 81         Action                    Activision Blizzard   0.36
## 82         Action                       Activision Value   0.00
## 83           Misc                       Activision Value   0.01
## 84        Shooter                       Activision Value   0.11
## 85         Sports                       Activision Value   0.75
## 86       Strategy                       Activision Value   0.01
## 87         Action                       Adeline Software   0.07
## 88     Simulation                               Aerosoft   0.02
## 89         Action                 Agatsuma Entertainment   0.00
## 90           Misc                 Agatsuma Entertainment   0.02
## 91       Platform                 Agatsuma Entertainment   0.00
## 92         Action                                 Agetec   0.03
## 93       Fighting                                 Agetec   0.04
## 94           Misc                                 Agetec   0.03
## 95         Racing                                 Agetec   0.00
## 96     Simulation                                 Agetec   0.06
## 97         Sports                                 Agetec   0.41
## 98       Strategy                                 Agetec   0.01
## 99         Action                            Aksys Games   0.00
## 100     Adventure                            Aksys Games   0.00
## 101  Role-Playing                            Aksys Games   0.01
## 102        Action                   Alawar Entertainment   0.01
## 103      Strategy                   Alawar Entertainment   0.03
## 104        Action                              Alchemist   0.00
## 105     Adventure                              Alchemist   0.46
## 106          Misc                              Alchemist   0.00
## 107  Role-Playing                              Alchemist   0.00
## 108       Shooter                              Alchemist   0.00
## 109        Action                   Alternative Software   0.02
## 110        Sports                   Alternative Software   0.16
## 111       Shooter                                 Altron   0.02
## 112          Misc                                 Alvion   0.00
## 113        Action                     American Softworks   0.09
## 114      Fighting                          Angel Studios   0.00
## 115  Role-Playing                          Angel Studios   0.00
## 116      Strategy                          Angel Studios   0.00
## 117        Action                        Answer Software   0.03
## 118      Fighting                         AQ Interactive   0.05
## 119          Misc                         AQ Interactive   0.01
## 120     Adventure                              Aqua Plus   0.00
## 121      Fighting                              Aqua Plus   0.00
## 122          Misc                              Aqua Plus   0.00
## 123  Role-Playing                              Aqua Plus   0.00
## 124      Strategy                              Aqua Plus   0.00
## 125        Sports                                  Aques   0.00
## 126        Action                       Arc System Works   0.00
## 127     Adventure                       Arc System Works   0.00
## 128      Fighting                       Arc System Works   0.00
## 129          Misc                       Arc System Works   0.00
## 130  Role-Playing                       Arc System Works   0.00
## 131        Sports                       Arc System Works   0.00
## 132      Fighting                    Arena Entertainment   0.63
## 133        Sports                    Arena Entertainment   0.25
## 134     Adventure                                   Aria   0.00
## 135          Misc                                  Arika   0.01
## 136  Role-Playing                                  Arika   0.02
## 137       Shooter                                  Arika   0.00
## 138  Role-Playing                                ArtDink   0.05
## 139    Simulation                                ArtDink   0.00
## 140      Strategy                                ArtDink   0.00
## 141          Misc                             Aruze Corp   0.00
## 142        Action                              ASC Games   0.02
## 143        Racing                              ASC Games   0.50
## 144        Sports                              ASC Games   0.25
## 145      Strategy                  Ascaron Entertainment   0.01
## 146  Role-Playing             Ascaron Entertainment GmbH   0.05
## 147      Strategy             Ascaron Entertainment GmbH   0.04
## 148     Adventure                    ASCII Entertainment   0.05
## 149          Misc                    ASCII Entertainment   0.13
## 150        Racing                    ASCII Entertainment   0.05
## 151  Role-Playing                    ASCII Entertainment   0.07
## 152    Simulation                    ASCII Entertainment   0.00
## 153        Sports                    ASCII Entertainment   0.14
## 154      Strategy                    ASCII Entertainment   0.00
## 155     Adventure                      ASCII Media Works   0.00
## 156  Role-Playing                      ASCII Media Works   0.00
## 157        Action                                 Asgard   0.00
## 158          Misc                                 Asgard   0.00
## 159          Misc                                    ASK   0.00
## 160     Adventure                Asmik Ace Entertainment   0.00
## 161      Fighting                Asmik Ace Entertainment   0.00
## 162    Simulation                Asmik Ace Entertainment   0.00
## 163        Sports                             Asmik Corp   0.00
## 164     Adventure                                  Aspyr   0.00
## 165          Misc                                  Aspyr   0.03
## 166  Role-Playing                                  Aspyr   0.00
## 167    Simulation                                  Aspyr   0.00
## 168        Sports                                  Aspyr   0.01
## 169        Action                               Astragon   0.02
## 170     Adventure                               Astragon   0.23
## 171        Puzzle                               Astragon   0.05
## 172    Simulation                               Astragon   0.02
## 173     Adventure                   Asylum Entertainment   0.37
## 174      Platform                   Asylum Entertainment   0.06
## 175    Simulation                   Asylum Entertainment   0.00
## 176        Action                                  Atari   6.45
## 177     Adventure                                  Atari   0.73
## 178      Fighting                                  Atari   3.25
## 179          Misc                                  Atari   0.73
## 180      Platform                                  Atari   0.82
## 181        Puzzle                                  Atari   3.05
## 182        Racing                                  Atari   4.17
## 183  Role-Playing                                  Atari   2.02
## 184       Shooter                                  Atari   2.58
## 185    Simulation                                  Atari   0.21
## 186        Sports                                  Atari   2.31
## 187      Strategy                                  Atari   0.80
## 188     Adventure                                 Athena   0.00
## 189        Sports                                 Athena   0.00
## 190        Action                                  Atlus   0.03
## 191     Adventure                                  Atlus   0.00
## 192      Fighting                                  Atlus   0.16
## 193          Misc                                  Atlus   0.00
## 194      Platform                                  Atlus   0.03
## 195        Racing                                  Atlus   0.00
## 196  Role-Playing                                  Atlus   0.78
## 197       Shooter                                  Atlus   0.00
## 198    Simulation                                  Atlus   0.00
## 199        Sports                                  Atlus   0.07
## 200      Strategy                                  Atlus   0.03
## 201        Action                     Avalon Interactive   0.01
## 202        Racing                     Avalon Interactive   0.02
## 203  Role-Playing                     Avalon Interactive   0.04
## 204       Shooter                     Avalon Interactive   0.01
## 205    Simulation                     Avalon Interactive   0.04
## 206        Action                              Avanquest   0.26
## 207     Adventure                              Avanquest   0.01
## 208          Misc                              Avanquest   0.26
## 209        Puzzle                              Avanquest   1.05
## 210    Simulation                              Avanquest   0.02
## 211        Sports                              Avanquest   0.02
## 212        Action                     Avanquest Software   0.07
## 213     Adventure                     Avanquest Software   0.42
## 214          Misc                     Avanquest Software   0.04
## 215        Sports                                  Axela   0.00
## 216        Action                     BAM! Entertainment   0.35
## 217     Adventure                     BAM! Entertainment   0.21
## 218      Fighting                     BAM! Entertainment   0.04
## 219          Misc                     BAM! Entertainment   0.05
## 220      Platform                     BAM! Entertainment   0.22
## 221        Racing                     BAM! Entertainment   0.24
## 222       Shooter                     BAM! Entertainment   0.24
## 223        Sports                     BAM! Entertainment   0.10
## 224        Action                              Banpresto   0.00
## 225     Adventure                              Banpresto   0.00
## 226      Fighting                              Banpresto   0.03
## 227          Misc                              Banpresto   0.00
## 228      Platform                              Banpresto   0.00
## 229        Puzzle                              Banpresto   0.00
## 230        Racing                              Banpresto   0.00
## 231  Role-Playing                              Banpresto   0.14
## 232       Shooter                              Banpresto   0.00
## 233    Simulation                              Banpresto   0.00
## 234        Sports                              Banpresto   0.03
## 235      Strategy                              Banpresto   0.00
## 236          Misc                                Benesse   0.00
## 237        Action                               Berkeley   0.01
## 238        Action                     Bethesda Softworks   3.89
## 239        Racing                     Bethesda Softworks   0.70
## 240  Role-Playing                     Bethesda Softworks  20.11
## 241       Shooter                     Bethesda Softworks   5.86
## 242    Simulation                     Bethesda Softworks   0.06
## 243        Sports                     Bethesda Softworks   0.06
## 244      Strategy                     Bethesda Softworks   0.05
## 245     Adventure                    Big Ben Interactive   0.02
## 246      Platform                    Big Ben Interactive   0.00
## 247        Racing                    Big Ben Interactive   0.00
## 248       Shooter                    Big Ben Interactive   0.03
## 249        Sports                    Big Ben Interactive   0.08
## 250        Action                         Big Fish Games   0.03
## 251     Adventure                         Big Fish Games   0.01
## 252        Sports                     Bigben Interactive   0.62
## 253        Racing                      bitComposer Games   0.03
## 254    Simulation                      bitComposer Games   0.17
## 255        Action                       Black Bean Games   0.06
## 256          Misc                       Black Bean Games   0.10
## 257        Racing                       Black Bean Games   0.99
## 258        Sports                       Black Bean Games   0.41
## 259      Strategy                       Black Bean Games   0.00
## 260        Action                      Black Label Games   0.46
## 261        Action               Blast! Entertainment Ltd   0.06
## 262     Adventure               Blast! Entertainment Ltd   0.05
## 263        Sports               Blast! Entertainment Ltd   0.00
## 264    Simulation                              Blue Byte   0.01
## 265      Strategy                              Blue Byte   0.02
## 266      Platform          BMG Interactive Entertainment   0.32
## 267        Racing          BMG Interactive Entertainment   0.06
## 268       Shooter          BMG Interactive Entertainment   0.05
## 269        Sports          BMG Interactive Entertainment   0.01
## 270       Shooter                    Bohemia Interactive   0.10
## 271        Action                                   Bomb   0.01
## 272     Adventure                               Boost On   0.00
## 273        Puzzle                                    BPS   0.00
## 274        Racing                                    BPS   0.00
## 275          Misc                    Brash Entertainment   0.03
## 276      Platform                    Brash Entertainment   0.18
## 277        Action                               Broccoli   0.00
## 278     Adventure                               Broccoli   0.00
## 279      Fighting                               Broccoli   0.00
## 280          Misc                               Broccoli   0.00
## 281  Role-Playing                               Broccoli   0.00
## 282    Simulation                               Broccoli   0.00
## 283      Strategy                               Broccoli   0.00
## 284     Adventure                              BushiRoad   0.00
## 285        Action                                 Capcom  20.36
## 286     Adventure                                 Capcom   1.48
## 287      Fighting                                 Capcom   6.77
## 288          Misc                                 Capcom   0.29
## 289      Platform                                 Capcom   3.83
## 290        Puzzle                                 Capcom   0.09
## 291        Racing                                 Capcom   1.12
## 292  Role-Playing                                 Capcom   2.33
## 293       Shooter                                 Capcom   2.81
## 294    Simulation                                 Capcom   0.01
## 295        Sports                                 Capcom   0.03
## 296      Strategy                                 Capcom   0.10
## 297        Action                                   Cave   0.00
## 298     Adventure                                   Cave   0.00
## 299          Misc                                   Cave   0.00
## 300       Shooter                                   Cave   0.00
## 301        Action                        CBS Electronics   0.02
## 302  Role-Playing                                    CCP   0.19
## 303     Adventure             CDV Software Entertainment   0.00
## 304        Puzzle             CDV Software Entertainment   0.00
## 305    Simulation             CDV Software Entertainment   0.01
## 306      Strategy             CDV Software Entertainment   0.05
## 307        Action                               ChunSoft   0.00
## 308     Adventure                               ChunSoft   0.00
## 309  Role-Playing                               ChunSoft   0.00
## 310        Action                       City Interactive   0.16
## 311     Adventure                       City Interactive   0.20
## 312          Misc                       City Interactive   0.00
## 313        Puzzle                       City Interactive   0.03
## 314       Shooter                       City Interactive   1.87
## 315    Simulation                       City Interactive   0.01
## 316      Fighting       Cloud Imperium Games Corporation   0.00
## 317     Adventure                         Coconuts Japan   0.01
## 318          Misc                         Coconuts Japan   0.00
## 319        Action                            Codemasters   0.61
## 320     Adventure                            Codemasters   0.12
## 321          Misc                            Codemasters   0.61
## 322        Puzzle                            Codemasters   0.00
## 323        Racing                            Codemasters  22.77
## 324  Role-Playing                            Codemasters   0.25
## 325       Shooter                            Codemasters   1.77
## 326    Simulation                            Codemasters   0.16
## 327        Sports                            Codemasters   2.33
## 328      Strategy                            Codemasters   0.07
## 329  Role-Playing                     Codemasters Online   0.02
## 330        Action                      CokeM Interactive   0.00
## 331        Action                                 Coleco   0.07
## 332      Platform                                 Coleco   0.08
## 333       Shooter                                 Coleco   0.02
## 334        Action                                Comfort   0.00
## 335     Adventure                                Comfort   0.00
## 336          Misc                               Commseed   0.00
## 337        Puzzle                                Compile   0.00
## 338  Role-Playing                                Compile   0.00
## 339        Action                          Compile Heart   0.00
## 340     Adventure                          Compile Heart   0.00
## 341  Role-Playing                          Compile Heart   0.03
## 342      Strategy                          Compile Heart   0.00
## 343        Action               Conspiracy Entertainment   0.10
## 344          Misc               Conspiracy Entertainment   0.00
## 345      Platform               Conspiracy Entertainment   0.01
## 346        Puzzle               Conspiracy Entertainment   0.00
## 347        Racing               Conspiracy Entertainment   0.00
## 348       Shooter               Conspiracy Entertainment   0.00
## 349    Simulation               Conspiracy Entertainment   0.00
## 350        Sports               Conspiracy Entertainment   0.03
## 351        Action                       Core Design Ltd.   0.04
## 352    Simulation                       Core Design Ltd.   0.07
## 353        Action                           CPG Products   0.03
## 354        Action                    Crave Entertainment   0.15
## 355     Adventure                    Crave Entertainment   0.06
## 356      Fighting                    Crave Entertainment   0.08
## 357          Misc                    Crave Entertainment   0.37
## 358      Platform                    Crave Entertainment   0.04
## 359        Puzzle                    Crave Entertainment   0.01
## 360        Racing                    Crave Entertainment   0.57
## 361  Role-Playing                    Crave Entertainment   0.30
## 362       Shooter                    Crave Entertainment   0.04
## 363    Simulation                    Crave Entertainment   0.00
## 364        Sports                    Crave Entertainment   0.21
## 365      Strategy                    Crave Entertainment   0.04
## 366     Adventure                          Creative Core   0.00
## 367          Misc                          Creative Core   0.00
## 368    Simulation                          Creative Core   0.00
## 369        Action                            Crimson Cow   0.05
## 370     Adventure                            Crimson Cow   0.01
## 371     Adventure                       Crystal Dynamics   0.06
## 372      Platform                       Crystal Dynamics   0.33
## 373        Racing                       Crystal Dynamics   0.06
## 374  Role-Playing                       Crystal Dynamics   0.17
## 375        Sports                       Crystal Dynamics   0.03
## 376       Shooter                                CTO SpA   0.33
## 377        Sports                                CTO SpA   0.01
## 378     Adventure                          Culture Brain   0.00
## 379          Misc                          Culture Brain   0.00
## 380  Role-Playing                          Culture Brain   0.00
## 381        Sports                          Culture Brain   0.00
## 382        Puzzle                     Culture Publishers   0.03
## 383        Action                             CyberFront   0.00
## 384     Adventure                             CyberFront   0.00
## 385          Misc                             CyberFront   0.00
## 386  Role-Playing                             CyberFront   0.00
## 387      Strategy                             CyberFront   0.00
## 388      Platform                                Cygames   0.00
## 389        Action                            D3Publisher   2.65
## 390     Adventure                            D3Publisher   0.00
## 391      Fighting                            D3Publisher   0.01
## 392          Misc                            D3Publisher   0.32
## 393      Platform                            D3Publisher   0.75
## 394        Puzzle                            D3Publisher   0.15
## 395        Racing                            D3Publisher   0.18
## 396  Role-Playing                            D3Publisher   0.00
## 397       Shooter                            D3Publisher   0.78
## 398    Simulation                            D3Publisher   0.00
## 399        Sports                            D3Publisher   0.17
## 400      Strategy                            D3Publisher   0.00
## 401     Adventure                               Daedalic   0.24
## 402     Adventure                 Daedalic Entertainment   0.11
## 403          Misc                                  Daito   0.00
## 404        Action                               Data Age   0.04
## 405          Misc                Data Design Interactive   0.00
## 406        Racing                Data Design Interactive   0.01
## 407        Sports                Data Design Interactive   0.00
## 408     Adventure                              Data East   0.00
## 409  Role-Playing                              Data East   0.00
## 410     Adventure                         Datam Polystar   0.00
## 411        Action                            Deep Silver   4.83
## 412     Adventure                            Deep Silver   0.62
## 413      Fighting                            Deep Silver   0.03
## 414          Misc                            Deep Silver   0.56
## 415      Platform                            Deep Silver   0.01
## 416        Puzzle                            Deep Silver   0.12
## 417        Racing                            Deep Silver   0.07
## 418  Role-Playing                            Deep Silver   1.39
## 419       Shooter                            Deep Silver   0.31
## 420    Simulation                            Deep Silver   0.41
## 421        Sports                            Deep Silver   0.39
## 422      Strategy                            Deep Silver   0.22
## 423        Action              Destination Software, Inc   0.00
## 424          Misc              Destination Software, Inc   0.02
## 425        Puzzle              Destination Software, Inc   0.03
## 426        Racing              Destination Software, Inc   0.01
## 427  Role-Playing              Destination Software, Inc   0.01
## 428    Simulation              Destination Software, Inc   0.01
## 429        Sports              Destination Software, Inc   0.00
## 430        Action                              Destineer   0.04
## 431     Adventure                              Destineer   0.00
## 432          Misc                              Destineer   0.00
## 433      Platform                              Destineer   0.00
## 434        Puzzle                              Destineer   0.01
## 435        Racing                              Destineer   0.00
## 436       Shooter                              Destineer   0.00
## 437    Simulation                              Destineer   0.00
## 438        Sports                              Destineer   0.00
## 439        Sports                            Detn8 Games   0.00
## 440        Puzzle                       Devolver Digital   0.02
## 441       Shooter                       Devolver Digital   0.02
## 442        Puzzle                        DHM Interactive   0.00
## 443       Shooter                        DHM Interactive   0.00
## 444    Simulation                        DHM Interactive   0.00
## 445        Sports                               DigiCube   0.00
## 446        Action             Disney Interactive Studios  16.50
## 447     Adventure             Disney Interactive Studios   4.76
## 448          Misc             Disney Interactive Studios   5.68
## 449      Platform             Disney Interactive Studios   2.73
## 450        Puzzle             Disney Interactive Studios   1.05
## 451        Racing             Disney Interactive Studios   3.14
## 452  Role-Playing             Disney Interactive Studios   0.16
## 453       Shooter             Disney Interactive Studios   0.01
## 454    Simulation             Disney Interactive Studios   0.28
## 455        Sports             Disney Interactive Studios   0.33
## 456          Misc                                 Dorart   0.00
## 457        Action                        dramatic create   0.00
## 458     Adventure                        dramatic create   0.00
## 459     Adventure               DreamCatcher Interactive   0.04
## 460          Misc               DreamCatcher Interactive   0.00
## 461      Platform               DreamCatcher Interactive   0.02
## 462        Puzzle               DreamCatcher Interactive   0.01
## 463       Shooter               DreamCatcher Interactive   0.04
## 464    Simulation               DreamCatcher Interactive   0.00
## 465        Sports               DreamCatcher Interactive   0.03
## 466      Platform                 DreamWorks Interactive   0.05
## 467        Action                              DSI Games   0.00
## 468     Adventure                              DSI Games   0.00
## 469          Misc                              DSI Games   0.04
## 470    Simulation                              DSI Games   0.00
## 471        Sports                              DSI Games   0.00
## 472        Action                      DTP Entertainment   0.18
## 473     Adventure                      DTP Entertainment   0.28
## 474          Misc                      DTP Entertainment   0.09
## 475        Puzzle                      DTP Entertainment   0.04
## 476  Role-Playing                      DTP Entertainment   0.24
## 477       Shooter                      DTP Entertainment   0.02
## 478    Simulation                      DTP Entertainment   0.01
## 479        Sports                      DTP Entertainment   0.47
## 480      Strategy                      DTP Entertainment   0.10
## 481        Racing               Dusenberry Martin Racing   0.00
## 482       Shooter                               EA Games   0.06
## 483        Puzzle                       Easy Interactive   0.03
## 484      Fighting                                  Ecole   0.00
## 485          Misc                                   Edia   0.00
## 486        Action                      Eidos Interactive  23.40
## 487     Adventure                      Eidos Interactive   0.38
## 488      Fighting                      Eidos Interactive   0.94
## 489          Misc                      Eidos Interactive   0.38
## 490      Platform                      Eidos Interactive   0.47
## 491        Puzzle                      Eidos Interactive   0.08
## 492        Racing                      Eidos Interactive   1.27
## 493  Role-Playing                      Eidos Interactive   0.19
## 494       Shooter                      Eidos Interactive   2.60
## 495    Simulation                      Eidos Interactive   0.35
## 496        Sports                      Eidos Interactive   3.27
## 497      Strategy                      Eidos Interactive   2.30
## 498        Action                        Electronic Arts  44.07
## 499     Adventure                        Electronic Arts   1.65
## 500      Fighting                        Electronic Arts   8.75
## 501          Misc                        Electronic Arts   7.30
## 502      Platform                        Electronic Arts   2.55
## 503        Puzzle                        Electronic Arts   1.43
## 504        Racing                        Electronic Arts  51.20
## 505  Role-Playing                        Electronic Arts  11.39
## 506       Shooter                        Electronic Arts  56.03
## 507    Simulation                        Electronic Arts  35.83
## 508        Sports                        Electronic Arts 146.97
## 509      Strategy                        Electronic Arts   4.10
## 510        Action                 Electronic Arts Victor   0.02
## 511        Sports                 Electronic Arts Victor   0.15
## 512     Adventure                                    Elf   0.00
## 513      Strategy                                    Elf   0.00
## 514    Simulation                                  Elite   0.03
## 515        Action                     Empire Interactive   0.24
## 516     Adventure                     Empire Interactive   0.03
## 517      Fighting                     Empire Interactive   0.04
## 518          Misc                     Empire Interactive   0.28
## 519        Puzzle                     Empire Interactive   0.40
## 520        Racing                     Empire Interactive   2.03
## 521  Role-Playing                     Empire Interactive   0.00
## 522       Shooter                     Empire Interactive   0.54
## 523    Simulation                     Empire Interactive   0.14
## 524        Sports                     Empire Interactive   0.07
## 525        Action                                 Encore   0.01
## 526        Racing                                 Encore   0.00
## 527  Role-Playing                                 Encore   0.02
## 528        Action                       Enix Corporation   0.03
## 529          Misc                       Enix Corporation   0.03
## 530  Role-Playing                       Enix Corporation   0.25
## 531    Simulation                       Enix Corporation   0.00
## 532        Sports                       Enix Corporation   0.00
## 533       Shooter                      Enjoy Gaming ltd.   0.00
## 534     Adventure                             Enterbrain   0.00
## 535      Fighting                             Enterbrain   0.03
## 536  Role-Playing                             Enterbrain   0.07
## 537    Simulation                             Enterbrain   0.00
## 538        Sports                             Enterbrain   0.00
## 539      Strategy              EON Digital Entertainment   0.00
## 540        Action                             Epic Games   0.00
## 541          Misc                                  Epoch   0.00
## 542      Platform                                  Epoch   0.00
## 543  Role-Playing                                  Epoch   0.00
## 544        Sports                                  Epoch   0.00
## 545    Simulation                                 Ertain   0.00
## 546      Fighting                                    ESP   0.00
## 547      Platform                                    ESP   0.02
## 548  Role-Playing                                    ESP   0.00
## 549       Shooter                                    ESP   0.00
## 550    Simulation                                    ESP   0.00
## 551        Action                        Essential Games   0.00
## 552       Shooter                        Essential Games   0.00
## 553      Strategy                        Essential Games   0.00
## 554        Action                        Evolution Games   0.00
## 555      Platform                          Evolved Games   0.01
## 556        Racing                          Evolved Games   0.02
## 557       Shooter                          Evolved Games   0.01
## 558        Action                   Excalibur Publishing   0.12
## 559    Simulation                   Excalibur Publishing   0.12
## 560  Role-Playing                        Experience Inc.   0.00
## 561  Role-Playing            Extreme Entertainment Group   0.00
## 562      Fighting                     Falcom Corporation   0.00
## 563  Role-Playing                     Falcom Corporation   0.00
## 564          Misc                                 Fields   0.00
## 565        Action                       Flashpoint Games   0.01
## 566      Platform                       Flashpoint Games   0.00
## 567  Role-Playing                            Flight-Plan   0.00
## 568      Strategy                            Flight-Plan   0.00
## 569        Action                 Focus Home Interactive   0.01
## 570     Adventure                 Focus Home Interactive   1.22
## 571          Misc                 Focus Home Interactive   0.01
## 572      Platform                 Focus Home Interactive   0.04
## 573        Puzzle                 Focus Home Interactive   0.33
## 574        Racing                 Focus Home Interactive   0.17
## 575  Role-Playing                 Focus Home Interactive   0.57
## 576    Simulation                 Focus Home Interactive   2.07
## 577        Sports                 Focus Home Interactive   0.18
## 578      Strategy                 Focus Home Interactive   0.09
## 579          Misc                       Focus Multimedia   0.02
## 580        Puzzle                       Focus Multimedia   0.03
## 581    Simulation                                 fonfun   0.00
## 582     Adventure                    Foreign Media Games   0.04
## 583          Misc                    Foreign Media Games   0.02
## 584        Puzzle                    Foreign Media Games   0.23
## 585    Simulation                    Foreign Media Games   0.01
## 586     Adventure                              Fortyfive   0.00
## 587        Action                        Fox Interactive   0.18
## 588      Platform                        Fox Interactive   2.07
## 589       Shooter                        Fox Interactive   0.81
## 590        Sports                        Fox Interactive   0.13
## 591        Action                          From Software   0.00
## 592     Adventure                          From Software   0.02
## 593  Role-Playing                          From Software   0.09
## 594       Shooter                          From Software   0.01
## 595    Simulation                          From Software   0.09
## 596     Adventure                                   Fuji   0.00
## 597        Action                           Funbox Media   0.06
## 598     Adventure                           Funbox Media   0.02
## 599          Misc                           Funbox Media   0.04
## 600      Strategy                           Funbox Media   0.01
## 601  Role-Playing                                 Funcom   0.10
## 602        Racing                                FunSoft   0.05
## 603        Puzzle                                 Funsta   0.05
## 604       Shooter                                 Funsta   0.00
## 605        Action                                  FuRyu   0.00
## 606     Adventure                                  FuRyu   0.00
## 607          Misc                                  FuRyu   0.00
## 608  Role-Playing                                  FuRyu   0.02
## 609    Simulation                                  FuRyu   0.00
## 610        Action                      FuRyu Corporation   0.00
## 611      Fighting                                  G.Rev   0.00
## 612       Shooter                                  G.Rev   0.00
## 613       Shooter                                   Gaga   0.00
## 614     Adventure                 Gainax Network Systems   0.00
## 615          Misc                 Gainax Network Systems   0.00
## 616          Misc                                 Gakken   0.00
## 617  Role-Playing                              Game Arts   0.00
## 618        Action                           Game Factory   0.04
## 619     Adventure                           Game Factory   0.06
## 620      Fighting                           Game Factory   0.00
## 621          Misc                           Game Factory   0.02
## 622      Platform                           Game Factory   0.01
## 623        Puzzle                           Game Factory   0.04
## 624        Racing                           Game Factory   0.02
## 625  Role-Playing                           Game Factory   0.00
## 626    Simulation                           Game Factory   0.01
## 627          Misc                              Game Life   0.11
## 628    Simulation                              Game Life   0.02
## 629        Action                             Gamebridge   0.13
## 630        Action                               Gamecock   0.00
## 631          Misc                               Gamecock   0.00
## 632      Strategy                               Gamecock   0.02
## 633          Misc                               Gameloft   0.00
## 634        Action                 GameMill Entertainment   0.04
## 635     Adventure                 GameMill Entertainment   0.00
## 636          Misc                 GameMill Entertainment   0.00
## 637        Sports                 GameMill Entertainment   0.00
## 638          Misc                                GameTek   0.02
## 639          Misc                Gathering of Developers   0.07
## 640        Racing                Gathering of Developers   0.17
## 641       Shooter                Gathering of Developers   0.11
## 642      Strategy                Gathering of Developers   0.12
## 643      Strategy                  General Entertainment   0.00
## 644        Action                                  Genki   0.01
## 645        Racing                                  Genki   0.34
## 646        Sports                                  Genki   0.00
## 647        Puzzle                            Genterprise   0.00
## 648  Role-Playing                             Ghostlight   0.33
## 649    Simulation                             Ghostlight   0.02
## 650        Sports                             Ghostlight   0.11
## 651      Strategy                             Ghostlight   0.00
## 652     Adventure                                   Giga   0.00
## 653        Action                                 Giza10   0.00
## 654      Strategy                                  Glams   0.00
## 655          Misc                 Global A Entertainment   0.00
## 656  Role-Playing                 Global A Entertainment   0.00
## 657        Action                            Global Star   0.02
## 658     Adventure                            Global Star   0.38
## 659      Fighting                            Global Star   0.07
## 660      Platform                            Global Star   0.08
## 661        Racing                            Global Star   0.14
## 662       Shooter                            Global Star   0.14
## 663    Simulation                            Global Star   0.05
## 664        Sports                            Global Star   0.82
## 665      Strategy                            Global Star   0.01
## 666     Adventure                            GN Software   0.00
## 667  Role-Playing                                    GOA   0.02
## 668      Fighting                           Gotham Games   0.34
## 669      Platform                           Gotham Games   0.21
## 670       Shooter                           Gotham Games   0.53
## 671        Sports                           Gotham Games   0.16
## 672          Misc                               Graffiti   0.00
## 673  Role-Playing                               Graffiti   0.00
## 674       Shooter                               Graffiti   0.00
## 675    Simulation                               Graffiti   0.00
## 676      Fighting                       Grand Prix Games   0.00
## 677    Simulation                 Graphsim Entertainment   0.02
## 678        Action                Gremlin Interactive Ltd   0.06
## 679      Platform                Gremlin Interactive Ltd   0.02
## 680        Racing                Gremlin Interactive Ltd   0.07
## 681       Shooter                Gremlin Interactive Ltd   0.04
## 682        Sports                Gremlin Interactive Ltd   0.18
## 683        Sports                  Griffin International   0.00
## 684       Shooter                           Groove Games   0.02
## 685     Adventure                                    GSP   0.93
## 686          Misc                                    GSP   1.02
## 687        Puzzle                                    GSP   0.21
## 688    Simulation                                    GSP   0.00
## 689        Action                         GT Interactive   3.57
## 690      Fighting                         GT Interactive   1.95
## 691          Misc                         GT Interactive   0.36
## 692      Platform                         GT Interactive   0.94
## 693        Racing                         GT Interactive   0.53
## 694       Shooter                         GT Interactive   0.97
## 695    Simulation                         GT Interactive   0.03
## 696        Sports                         GT Interactive   0.14
## 697        Action                                 GungHo   0.00
## 698     Adventure                                 GungHo   0.00
## 699          Misc                                 GungHo   0.00
## 700  Role-Playing                                 GungHo   0.02
## 701     Adventure                                   Gust   0.00
## 702  Role-Playing                                   Gust   0.05
## 703      Strategy                                   Gust   0.00
## 704          Misc                              Hackberry   0.00
## 705        Puzzle                         HAL Laboratory   0.00
## 706        Action                    Hamster Corporation   0.11
## 707    Simulation                    Hamster Corporation   0.00
## 708     Adventure                               Happinet   0.00
## 709          Misc                               Happinet   0.00
## 710    Simulation                               Happinet   0.00
## 711          Misc                 Harmonix Music Systems   0.09
## 712        Action                     Hasbro Interactive   0.81
## 713          Misc                     Hasbro Interactive   1.88
## 714      Platform                     Hasbro Interactive   0.17
## 715        Puzzle                     Hasbro Interactive   0.42
## 716        Racing                     Hasbro Interactive   0.21
## 717       Shooter                     Hasbro Interactive   0.09
## 718  Role-Playing                      Havas Interactive   0.09
## 719     Adventure                           Headup Games   0.03
## 720    Simulation                           Hearty Robin   0.00
## 721    Simulation                                   Hect   0.00
## 722        Action                            Hello Games   0.74
## 723     Adventure                        Her Interactive   0.00
## 724        Action                        Hip Interactive   0.08
## 725       Shooter                        Hip Interactive   0.01
## 726     Adventure                        HMH Interactive   0.08
## 727          Misc                        HMH Interactive   0.03
## 728        Sports           Home Entertainment Suppliers   0.49
## 729          Misc                   Hudson Entertainment   0.02
## 730      Platform                   Hudson Entertainment   0.02
## 731        Puzzle                   Hudson Entertainment   0.00
## 732  Role-Playing                   Hudson Entertainment   0.00
## 733       Shooter                   Hudson Entertainment   0.01
## 734    Simulation                   Hudson Entertainment   0.00
## 735        Sports                   Hudson Entertainment   0.00
## 736        Action                            Hudson Soft   0.00
## 737     Adventure                            Hudson Soft   0.01
## 738      Fighting                            Hudson Soft   0.02
## 739          Misc                            Hudson Soft   0.00
## 740      Platform                            Hudson Soft   0.00
## 741        Puzzle                            Hudson Soft   0.29
## 742  Role-Playing                            Hudson Soft   0.03
## 743       Shooter                            Hudson Soft   0.06
## 744    Simulation                            Hudson Soft   0.05
## 745        Sports                            Hudson Soft   0.47
## 746      Strategy                            Hudson Soft   0.01
## 747     Adventure                    Human Entertainment   0.01
## 748      Fighting                    Human Entertainment   0.00
## 749        Racing                    Human Entertainment   0.00
## 750    Simulation                    Human Entertainment   0.00
## 751        Sports                    Human Entertainment   0.00
## 752      Strategy                    Human Entertainment   0.03
## 753        Action                                  HuneX   0.00
## 754     Adventure                                  HuneX   0.00
## 755  Role-Playing                    Iceberg Interactive   0.01
## 756      Strategy                    Iceberg Interactive   0.04
## 757       Shooter                            id Software   0.00
## 758        Action                           Idea Factory   0.00
## 759     Adventure                           Idea Factory   0.00
## 760          Misc                           Idea Factory   0.00
## 761  Role-Playing                           Idea Factory   0.05
## 762      Strategy                           Idea Factory   0.00
## 763        Action             Idea Factory International   0.08
## 764  Role-Playing             Idea Factory International   0.00
## 765        Action                           IE Institute   0.00
## 766          Misc                           IE Institute   0.00
## 767        Action                 Ignition Entertainment   0.12
## 768     Adventure                 Ignition Entertainment   0.00
## 769      Fighting                 Ignition Entertainment   0.55
## 770          Misc                 Ignition Entertainment   0.08
## 771      Platform                 Ignition Entertainment   0.01
## 772        Puzzle                 Ignition Entertainment   0.26
## 773        Racing                 Ignition Entertainment   0.19
## 774  Role-Playing                 Ignition Entertainment   0.04
## 775       Shooter                 Ignition Entertainment   0.05
## 776        Sports                 Ignition Entertainment   0.06
## 777      Strategy                 Ignition Entertainment   0.00
## 778        Action                     Illusion Softworks   0.27
## 779     Adventure                                 Imadio   0.00
## 780  Role-Playing                            Image Epoch   0.00
## 781     Adventure                        imageepoch Inc.   0.00
## 782  Role-Playing                        imageepoch Inc.   0.00
## 783    Simulation                             Imageworks   0.00
## 784        Action                                 Imagic   0.02
## 785       Shooter                                 Imagic   0.25
## 786     Adventure                              Imagineer   0.00
## 787      Fighting                              Imagineer   0.01
## 788        Racing                              Imagineer   0.01
## 789  Role-Playing                              Imagineer   0.00
## 790    Simulation                              Imagineer   0.00
## 791        Sports                              Imagineer   0.01
## 792          Misc                                   Imax   0.00
## 793     Adventure                            Indie Games   0.02
## 794    Simulation                            Indie Games   0.05
## 795        Action                             Infogrames   0.28
## 796     Adventure                             Infogrames   0.27
## 797      Fighting                             Infogrames   0.16
## 798          Misc                             Infogrames   0.98
## 799      Platform                             Infogrames   0.41
## 800        Racing                             Infogrames   1.16
## 801  Role-Playing                             Infogrames   0.18
## 802       Shooter                             Infogrames   0.77
## 803    Simulation                             Infogrames   0.02
## 804        Sports                             Infogrames   0.35
## 805      Strategy                             Infogrames   0.02
## 806        Action                        Insomniac Games   0.00
## 807     Adventure                           Interchannel   0.00
## 808      Strategy                     Interchannel-Holon   0.00
## 809      Platform                              Intergrow   0.00
## 810        Action                              Interplay   0.43
## 811     Adventure                              Interplay   0.31
## 812      Fighting                              Interplay   0.04
## 813          Misc                              Interplay   0.38
## 814      Platform                              Interplay   0.17
## 815        Racing                              Interplay   0.13
## 816  Role-Playing                              Interplay   0.29
## 817       Shooter                              Interplay   0.25
## 818    Simulation                              Interplay   0.04
## 819        Sports                              Interplay   0.23
## 820       Shooter                  Interplay Productions   0.04
## 821        Sports             Interworks Unlimited, Inc.   0.00
## 822        Action                           Inti Creates   0.00
## 823        Action                  Introversion Software   0.01
## 824  Role-Playing                   inXile Entertainment   0.06
## 825        Action              Irem Software Engineering   0.00
## 826      Fighting              Irem Software Engineering   0.00
## 827          Misc              Irem Software Engineering   0.00
## 828  Role-Playing              Irem Software Engineering   0.00
## 829       Shooter              Irem Software Engineering   0.01
## 830      Strategy              Irem Software Engineering   0.00
## 831        Action                       ITT Family Games   0.02
## 832        Puzzle                              Ivolgamus   0.00
## 833        Puzzle                                   iWin   0.05
## 834      Platform                      Jack of All Games   0.10
## 835       Shooter                      Jack of All Games   0.00
## 836        Action                                 Jaleco   0.03
## 837      Fighting                                 Jaleco   0.01
## 838          Misc                                 Jaleco   0.00
## 839        Puzzle                                 Jaleco   0.01
## 840        Racing                                 Jaleco   0.05
## 841       Shooter                                 Jaleco   0.01
## 842        Sports                                 Jaleco   0.22
## 843      Strategy                                 Jaleco   0.09
## 844          Misc                     Jester Interactive   0.01
## 845        Racing                     Jester Interactive   0.28
## 846    Simulation                                Jorudan   0.00
## 847        Action                     JoWood Productions   0.06
## 848     Adventure                     JoWood Productions   0.03
## 849          Misc                     JoWood Productions   0.00
## 850      Platform                     JoWood Productions   0.01
## 851        Puzzle                     JoWood Productions   0.00
## 852  Role-Playing                     JoWood Productions   0.26
## 853    Simulation                     JoWood Productions   0.01
## 854        Sports                     JoWood Productions   0.05
## 855      Strategy                     JoWood Productions   0.06
## 856    Simulation                            Just Flight   0.03
## 857        Action                                    JVC   0.02
## 858      Fighting                                    JVC   0.00
## 859          Misc                                    JVC   0.03
## 860        Puzzle                                    JVC   0.24
## 861        Racing                                    JVC   0.03
## 862       Shooter                                    JVC   0.02
## 863        Action                         Kadokawa Games   0.00
## 864     Adventure                         Kadokawa Games   0.00
## 865          Misc                         Kadokawa Games   0.00
## 866  Role-Playing                         Kadokawa Games   0.00
## 867    Simulation                         Kadokawa Games   0.00
## 868        Action                        Kadokawa Shoten   0.00
## 869     Adventure                        Kadokawa Shoten   0.00
## 870          Misc                        Kadokawa Shoten   0.00
## 871  Role-Playing                        Kadokawa Shoten   0.31
## 872    Simulation                        Kadokawa Shoten   0.00
## 873        Sports                        Kadokawa Shoten   0.00
## 874      Strategy                        Kadokawa Shoten   0.00
## 875        Action                            Kaga Create   0.00
## 876     Adventure                            Kaga Create   0.00
## 877          Misc                            Kaga Create   0.00
## 878        Action                          Kalypso Media   0.07
## 879     Adventure                          Kalypso Media   0.03
## 880          Misc                          Kalypso Media   0.01
## 881    Simulation                          Kalypso Media   0.40
## 882      Strategy                          Kalypso Media   0.55
## 883          Misc                                  Kamui   0.00
## 884    Simulation                            Kando Games   0.01
## 885          Misc                    Karin Entertainment   0.00
## 886        Action                                  Kemco   0.18
## 887     Adventure                                  Kemco   0.01
## 888          Misc                                  Kemco   0.02
## 889      Platform                                  Kemco   0.05
## 890        Puzzle                                  Kemco   0.01
## 891        Racing                                  Kemco   0.18
## 892  Role-Playing                                  Kemco   0.00
## 893       Shooter                                  Kemco   0.00
## 894        Sports                                  Kemco   0.04
## 895     Adventure                                    KID   0.00
## 896     Adventure                           Kids Station   0.00
## 897  Role-Playing                           King Records   0.00
## 898        Action                    Knowledge Adventure   0.06
## 899     Adventure                    Knowledge Adventure   0.00
## 900          Misc                    Knowledge Adventure   0.00
## 901        Sports                    Knowledge Adventure   0.10
## 902        Action                             Koch Media   0.59
## 903     Adventure                             Koch Media   0.04
## 904        Puzzle                             Koch Media   0.04
## 905  Role-Playing                             Koch Media   0.01
## 906    Simulation                             Koch Media   0.80
## 907        Sports                             Koch Media   0.11
## 908      Strategy                             Koch Media   0.01
## 909      Fighting               Kokopeli Digital Studios   0.01
## 910        Action           Konami Digital Entertainment  19.60
## 911     Adventure           Konami Digital Entertainment   1.46
## 912      Fighting           Konami Digital Entertainment   0.26
## 913          Misc           Konami Digital Entertainment   3.78
## 914      Platform           Konami Digital Entertainment   2.14
## 915        Puzzle           Konami Digital Entertainment   0.06
## 916        Racing           Konami Digital Entertainment   0.25
## 917  Role-Playing           Konami Digital Entertainment   2.06
## 918       Shooter           Konami Digital Entertainment   1.86
## 919    Simulation           Konami Digital Entertainment   5.99
## 920        Sports           Konami Digital Entertainment  30.56
## 921      Strategy           Konami Digital Entertainment   1.67
## 922      Strategy                              Kool Kizz   0.01
## 923          Misc                                    KSS   0.00
## 924        Action                                 Laguna   0.01
## 925      Platform                                 Laguna   0.03
## 926  Role-Playing                                 Laguna   0.00
## 927     Adventure                     Legacy Interactive   0.00
## 928        Action                             LEGO Media   0.01
## 929     Adventure                             LEGO Media   0.07
## 930      Platform                             LEGO Media   0.02
## 931        Racing                             LEGO Media   0.36
## 932      Strategy                             LEGO Media   0.04
## 933        Action                                Level 5   0.00
## 934     Adventure                                Level 5   0.00
## 935          Misc                                Level 5   0.00
## 936        Puzzle                                Level 5   0.26
## 937  Role-Playing                                Level 5   0.01
## 938        Sports                                Level 5   0.00
## 939      Strategy                                Level 5   0.00
## 940       Shooter                  Lexicon Entertainment   0.00
## 941    Simulation                  Lexicon Entertainment   0.00
## 942        Action                            Licensed 4U   0.04
## 943        Puzzle                            Licensed 4U   0.02
## 944    Simulation                 Lighthouse Interactive   0.01
## 945        Puzzle                           Liquid Games   0.00
## 946        Racing                           Liquid Games   0.07
## 947        Action                           Little Orbit   0.66
## 948     Adventure                           Little Orbit   0.65
## 949    Simulation                           Little Orbit   0.00
## 950  Role-Playing                                  Locus   0.00
## 951        Action                              LSP Games   0.01
## 952      Platform                              LSP Games   0.03
## 953       Shooter                              LSP Games   0.00
## 954        Action                              LucasArts  18.31
## 955     Adventure                              LucasArts   1.07
## 956        Racing                              LucasArts   0.18
## 957  Role-Playing                              LucasArts   0.14
## 958       Shooter                              LucasArts   5.25
## 959    Simulation                              LucasArts   1.29
## 960      Strategy                              LucasArts   0.39
## 961          Misc                               Mad Catz   0.04
## 962    Simulation                               Mad Catz   0.00
## 963        Sports                               Mad Catz   0.01
## 964        Sports                        Magical Company   0.10
## 965          Misc                                  Magix   0.13
## 966        Action                  Majesco Entertainment   0.80
## 967     Adventure                  Majesco Entertainment   0.19
## 968      Fighting                  Majesco Entertainment   0.01
## 969          Misc                  Majesco Entertainment   0.43
## 970      Platform                  Majesco Entertainment   0.06
## 971        Puzzle                  Majesco Entertainment   0.04
## 972        Racing                  Majesco Entertainment   0.16
## 973  Role-Playing                  Majesco Entertainment   0.00
## 974       Shooter                  Majesco Entertainment   0.01
## 975    Simulation                  Majesco Entertainment   0.13
## 976        Sports                  Majesco Entertainment   1.08
## 977      Strategy                  Majesco Entertainment   0.00
## 978     Adventure                            Mamba Games   0.03
## 979      Strategy                            Mamba Games   0.01
## 980        Action                   Marvel Entertainment   0.00
## 981        Action                Marvelous Entertainment   0.20
## 982      Fighting                Marvelous Entertainment   0.02
## 983          Misc                Marvelous Entertainment   0.00
## 984  Role-Playing                Marvelous Entertainment   0.00
## 985    Simulation                Marvelous Entertainment   0.00
## 986     Adventure                        Marvelous Games   0.00
## 987        Action                  Marvelous Interactive   0.05
## 988     Adventure                  Marvelous Interactive   0.03
## 989      Fighting                  Marvelous Interactive   0.02
## 990          Misc                  Marvelous Interactive   0.00
## 991  Role-Playing                  Marvelous Interactive   0.07
## 992    Simulation                  Marvelous Interactive   0.00
## 993        Sports                  Marvelous Interactive   0.00
## 994    Simulation                      Masque Publishing   0.00
## 995     Adventure                           Mastertronic   0.03
## 996          Misc                           Mastertronic   0.03
## 997        Puzzle                           Mastertronic   0.14
## 998        Racing                           Mastertronic   0.01
## 999       Shooter                           Mastertronic   0.13
## 1000       Sports                           Mastertronic   0.01
## 1001     Strategy                           Mastertronic   0.15
## 1002    Adventure                                Mastiff   0.00
## 1003         Misc                                Mastiff   0.02
## 1004      Shooter                                Mastiff   0.00
## 1005   Simulation                                Mastiff   0.03
## 1006       Sports                                Mastiff   0.00
## 1007       Action                     Mattel Interactive   0.08
## 1008    Adventure                     Mattel Interactive   0.12
## 1009       Puzzle                     Mattel Interactive   0.03
## 1010       Racing                     Mattel Interactive   0.02
## 1011      Shooter                     Mattel Interactive   0.01
## 1012       Sports                     Mattel Interactive   0.11
## 1013 Role-Playing                               Max Five   0.02
## 1014       Action                   Maximum Family Games   0.00
## 1015   Simulation                                  Maxis   1.32
## 1016    Adventure                      MC2 Entertainment   0.02
## 1017      Shooter                      MC2 Entertainment   0.01
## 1018         Misc                    Media Entertainment   0.00
## 1019    Adventure                          Media Factory   0.00
## 1020       Sports                          Media Factory   0.00
## 1021       Racing                            Media Rings   0.00
## 1022 Role-Playing                            Media Rings   0.05
## 1023       Sports                            Media Rings   0.00
## 1024    Adventure                            Media Works   0.00
## 1025         Misc                            Media Works   0.00
## 1026     Strategy                            Media Works   0.00
## 1027       Puzzle                             MediaQuest   0.02
## 1028       Action                           Men-A-Vision   0.04
## 1029         Misc                     Mentor Interactive   0.00
## 1030 Role-Playing                          Mercury Games   0.00
## 1031   Simulation                          Mercury Games   0.00
## 1032    Adventure                            Merscom LLC   0.17
## 1033     Fighting                               Metro 3D   0.01
## 1034     Platform                               Metro 3D   0.00
## 1035       Racing                               Metro 3D   0.04
## 1036 Role-Playing                               Metro 3D   0.07
## 1037      Shooter                               Metro 3D   0.07
## 1038   Simulation                               Metro 3D   0.28
## 1039 Role-Playing                            Michaelsoft   0.00
## 1040       Puzzle                            Micro Cabin   0.00
## 1041 Role-Playing                            Micro Cabin   0.00
## 1042   Simulation                            Micro Cabin   0.00
## 1043       Action                               Microids   0.04
## 1044    Adventure                               Microids   0.09
## 1045       Sports                               Microids   0.01
## 1046         Misc                             Microprose   0.21
## 1047   Simulation                             Microprose   0.10
## 1048     Strategy                             Microprose   0.88
## 1049       Action                 Microsoft Game Studios   3.16
## 1050    Adventure                 Microsoft Game Studios   0.44
## 1051     Fighting                 Microsoft Game Studios   0.45
## 1052         Misc                 Microsoft Game Studios  12.25
## 1053     Platform                 Microsoft Game Studios   0.59
## 1054       Puzzle                 Microsoft Game Studios   0.02
## 1055       Racing                 Microsoft Game Studios  13.13
## 1056 Role-Playing                 Microsoft Game Studios   5.55
## 1057      Shooter                 Microsoft Game Studios  22.79
## 1058   Simulation                 Microsoft Game Studios   4.51
## 1059       Sports                 Microsoft Game Studios   3.78
## 1060     Strategy                 Microsoft Game Studios   1.94
## 1061       Action        Midas Interactive Entertainment   0.04
## 1062     Fighting        Midas Interactive Entertainment   0.03
## 1063         Misc        Midas Interactive Entertainment   0.03
## 1064     Platform        Midas Interactive Entertainment   0.02
## 1065       Puzzle        Midas Interactive Entertainment   0.01
## 1066       Racing        Midas Interactive Entertainment   0.23
## 1067 Role-Playing        Midas Interactive Entertainment   0.00
## 1068      Shooter        Midas Interactive Entertainment   0.24
## 1069   Simulation        Midas Interactive Entertainment   0.02
## 1070       Sports        Midas Interactive Entertainment   0.33
## 1071     Strategy        Midas Interactive Entertainment   0.02
## 1072       Action                           Midway Games   1.85
## 1073    Adventure                           Midway Games   0.01
## 1074     Fighting                           Midway Games   3.31
## 1075         Misc                           Midway Games   2.74
## 1076     Platform                           Midway Games   0.37
## 1077       Puzzle                           Midway Games   1.76
## 1078       Racing                           Midway Games   1.66
## 1079 Role-Playing                           Midway Games   0.35
## 1080      Shooter                           Midway Games   1.78
## 1081       Sports                           Midway Games   4.55
## 1082      Shooter                              Milestone   0.00
## 1083       Racing                        Milestone S.r.l   0.05
## 1084       Racing                       Milestone S.r.l.   0.78
## 1085       Action                         Minato Station   0.00
## 1086    Adventure                         Minato Station   0.00
## 1087       Action                              Mindscape   0.05
## 1088    Adventure                              Mindscape   0.01
## 1089         Misc                              Mindscape   1.86
## 1090       Puzzle                              Mindscape   0.26
## 1091       Racing                              Mindscape   0.05
## 1092 Role-Playing                              Mindscape   0.01
## 1093       Sports                              Mindscape   0.05
## 1094     Strategy                              Mindscape   0.22
## 1095         Misc                          Mirai Shounen   0.00
## 1096       Sports                                 Misawa   0.00
## 1097      Shooter                                 Mitsui   0.02
## 1098       Action                              mixi, Inc   0.00
## 1099       Sports                                MLB.com   0.00
## 1100    Adventure                                 Mojang   1.30
## 1101   Simulation               Monte Christo Multimedia   0.04
## 1102      Shooter                                   Moss   0.00
## 1103       Action                                    MTO   0.00
## 1104       Racing                                    MTO   0.00
## 1105   Simulation                                    MTO   0.00
## 1106         Misc                              MTV Games   4.01
## 1107         Misc                   Mud Duck Productions   0.19
## 1108       Sports                   Mud Duck Productions   0.06
## 1109       Puzzle                            Mumbo Jumbo   0.00
## 1110       Sports                            Mumbo Jumbo   0.00
## 1111     Strategy                            Mumbo Jumbo   0.00
## 1112       Action                                  Mycom   0.00
## 1113         Misc                           Myelin Media   0.04
## 1114       Action                               Mystique   0.05
## 1115       Action                                    N/A   0.08
## 1116    Adventure                                    N/A   0.05
## 1117     Fighting                                    N/A   1.10
## 1118         Misc                                    N/A   2.05
## 1119     Platform                                    N/A   0.50
## 1120       Puzzle                                    N/A   0.01
## 1121       Racing                                    N/A   0.01
## 1122 Role-Playing                                    N/A   0.01
## 1123      Shooter                                    N/A   0.03
## 1124   Simulation                                    N/A   0.18
## 1125       Sports                                    N/A   0.55
## 1126     Strategy                                    N/A   0.11
## 1127       Action                     Namco Bandai Games   5.14
## 1128    Adventure                     Namco Bandai Games   0.68
## 1129     Fighting                     Namco Bandai Games  14.72
## 1130         Misc                     Namco Bandai Games   4.41
## 1131     Platform                     Namco Bandai Games   0.36
## 1132       Puzzle                     Namco Bandai Games   0.52
## 1133       Racing                     Namco Bandai Games   2.28
## 1134 Role-Playing                     Namco Bandai Games   9.57
## 1135      Shooter                     Namco Bandai Games   2.52
## 1136   Simulation                     Namco Bandai Games   0.89
## 1137       Sports                     Namco Bandai Games   1.50
## 1138     Strategy                     Namco Bandai Games   0.04
## 1139    Adventure                                Natsume   0.00
## 1140     Fighting                                Natsume   0.02
## 1141         Misc                                Natsume   0.00
## 1142     Platform                                Natsume   0.01
## 1143       Puzzle                                Natsume   0.00
## 1144 Role-Playing                                Natsume   0.08
## 1145   Simulation                                Natsume   0.08
## 1146       Sports                                Natsume   0.44
## 1147     Strategy                                Natsume   0.03
## 1148       Sports                           Navarre Corp   0.00
## 1149         Misc                             Naxat Soft   0.00
## 1150     Strategy                                    NCS   0.00
## 1151       Action                                 NCSoft   1.06
## 1152 Role-Playing                                 NCSoft   0.13
## 1153      Shooter                        NDA Productions   0.02
## 1154    Adventure                                    NEC   0.00
## 1155 Role-Playing                                    NEC   0.00
## 1156    Adventure                       NEC Interchannel   0.00
## 1157 Role-Playing                       NEC Interchannel   0.00
## 1158   Simulation                       NEC Interchannel   0.00
## 1159     Strategy                       NEC Interchannel   0.00
## 1160       Action                     Neko Entertainment   0.01
## 1161    Adventure                     Neko Entertainment   0.00
## 1162         Misc                     Neko Entertainment   0.00
## 1163       Puzzle                     Neko Entertainment   0.01
## 1164      Shooter                     Neko Entertainment   0.06
## 1165       Action                                NetRevo   0.00
## 1166    Adventure                                NetRevo   0.00
## 1167     Fighting                                    New   0.00
## 1168     Strategy                    New World Computing   0.00
## 1169       Action                               NewKidCo   0.01
## 1170    Adventure                               NewKidCo   0.07
## 1171     Fighting                               NewKidCo   0.01
## 1172         Misc                               NewKidCo   0.29
## 1173     Platform                               NewKidCo   0.00
## 1174 Role-Playing                                  Nexon   0.00
## 1175         Misc                             Nichibutsu   0.00
## 1176       Action               Nihon Falcom Corporation   0.01
## 1177 Role-Playing               Nihon Falcom Corporation   0.00
## 1178       Action                               Nintendo  29.02
## 1179    Adventure                               Nintendo   7.66
## 1180     Fighting                               Nintendo   8.64
## 1181         Misc                               Nintendo  51.62
## 1182     Platform                               Nintendo  85.21
## 1183       Puzzle                               Nintendo  26.42
## 1184       Racing                               Nintendo  39.75
## 1185 Role-Playing                               Nintendo  63.92
## 1186      Shooter                               Nintendo   9.85
## 1187   Simulation                               Nintendo  26.05
## 1188       Sports                               Nintendo  66.18
## 1189     Strategy                               Nintendo   4.42
## 1190         Misc                           Nippon Amuse   0.00
## 1191       Action                        Nippon Columbia   0.00
## 1192         Misc                        Nippon Columbia   0.00
## 1193       Action                   Nippon Ichi Software   0.15
## 1194    Adventure                   Nippon Ichi Software   0.01
## 1195     Fighting                   Nippon Ichi Software   0.13
## 1196         Misc                   Nippon Ichi Software   0.24
## 1197     Platform                   Nippon Ichi Software   0.03
## 1198 Role-Playing                   Nippon Ichi Software   1.37
## 1199      Shooter                   Nippon Ichi Software   0.00
## 1200     Strategy                   Nippon Ichi Software   0.00
## 1201         Misc                         Nippon Telenet   0.00
## 1202    Adventure                              Nitroplus   0.00
## 1203     Fighting                              Nitroplus   0.00
## 1204       Action                                Nobilis   0.01
## 1205    Adventure                                Nobilis   0.02
## 1206         Misc                                Nobilis   0.00
## 1207       Racing                                Nobilis   0.02
## 1208 Role-Playing                                Nobilis   0.00
## 1209   Simulation                                Nobilis   0.13
## 1210       Action                            Nordcurrent   0.00
## 1211         Misc                            Nordcurrent   0.01
## 1212       Puzzle                            Nordcurrent   0.13
## 1213       Sports                            Nordcurrent   0.00
## 1214       Action                           Nordic Games   0.36
## 1215    Adventure                           Nordic Games   0.07
## 1216         Misc                           Nordic Games   2.56
## 1217       Racing                           Nordic Games   0.09
## 1218 Role-Playing                           Nordic Games   0.00
## 1219      Shooter                           Nordic Games   0.03
## 1220       Sports                           Nordic Games   0.05
## 1221     Strategy                           Nordic Games   0.02
## 1222      Shooter                              NovaLogic   0.24
## 1223     Platform                            Number None   0.02
## 1224    Adventure                                O-Games   0.03
## 1225         Misc                                O-Games   0.15
## 1226       Puzzle                                O-Games   0.13
## 1227       Racing                                O-Games   0.00
## 1228      Shooter                                O-Games   0.00
## 1229       Sports                                O-Games   0.23
## 1230       Puzzle                       O3 Entertainment   0.00
## 1231      Shooter                       O3 Entertainment   0.02
## 1232   Simulation                       O3 Entertainment   0.00
## 1233       Action                                  Ocean   0.51
## 1234     Fighting                                  Ocean   0.05
## 1235         Misc                                  Ocean   0.01
## 1236     Platform                                  Ocean   0.30
## 1237       Puzzle                                  Ocean   0.02
## 1238       Racing                                  Ocean   0.07
## 1239      Shooter                                  Ocean   0.04
## 1240       Sports                                  Ocean   0.00
## 1241   Simulation                          Office Create   0.00
## 1242 Role-Playing                              On Demand   0.08
## 1243   Simulation                              Ongakukan   0.00
## 1244   Simulation                         Origin Systems   0.03
## 1245    Adventure                                Otomate   0.00
## 1246       Action                     Oxygen Interactive   0.00
## 1247    Adventure                     Oxygen Interactive   0.01
## 1248         Misc                     Oxygen Interactive   0.80
## 1249     Platform                     Oxygen Interactive   0.00
## 1250       Puzzle                     Oxygen Interactive   0.00
## 1251       Sports                     Oxygen Interactive   0.23
## 1252         Misc                               P2 Games   0.33
## 1253       Puzzle                               P2 Games   0.00
## 1254         Misc            Pacific Century Cyber Works   0.09
## 1255    Adventure                          Pack-In-Video   0.00
## 1256   Simulation                          Pack-In-Video   0.00
## 1257   Simulation                           Pack In Soft   0.06
## 1258       Action                                 Palcom   0.44
## 1259 Role-Playing                       Panther Software   0.02
## 1260         Misc                                   Paon   0.00
## 1261         Misc                       Paon Corporation   0.00
## 1262   Simulation                    Paradox Development   0.01
## 1263         Misc                    Paradox Interactive   0.03
## 1264 Role-Playing                    Paradox Interactive   0.08
## 1265   Simulation                    Paradox Interactive   0.21
## 1266     Strategy                    Paradox Interactive   0.25
## 1267       Action                           Parker Bros.   0.21
## 1268     Platform                           Parker Bros.   0.03
## 1269       Puzzle                           Parker Bros.   0.03
## 1270       Puzzle          Performance Designed Products   0.00
## 1271   Simulation                             Phantagram   0.01
## 1272      Shooter                            Phantom EFX   0.00
## 1273     Platform                             Phenomedia   0.00
## 1274       Puzzle                             Phenomedia   0.00
## 1275       Racing                             Phenomedia   0.00
## 1276      Shooter                          Phoenix Games   0.00
## 1277    Adventure                                 Piacci   0.00
## 1278         Misc                               Pinnacle   1.17
## 1279       Puzzle                               Pinnacle   0.03
## 1280       Sports                               Pinnacle   0.10
## 1281     Strategy                               Pinnacle   0.02
## 1282    Adventure                            Pioneer LDC   0.00
## 1283       Racing                            Pioneer LDC   0.16
## 1284         Misc                                Play It   0.22
## 1285     Platform                                Play It   0.01
## 1286       Racing                                Play It   0.58
## 1287      Shooter                                Play It   0.18
## 1288       Sports                                Play It   0.24
## 1289       Action                 Playlogic Game Factory   0.09
## 1290         Misc                 Playlogic Game Factory   0.00
## 1291       Puzzle                 Playlogic Game Factory   0.01
## 1292      Shooter                 Playlogic Game Factory   0.06
## 1293       Sports                 Playlogic Game Factory   0.00
## 1294     Strategy                 Playlogic Game Factory   0.00
## 1295       Racing                              Playmates   0.11
## 1296     Fighting                               Playmore   0.00
## 1297       Action                                  PlayV   0.14
## 1298         Misc                                  PlayV   0.02
## 1299       Puzzle                                  PlayV   0.14
## 1300         Misc                                 Plenty   0.00
## 1301         Misc                             PM Studios   0.00
## 1302         Misc                            Pony Canyon   0.02
## 1303    Adventure                           PopCap Games   0.08
## 1304         Misc                           PopCap Games   0.02
## 1305       Puzzle                           PopCap Games   0.20
## 1306     Strategy                           PopCap Games   0.04
## 1307       Action                         Popcorn Arcade   0.00
## 1308     Platform                         Popcorn Arcade   0.00
## 1309       Puzzle                         Popcorn Arcade   0.00
## 1310       Racing                         Popcorn Arcade   0.00
## 1311      Shooter                         Popcorn Arcade   0.00
## 1312     Strategy                        PopTop Software   0.04
## 1313       Puzzle                                    Pow   0.00
## 1314       Action                                  PQube   0.15
## 1315    Adventure                                  PQube   0.13
## 1316     Fighting                                  PQube   0.55
## 1317         Misc                                  PQube   0.04
## 1318       Racing                                  PQube   0.00
## 1319      Shooter                                  PQube   0.00
## 1320   Simulation                                  PQube   0.01
## 1321       Sports                                  PQube   0.04
## 1322    Adventure                          Princess Soft   0.00
## 1323       Action                              Prototype   0.00
## 1324    Adventure                              Prototype   0.00
## 1325       Action                              Psygnosis   0.48
## 1326    Adventure                              Psygnosis   0.14
## 1327         Misc                              Psygnosis   0.01
## 1328     Platform                              Psygnosis   0.01
## 1329       Puzzle                              Psygnosis   0.02
## 1330       Racing                              Psygnosis   1.30
## 1331 Role-Playing                              Psygnosis   0.09
## 1332      Shooter                              Psygnosis   0.08
## 1333   Simulation                              Psygnosis   0.33
## 1334       Sports                              Psygnosis   0.02
## 1335         Misc                                 Quelle   0.05
## 1336 Role-Playing                                  Quest   0.00
## 1337       Action                               Quinrose   0.00
## 1338    Adventure                               Quinrose   0.00
## 1339    Adventure                                Quintet   0.00
## 1340     Fighting                          Rage Software   0.38
## 1341       Puzzle                          Rage Software   0.01
## 1342       Racing                          Rage Software   0.06
## 1343      Shooter                          Rage Software   0.02
## 1344     Platform                             Rain Games   0.01
## 1345       Racing                              Rebellion   0.13
## 1346      Shooter                 Rebellion Developments   0.17
## 1347    Adventure                      RED Entertainment   0.00
## 1348    Adventure                                Red Orb   3.61
## 1349       Action                Red Storm Entertainment   0.02
## 1350      Shooter                Red Storm Entertainment   0.78
## 1351         Misc                              RedOctane   1.31
## 1352    Adventure                     Reef Entertainment   0.08
## 1353      Shooter                     Reef Entertainment   0.03
## 1354       Sports                     Reef Entertainment   0.02
## 1355       Sports                           responDESIGN   0.04
## 1356    Adventure                     Revolution (Japan)   0.00
## 1357    Adventure                    Revolution Software   0.07
## 1358       Action                      Rising Star Games   0.42
## 1359    Adventure                      Rising Star Games   0.00
## 1360     Fighting                      Rising Star Games   0.15
## 1361         Misc                      Rising Star Games   0.69
## 1362     Platform                      Rising Star Games   0.02
## 1363       Puzzle                      Rising Star Games   0.35
## 1364 Role-Playing                      Rising Star Games   0.75
## 1365      Shooter                      Rising Star Games   0.11
## 1366   Simulation                      Rising Star Games   0.38
## 1367       Sports                      Rising Star Games   0.00
## 1368     Strategy                      Rising Star Games   0.11
## 1369   Simulation                          Riverhillsoft   0.00
## 1370       Action                         Rocket Company   0.00
## 1371    Adventure                         Rocket Company   0.00
## 1372         Misc                         Rocket Company   0.00
## 1373 Role-Playing                         Rocket Company   0.00
## 1374   Simulation                         Rocket Company   0.00
## 1375       Sports                         Rocket Company   0.00
## 1376       Action                             Rondomedia   0.04
## 1377    Adventure                             Rondomedia   0.11
## 1378         Misc                             Rondomedia   0.03
## 1379       Puzzle                             Rondomedia   0.47
## 1380       Racing                             Rondomedia   0.04
## 1381   Simulation                             Rondomedia   0.44
## 1382       Racing                                    RTL   0.00
## 1383   Simulation                                    RTL   0.04
## 1384       Sports                                    RTL   0.94
## 1385       Action                                 Russel   0.00
## 1386    Adventure                                 Russel   0.00
## 1387       Sports                                 Russel   1.12
## 1388    Adventure                      Sammy Corporation   0.03
## 1389     Fighting                      Sammy Corporation   0.14
## 1390         Misc                      Sammy Corporation   0.00
## 1391   Simulation                      Sammy Corporation   0.14
## 1392       Action                                 Saurus   0.01
## 1393       Action                        Scholastic Inc.   0.00
## 1394    Adventure                        Scholastic Inc.   0.03
## 1395         Misc                        Scholastic Inc.   0.00
## 1396       Puzzle                        Scholastic Inc.   0.00
## 1397       Action                                    SCi   0.14
## 1398     Platform                                    SCi   0.04
## 1399       Racing                                    SCi   0.03
## 1400      Shooter                                    SCi   1.02
## 1401       Action                             Screenlife   0.01
## 1402     Fighting                             Screenlife   0.00
## 1403 Role-Playing                             Screenlife   0.00
## 1404       Action                           SCS Software   0.12
## 1405       Puzzle                                  Sears   0.01
## 1406       Action                                   Sega   7.63
## 1407    Adventure                                   Sega   0.30
## 1408     Fighting                                   Sega   2.61
## 1409         Misc                                   Sega   4.69
## 1410     Platform                                   Sega  18.48
## 1411       Puzzle                                   Sega   0.09
## 1412       Racing                                   Sega   7.38
## 1413 Role-Playing                                   Sega   1.92
## 1414      Shooter                                   Sega   5.29
## 1415   Simulation                                   Sega   1.90
## 1416       Sports                                   Sega  28.44
## 1417     Strategy                                   Sega   3.27
## 1418         Misc                       Seta Corporation   0.00
## 1419 Role-Playing                       Seta Corporation   0.00
## 1420       Sports                       Seta Corporation   0.00
## 1421       Action                          Seventh Chord   0.00
## 1422    Adventure                             Shogakukan   0.00
## 1423         Misc                             Shogakukan   0.00
## 1424       Sports           Simon & Schuster Interactive   0.02
## 1425       Racing                   Slightly Mad Studios   0.92
## 1426     Strategy                    Slitherine Software   0.10
## 1427     Fighting                                    SNK   0.03
## 1428    Adventure                           SNK Playmore   0.00
## 1429     Fighting                           SNK Playmore   0.09
## 1430 Role-Playing                           SNK Playmore   0.00
## 1431      Shooter                           SNK Playmore   0.05
## 1432    Adventure                                Societa   0.00
## 1433       Action                               Sold Out   0.01
## 1434         Misc                                 Sonnet   0.00
## 1435       Action            Sony Computer Entertainment  29.84
## 1436    Adventure            Sony Computer Entertainment   4.39
## 1437     Fighting            Sony Computer Entertainment   8.53
## 1438         Misc            Sony Computer Entertainment  33.81
## 1439     Platform            Sony Computer Entertainment  32.87
## 1440       Puzzle            Sony Computer Entertainment   0.78
## 1441       Racing            Sony Computer Entertainment  35.42
## 1442 Role-Playing            Sony Computer Entertainment   9.21
## 1443      Shooter            Sony Computer Entertainment  16.70
## 1444   Simulation            Sony Computer Entertainment   2.40
## 1445       Sports            Sony Computer Entertainment  13.07
## 1446     Strategy            Sony Computer Entertainment   0.70
## 1447       Sports    Sony Computer Entertainment America   0.00
## 1448       Action     Sony Computer Entertainment Europe   2.28
## 1449    Adventure     Sony Computer Entertainment Europe   1.43
## 1450         Misc     Sony Computer Entertainment Europe   2.94
## 1451     Platform     Sony Computer Entertainment Europe   0.96
## 1452      Shooter     Sony Computer Entertainment Europe   0.49
## 1453   Simulation     Sony Computer Entertainment Europe   0.90
## 1454         Misc               Sony Music Entertainment   0.00
## 1455 Role-Playing              Sony Online Entertainment   1.15
## 1456     Strategy              Sony Online Entertainment   0.00
## 1457       Action                        SouthPeak Games   0.07
## 1458    Adventure                        SouthPeak Games   0.17
## 1459     Fighting                        SouthPeak Games   0.04
## 1460         Misc                        SouthPeak Games   0.03
## 1461       Puzzle                        SouthPeak Games   0.00
## 1462       Racing                        SouthPeak Games   0.05
## 1463 Role-Playing                        SouthPeak Games   0.35
## 1464      Shooter                        SouthPeak Games   0.17
## 1465   Simulation                        SouthPeak Games   0.03
## 1466       Sports                        SouthPeak Games   0.00
## 1467     Strategy                        SouthPeak Games   0.00
## 1468       Action                                  Spike   0.00
## 1469    Adventure                                  Spike   0.00
## 1470     Fighting                                  Spike   0.03
## 1471         Misc                                  Spike   0.00
## 1472 Role-Playing                                  Spike   0.00
## 1473   Simulation                                  Spike   0.00
## 1474       Sports                                  Spike   0.30
## 1475       Sports                                    SPS   0.04
## 1476       Racing                                 Square   0.00
## 1477 Role-Playing                                 Square   0.29
## 1478 Role-Playing                              Square EA   0.30
## 1479       Action                            Square Enix  12.79
## 1480    Adventure                            Square Enix   1.12
## 1481     Fighting                            Square Enix   0.64
## 1482         Misc                            Square Enix   0.15
## 1483       Puzzle                            Square Enix   0.17
## 1484 Role-Playing                            Square Enix  14.93
## 1485      Shooter                            Square Enix   2.59
## 1486   Simulation                            Square Enix   0.05
## 1487     Strategy                            Square Enix   0.38
## 1488     Fighting                             SquareSoft   0.29
## 1489       Racing                             SquareSoft   0.05
## 1490 Role-Playing                             SquareSoft   4.47
## 1491      Shooter                             SquareSoft   0.07
## 1492   Simulation                             SquareSoft   0.00
## 1493       Sports                             SquareSoft   0.00
## 1494     Strategy                             SquareSoft   0.07
## 1495     Strategy                                    SSI   0.07
## 1496       Action                        Stainless Games   0.01
## 1497       Action                               Starfish   0.00
## 1498 Role-Playing                               Starfish   0.00
## 1499      Shooter                               Starfish   0.00
## 1500       Sports                               Starfish   0.19
## 1501       Action                         Starpath Corp.   0.02
## 1502 Role-Playing                                  Sting   0.07
## 1503       Action                       Storm City Games   0.00
## 1504    Adventure                       Storm City Games   0.00
## 1505         Misc                       Storm City Games   0.00
## 1506     Platform                       Storm City Games   0.00
## 1507       Puzzle                       Storm City Games   0.10
## 1508       Racing                       Storm City Games   0.00
## 1509       Sports                       Storm City Games   0.00
## 1510     Strategy                       Storm City Games   0.00
## 1511     Strategy                         Strategy First   0.02
## 1512       Action                                Success   0.00
## 1513    Adventure                                Success   0.00
## 1514         Misc                                Success   0.01
## 1515       Puzzle                                Success   0.00
## 1516 Role-Playing                                Success   0.01
## 1517      Shooter                                Success   0.43
## 1518   Simulation                                Success   0.00
## 1519     Strategy                                Success   0.04
## 1520       Sports                             Summitsoft   0.01
## 1521     Strategy                             Sunflowers   0.02
## 1522       Action                    Sunrise Interactive   0.00
## 1523     Fighting                    Sunrise Interactive   0.00
## 1524       Racing                    Sunrise Interactive   0.00
## 1525 Role-Playing                    Sunrise Interactive   0.00
## 1526    Adventure                                Sunsoft   0.05
## 1527     Fighting                                Sunsoft   0.00
## 1528         Misc                                Sunsoft   0.00
## 1529     Platform                                Sunsoft   0.02
## 1530       Puzzle                                Sunsoft   0.00
## 1531 Role-Playing                                Sunsoft   0.08
## 1532      Shooter                                Sunsoft   0.10
## 1533    Adventure                                 Sweets   0.00
## 1534       Action                   Swing! Entertainment   0.02
## 1535    Adventure                   Swing! Entertainment   0.03
## 1536     Platform                   Swing! Entertainment   0.01
## 1537      Shooter                   Swing! Entertainment   0.06
## 1538   Simulation                   Swing! Entertainment   0.04
## 1539         Misc                                 Syscom   0.00
## 1540       Racing                                 Syscom   0.04
## 1541     Platform                               System 3   0.10
## 1542         Misc               System 3 Arcade Software   0.04
## 1543     Platform               System 3 Arcade Software   0.04
## 1544       Puzzle               System 3 Arcade Software   0.00
## 1545       Racing               System 3 Arcade Software   0.55
## 1546       Sports               System 3 Arcade Software   0.00
## 1547    Adventure                            System Soft   0.00
## 1548     Strategy                            System Soft   0.00
## 1549       Sports                               T&E Soft   0.00
## 1550       Action                                  Taito   0.01
## 1551    Adventure                                  Taito   0.00
## 1552     Fighting                                  Taito   0.00
## 1553         Misc                                  Taito   0.00
## 1554 Role-Playing                                  Taito   0.04
## 1555      Shooter                                  Taito   0.04
## 1556   Simulation                                  Taito   0.00
## 1557       Action                                 Takara   0.00
## 1558     Fighting                                 Takara   0.00
## 1559         Misc                                 Takara   0.06
## 1560       Racing                                 Takara   0.00
## 1561 Role-Playing                                 Takara   0.00
## 1562       Action                            Takara Tomy   0.00
## 1563     Fighting                            Takara Tomy   0.03
## 1564         Misc                            Takara Tomy   0.00
## 1565       Racing                            Takara Tomy   0.00
## 1566 Role-Playing                            Takara Tomy   0.00
## 1567       Sports                            Takara Tomy   0.00
## 1568     Strategy                            Takara Tomy   0.00
## 1569       Action                   Take-Two Interactive  70.44
## 1570    Adventure                   Take-Two Interactive   2.58
## 1571     Fighting                   Take-Two Interactive   0.00
## 1572         Misc                   Take-Two Interactive   2.92
## 1573     Platform                   Take-Two Interactive   0.63
## 1574       Puzzle                   Take-Two Interactive   0.02
## 1575       Racing                   Take-Two Interactive   4.80
## 1576 Role-Playing                   Take-Two Interactive   1.82
## 1577      Shooter                   Take-Two Interactive  18.38
## 1578   Simulation                   Take-Two Interactive   0.34
## 1579       Sports                   Take-Two Interactive  13.76
## 1580     Strategy                   Take-Two Interactive   2.45
## 1581    Adventure                                 Takuyo   0.00
## 1582      Shooter                              TalonSoft   0.33
## 1583       Action                               TDK Core   0.12
## 1584         Misc                               TDK Core   0.00
## 1585   Simulation                               TDK Core   0.00
## 1586       Action                         TDK Mediactive   0.28
## 1587    Adventure                         TDK Mediactive   0.05
## 1588         Misc                         TDK Mediactive   0.17
## 1589     Platform                         TDK Mediactive   0.69
## 1590       Racing                         TDK Mediactive   0.76
## 1591      Shooter                         TDK Mediactive   0.33
## 1592       Sports                         TDK Mediactive   0.14
## 1593     Strategy                        Team17 Software   0.04
## 1594       Sports              Technos Japan Corporation   0.00
## 1595      Shooter                             TechnoSoft   0.02
## 1596       Action                             Tecmo Koei   3.85
## 1597    Adventure                             Tecmo Koei   0.00
## 1598     Fighting                             Tecmo Koei   0.74
## 1599         Misc                             Tecmo Koei   0.02
## 1600     Platform                             Tecmo Koei   0.01
## 1601       Racing                             Tecmo Koei   0.00
## 1602 Role-Playing                             Tecmo Koei   1.28
## 1603      Shooter                             Tecmo Koei   0.12
## 1604   Simulation                             Tecmo Koei   0.30
## 1605       Sports                             Tecmo Koei   0.34
## 1606     Strategy                             Tecmo Koei   0.42
## 1607         Misc                              Telegames   0.05
## 1608       Puzzle                              Telegames   0.00
## 1609   Simulation                              Telegames   0.01
## 1610     Strategy                              Telegames   0.00
## 1611       Action                         Telltale Games   0.09
## 1612    Adventure                         Telltale Games   0.91
## 1613       Action                                Telstar   0.05
## 1614       Racing                                Telstar   0.03
## 1615      Shooter                                Telstar   0.02
## 1616       Puzzle                          Tetris Online   0.13
## 1617    Adventure                                    TGL   0.00
## 1618    Adventure                  The Adventure Company   0.06
## 1619       Puzzle                  The Adventure Company   0.07
## 1620       Racing                   The Learning Company   0.02
## 1621       Action                                    THQ  24.83
## 1622    Adventure                                    THQ   7.17
## 1623     Fighting                                    THQ  20.58
## 1624         Misc                                    THQ   4.66
## 1625     Platform                                    THQ  11.75
## 1626       Puzzle                                    THQ   2.02
## 1627       Racing                                    THQ   9.09
## 1628 Role-Playing                                    THQ   0.40
## 1629      Shooter                                    THQ   5.67
## 1630   Simulation                                    THQ   1.44
## 1631       Sports                                    THQ   4.23
## 1632     Strategy                                    THQ   2.89
## 1633       Action                            Tigervision   0.09
## 1634     Fighting                Time Warner Interactive   0.04
## 1635      Shooter                Time Warner Interactive   0.01
## 1636       Sports                Time Warner Interactive   0.04
## 1637     Strategy                Time Warner Interactive   0.03
## 1638       Action                                  Titus   0.10
## 1639     Fighting                                  Titus   0.22
## 1640         Misc                                  Titus   0.01
## 1641     Platform                                  Titus   0.00
## 1642       Racing                                  Titus   0.33
## 1643 Role-Playing                                  Titus   0.01
## 1644      Shooter                                  Titus   0.02
## 1645   Simulation                                  Titus   0.38
## 1646     Strategy                                  Titus   0.01
## 1647         Misc                                 Tivola   0.07
## 1648 Role-Playing                                   TOHO   0.00
## 1649         Misc                                  Tommo   0.00
## 1650      Shooter                                  Tommo   0.00
## 1651       Sports                                  Tommo   0.00
## 1652       Action                       Tomy Corporation   0.09
## 1653     Fighting                       Tomy Corporation   0.62
## 1654         Misc                       Tomy Corporation   0.00
## 1655       Racing                       Tomy Corporation   0.02
## 1656 Role-Playing                       Tomy Corporation   0.02
## 1657   Simulation                       Tomy Corporation   0.00
## 1658         Misc                    TopWare Interactive   0.09
## 1659 Role-Playing                    TopWare Interactive   0.01
## 1660       Action                             Touchstone   0.44
## 1661   Simulation                             Touchstone   0.06
## 1662       Sports                              Tradewest   0.06
## 1663      Shooter                           Trion Worlds   0.30
## 1664     Strategy                           Trion Worlds   0.00
## 1665      Shooter                   Tripwire Interactive   0.07
## 1666       Action                  Tru Blu Entertainment   0.09
## 1667       Sports                  Tru Blu Entertainment   0.16
## 1668     Fighting                               Tryfirst   0.00
## 1669       Racing                                    TYO   0.16
## 1670    Adventure                              Type-Moon   0.00
## 1671     Platform                              U.S. Gold   0.02
## 1672       Sports                              U.S. Gold   0.11
## 1673       Action                                Ubisoft  54.10
## 1674    Adventure                                Ubisoft   8.08
## 1675     Fighting                                Ubisoft   1.95
## 1676         Misc                                Ubisoft  29.65
## 1677     Platform                                Ubisoft   9.03
## 1678       Puzzle                                Ubisoft   3.05
## 1679       Racing                                Ubisoft   6.27
## 1680 Role-Playing                                Ubisoft   4.05
## 1681      Shooter                                Ubisoft  24.04
## 1682   Simulation                                Ubisoft  11.70
## 1683       Sports                                Ubisoft   7.37
## 1684     Strategy                                Ubisoft   4.03
## 1685       Action                         Ubisoft Annecy   0.32
## 1686     Fighting                         Ubisoft Annecy   0.29
## 1687         Misc                         Ubisoft Annecy   0.02
## 1688 Role-Playing                         Ubisoft Annecy   0.03
## 1689       Sports                            UEP Systems   0.46
## 1690       Action                        UFO Interactive   0.00
## 1691         Misc                        UFO Interactive   0.00
## 1692       Puzzle                        UFO Interactive   0.00
## 1693      Shooter                        UFO Interactive   0.00
## 1694       Sports                        UFO Interactive   0.00
## 1695   Simulation                      UIG Entertainment   0.01
## 1696     Fighting                            Ultravision   0.03
## 1697       Action                        Universal Gamex   0.04
## 1698       Action                  Universal Interactive   1.23
## 1699     Fighting                  Universal Interactive   0.07
## 1700         Misc                  Universal Interactive   0.15
## 1701     Platform                  Universal Interactive   4.85
## 1702      Shooter                  Universal Interactive   0.24
## 1703       Sports                  Universal Interactive   0.19
## 1704       Action                                Unknown   0.93
## 1705    Adventure                                Unknown   0.08
## 1706     Fighting                                Unknown   0.05
## 1707         Misc                                Unknown   1.38
## 1708     Platform                                Unknown   0.19
## 1709       Puzzle                                Unknown   0.32
## 1710       Racing                                Unknown   2.02
## 1711 Role-Playing                                Unknown   0.88
## 1712      Shooter                                Unknown   0.31
## 1713   Simulation                                Unknown   0.25
## 1714       Sports                                Unknown   0.97
## 1715     Strategy                                Unknown   0.15
## 1716    Adventure                           Valcon Games   0.00
## 1717       Racing                           Valcon Games   0.00
## 1718      Shooter                           Valcon Games   0.03
## 1719   Simulation                           Valcon Games   0.00
## 1720       Sports                           Valcon Games   0.05
## 1721    Adventure                               ValuSoft   0.00
## 1722       Puzzle                               ValuSoft   0.00
## 1723       Racing                               ValuSoft   0.09
## 1724      Shooter                                  Valve   0.63
## 1725      Shooter                         Valve Software   1.15
## 1726         Misc                                    Vap   0.00
## 1727       Racing                  Vatical Entertainment   0.07
## 1728     Fighting                              Vic Tokai   0.08
## 1729    Adventure                     Victor Interactive   0.00
## 1730         Misc                     Victor Interactive   0.00
## 1731 Role-Playing                     Victor Interactive   0.01
## 1732   Simulation                     Victor Interactive   0.00
## 1733       Sports                     Victor Interactive   0.07
## 1734       Action                           Video System   0.04
## 1735       Racing                           Video System   1.00
## 1736       Action                                  Views   0.00
## 1737    Adventure                                  Views   0.00
## 1738       Action                          Vir2L Studios   0.01
## 1739       Racing                          Vir2L Studios   0.00
## 1740       Sports                          Vir2L Studios   0.00
## 1741       Action                     Virgin Interactive   5.28
## 1742    Adventure                     Virgin Interactive   0.77
## 1743     Fighting                     Virgin Interactive   1.63
## 1744         Misc                     Virgin Interactive   0.02
## 1745     Platform                     Virgin Interactive   0.86
## 1746       Puzzle                     Virgin Interactive   0.10
## 1747       Racing                     Virgin Interactive   0.01
## 1748 Role-Playing                     Virgin Interactive   0.55
## 1749      Shooter                     Virgin Interactive   1.61
## 1750   Simulation                     Virgin Interactive   0.10
## 1751       Sports                     Virgin Interactive   0.06
## 1752     Strategy                     Virgin Interactive   1.95
## 1753         Misc                     Virtual Play Games   0.00
## 1754       Sports                     Virtual Play Games   0.00
## 1755      Shooter                                  Visco   0.00
## 1756       Action                          Vivendi Games   2.97
## 1757    Adventure                          Vivendi Games   0.47
## 1758     Fighting                          Vivendi Games   0.16
## 1759         Misc                          Vivendi Games   0.50
## 1760     Platform                          Vivendi Games   5.43
## 1761       Puzzle                          Vivendi Games   0.04
## 1762       Racing                          Vivendi Games   4.60
## 1763 Role-Playing                          Vivendi Games   0.02
## 1764      Shooter                          Vivendi Games   1.46
## 1765   Simulation                          Vivendi Games   0.02
## 1766       Sports                          Vivendi Games   0.02
## 1767     Strategy                          Vivendi Games   0.35
## 1768       Action                                Wanadoo   0.21
## 1769     Platform                                Wanadoo   0.00
## 1770       Racing                                Wanadoo   0.00
## 1771      Shooter                                Warashi   0.00
## 1772      Shooter                          Wargaming.net   0.23
## 1773       Action Warner Bros. Interactive Entertainment  44.72
## 1774    Adventure Warner Bros. Interactive Entertainment   0.19
## 1775     Fighting Warner Bros. Interactive Entertainment   3.32
## 1776         Misc Warner Bros. Interactive Entertainment   0.91
## 1777     Platform Warner Bros. Interactive Entertainment   0.29
## 1778       Puzzle Warner Bros. Interactive Entertainment   1.31
## 1779       Racing Warner Bros. Interactive Entertainment   0.15
## 1780      Shooter Warner Bros. Interactive Entertainment   1.49
## 1781     Strategy Warner Bros. Interactive Entertainment   0.74
## 1782    Adventure                                   Warp   0.00
## 1783    Adventure                WayForward Technologies   0.00
## 1784     Strategy                       Westwood Studios   0.00
## 1785       Puzzle                White Park Bay Software   0.01
## 1786       Action                     Wizard Video Games   0.03
## 1787       Racing                      Xicat Interactive   0.01
## 1788 Role-Playing                      Xicat Interactive   0.01
## 1789       Sports                      Xicat Interactive   0.04
## 1790     Fighting                     Xing Entertainment   0.03
## 1791         Misc                                Xplosiv   0.00
## 1792       Puzzle                                Xplosiv   0.23
## 1793       Racing                                Xplosiv   0.63
## 1794         Misc                               XS Games   0.02
## 1795       Racing                               XS Games   0.15
## 1796       Sports                               XS Games   0.00
## 1797       Action                            Xseed Games   0.01
## 1798 Role-Playing                            Xseed Games   0.01
## 1799      Shooter                            Xseed Games   0.02
## 1800     Platform                       Yacht Club Games   0.11
## 1801         Misc                   Yamasa Entertainment   0.00
## 1802       Action                                   Yeti   0.00
## 1803    Adventure                                   Yeti   0.00
## 1804     Fighting                                   Yeti   0.00
## 1805     Fighting                                 Yuke's   0.00
## 1806       Racing                                 Yuke's   0.01
## 1807    Adventure                                Yumedia   0.00
## 1808         Misc                                 Zenrin   0.00
## 1809       Action                 Zoo Digital Publishing   0.08
## 1810    Adventure                 Zoo Digital Publishing   0.01
## 1811     Fighting                 Zoo Digital Publishing   0.03
## 1812         Misc                 Zoo Digital Publishing   0.53
## 1813     Platform                 Zoo Digital Publishing   0.10
## 1814       Puzzle                 Zoo Digital Publishing   0.16
## 1815       Racing                 Zoo Digital Publishing   0.37
## 1816      Shooter                 Zoo Digital Publishing   0.20
## 1817   Simulation                 Zoo Digital Publishing   0.03
## 1818       Sports                 Zoo Digital Publishing   0.94
## 1819     Strategy                 Zoo Digital Publishing   0.00
## 1820       Action                              Zoo Games   0.00
## 1821    Adventure                              Zoo Games   0.00
## 1822         Misc                              Zoo Games   0.00
## 1823       Puzzle                              Zoo Games   0.00
## 1824       Racing                              Zoo Games   0.00
## 1825      Shooter                              Zoo Games   0.00
## 1826   Simulation                              Zoo Games   0.00
## 1827       Sports                              Zoo Games   0.00
## 1828       Action                            Zushi Games   0.02
## 1829    Adventure                            Zushi Games   0.00
## 1830         Misc                            Zushi Games   0.00
## 1831       Puzzle                            Zushi Games   0.01
## 1832       Racing                            Zushi Games   0.00
## 1833 Role-Playing                            Zushi Games   0.00
## 1834      Shooter                            Zushi Games   0.00
## 1835   Simulation                            Zushi Games   0.00
## 1836       Sports                            Zushi Games   0.02
## 1837     Strategy                            Zushi Games   0.00
aggregate(EU_Sales,by=list(Platform = Platform,Year = Year),mean)
##     Platform Year           x
## 1       2600 1980 0.074444444
## 2       2600 1981 0.042608696
## 3       2600 1982 0.045833333
## 4       2600 1983 0.030909091
## 5        NES 1983 0.076666667
## 6       2600 1984 0.010000000
## 7        NES 1984 0.160769231
## 8       2600 1985 0.030000000
## 9         DS 1985 0.000000000
## 10       NES 1985 0.425454545
## 11        PC 1985 0.030000000
## 12      2600 1986 0.020000000
## 13       NES 1986 0.147368421
## 14      2600 1987 0.015000000
## 15       NES 1987 0.132000000
## 16      2600 1988 0.020000000
## 17        GB 1988 0.230000000
## 18       NES 1988 0.572727273
## 19        PC 1988 0.020000000
## 20      2600 1989 0.015000000
## 21        GB 1989 0.760000000
## 22       NES 1989 0.162000000
## 23        GB 1990 0.296666667
## 24       GEN 1990 0.550000000
## 25       NES 1990 0.198750000
## 26      SNES 1990 1.150000000
## 27        GB 1991 0.075555556
## 28       GEN 1991 0.910000000
## 29       NES 1991 0.074285714
## 30      SNES 1991 0.076666667
## 31        GB 1992 0.605714286
## 32       GEN 1992 0.396666667
## 33        GG 1992 0.000000000
## 34       NES 1992 0.046666667
## 35        PC 1992 0.332000000
## 36      SNES 1992 0.156666667
## 37       GEN 1993 0.000000000
## 38       NES 1993 0.110000000
## 39        NG 1993 0.000000000
## 40       SCD 1993 0.360000000
## 41      SNES 1993 0.083695652
## 42       3DO 1994 0.000000000
## 43        GB 1994 0.786666667
## 44       GEN 1994 0.140000000
## 45       NES 1994 0.000000000
## 46        NG 1994 0.000000000
## 47        PC 1994 1.141666667
## 48        PS 1994 0.070588235
## 49       SAT 1994 0.006315789
## 50       SCD 1994 0.000000000
## 51      SNES 1994 0.050377358
## 52       3DO 1995 0.000000000
## 53        GB 1995 0.035000000
## 54        NG 1995 0.000000000
## 55        PC 1995 1.135000000
## 56        PS 1995 0.099494949
## 57       SAT 1995 0.008076923
## 58      SNES 1995 0.041111111
## 59      TG16 1995 0.000000000
## 60        GB 1996 1.561666667
## 61       N64 1996 0.373333333
## 62        NG 1996 0.000000000
## 63        PC 1996 1.170000000
## 64      PCFX 1996 0.000000000
## 65        PS 1996 0.158048780
## 66       SAT 1996 0.000000000
## 67      SNES 1996 0.019000000
## 68        GB 1997 0.112500000
## 69       N64 1997 0.165102041
## 70        PC 1997 0.365000000
## 71        PS 1997 0.197553191
## 72       SAT 1997 0.000000000
## 73      SNES 1997 0.000000000
## 74        DC 1998 0.087142857
## 75        GB 1998 0.875000000
## 76       N64 1998 0.134415584
## 77        PC 1998 0.025000000
## 78        PS 1998 0.196532258
## 79       SAT 1998 0.000000000
## 80      SNES 1998 0.000000000
## 81        DC 1999 0.020714286
## 82        GB 1999 0.810000000
## 83       N64 1999 0.095490196
## 84        PC 1999 0.161428571
## 85        PS 1999 0.213000000
## 86       SAT 1999 0.000000000
## 87      SNES 1999 0.000000000
## 88        WS 1999 0.000000000
## 89        DC 2000 0.039500000
## 90        GB 2000 0.207058824
## 91       GBA 2000 0.020000000
## 92       N64 2000 0.093166667
## 93        PC 2000 0.205714286
## 94        PS 2000 0.192075472
## 95       PS2 2000 0.129756098
## 96        WS 2000 0.000000000
## 97        XB 2000 0.210000000
## 98        DC 2001 0.000000000
## 99        GB 2001 0.167000000
## 100      GBA 2001 0.148785047
## 101       GC 2001 0.218181818
## 102      N64 2001 0.057777778
## 103       PC 2001 0.082666667
## 104       PS 2001 0.150769231
## 105      PS2 2001 0.283081081
## 106       WS 2001 0.000000000
## 107       XB 2001 0.140909091
## 108       DC 2002 0.000000000
## 109      GBA 2002 0.086464646
## 110       GC 2002 0.069013158
## 111      N64 2002 0.020000000
## 112       PC 2002 0.166842105
## 113       PS 2002 0.094500000
## 114      PS2 2002 0.233107143
## 115       XB 2002 0.074556962
## 116      GBA 2003 0.087933333
## 117       GC 2003 0.071041667
## 118       PC 2003 0.149090909
## 119       PS 2003 0.260000000
## 120      PS2 2003 0.239062500
## 121       XB 2003 0.071375661
## 122       DS 2004 0.172608696
## 123      GBA 2004 0.103714286
## 124       GC 2004 0.064216867
## 125       PC 2004 0.242580645
## 126      PS2 2004 0.216254826
## 127      PSP 2004 0.114666667
## 128       XB 2004 0.082598870
## 129       DS 2005 0.356440678
## 130      GBA 2005 0.061555556
## 131       GC 2005 0.052886598
## 132       PC 2005 0.072162162
## 133      PS2 2005 0.157153846
## 134      PSP 2005 0.102164948
## 135     X360 2005 0.028333333
## 136       XB 2005 0.069776536
## 137       DS 2006 0.116485149
## 138      GBA 2006 0.025128205
## 139       GC 2006 0.057000000
## 140       PC 2006 0.036923077
## 141      PS2 2006 0.083436293
## 142      PS3 2006 0.276666667
## 143      PSP 2006 0.074947368
## 144      Wii 2006 0.996363636
## 145     X360 2006 0.119569892
## 146       XB 2006 0.036290323
## 147       DC 2007 0.000000000
## 148       DS 2007 0.091724138
## 149      GBA 2007 0.150000000
## 150       GC 2007 0.015000000
## 151       PC 2007 0.098730159
## 152      PS2 2007 0.048738318
## 153      PS3 2007 0.295444444
## 154      PSP 2007 0.107238806
## 155      Wii 2007 0.238770053
## 156     X360 2007 0.183577236
## 157       XB 2007 0.040000000
## 158       DC 2008 0.000000000
## 159       DS 2008 0.067174797
## 160       PC 2008 0.129342105
## 161      PS2 2008 0.039947644
## 162      PS3 2008 0.285683453
## 163      PSP 2008 0.081400000
## 164      Wii 2008 0.167943262
## 165     X360 2008 0.264657534
## 166       XB 2008 0.040000000
## 167       DS 2009 0.065481481
## 168       PC 2009 0.123944954
## 169      PS2 2009 0.051458333
## 170      PS3 2009 0.261913580
## 171      PSP 2009 0.067826087
## 172      Wii 2009 0.182646154
## 173     X360 2009 0.196011561
## 174       DS 2010 0.061564417
## 175       PC 2010 0.134333333
## 176      PS2 2010 0.040526316
## 177      PS3 2010 0.288121547
## 178      PSP 2010 0.031702128
## 179      Wii 2010 0.147637795
## 180     X360 2010 0.260549451
## 181      3DS 2011 0.158793103
## 182       DS 2011 0.040392157
## 183       PC 2011 0.134928571
## 184      PS2 2011 0.018571429
## 185      PS3 2011 0.269027778
## 186      PSP 2011 0.010431655
## 187      PSV 2011 0.105000000
## 188      Wii 2011 0.128611111
## 189     X360 2011 0.212864078
## 190      3DS 2012 0.124623656
## 191       DS 2012 0.121600000
## 192       PC 2012 0.202622951
## 193      PS3 2012 0.273986486
## 194      PSP 2012 0.002452830
## 195      PSV 2012 0.114259259
## 196      Wii 2012 0.199687500
## 197     WiiU 2012 0.164062500
## 198     X360 2012 0.312924528
## 199      3DS 2013 0.157582418
## 200       DS 2013 0.118888889
## 201       PC 2013 0.193157895
## 202      PS3 2013 0.351653543
## 203      PS4 2013 0.686875000
## 204      PSP 2013 0.003518519
## 205      PSV 2013 0.050000000
## 206      Wii 2013 0.300833333
## 207     WiiU 2013 0.157142857
## 208     X360 2013 0.380800000
## 209     XOne 2013 0.278421053
## 210      3DS 2014 0.108987342
## 211       DS 2014 0.000000000
## 212       PC 2014 0.195909091
## 213      PS3 2014 0.190462963
## 214      PS4 2014 0.597333333
## 215      PSP 2014 0.000000000
## 216      PSV 2014 0.034117647
## 217      Wii 2014 0.375000000
## 218     WiiU 2014 0.209354839
## 219     X360 2014 0.201230769
## 220     XOne 2014 0.290983607
## 221      3DS 2015 0.055465116
## 222       PC 2015 0.105600000
## 223      PS3 2015 0.100405405
## 224      PS4 2015 0.368102190
## 225      PSP 2015 0.000000000
## 226      PSV 2015 0.011327434
## 227      Wii 2015 0.217500000
## 228     WiiU 2015 0.175000000
## 229     X360 2015 0.119250000
## 230     XOne 2015 0.227594937
## 231      3DS 2016 0.016285714
## 232       PC 2016 0.041842105
## 233      PS3 2016 0.025000000
## 234      PS4 2016 0.163364486
## 235      PSV 2016 0.005000000
## 236     WiiU 2016 0.099000000
## 237     X360 2016 0.050000000
## 238     XOne 2016 0.085740741
## 239      PS4 2017 0.000000000
## 240      PSV 2017 0.000000000
## 241       DS 2020 0.000000000
## 242     2600  N/A 0.035882353
## 243      3DS  N/A 0.024444444
## 244       DS  N/A 0.019333333
## 245       GB  N/A 0.310000000
## 246      GBA  N/A 0.060000000
## 247       GC  N/A 0.027857143
## 248      N64  N/A 0.010000000
## 249       PC  N/A 0.120000000
## 250       PS  N/A 0.174285714
## 251      PS2  N/A 0.195882353
## 252      PS3  N/A 0.129600000
## 253      PSP  N/A 0.068125000
## 254      PSV  N/A 0.060000000
## 255      Wii  N/A 0.115142857
## 256     X360  N/A 0.085666667
## 257       XB  N/A 0.061904762
aggregate(EU_Sales,by=list(Platform = Platform,Genre = Genre),mean)
##     Platform        Genre           x
## 1       2600       Action 0.026885246
## 2        3DS       Action 0.068846154
## 3         DC       Action 0.076666667
## 4         DS       Action 0.078833819
## 5         GB       Action 0.351666667
## 6        GBA       Action 0.088023952
## 7         GC       Action 0.076930693
## 8        GEN       Action 0.183333333
## 9        N64       Action 0.167105263
## 10       NES       Action 0.256923077
## 11        PC       Action 0.108787879
## 12        PS       Action 0.287452229
## 13       PS2       Action 0.205287356
## 14       PS3       Action 0.291105263
## 15       PS4       Action 0.313032787
## 16       PSP       Action 0.079639640
## 17       PSV       Action 0.040000000
## 18       SAT       Action 0.000000000
## 19      SNES       Action 0.110833333
## 20       Wii       Action 0.138823529
## 21      WiiU       Action 0.104603175
## 22      X360       Action 0.237067901
## 23        XB       Action 0.082645161
## 24      XOne       Action 0.168676471
## 25      2600    Adventure 0.050000000
## 26       3DO    Adventure 0.000000000
## 27       3DS    Adventure 0.021621622
## 28        DC    Adventure 0.021818182
## 29        DS    Adventure 0.043625000
## 30        GB    Adventure 0.700000000
## 31       GBA    Adventure 0.092631579
## 32        GC    Adventure 0.063000000
## 33       GEN    Adventure 0.000000000
## 34       N64    Adventure 0.012500000
## 35       NES    Adventure 0.500000000
## 36        PC    Adventure 0.117692308
## 37        PS    Adventure 0.111884058
## 38       PS2    Adventure 0.025969388
## 39       PS3    Adventure 0.109864865
## 40       PS4    Adventure 0.115263158
## 41       PSP    Adventure 0.004319249
## 42       PSV    Adventure 0.007558140
## 43       SAT    Adventure 0.000000000
## 44      SNES    Adventure 0.000000000
## 45      TG16    Adventure 0.000000000
## 46       Wii    Adventure 0.054642857
## 47      WiiU    Adventure 0.026666667
## 48      X360    Adventure 0.103404255
## 49        XB    Adventure 0.028076923
## 50      XOne    Adventure 0.090000000
## 51      2600     Fighting 0.035000000
## 52       3DS     Fighting 0.157142857
## 53        DC     Fighting 0.000000000
## 54        DS     Fighting 0.008888889
## 55       GBA     Fighting 0.046521739
## 56        GC     Fighting 0.069285714
## 57       GEN     Fighting 0.240000000
## 58       N64     Fighting 0.127586207
## 59       NES     Fighting 0.165000000
## 60        NG     Fighting 0.000000000
## 61        PC     Fighting 0.026666667
## 62        PS     Fighting 0.193333333
## 63       PS2     Fighting 0.156733333
## 64       PS3     Fighting 0.193289474
## 65       PS4     Fighting 0.160588235
## 66       PSP     Fighting 0.061081081
## 67       PSV     Fighting 0.043750000
## 68       SAT     Fighting 0.012258065
## 69      SNES     Fighting 0.116000000
## 70       Wii     Fighting 0.121666667
## 71      WiiU     Fighting 0.286000000
## 72      X360     Fighting 0.137230769
## 73        XB     Fighting 0.057083333
## 74      XOne     Fighting 0.074285714
## 75      2600         Misc 0.040000000
## 76       3DS         Misc 0.040188679
## 77        DS         Misc 0.090712468
## 78        GB         Misc 0.268750000
## 79       GBA         Misc 0.083909091
## 80        GC         Misc 0.072777778
## 81       GEN         Misc 0.000000000
## 82       N64         Misc 0.080000000
## 83       NES         Misc 0.000000000
## 84        PC         Misc 0.105416667
## 85        PS         Misc 0.177894737
## 86       PS2         Misc 0.134729730
## 87       PS3         Misc 0.136451613
## 88       PS4         Misc 0.202000000
## 89       PSP         Misc 0.013396226
## 90       PSV         Misc 0.053333333
## 91       SAT         Misc 0.000000000
## 92       SCD         Misc 0.000000000
## 93      SNES         Misc 0.031764706
## 94       Wii         Misc 0.234178571
## 95      WiiU         Misc 0.166190476
## 96      X360         Misc 0.163015873
## 97        XB         Misc 0.043260870
## 98      XOne         Misc 0.121333333
## 99      2600     Platform 0.080000000
## 100      3DS     Platform 0.369642857
## 101       DC     Platform 0.305000000
## 102       DS     Platform 0.206304348
## 103       GB     Platform 0.511578947
## 104      GBA     Platform 0.132746479
## 105       GC     Platform 0.081506849
## 106      GEN     Platform 0.482857143
## 107       GG     Platform 0.000000000
## 108      N64     Platform 0.253000000
## 109      NES     Platform 0.363928571
## 110       PC     Platform 0.030000000
## 111       PS     Platform 0.338125000
## 112      PS2     Platform 0.226407767
## 113      PS3     Platform 0.307567568
## 114      PS4     Platform 0.301818182
## 115      PSP     Platform 0.148888889
## 116      PSV     Platform 0.142000000
## 117      SAT     Platform 0.000000000
## 118      SCD     Platform 0.360000000
## 119     SNES     Platform 0.413076923
## 120      Wii     Platform 0.415172414
## 121     WiiU     Platform 0.385000000
## 122     X360     Platform 0.174583333
## 123       XB     Platform 0.055102041
## 124     XOne     Platform 0.072500000
## 125     2600       Puzzle 0.078181818
## 126      3DO       Puzzle 0.000000000
## 127      3DS       Puzzle 0.106000000
## 128       DS       Puzzle 0.110462185
## 129       GB       Puzzle 0.335333333
## 130      GBA       Puzzle 0.062682927
## 131       GC       Puzzle 0.068461538
## 132      N64       Puzzle 0.047500000
## 133      NES       Puzzle 0.141428571
## 134       PC       Puzzle 0.027200000
## 135       PS       Puzzle 0.074062500
## 136      PS2       Puzzle 0.107222222
## 137      PS3       Puzzle 0.016666667
## 138      PS4       Puzzle 0.020000000
## 139      PSP       Puzzle 0.028636364
## 140      PSV       Puzzle 0.016666667
## 141      SAT       Puzzle 0.000000000
## 142     SNES       Puzzle 0.000000000
## 143      Wii       Puzzle 0.066000000
## 144     WiiU       Puzzle 0.090000000
## 145     X360       Puzzle 0.005714286
## 146       XB       Puzzle 0.011428571
## 147     2600       Racing 0.026666667
## 148      3DS       Racing 0.416363636
## 149       DC       Racing 0.085000000
## 150       DS       Racing 0.150298507
## 151       GB       Racing 0.530000000
## 152      GBA       Racing 0.078750000
## 153       GC       Racing 0.076666667
## 154      GEN       Racing 0.000000000
## 155      N64       Racing 0.145438596
## 156      NES       Racing 0.307500000
## 157       PC       Racing 0.050166667
## 158       PS       Racing 0.241931034
## 159      PS2       Racing 0.219351852
## 160      PS3       Racing 0.368043478
## 161      PS4       Racing 0.418823529
## 162      PSP       Racing 0.181076923
## 163      PSV       Racing 0.120000000
## 164      SAT       Racing 0.020000000
## 165      SCD       Racing 0.000000000
## 166     SNES       Racing 0.194444444
## 167      Wii       Racing 0.212553191
## 168     WiiU       Racing 0.820000000
## 169     X360       Racing 0.246666667
## 170       XB       Racing 0.070487805
## 171     XOne       Racing 0.218947368
## 172      3DS Role-Playing 0.151162791
## 173       DC Role-Playing 0.000000000
## 174       DS Role-Playing 0.091500000
## 175       GB Role-Playing 1.031904762
## 176      GBA Role-Playing 0.176301370
## 177       GC Role-Playing 0.090370370
## 178      GEN Role-Playing 0.000000000
## 179      N64 Role-Playing 0.043750000
## 180      NES Role-Playing 0.000000000
## 181       PC Role-Playing 0.244230769
## 182     PCFX Role-Playing 0.000000000
## 183       PS Role-Playing 0.128041237
## 184      PS2 Role-Playing 0.098502674
## 185      PS3 Role-Playing 0.166302521
## 186      PS4 Role-Playing 0.224468085
## 187      PSP Role-Playing 0.019583333
## 188      PSV Role-Playing 0.020481928
## 189      SAT Role-Playing 0.000000000
## 190      SCD Role-Playing 0.000000000
## 191     SNES Role-Playing 0.003200000
## 192      Wii Role-Playing 0.055714286
## 193     WiiU Role-Playing 0.103333333
## 194       WS Role-Playing 0.000000000
## 195     X360 Role-Playing 0.244210526
## 196       XB Role-Playing 0.132173913
## 197     XOne Role-Playing 0.235384615
## 198     2600      Shooter 0.062916667
## 199      3DS      Shooter 0.050000000
## 200       DC      Shooter 0.000000000
## 201       DS      Shooter 0.014047619
## 202       GB      Shooter 0.390000000
## 203      GBA      Shooter 0.021750000
## 204       GC      Shooter 0.060416667
## 205      GEN      Shooter 0.000000000
## 206      N64      Shooter 0.167500000
## 207      NES      Shooter 0.161428571
## 208       PC      Shooter 0.150472973
## 209       PS      Shooter 0.141354167
## 210      PS2      Shooter 0.210625000
## 211      PS3      Shooter 0.481666667
## 212      PS4      Shooter 0.975000000
## 213      PSP      Shooter 0.145675676
## 214      PSV      Shooter 0.352000000
## 215      SAT      Shooter 0.000000000
## 216     SNES      Shooter 0.089000000
## 217     TG16      Shooter 0.000000000
## 218      Wii      Shooter 0.103333333
## 219     WiiU      Shooter 0.171000000
## 220     X360      Shooter 0.377290640
## 221       XB      Shooter 0.115530303
## 222     XOne      Shooter 0.462727273
## 223     2600   Simulation 0.020000000
## 224      3DO   Simulation 0.000000000
## 225      3DS   Simulation 0.264333333
## 226       DC   Simulation 0.000000000
## 227       DS   Simulation 0.128105263
## 228       GB   Simulation 0.000000000
## 229      GBA   Simulation 0.079444444
## 230       GC   Simulation 0.145000000
## 231      N64   Simulation 0.157000000
## 232       PC   Simulation 0.238000000
## 233       PS   Simulation 0.072333333
## 234      PS2   Simulation 0.136111111
## 235      PS3   Simulation 0.121935484
## 236      PS4   Simulation 0.074000000
## 237      PSP   Simulation 0.072068966
## 238      PSV   Simulation 0.000000000
## 239      SAT   Simulation 0.000000000
## 240     SNES   Simulation 0.048888889
## 241      Wii   Simulation 0.090000000
## 242     WiiU   Simulation 0.040000000
## 243     X360   Simulation 0.100750000
## 244       XB   Simulation 0.059583333
## 245     XOne   Simulation 0.070000000
## 246     2600       Sports 0.015833333
## 247      3DS       Sports 0.083846154
## 248       DC       Sports 0.010000000
## 249       DS       Sports 0.053310811
## 250       GB       Sports 0.162222222
## 251      GBA       Sports 0.043068182
## 252       GC       Sports 0.043454545
## 253      GEN       Sports 0.130000000
## 254      N64       Sports 0.067875000
## 255      NES       Sports 0.151428571
## 256       NG       Sports 0.000000000
## 257       PC       Sports 0.205102041
## 258       PS       Sports 0.143018018
## 259      PS2       Sports 0.174900000
## 260      PS3       Sports 0.225446009
## 261      PS4       Sports 0.532093023
## 262      PSP       Sports 0.087777778
## 263      PSV       Sports 0.074782609
## 264      SAT       Sports 0.000000000
## 265     SNES       Sports 0.005918367
## 266      Wii       Sports 0.363946360
## 267     WiiU       Sports 0.117500000
## 268     X360       Sports 0.170454545
## 269       XB       Sports 0.064117647
## 270     XOne       Sports 0.213055556
## 271      3DS     Strategy 0.023333333
## 272       DS     Strategy 0.032151899
## 273       GB     Strategy 0.104285714
## 274      GBA     Strategy 0.072777778
## 275       GC     Strategy 0.056363636
## 276      GEN     Strategy 0.000000000
## 277      N64     Strategy 0.188888889
## 278       PC     Strategy 0.118510638
## 279       PS     Strategy 0.074000000
## 280      PS2     Strategy 0.033521127
## 281      PS3     Strategy 0.055416667
## 282      PS4     Strategy 0.030000000
## 283      PSP     Strategy 0.037166667
## 284      PSV     Strategy 0.007142857
## 285      SAT     Strategy 0.000000000
## 286      SCD     Strategy 0.000000000
## 287     SNES     Strategy 0.000000000
## 288      Wii     Strategy 0.031600000
## 289     WiiU     Strategy 0.116666667
## 290       WS     Strategy 0.000000000
## 291     X360     Strategy 0.094285714
## 292       XB     Strategy 0.029047619
## 293     XOne     Strategy 0.033333333
aggregate(EU_Sales,by=list(Platform = Platform,Publisher = Publisher),mean)
##      Platform                              Publisher            x
## 1          DS                        10TACLE Studios 0.0150000000
## 2         PS2                        10TACLE Studios 0.0100000000
## 3          PC                             1C Company 0.0233333333
## 4        2600           20th Century Fox Video Games 0.0200000000
## 5          PC                                 2D Boy 0.0300000000
## 6          GC                                    3DO 0.0000000000
## 7         N64                                    3DO 0.0740000000
## 8          PS                                    3DO 0.1193750000
## 9         PS2                                    3DO 0.0569230769
## 10         XB                                    3DO 0.0200000000
## 11       X360                                49Games 0.0400000000
## 12        3DS                              505 Games 0.0466666667
## 13         DS                              505 Games 0.0753846154
## 14         PC                              505 Games 0.0375000000
## 15        PS2                              505 Games 0.0354545455
## 16        PS3                              505 Games 0.1333333333
## 17        PS4                              505 Games 0.1300000000
## 18        PSP                              505 Games 0.0070000000
## 19        PSV                              505 Games 0.0500000000
## 20        Wii                              505 Games 0.1536666667
## 21       WiiU                              505 Games 0.0200000000
## 22       X360                              505 Games 0.0951851852
## 23         XB                              505 Games 0.0100000000
## 24       XOne                              505 Games 0.0550000000
## 25        3DS                                    5pb 0.0000000000
## 26        PS2                                    5pb 0.0000000000
## 27        PS3                                    5pb 0.0000000000
## 28        PS4                                    5pb 0.0000000000
## 29        PSP                                    5pb 0.0000000000
## 30        PSV                                    5pb 0.0000000000
## 31       X360                                    5pb 0.0000000000
## 32       XOne                                    5pb 0.0000000000
## 33         DS                               7G//AMES 0.0100000000
## 34        Wii                               7G//AMES 0.0200000000
## 35         PS                             989 Sports 0.1400000000
## 36         PS                            989 Studios 0.2357142857
## 37        PS3                               Abylight 0.0000000000
## 38         DC                  Acclaim Entertainment 0.0000000000
## 39        GBA                  Acclaim Entertainment 0.0270000000
## 40         GC                  Acclaim Entertainment 0.0287500000
## 41        GEN                  Acclaim Entertainment 0.2050000000
## 42        N64                  Acclaim Entertainment 0.0651612903
## 43         PC                  Acclaim Entertainment 0.0000000000
## 44         PS                  Acclaim Entertainment 0.1075925926
## 45        PS2                  Acclaim Entertainment 0.1787878788
## 46        SAT                  Acclaim Entertainment 0.0000000000
## 47       SNES                  Acclaim Entertainment 0.2400000000
## 48         XB                  Acclaim Entertainment 0.0328571429
## 49         PS                               Accolade 0.1133333333
## 50        3DS                            Ackkstudios 0.0000000000
## 51         DS                            Ackkstudios 0.0000000000
## 52        PS3                            Ackkstudios 0.0000000000
## 53        PSP                            Ackkstudios 0.0000000000
## 54        Wii                            Ackkstudios 0.0200000000
## 55        3DS                                Acquire 0.0000000000
## 56        PS2                                Acquire 0.0000000000
## 57        PS3                                Acquire 0.0000000000
## 58        PS4                                Acquire 0.0000000000
## 59        PSP                                Acquire 0.0000000000
## 60       2600                             Activision 0.0385714286
## 61        3DS                             Activision 0.0503703704
## 62         DC                             Activision 0.0000000000
## 63         DS                             Activision 0.0718918919
## 64         GB                             Activision 0.3800000000
## 65        GBA                             Activision 0.0820408163
## 66         GC                             Activision 0.0627272727
## 67        N64                             Activision 0.0984615385
## 68         PC                             Activision 0.4601785714
## 69         PS                             Activision 0.3312500000
## 70        PS2                             Activision 0.2160194175
## 71        PS3                             Activision 0.4322222222
## 72        PS4                             Activision 0.7814285714
## 73        PSP                             Activision 0.0926470588
## 74        PSV                             Activision 0.1900000000
## 75        Wii                             Activision 0.1357657658
## 76       WiiU                             Activision 0.0700000000
## 77       X360                             Activision 0.2984328358
## 78         XB                             Activision 0.1359016393
## 79       XOne                             Activision 0.3315000000
## 80         PC                    Activision Blizzard 0.3600000000
## 81        GBA                       Activision Value 0.0200000000
## 82         GC                       Activision Value 0.0100000000
## 83         PS                       Activision Value 0.0800000000
## 84        PS2                       Activision Value 0.1166666667
## 85        PS3                       Activision Value 0.0000000000
## 86        PSP                       Activision Value 0.0000000000
## 87        Wii                       Activision Value 0.0000000000
## 88       X360                       Activision Value 0.0014285714
## 89         XB                       Activision Value 0.0300000000
## 90         PS                       Adeline Software 0.0700000000
## 91         PC                               Aerosoft 0.0100000000
## 92        3DS                 Agatsuma Entertainment 0.0000000000
## 93        GBA                 Agatsuma Entertainment 0.0200000000
## 94         PS                                 Agetec 0.0200000000
## 95        PS2                                 Agetec 0.1300000000
## 96        PSP                                 Agetec 0.0000000000
## 97        3DS                            Aksys Games 0.0000000000
## 98         DS                            Aksys Games 0.0000000000
## 99        PS3                            Aksys Games 0.0000000000
## 100       PS4                            Aksys Games 0.0000000000
## 101       PSV                            Aksys Games 0.0025000000
## 102        PC                   Alawar Entertainment 0.0200000000
## 103       3DS                              Alchemist 0.0000000000
## 104        DS                              Alchemist 0.0000000000
## 105       PS2                              Alchemist 0.0353846154
## 106       PS3                              Alchemist 0.0000000000
## 107       PSP                              Alchemist 0.0000000000
## 108      X360                              Alchemist 0.0000000000
## 109        PC                   Alternative Software 0.0200000000
## 110       PS3                   Alternative Software 0.0400000000
## 111       PS4                   Alternative Software 0.0300000000
## 112       Wii                   Alternative Software 0.0600000000
## 113      X360                   Alternative Software 0.0200000000
## 114      XOne                   Alternative Software 0.0100000000
## 115       GBA                                 Altron 0.0200000000
## 116        DS                                 Alvion 0.0000000000
## 117        PS                     American Softworks 0.0900000000
## 118      SNES                          Angel Studios 0.0000000000
## 119      2600                        Answer Software 0.0300000000
## 120        DS                         AQ Interactive 0.0050000000
## 121       PS2                         AQ Interactive 0.0250000000
## 122       PSP                         AQ Interactive 0.0000000000
## 123        PS                              Aqua Plus 0.0000000000
## 124       PS2                              Aqua Plus 0.0000000000
## 125       PS3                              Aqua Plus 0.0000000000
## 126       PS4                              Aqua Plus 0.0000000000
## 127       PSP                              Aqua Plus 0.0000000000
## 128       PSV                              Aqua Plus 0.0000000000
## 129        PS                                  Aques 0.0000000000
## 130       3DS                       Arc System Works 0.0000000000
## 131        DS                       Arc System Works 0.0000000000
## 132       PS3                       Arc System Works 0.0000000000
## 133       PS4                       Arc System Works 0.0000000000
## 134       PSP                       Arc System Works 0.0000000000
## 135       PSV                       Arc System Works 0.0000000000
## 136       GEN                    Arena Entertainment 0.4400000000
## 137       PS2                                   Aria 0.0000000000
## 138        DS                                  Arika 0.0000000000
## 139       PS2                                  Arika 0.0150000000
## 140       3DS                                ArtDink 0.0000000000
## 141        DS                                ArtDink 0.0000000000
## 142        PS                                ArtDink 0.0125000000
## 143       PS2                                ArtDink 0.0000000000
## 144       PSP                                ArtDink 0.0000000000
## 145        PS                             Aruze Corp 0.0000000000
## 146        PS                              ASC Games 0.2566666667
## 147        PC                  Ascaron Entertainment 0.0100000000
## 148        PC             Ascaron Entertainment GmbH 0.0300000000
## 149        GB                    ASCII Entertainment 0.0000000000
## 150       N64                    ASCII Entertainment 0.0100000000
## 151        PS                    ASCII Entertainment 0.0537500000
## 152       PS2                    ASCII Entertainment 0.0000000000
## 153       SAT                    ASCII Entertainment 0.0000000000
## 154      SNES                    ASCII Entertainment 0.0000000000
## 155        DS                      ASCII Media Works 0.0000000000
## 156       PS2                      ASCII Media Works 0.0000000000
## 157       PSP                      ASCII Media Works 0.0000000000
## 158       PSV                      ASCII Media Works 0.0000000000
## 159       PSP                                 Asgard 0.0000000000
## 160       PSV                                 Asgard 0.0000000000
## 161       SAT                                    ASK 0.0000000000
## 162        PS                Asmik Ace Entertainment 0.0000000000
## 163       PS2                Asmik Ace Entertainment 0.0000000000
## 164      SNES                             Asmik Corp 0.0000000000
## 165        DS                                  Aspyr 0.0000000000
## 166       GBA                                  Aspyr 0.0100000000
## 167        PC                                  Aspyr 0.0150000000
## 168      X360                                  Aspyr 0.0000000000
## 169        DS                               Astragon 0.0700000000
## 170        PC                               Astragon 0.0200000000
## 171       3DS                   Asylum Entertainment 0.0600000000
## 172        DS                   Asylum Entertainment 0.0700000000
## 173       Wii                   Asylum Entertainment 0.0800000000
## 174      2600                                  Atari 0.0529629630
## 175       3DS                                  Atari 0.0000000000
## 176        DS                                  Atari 0.0063888889
## 177       GBA                                  Atari 0.0765909091
## 178        GC                                  Atari 0.0761111111
## 179        PC                                  Atari 0.0328000000
## 180        PS                                  Atari 0.3227272727
## 181       PS2                                  Atari 0.1205714286
## 182       PS3                                  Atari 0.1550000000
## 183       PSP                                  Atari 0.0276470588
## 184       Wii                                  Atari 0.0608333333
## 185      X360                                  Atari 0.0835000000
## 186        XB                                  Atari 0.0527027027
## 187       N64                                 Athena 0.0000000000
## 188       PS2                                 Athena 0.0000000000
## 189       3DS                                  Atlus 0.0140000000
## 190        DS                                  Atlus 0.0000000000
## 191       GBA                                  Atlus 0.0125000000
## 192        GC                                  Atlus 0.0100000000
## 193       N64                                  Atlus 0.0300000000
## 194        PS                                  Atlus 0.0150000000
## 195       PS2                                  Atlus 0.0216666667
## 196       PS3                                  Atlus 0.0650000000
## 197       PS4                                  Atlus 0.0000000000
## 198       PSP                                  Atlus 0.0030000000
## 199       PSV                                  Atlus 0.1850000000
## 200       SAT                                  Atlus 0.0000000000
## 201      SNES                                  Atlus 0.0000000000
## 202      WiiU                                  Atlus 0.0300000000
## 203      X360                                  Atlus 0.0150000000
## 204        XB                                  Atlus 0.0000000000
## 205      2600                     Avalon Interactive 0.0100000000
## 206        PS                     Avalon Interactive 0.0400000000
## 207       PS2                     Avalon Interactive 0.0250000000
## 208        XB                     Avalon Interactive 0.0100000000
## 209        DS                              Avanquest 0.0925000000
## 210        PC                              Avanquest 0.0150000000
## 211       PS4                              Avanquest 0.0200000000
## 212       Wii                              Avanquest 0.0100000000
## 213       3DS                     Avanquest Software 0.0200000000
## 214        DS                     Avanquest Software 0.0166666667
## 215        PC                     Avanquest Software 0.0250000000
## 216       PS3                     Avanquest Software 0.2500000000
## 217      X360                     Avanquest Software 0.1400000000
## 218        PS                                  Axela 0.0000000000
## 219       GBA                     BAM! Entertainment 0.0414285714
## 220        GC                     BAM! Entertainment 0.0133333333
## 221       N64                     BAM! Entertainment 0.0300000000
## 222        PS                     BAM! Entertainment 0.0700000000
## 223       PS2                     BAM! Entertainment 0.0687500000
## 224        XB                     BAM! Entertainment 0.0175000000
## 225        DS                              Banpresto 0.0000000000
## 226        GB                              Banpresto 0.0000000000
## 227       GBA                              Banpresto 0.0036363636
## 228       N64                              Banpresto 0.0000000000
## 229        PS                              Banpresto 0.0030000000
## 230       PS2                              Banpresto 0.0023809524
## 231       PSP                              Banpresto 0.0000000000
## 232       SAT                              Banpresto 0.0000000000
## 233      SNES                              Banpresto 0.0000000000
## 234      X360                              Banpresto 0.0400000000
## 235        DS                                Benesse 0.0000000000
## 236        PS                               Berkeley 0.0100000000
## 237        PC                     Bethesda Softworks 0.3773333333
## 238       PS2                     Bethesda Softworks 0.1250000000
## 239       PS3                     Bethesda Softworks 0.5900000000
## 240       PS4                     Bethesda Softworks 0.9514285714
## 241       Wii                     Bethesda Softworks 0.0150000000
## 242      X360                     Bethesda Softworks 0.4900000000
## 243        XB                     Bethesda Softworks 0.0150000000
## 244      XOne                     Bethesda Softworks 0.3600000000
## 245       3DS                    Big Ben Interactive 0.0200000000
## 246        DS                    Big Ben Interactive 0.0000000000
## 247       PS2                    Big Ben Interactive 0.0300000000
## 248       Wii                    Big Ben Interactive 0.0266666667
## 249        PC                         Big Fish Games 0.0200000000
## 250       PS3                     Bigben Interactive 0.0733333333
## 251       PS4                     Bigben Interactive 0.0500000000
## 252       PSV                     Bigben Interactive 0.0550000000
## 253      X360                     Bigben Interactive 0.0266666667
## 254      XOne                     Bigben Interactive 0.0300000000
## 255        PC                      bitComposer Games 0.0400000000
## 256       PS3                      bitComposer Games 0.0600000000
## 257      X360                      bitComposer Games 0.0200000000
## 258        DS                       Black Bean Games 0.0000000000
## 259        PC                       Black Bean Games 0.0200000000
## 260       PS2                       Black Bean Games 0.0166666667
## 261       PS3                       Black Bean Games 0.0770000000
## 262       PSP                       Black Bean Games 0.0000000000
## 263       Wii                       Black Bean Games 0.0250000000
## 264      X360                       Black Bean Games 0.0611111111
## 265       PS2                      Black Label Games 0.4600000000
## 266        DS               Blast! Entertainment Ltd 0.0000000000
## 267       PS2               Blast! Entertainment Ltd 0.0600000000
## 268       Wii               Blast! Entertainment Ltd 0.0250000000
## 269        PC                              Blue Byte 0.0150000000
## 270        PS          BMG Interactive Entertainment 0.0628571429
## 271        PC                    Bohemia Interactive 0.1000000000
## 272      2600                                   Bomb 0.0100000000
## 273       PSP                               Boost On 0.0000000000
## 274       NES                                    BPS 0.0000000000
## 275      SNES                                    BPS 0.0000000000
## 276        DS                    Brash Entertainment 0.0000000000
## 277       PS2                    Brash Entertainment 0.0700000000
## 278       Wii                    Brash Entertainment 0.0000000000
## 279      X360                    Brash Entertainment 0.0000000000
## 280        DS                               Broccoli 0.0000000000
## 281       PS2                               Broccoli 0.0000000000
## 282       PSP                               Broccoli 0.0000000000
## 283       PSV                               Broccoli 0.0000000000
## 284       PSP                              BushiRoad 0.0000000000
## 285       3DS                                 Capcom 0.0680000000
## 286        DC                                 Capcom 0.0000000000
## 287        DS                                 Capcom 0.0232000000
## 288        GB                                 Capcom 0.0766666667
## 289       GBA                                 Capcom 0.0304545455
## 290        GC                                 Capcom 0.0794736842
## 291       GEN                                 Capcom 0.0000000000
## 292       N64                                 Capcom 0.0300000000
## 293       NES                                 Capcom 0.1300000000
## 294        PC                                 Capcom 0.0275000000
## 295        PS                                 Capcom 0.1455555556
## 296       PS2                                 Capcom 0.1537704918
## 297       PS3                                 Capcom 0.2007142857
## 298       PS4                                 Capcom 0.0550000000
## 299       PSP                                 Capcom 0.0365384615
## 300       PSV                                 Capcom 0.0633333333
## 301       SAT                                 Capcom 0.0000000000
## 302      SNES                                 Capcom 0.1975000000
## 303       Wii                                 Capcom 0.1055555556
## 304      WiiU                                 Capcom 0.0400000000
## 305      X360                                 Capcom 0.1720000000
## 306        XB                                 Capcom 0.0175000000
## 307      XOne                                 Capcom 0.0160000000
## 308        DS                                   Cave 0.0000000000
## 309      X360                                   Cave 0.0000000000
## 310      2600                        CBS Electronics 0.0200000000
## 311        PC                                    CCP 0.1900000000
## 312        DS             CDV Software Entertainment 0.0100000000
## 313        PC             CDV Software Entertainment 0.0150000000
## 314       Wii             CDV Software Entertainment 0.0000000000
## 315       3DS                               ChunSoft 0.0000000000
## 316        DS                               ChunSoft 0.0000000000
## 317        GB                               ChunSoft 0.0000000000
## 318       N64                               ChunSoft 0.0000000000
## 319        PS                               ChunSoft 0.0000000000
## 320       PS2                               ChunSoft 0.0000000000
## 321       PSP                               ChunSoft 0.0000000000
## 322       PSV                               ChunSoft 0.0000000000
## 323       SAT                               ChunSoft 0.0000000000
## 324      SNES                               ChunSoft 0.0000000000
## 325      X360                               ChunSoft 0.0000000000
## 326        DS                       City Interactive 0.0266666667
## 327        PC                       City Interactive 0.2100000000
## 328       PS3                       City Interactive 0.2000000000
## 329       Wii                       City Interactive 0.0800000000
## 330      X360                       City Interactive 0.3200000000
## 331       PS3       Cloud Imperium Games Corporation 0.0000000000
## 332      X360       Cloud Imperium Games Corporation 0.0000000000
## 333        PS                         Coconuts Japan 0.0100000000
## 334      SNES                         Coconuts Japan 0.0000000000
## 335       3DS                            Codemasters 0.0800000000
## 336        DS                            Codemasters 0.0128571429
## 337       GBA                            Codemasters 0.0350000000
## 338        GC                            Codemasters 0.0100000000
## 339       N64                            Codemasters 0.0300000000
## 340        PC                            Codemasters 0.0388888889
## 341        PS                            Codemasters 0.8700000000
## 342       PS2                            Codemasters 0.1870588235
## 343       PS3                            Codemasters 0.2853846154
## 344       PS4                            Codemasters 0.2966666667
## 345       PSP                            Codemasters 0.0900000000
## 346       PSV                            Codemasters 0.0800000000
## 347       Wii                            Codemasters 0.2183333333
## 348      X360                            Codemasters 0.2066666667
## 349        XB                            Codemasters 0.0153333333
## 350      XOne                            Codemasters 0.1000000000
## 351        PC                     Codemasters Online 0.0200000000
## 352        DS                      CokeM Interactive 0.0000000000
## 353      2600                                 Coleco 0.0340000000
## 354       PS2                                Comfort 0.0000000000
## 355       PSP                                Comfort 0.0000000000
## 356        DS                               Commseed 0.0000000000
## 357       N64                                Compile 0.0000000000
## 358        PS                                Compile 0.0000000000
## 359       SAT                                Compile 0.0000000000
## 360      SNES                                Compile 0.0000000000
## 361       PS3                          Compile Heart 0.0050000000
## 362       PS4                          Compile Heart 0.0000000000
## 363       PSP                          Compile Heart 0.0000000000
## 364       PSV                          Compile Heart 0.0000000000
## 365      X360                          Compile Heart 0.0000000000
## 366        DS               Conspiracy Entertainment 0.0000000000
## 367       GBA               Conspiracy Entertainment 0.0050000000
## 368        PS               Conspiracy Entertainment 0.1000000000
## 369       PS2               Conspiracy Entertainment 0.0300000000
## 370       PS3               Conspiracy Entertainment 0.0000000000
## 371       PSP               Conspiracy Entertainment 0.0000000000
## 372       Wii               Conspiracy Entertainment 0.0000000000
## 373      X360               Conspiracy Entertainment 0.0000000000
## 374        PS                       Core Design Ltd. 0.0550000000
## 375      2600                           CPG Products 0.0300000000
## 376       3DS                    Crave Entertainment 0.0000000000
## 377        DS                    Crave Entertainment 0.0000000000
## 378       GBA                    Crave Entertainment 0.0242857143
## 379        GC                    Crave Entertainment 0.0075000000
## 380       N64                    Crave Entertainment 0.0240000000
## 381        PS                    Crave Entertainment 0.0900000000
## 382       PS2                    Crave Entertainment 0.1050000000
## 383       PS3                    Crave Entertainment 0.0000000000
## 384       PSP                    Crave Entertainment 0.0000000000
## 385       Wii                    Crave Entertainment 0.0007692308
## 386      X360                    Crave Entertainment 0.0000000000
## 387        XB                    Crave Entertainment 0.0277777778
## 388        DS                          Creative Core 0.0000000000
## 389        PC                            Crimson Cow 0.0300000000
## 390        PS                       Crystal Dynamics 0.1300000000
## 391        PS                                CTO SpA 0.1700000000
## 392        DS                          Culture Brain 0.0000000000
## 393      SNES                          Culture Brain 0.0000000000
## 394        PS                     Culture Publishers 0.0300000000
## 395       PS2                             CyberFront 0.0000000000
## 396       PSP                             CyberFront 0.0000000000
## 397       PSV                             CyberFront 0.0000000000
## 398      X360                             CyberFront 0.0000000000
## 399       PSV                                Cygames 0.0000000000
## 400       3DS                            D3Publisher 0.0242857143
## 401        DS                            D3Publisher 0.0304166667
## 402       GBA                            D3Publisher 0.0100000000
## 403        GC                            D3Publisher 0.0300000000
## 404        PS                            D3Publisher 0.0675000000
## 405       PS2                            D3Publisher 0.0116666667
## 406       PS3                            D3Publisher 0.0285714286
## 407       PS4                            D3Publisher 0.0000000000
## 408       PSP                            D3Publisher 0.0209375000
## 409       PSV                            D3Publisher 0.0022222222
## 410       Wii                            D3Publisher 0.0504545455
## 411      WiiU                            D3Publisher 0.0133333333
## 412      X360                            D3Publisher 0.0337500000
## 413        PC                               Daedalic 0.0800000000
## 414        PC                 Daedalic Entertainment 0.0366666667
## 415       PS2                                  Daito 0.0000000000
## 416       PSP                                  Daito 0.0000000000
## 417      2600                               Data Age 0.0200000000
## 418       Wii                Data Design Interactive 0.0033333333
## 419       SAT                              Data East 0.0000000000
## 420      SNES                              Data East 0.0000000000
## 421       PS2                         Datam Polystar 0.0000000000
## 422       3DS                            Deep Silver 0.0100000000
## 423        DS                            Deep Silver 0.0047619048
## 424        PC                            Deep Silver 0.0666666667
## 425       PS3                            Deep Silver 0.1365000000
## 426       PS4                            Deep Silver 0.0840000000
## 427       PSP                            Deep Silver 0.0066666667
## 428       Wii                            Deep Silver 0.0653846154
## 429      WiiU                            Deep Silver 0.0100000000
## 430      X360                            Deep Silver 0.1168181818
## 431        XB                            Deep Silver 0.0333333333
## 432      XOne                            Deep Silver 0.0533333333
## 433        DS              Destination Software, Inc 0.0000000000
## 434       GBA              Destination Software, Inc 0.0114285714
## 435        DS                              Destineer 0.0000000000
## 436        PC                              Destineer 0.0000000000
## 437       PS2                              Destineer 0.0100000000
## 438       PSP                              Destineer 0.0000000000
## 439       Wii                              Destineer 0.0021052632
## 440       Wii                            Detn8 Games 0.0000000000
## 441        PC                       Devolver Digital 0.0200000000
## 442       PS4                       Devolver Digital 0.0200000000
## 443        DS                        DHM Interactive 0.0000000000
## 444       PSP                        DHM Interactive 0.0000000000
## 445       PS2                               DigiCube 0.0000000000
## 446       3DS             Disney Interactive Studios 0.1128571429
## 447        DS             Disney Interactive Studios 0.1855932203
## 448       GBA             Disney Interactive Studios 0.1015789474
## 449        GC             Disney Interactive Studios 0.0400000000
## 450        PC             Disney Interactive Studios 0.0100000000
## 451       PS2             Disney Interactive Studios 0.0882352941
## 452       PS3             Disney Interactive Studios 0.2013636364
## 453       PS4             Disney Interactive Studios 0.3000000000
## 454       PSP             Disney Interactive Studios 0.0770000000
## 455       PSV             Disney Interactive Studios 0.0550000000
## 456       Wii             Disney Interactive Studios 0.2238461538
## 457      WiiU             Disney Interactive Studios 0.1283333333
## 458      X360             Disney Interactive Studios 0.1676190476
## 459        XB             Disney Interactive Studios 0.0250000000
## 460      XOne             Disney Interactive Studios 0.0933333333
## 461       PSP                                 Dorart 0.0000000000
## 462       PSV                        dramatic create 0.0000000000
## 463        DS               DreamCatcher Interactive 0.0000000000
## 464        PC               DreamCatcher Interactive 0.0300000000
## 465       PS2               DreamCatcher Interactive 0.0250000000
## 466        XB               DreamCatcher Interactive 0.0100000000
## 467        PS                 DreamWorks Interactive 0.0500000000
## 468        DS                              DSI Games 0.0000000000
## 469       GBA                              DSI Games 0.0400000000
## 470       3DS                      DTP Entertainment 0.0400000000
## 471        DS                      DTP Entertainment 0.0122222222
## 472       GBA                      DTP Entertainment 0.0300000000
## 473        PC                      DTP Entertainment 0.0353846154
## 474       PS2                      DTP Entertainment 0.0000000000
## 475       PS3                      DTP Entertainment 0.0425000000
## 476       Wii                      DTP Entertainment 0.0485714286
## 477      X360                      DTP Entertainment 0.0300000000
## 478       PS4               Dusenberry Martin Racing 0.0000000000
## 479      XOne               Dusenberry Martin Racing 0.0000000000
## 480       PS3                               EA Games 0.0600000000
## 481        DS                       Easy Interactive 0.0150000000
## 482       PS2                                  Ecole 0.0000000000
## 483       PSP                                   Edia 0.0000000000
## 484        DC                      Eidos Interactive 0.1150000000
## 485        DS                      Eidos Interactive 0.0214285714
## 486        GB                      Eidos Interactive 0.0000000000
## 487       GBA                      Eidos Interactive 0.1550000000
## 488        GC                      Eidos Interactive 0.0600000000
## 489        PC                      Eidos Interactive 0.1814285714
## 490        PS                      Eidos Interactive 0.4871428571
## 491       PS2                      Eidos Interactive 0.1545454545
## 492       PS3                      Eidos Interactive 0.4057142857
## 493       PSP                      Eidos Interactive 0.0728571429
## 494       Wii                      Eidos Interactive 0.0975000000
## 495      X360                      Eidos Interactive 0.1800000000
## 496        XB                      Eidos Interactive 0.0666666667
## 497       3DS                        Electronic Arts 0.2128571429
## 498        DS                        Electronic Arts 0.1337974684
## 499        GB                        Electronic Arts 0.6200000000
## 500       GBA                        Electronic Arts 0.1042500000
## 501        GC                        Electronic Arts 0.0682222222
## 502       N64                        Electronic Arts 0.1269565217
## 503        PC                        Electronic Arts 0.2419594595
## 504        PS                        Electronic Arts 0.2850943396
## 505       PS2                        Electronic Arts 0.3449246231
## 506       PS3                        Electronic Arts 0.4840140845
## 507       PS4                        Electronic Arts 1.0761538462
## 508       PSP                        Electronic Arts 0.1718055556
## 509       PSV                        Electronic Arts 0.3150000000
## 510       SAT                        Electronic Arts 0.0000000000
## 511       Wii                        Electronic Arts 0.2297777778
## 512      WiiU                        Electronic Arts 0.1225000000
## 513      X360                        Electronic Arts 0.3256886228
## 514        XB                        Electronic Arts 0.1120325203
## 515      XOne                        Electronic Arts 0.3844444444
## 516        PS                 Electronic Arts Victor 0.0850000000
## 517       SAT                                    Elf 0.0000000000
## 518        PS                                  Elite 0.0300000000
## 519        DS                     Empire Interactive 0.0400000000
## 520       GBA                     Empire Interactive 0.0150000000
## 521        GC                     Empire Interactive 0.0166666667
## 522        PC                     Empire Interactive 0.0175000000
## 523        PS                     Empire Interactive 0.1216666667
## 524       PS2                     Empire Interactive 0.1356250000
## 525       PSP                     Empire Interactive 0.0633333333
## 526      X360                     Empire Interactive 0.0300000000
## 527        XB                     Empire Interactive 0.0236363636
## 528        GC                                 Encore 0.0000000000
## 529        PC                                 Encore 0.0200000000
## 530        PS                                 Encore 0.0100000000
## 531        XB                                 Encore 0.0000000000
## 532        GB                       Enix Corporation 0.0000000000
## 533       GBA                       Enix Corporation 0.0000000000
## 534       N64                       Enix Corporation 0.0000000000
## 535       NES                       Enix Corporation 0.0000000000
## 536        PS                       Enix Corporation 0.0383333333
## 537       PS2                       Enix Corporation 0.0133333333
## 538      SNES                       Enix Corporation 0.0000000000
## 539        DS                      Enjoy Gaming ltd. 0.0000000000
## 540        DS                             Enterbrain 0.0000000000
## 541       GBA                             Enterbrain 0.0000000000
## 542        PS                             Enterbrain 0.0000000000
## 543       PS2                             Enterbrain 0.0111111111
## 544       PSP                             Enterbrain 0.0000000000
## 545        PS              EON Digital Entertainment 0.0000000000
## 546       PS4                             Epic Games 0.0000000000
## 547       N64                                  Epoch 0.0000000000
## 548      SNES                                  Epoch 0.0000000000
## 549        DS                                 Ertain 0.0000000000
## 550       GBA                                    ESP 0.0000000000
## 551        PS                                    ESP 0.0200000000
## 552       SAT                                    ESP 0.0000000000
## 553       PS2                        Essential Games 0.0000000000
## 554        PS                        Evolution Games 0.0000000000
## 555        PC                          Evolved Games 0.0000000000
## 556       PS2                          Evolved Games 0.0150000000
## 557       PS3                          Evolved Games 0.0000000000
## 558      X360                          Evolved Games 0.0050000000
## 559        XB                          Evolved Games 0.0000000000
## 560       3DS                   Excalibur Publishing 0.1200000000
## 561        PC                   Excalibur Publishing 0.0400000000
## 562       PSV                        Experience Inc. 0.0000000000
## 563       3DS            Extreme Entertainment Group 0.0000000000
## 564       PS3                     Falcom Corporation 0.0000000000
## 565       PSP                     Falcom Corporation 0.0000000000
## 566       PSV                     Falcom Corporation 0.0000000000
## 567       PS3                                 Fields 0.0000000000
## 568       GBA                       Flashpoint Games 0.0100000000
## 569       Wii                       Flashpoint Games 0.0000000000
## 570       PS2                            Flight-Plan 0.0000000000
## 571        DS                 Focus Home Interactive 0.0940000000
## 572        PC                 Focus Home Interactive 0.0978571429
## 573       PS3                 Focus Home Interactive 0.0840000000
## 574       PS4                 Focus Home Interactive 0.0733333333
## 575       PSV                 Focus Home Interactive 0.0000000000
## 576       Wii                 Focus Home Interactive 0.0750000000
## 577      X360                 Focus Home Interactive 0.0500000000
## 578      XOne                 Focus Home Interactive 0.0233333333
## 579        PC                       Focus Multimedia 0.0166666667
## 580       PSP                                 fonfun 0.0000000000
## 581        DS                    Foreign Media Games 0.0333333333
## 582        DC                              Fortyfive 0.0000000000
## 583       N64                        Fox Interactive 0.0500000000
## 584        PS                        Fox Interactive 0.4485714286
## 585        DS                          From Software 0.0000000000
## 586        PS                          From Software 0.0300000000
## 587       PS2                          From Software 0.0200000000
## 588       PS3                          From Software 0.0000000000
## 589       PSP                          From Software 0.0000000000
## 590        XB                          From Software 0.0100000000
## 591        PS                                   Fuji 0.0000000000
## 592       3DS                           Funbox Media 0.0150000000
## 593       PS3                           Funbox Media 0.0100000000
## 594       PSV                           Funbox Media 0.0100000000
## 595       Wii                           Funbox Media 0.0400000000
## 596        PC                                 Funcom 0.0500000000
## 597        PS                                FunSoft 0.0500000000
## 598        DS                                 Funsta 0.0100000000
## 599       PSP                                 Funsta 0.0000000000
## 600       Wii                                 Funsta 0.0300000000
## 601       3DS                                  FuRyu 0.0014285714
## 602        DS                                  FuRyu 0.0000000000
## 603       PSP                                  FuRyu 0.0000000000
## 604       PSV                                  FuRyu 0.0000000000
## 605       PS4                      FuRyu Corporation 0.0000000000
## 606      X360                                  G.Rev 0.0000000000
## 607       SAT                                   Gaga 0.0000000000
## 608        PS                 Gainax Network Systems 0.0000000000
## 609        DS                                 Gakken 0.0000000000
## 610       GEN                              Game Arts 0.0000000000
## 611        DS                           Game Factory 0.0027777778
## 612       GBA                           Game Factory 0.0180000000
## 613       PS2                           Game Factory 0.0150000000
## 614       PSP                           Game Factory 0.0000000000
## 615       Wii                           Game Factory 0.0060000000
## 616        DS                              Game Life 0.0650000000
## 617       PS3                             Gamebridge 0.0800000000
## 618      X360                             Gamebridge 0.0500000000
## 619        DS                               Gamecock 0.0000000000
## 620        PC                               Gamecock 0.0200000000
## 621       PS3                               Gamecock 0.0000000000
## 622      X360                               Gamecock 0.0000000000
## 623        DS                               Gameloft 0.0000000000
## 624        DS                 GameMill Entertainment 0.0080000000
## 625       Wii                 GameMill Entertainment 0.0000000000
## 626      X360                 GameMill Entertainment 0.0000000000
## 627       N64                                GameTek 0.0200000000
## 628        PC                Gathering of Developers 0.0466666667
## 629       PS2                Gathering of Developers 0.0800000000
## 630        XB                Gathering of Developers 0.0300000000
## 631        PS                  General Entertainment 0.0000000000
## 632       3DS                                  Genki 0.0000000000
## 633        DC                                  Genki 0.0000000000
## 634        DS                                  Genki 0.0000000000
## 635       PS2                                  Genki 0.1700000000
## 636       PS3                                  Genki 0.0000000000
## 637       PSP                                  Genki 0.0000000000
## 638        XB                                  Genki 0.0100000000
## 639        DS                            Genterprise 0.0000000000
## 640       3DS                             Ghostlight 0.0100000000
## 641        DS                             Ghostlight 0.0100000000
## 642       PS2                             Ghostlight 0.0475000000
## 643       PS3                             Ghostlight 0.0150000000
## 644       PSP                             Ghostlight 0.0450000000
## 645       Wii                             Ghostlight 0.0900000000
## 646       PSV                                   Giga 0.0000000000
## 647       PSP                                 Giza10 0.0000000000
## 648       SAT                                  Glams 0.0000000000
## 649        DS                 Global A Entertainment 0.0000000000
## 650       PSP                 Global A Entertainment 0.0000000000
## 651       GBA                            Global Star 0.0366666667
## 652        GC                            Global Star 0.0183333333
## 653       PS2                            Global Star 0.0842857143
## 654        XB                            Global Star 0.0193750000
## 655       PS2                            GN Software 0.0000000000
## 656       PSP                            GN Software 0.0000000000
## 657        PC                                    GOA 0.0200000000
## 658       GBA                           Gotham Games 0.1600000000
## 659        GC                           Gotham Games 0.0100000000
## 660        PS                           Gotham Games 0.1600000000
## 661       PS2                           Gotham Games 0.2866666667
## 662        XB                           Gotham Games 0.0500000000
## 663        DS                               Graffiti 0.0000000000
## 664       PSP                               Graffiti 0.0000000000
## 665       Wii                               Graffiti 0.0000000000
## 666       PSP                       Grand Prix Games 0.0000000000
## 667        PC                 Graphsim Entertainment 0.0200000000
## 668       N64                Gremlin Interactive Ltd 0.0400000000
## 669        PS                Gremlin Interactive Ltd 0.0412500000
## 670      X360                  Griffin International 0.0000000000
## 671        XB                           Groove Games 0.0100000000
## 672        DS                                    GSP 0.1471428571
## 673        PC                                    GSP 0.0300000000
## 674       Wii                                    GSP 0.0700000000
## 675       N64                         GT Interactive 0.0638888889
## 676        PS                         GT Interactive 0.2718518519
## 677       3DS                                 GungHo 0.0000000000
## 678        DS                                 GungHo 0.0000000000
## 679       PS3                                 GungHo 0.0100000000
## 680       PSP                                 GungHo 0.0000000000
## 681       PSV                                 GungHo 0.0033333333
## 682        DS                                   Gust 0.0000000000
## 683        PS                                   Gust 0.0000000000
## 684       PS2                                   Gust 0.0166666667
## 685       PSP                                   Gust 0.0000000000
## 686       PSV                                   Gust 0.0000000000
## 687       PS2                              Hackberry 0.0000000000
## 688       NES                         HAL Laboratory 0.0000000000
## 689        PS                    Hamster Corporation 0.1100000000
## 690       PS2                    Hamster Corporation 0.0000000000
## 691       3DS                               Happinet 0.0000000000
## 692       PS4                 Harmonix Music Systems 0.0500000000
## 693      XOne                 Harmonix Music Systems 0.0400000000
## 694       GBA                     Hasbro Interactive 0.0000000000
## 695       N64                     Hasbro Interactive 0.1050000000
## 696        PC                     Hasbro Interactive 0.8100000000
## 697        PS                     Hasbro Interactive 0.2133333333
## 698        PC                      Havas Interactive 0.0900000000
## 699        PC                           Headup Games 0.0300000000
## 700        PS                           Hearty Robin 0.0000000000
## 701        PS                                   Hect 0.0000000000
## 702      SNES                                   Hect 0.0000000000
## 703       PS4                            Hello Games 0.7400000000
## 704        PC                        Her Interactive 0.0000000000
## 705       GBA                        Hip Interactive 0.0250000000
## 706       PS2                        Hip Interactive 0.0100000000
## 707        XB                        Hip Interactive 0.0150000000
## 708        DS                        HMH Interactive 0.0300000000
## 709        PC                        HMH Interactive 0.0800000000
## 710        PC           Home Entertainment Suppliers 0.0400000000
## 711       PS3           Home Entertainment Suppliers 0.1100000000
## 712      X360           Home Entertainment Suppliers 0.1150000000
## 713        DS                   Hudson Entertainment 0.0000000000
## 714       GBA                   Hudson Entertainment 0.0100000000
## 715       N64                   Hudson Entertainment 0.0100000000
## 716        PS                   Hudson Entertainment 0.0000000000
## 717       PSP                   Hudson Entertainment 0.0000000000
## 718       Wii                   Hudson Entertainment 0.0000000000
## 719       3DS                            Hudson Soft 0.0150000000
## 720        DS                            Hudson Soft 0.0040000000
## 721       GBA                            Hudson Soft 0.0000000000
## 722        GC                            Hudson Soft 0.0100000000
## 723       N64                            Hudson Soft 0.0733333333
## 724       NES                            Hudson Soft 0.0128571429
## 725        NG                            Hudson Soft 0.0000000000
## 726        PS                            Hudson Soft 0.0050000000
## 727       PS2                            Hudson Soft 0.0000000000
## 728       PS3                            Hudson Soft 0.0000000000
## 729       PSP                            Hudson Soft 0.0000000000
## 730       SAT                            Hudson Soft 0.0000000000
## 731      SNES                            Hudson Soft 0.0000000000
## 732      TG16                            Hudson Soft 0.0000000000
## 733       Wii                            Hudson Soft 0.0383333333
## 734      X360                            Hudson Soft 0.0400000000
## 735        XB                            Hudson Soft 0.0100000000
## 736        PS                    Human Entertainment 0.0050000000
## 737       SAT                    Human Entertainment 0.0000000000
## 738      SNES                    Human Entertainment 0.0000000000
## 739       PSV                                  HuneX 0.0000000000
## 740        PC                    Iceberg Interactive 0.0166666667
## 741        PC                            id Software 0.0000000000
## 742        DS                           Idea Factory 0.0000000000
## 743       PS2                           Idea Factory 0.0000000000
## 744       PS3                           Idea Factory 0.0000000000
## 745       PS4                           Idea Factory 0.0000000000
## 746       PSP                           Idea Factory 0.0000000000
## 747       PSV                           Idea Factory 0.0015625000
## 748      X360                           Idea Factory 0.0000000000
## 749       PS4             Idea Factory International 0.0000000000
## 750       PSV             Idea Factory International 0.0200000000
## 751       3DS                           IE Institute 0.0000000000
## 752        DS                           IE Institute 0.0000000000
## 753        DS                 Ignition Entertainment 0.0046153846
## 754       GBA                 Ignition Entertainment 0.0116666667
## 755        GC                 Ignition Entertainment 0.0066666667
## 756       PS2                 Ignition Entertainment 0.0464705882
## 757       PS3                 Ignition Entertainment 0.0266666667
## 758       PSP                 Ignition Entertainment 0.0300000000
## 759       Wii                 Ignition Entertainment 0.0016666667
## 760      X360                 Ignition Entertainment 0.0250000000
## 761        XB                 Ignition Entertainment 0.0133333333
## 762       PS2                     Illusion Softworks 0.2700000000
## 763       SAT                                 Imadio 0.0000000000
## 764       PSP                            Image Epoch 0.0000000000
## 765       3DS                        imageepoch Inc. 0.0000000000
## 766       3DO                             Imageworks 0.0000000000
## 767      2600                                 Imagic 0.0675000000
## 768        GB                              Imagineer 0.0000000000
## 769       N64                              Imagineer 0.0060000000
## 770        PS                              Imagineer 0.0000000000
## 771       SAT                              Imagineer 0.0000000000
## 772      SNES                              Imagineer 0.0000000000
## 773      SNES                                   Imax 0.0000000000
## 774       PS2                            Indie Games 0.0233333333
## 775        DC                             Infogrames 0.0000000000
## 776       GBA                             Infogrames 0.0875000000
## 777        GC                             Infogrames 0.0875000000
## 778       N64                             Infogrames 0.0125000000
## 779        PC                             Infogrames 0.0000000000
## 780        PS                             Infogrames 0.0804347826
## 781       PS2                             Infogrames 0.1485714286
## 782        XB                             Infogrames 0.0350000000
## 783        PC                        Insomniac Games 0.0000000000
## 784       PS4                        Insomniac Games 0.0000000000
## 785      XOne                        Insomniac Games 0.0000000000
## 786       PS2                           Interchannel 0.0000000000
## 787       PS2                     Interchannel-Holon 0.0000000000
## 788       3DS                              Intergrow 0.0000000000
## 789       GBA                              Interplay 0.0750000000
## 790       N64                              Interplay 0.0266666667
## 791        PC                              Interplay 0.0133333333
## 792        PS                              Interplay 0.0906666667
## 793       PS2                              Interplay 0.1300000000
## 794      SNES                              Interplay 0.0000000000
## 795        XB                              Interplay 0.0600000000
## 796        PS                  Interplay Productions 0.0400000000
## 797       PS3             Interworks Unlimited, Inc. 0.0000000000
## 798       3DS                           Inti Creates 0.0000000000
## 799       PS4                  Introversion Software 0.0100000000
## 800        PC                   inXile Entertainment 0.0600000000
## 801       3DS              Irem Software Engineering 0.0000000000
## 802        PS              Irem Software Engineering 0.0100000000
## 803       PS2              Irem Software Engineering 0.0000000000
## 804       PS3              Irem Software Engineering 0.0000000000
## 805       PSP              Irem Software Engineering 0.0000000000
## 806      2600                       ITT Family Games 0.0200000000
## 807       PSP                              Ivolgamus 0.0000000000
## 808        DS                                   iWin 0.0500000000
## 809        DS                      Jack of All Games 0.0000000000
## 810       GBA                      Jack of All Games 0.1000000000
## 811        DS                                 Jaleco 0.0000000000
## 812       GBA                                 Jaleco 0.0000000000
## 813        GC                                 Jaleco 0.0050000000
## 814        PS                                 Jaleco 0.0450000000
## 815       PS2                                 Jaleco 0.0300000000
## 816       SAT                                 Jaleco 0.0000000000
## 817       Wii                                 Jaleco 0.0000000000
## 818        XB                                 Jaleco 0.0083333333
## 819       PS2                     Jester Interactive 0.0966666667
## 820        GB                                Jorudan 0.0000000000
## 821       GBA                                Jorudan 0.0000000000
## 822        DS                     JoWood Productions 0.0100000000
## 823        GC                     JoWood Productions 0.0000000000
## 824        PC                     JoWood Productions 0.0400000000
## 825       PS2                     JoWood Productions 0.0150000000
## 826       Wii                     JoWood Productions 0.0200000000
## 827      X360                     JoWood Productions 0.0400000000
## 828        XB                     JoWood Productions 0.0100000000
## 829        PC                            Just Flight 0.0300000000
## 830        PS                                    JVC 0.0485714286
## 831       SAT                                    JVC 0.0000000000
## 832       3DS                         Kadokawa Games 0.0000000000
## 833       PS3                         Kadokawa Games 0.0000000000
## 834       PSP                         Kadokawa Games 0.0000000000
## 835       PSV                         Kadokawa Games 0.0000000000
## 836       3DS                        Kadokawa Shoten 0.0000000000
## 837        DS                        Kadokawa Shoten 0.0000000000
## 838        PS                        Kadokawa Shoten 0.1033333333
## 839       PS2                        Kadokawa Shoten 0.0000000000
## 840       PSP                        Kadokawa Shoten 0.0000000000
## 841       PSV                        Kadokawa Shoten 0.0000000000
## 842       SAT                        Kadokawa Shoten 0.0000000000
## 843       Wii                        Kadokawa Shoten 0.0000000000
## 844       PS3                            Kaga Create 0.0000000000
## 845       PSP                            Kaga Create 0.0000000000
## 846       PSV                            Kaga Create 0.0000000000
## 847        PC                          Kalypso Media 0.0270000000
## 848       PS3                          Kalypso Media 0.0000000000
## 849       PS4                          Kalypso Media 0.1050000000
## 850      X360                          Kalypso Media 0.0516666667
## 851        DS                                  Kamui 0.0000000000
## 852       PS2                            Kando Games 0.0100000000
## 853       PSP                    Karin Entertainment 0.0000000000
## 854       GBA                                  Kemco 0.0100000000
## 855        GC                                  Kemco 0.0125000000
## 856       N64                                  Kemco 0.0314285714
## 857        PS                                  Kemco 0.0500000000
## 858       PS2                                  Kemco 0.0500000000
## 859      SNES                                  Kemco 0.0000000000
## 860        XB                                  Kemco 0.0125000000
## 861       PS2                                    KID 0.0000000000
## 862       SAT                                    KID 0.0000000000
## 863        DS                           Kids Station 0.0000000000
## 864       GBA                           King Records 0.0000000000
## 865       GBA                    Knowledge Adventure 0.0800000000
## 866       Wii                    Knowledge Adventure 0.0000000000
## 867       3DS                             Koch Media 0.0400000000
## 868        DS                             Koch Media 0.2200000000
## 869        PC                             Koch Media 0.0300000000
## 870       PS2                             Koch Media 0.0200000000
## 871       PS3                             Koch Media 0.1750000000
## 872       PS4                             Koch Media 0.2000000000
## 873       PSP                             Koch Media 0.1400000000
## 874       Wii                             Koch Media 0.1150000000
## 875      X360                             Koch Media 0.1000000000
## 876      XOne                             Koch Media 0.0400000000
## 877        PS               Kokopeli Digital Studios 0.0100000000
## 878       3DO           Konami Digital Entertainment 0.0000000000
## 879       3DS           Konami Digital Entertainment 0.0408333333
## 880        DC           Konami Digital Entertainment 0.0000000000
## 881        DS           Konami Digital Entertainment 0.0052678571
## 882        GB           Konami Digital Entertainment 0.0000000000
## 883       GBA           Konami Digital Entertainment 0.0605000000
## 884        GC           Konami Digital Entertainment 0.0200000000
## 885       GEN           Konami Digital Entertainment 0.0000000000
## 886       N64           Konami Digital Entertainment 0.0468000000
## 887       NES           Konami Digital Entertainment 0.0777777778
## 888        PC           Konami Digital Entertainment 0.0441666667
## 889        PS           Konami Digital Entertainment 0.0687500000
## 890       PS2           Konami Digital Entertainment 0.1434969325
## 891       PS3           Konami Digital Entertainment 0.1960655738
## 892       PS4           Konami Digital Entertainment 0.4328571429
## 893       PSP           Konami Digital Entertainment 0.0684810127
## 894       PSV           Konami Digital Entertainment 0.0200000000
## 895       SAT           Konami Digital Entertainment 0.0000000000
## 896      SNES           Konami Digital Entertainment 0.0031578947
## 897       Wii           Konami Digital Entertainment 0.0854545455
## 898      X360           Konami Digital Entertainment 0.1210204082
## 899        XB           Konami Digital Entertainment 0.0429032258
## 900      XOne           Konami Digital Entertainment 0.1100000000
## 901        XB                              Kool Kizz 0.0100000000
## 902      SNES                                    KSS 0.0000000000
## 903      SNES                                 Laguna 0.0100000000
## 904        DS                     Legacy Interactive 0.0000000000
## 905       GBA                             LEGO Media 0.0300000000
## 906       N64                             LEGO Media 0.1800000000
## 907        PC                             LEGO Media 0.0100000000
## 908        PS                             LEGO Media 0.0833333333
## 909       3DS                                Level 5 0.0245454545
## 910        DS                                Level 5 0.0000000000
## 911       PSP                                Level 5 0.0000000000
## 912       PSV                                Level 5 0.0000000000
## 913       Wii                                Level 5 0.0000000000
## 914      WiiU                                Level 5 0.0000000000
## 915        DS                  Lexicon Entertainment 0.0000000000
## 916       3DS                            Licensed 4U 0.0200000000
## 917        DS                            Licensed 4U 0.0200000000
## 918        PC                 Lighthouse Interactive 0.0100000000
## 919       GBA                           Liquid Games 0.0350000000
## 920       3DS                           Little Orbit 0.0542857143
## 921        DS                           Little Orbit 0.0000000000
## 922       PS3                           Little Orbit 0.0575000000
## 923       PS4                           Little Orbit 0.0400000000
## 924       Wii                           Little Orbit 0.0766666667
## 925      WiiU                           Little Orbit 0.0233333333
## 926      X360                           Little Orbit 0.0566666667
## 927      XOne                           Little Orbit 0.0200000000
## 928        PS                                  Locus 0.0000000000
## 929       GBA                              LSP Games 0.0066666667
## 930       PS2                              LSP Games 0.0200000000
## 931       3DS                              LucasArts 0.4300000000
## 932        DS                              LucasArts 0.2888888889
## 933       GBA                              LucasArts 0.0200000000
## 934        GC                              LucasArts 0.2875000000
## 935       N64                              LucasArts 0.0500000000
## 936        PC                              LucasArts 0.1178571429
## 937        PS                              LucasArts 0.4600000000
## 938       PS2                              LucasArts 0.3258823529
## 939       PS3                              LucasArts 0.5200000000
## 940       PSP                              LucasArts 0.2755555556
## 941       Wii                              LucasArts 0.5375000000
## 942      X360                              LucasArts 0.3725000000
## 943        XB                              LucasArts 0.0587500000
## 944        GC                               Mad Catz 0.0400000000
## 945      X360                               Mad Catz 0.0000000000
## 946        XB                               Mad Catz 0.0100000000
## 947        PS                        Magical Company 0.1000000000
## 948       PS2                                  Magix 0.0650000000
## 949       3DS                  Majesco Entertainment 0.0000000000
## 950        DS                  Majesco Entertainment 0.0053846154
## 951       GBA                  Majesco Entertainment 0.0786666667
## 952       PS2                  Majesco Entertainment 0.0400000000
## 953       PS3                  Majesco Entertainment 0.0000000000
## 954       PSP                  Majesco Entertainment 0.0000000000
## 955       Wii                  Majesco Entertainment 0.0575000000
## 956      X360                  Majesco Entertainment 0.0100000000
## 957        XB                  Majesco Entertainment 0.0100000000
## 958      XOne                  Majesco Entertainment 0.0500000000
## 959        PC                            Mamba Games 0.0200000000
## 960       PSV                   Marvel Entertainment 0.0000000000
## 961       3DS                Marvelous Entertainment 0.0400000000
## 962       PSP                Marvelous Entertainment 0.0000000000
## 963       PSV                Marvelous Entertainment 0.0040000000
## 964       PSV                        Marvelous Games 0.0000000000
## 965       3DS                  Marvelous Interactive 0.0000000000
## 966        DS                  Marvelous Interactive 0.0000000000
## 967       GBA                  Marvelous Interactive 0.0100000000
## 968        GC                  Marvelous Interactive 0.0500000000
## 969       PS2                  Marvelous Interactive 0.0000000000
## 970       PS3                  Marvelous Interactive 0.0000000000
## 971       PS4                  Marvelous Interactive 0.0000000000
## 972       PSP                  Marvelous Interactive 0.0009090909
## 973       PSV                  Marvelous Interactive 0.0266666667
## 974       Wii                  Marvelous Interactive 0.0000000000
## 975      X360                  Marvelous Interactive 0.0000000000
## 976        PC                      Masque Publishing 0.0000000000
## 977        DS                           Mastertronic 0.0675000000
## 978        PC                           Mastertronic 0.0350000000
## 979       PS2                           Mastertronic 0.0100000000
## 980       Wii                           Mastertronic 0.0100000000
## 981      X360                           Mastertronic 0.0233333333
## 982       3DS                                Mastiff 0.0000000000
## 983        DS                                Mastiff 0.0000000000
## 984       GBA                                Mastiff 0.0300000000
## 985        PC                                Mastiff 0.0000000000
## 986       PS2                                Mastiff 0.0200000000
## 987       Wii                                Mastiff 0.0000000000
## 988        XB                                Mastiff 0.0000000000
## 989      2600                     Mattel Interactive 0.0187500000
## 990        PS                     Mattel Interactive 0.0550000000
## 991        PS                               Max Five 0.0200000000
## 992       3DS                   Maximum Family Games 0.0000000000
## 993        PC                                  Maxis 0.4300000000
## 994        PS                                  Maxis 0.4600000000
## 995        PC                      MC2 Entertainment 0.0100000000
## 996        XB                      MC2 Entertainment 0.0100000000
## 997       PS2                    Media Entertainment 0.0000000000
## 998        GB                          Media Factory 0.0000000000
## 999       N64                          Media Factory 0.0000000000
## 1000      GBA                            Media Rings 0.0500000000
## 1001     SNES                            Media Rings 0.0000000000
## 1002       PS                            Media Works 0.0000000000
## 1003      PS2                            Media Works 0.0000000000
## 1004      SAT                            Media Works 0.0000000000
## 1005       PS                             MediaQuest 0.0200000000
## 1006     2600                           Men-A-Vision 0.0400000000
## 1007       DS                     Mentor Interactive 0.0000000000
## 1008       DS                          Mercury Games 0.0000000000
## 1009      PSP                          Mercury Games 0.0000000000
## 1010       PC                            Merscom LLC 0.1700000000
## 1011      PS2                               Metro 3D 0.0657142857
## 1012      Wii                               Metro 3D 0.0000000000
## 1013       XB                               Metro 3D 0.0100000000
## 1014      PS2                            Michaelsoft 0.0000000000
## 1015      3DO                            Micro Cabin 0.0000000000
## 1016      SAT                            Micro Cabin 0.0000000000
## 1017      GBA                               Microids 0.0000000000
## 1018       PC                               Microids 0.0166666667
## 1019      PS2                               Microids 0.0300000000
## 1020      PS4                               Microids 0.0100000000
## 1021       XB                               Microids 0.0125000000
## 1022       PC                             Microprose 0.0150000000
## 1023       PS                             Microprose 0.2900000000
## 1024       PC                 Microsoft Game Studios 0.1241379310
## 1025     WiiU                 Microsoft Game Studios 0.0900000000
## 1026     X360                 Microsoft Game Studios 0.6591549296
## 1027       XB                 Microsoft Game Studios 0.1483823529
## 1028     XOne                 Microsoft Game Studios 0.4015000000
## 1029       DS        Midas Interactive Entertainment 0.0160000000
## 1030       PS        Midas Interactive Entertainment 0.0366666667
## 1031      PS2        Midas Interactive Entertainment 0.0650000000
## 1032      PSP        Midas Interactive Entertainment 0.0000000000
## 1033      Wii        Midas Interactive Entertainment 0.0100000000
## 1034       DS                           Midway Games 0.2225000000
## 1035      GBA                           Midway Games 0.0171428571
## 1036       GC                           Midway Games 0.0272000000
## 1037      N64                           Midway Games 0.0555000000
## 1038       PC                           Midway Games 0.0350000000
## 1039       PS                           Midway Games 0.1514285714
## 1040      PS2                           Midway Games 0.1546000000
## 1041      PS3                           Midway Games 0.1042857143
## 1042      PSP                           Midway Games 0.0042857143
## 1043      Wii                           Midway Games 0.1300000000
## 1044     X360                           Midway Games 0.1266666667
## 1045       XB                           Midway Games 0.0402564103
## 1046      Wii                              Milestone 0.0000000000
## 1047      PS4                        Milestone S.r.l 0.0400000000
## 1048     XOne                        Milestone S.r.l 0.0100000000
## 1049       PC                       Milestone S.r.l. 0.0200000000
## 1050      PS3                       Milestone S.r.l. 0.0500000000
## 1051      PS4                       Milestone S.r.l. 0.1025000000
## 1052      PSV                       Milestone S.r.l. 0.0100000000
## 1053     X360                       Milestone S.r.l. 0.0233333333
## 1054     XOne                       Milestone S.r.l. 0.0333333333
## 1055      PS2                         Minato Station 0.0000000000
## 1056      PS3                         Minato Station 0.0000000000
## 1057      PSV                         Minato Station 0.0000000000
## 1058       DS                              Mindscape 0.0800000000
## 1059      N64                              Mindscape 0.0000000000
## 1060       PS                              Mindscape 0.0485714286
## 1061      PS2                              Mindscape 0.0500000000
## 1062      Wii                              Mindscape 0.1220000000
## 1063     X360                              Mindscape 0.0100000000
## 1064       XB                              Mindscape 0.0100000000
## 1065       DS                          Mirai Shounen 0.0000000000
## 1066     SNES                                 Misawa 0.0000000000
## 1067      N64                                 Mitsui 0.0200000000
## 1068      3DS                              mixi, Inc 0.0000000000
## 1069     XOne                                MLB.com 0.0000000000
## 1070       PC                                 Mojang 0.0500000000
## 1071      PS3                                 Mojang 0.3300000000
## 1072      PS4                                 Mojang 0.3300000000
## 1073     X360                                 Mojang 0.3800000000
## 1074     XOne                                 Mojang 0.2100000000
## 1075       PC               Monte Christo Multimedia 0.0400000000
## 1076     X360                                   Moss 0.0000000000
## 1077       DS                                    MTO 0.0000000000
## 1078       PS                                    MTO 0.0000000000
## 1079       DS                              MTV Games 0.0100000000
## 1080      PS2                              MTV Games 0.0900000000
## 1081      PS3                              MTV Games 0.0760000000
## 1082      PSP                              MTV Games 0.1500000000
## 1083      Wii                              MTV Games 0.1016666667
## 1084     X360                              MTV Games 0.1240000000
## 1085      PS2                   Mud Duck Productions 0.1600000000
## 1086       XB                   Mud Duck Productions 0.0450000000
## 1087       DS                            Mumbo Jumbo 0.0000000000
## 1088       PC                            Mumbo Jumbo 0.0000000000
## 1089      PSP                            Mumbo Jumbo 0.0000000000
## 1090      Wii                            Mumbo Jumbo 0.0000000000
## 1091       DS                                  Mycom 0.0000000000
## 1092      PS2                           Myelin Media 0.0300000000
## 1093      PSP                           Myelin Media 0.0000000000
## 1094       XB                           Myelin Media 0.0100000000
## 1095     2600                               Mystique 0.0500000000
## 1096      3DS                                    N/A 0.0050000000
## 1097       DS                                    N/A 0.0028571429
## 1098      GBA                                    N/A 0.0807692308
## 1099       PC                                    N/A 0.0500000000
## 1100       PS                                    N/A 0.1933333333
## 1101      PS2                                    N/A 0.5500000000
## 1102      PS3                                    N/A 0.1600000000
## 1103      PSP                                    N/A 0.0000000000
## 1104      PSV                                    N/A 0.0000000000
## 1105      Wii                                    N/A 0.0500000000
## 1106     X360                                    N/A 0.0100000000
## 1107      3DS                     Namco Bandai Games 0.0106896552
## 1108       DC                     Namco Bandai Games 0.0000000000
## 1109       DS                     Namco Bandai Games 0.0018518519
## 1110       GB                     Namco Bandai Games 0.0000000000
## 1111      GBA                     Namco Bandai Games 0.0868750000
## 1112       GC                     Namco Bandai Games 0.0377272727
## 1113      N64                     Namco Bandai Games 0.0350000000
## 1114      NES                     Namco Bandai Games 0.0421428571
## 1115       PC                     Namco Bandai Games 0.1083333333
## 1116       PS                     Namco Bandai Games 0.0547916667
## 1117      PS2                     Namco Bandai Games 0.0984112150
## 1118      PS3                     Namco Bandai Games 0.0871551724
## 1119      PS4                     Namco Bandai Games 0.1540000000
## 1120      PSP                     Namco Bandai Games 0.0066115702
## 1121      PSV                     Namco Bandai Games 0.0144444444
## 1122      SAT                     Namco Bandai Games 0.0000000000
## 1123     SNES                     Namco Bandai Games 0.0000000000
## 1124      Wii                     Namco Bandai Games 0.0425000000
## 1125     WiiU                     Namco Bandai Games 0.0307692308
## 1126       WS                     Namco Bandai Games 0.0000000000
## 1127     X360                     Namco Bandai Games 0.0829545455
## 1128       XB                     Namco Bandai Games 0.0530000000
## 1129     XOne                     Namco Bandai Games 0.1185714286
## 1130      3DS                                Natsume 0.0200000000
## 1131       DS                                Natsume 0.0120000000
## 1132      GBA                                Natsume 0.0400000000
## 1133      N64                                Natsume 0.0200000000
## 1134       PS                                Natsume 0.1150000000
## 1135      PS2                                Natsume 0.0625000000
## 1136      PSP                                Natsume 0.0000000000
## 1137      Wii                                Natsume 0.0000000000
## 1138     X360                           Navarre Corp 0.0000000000
## 1139      PS2                             Naxat Soft 0.0000000000
## 1140      SAT                                    NCS 0.0000000000
## 1141       PC                                 NCSoft 0.1983333333
## 1142       GC                        NDA Productions 0.0200000000
## 1143     PCFX                                    NEC 0.0000000000
## 1144      SAT                                    NEC 0.0000000000
## 1145     TG16                                    NEC 0.0000000000
## 1146       DC                       NEC Interchannel 0.0000000000
## 1147      SAT                       NEC Interchannel 0.0000000000
## 1148       DS                     Neko Entertainment 0.0033333333
## 1149      Wii                     Neko Entertainment 0.0175000000
## 1150      PSP                                NetRevo 0.0000000000
## 1151       PS                                    New 0.0000000000
## 1152       PC                    New World Computing 0.0000000000
## 1153      GBA                               NewKidCo 0.0200000000
## 1154       GC                               NewKidCo 0.0100000000
## 1155      N64                               NewKidCo 0.0400000000
## 1156       PS                               NewKidCo 0.1050000000
## 1157       DS                                  Nexon 0.0000000000
## 1158     SNES                             Nichibutsu 0.0000000000
## 1159      PS4               Nihon Falcom Corporation 0.0000000000
## 1160      PSP               Nihon Falcom Corporation 0.0000000000
## 1161      PSV               Nihon Falcom Corporation 0.0020000000
## 1162      3DS                               Nintendo 0.5196341463
## 1163       DS                               Nintendo 0.6416556291
## 1164       GB                               Nintendo 0.7637704918
## 1165      GBA                               Nintendo 0.2520879121
## 1166       GC                               Nintendo 0.2600000000
## 1167      N64                               Nintendo 0.4023333333
## 1168      NES                               Nintendo 0.3926666667
## 1169     SNES                               Nintendo 0.4183333333
## 1170      Wii                               Nintendo 1.4644047619
## 1171     WiiU                               Nintendo 0.4012500000
## 1172      PS2                           Nippon Amuse 0.0000000000
## 1173      3DS                        Nippon Columbia 0.0000000000
## 1174      3DS                   Nippon Ichi Software 0.0220000000
## 1175       DS                   Nippon Ichi Software 0.0000000000
## 1176       PS                   Nippon Ichi Software 0.0100000000
## 1177      PS2                   Nippon Ichi Software 0.0100000000
## 1178      PS3                   Nippon Ichi Software 0.0266666667
## 1179      PS4                   Nippon Ichi Software 0.0188888889
## 1180      PSP                   Nippon Ichi Software 0.0005882353
## 1181      PSV                   Nippon Ichi Software 0.0219354839
## 1182      Wii                   Nippon Ichi Software 0.0000000000
## 1183     WiiU                   Nippon Ichi Software 0.0200000000
## 1184     SNES                         Nippon Telenet 0.0000000000
## 1185      PS3                              Nitroplus 0.0000000000
## 1186      PSV                              Nitroplus 0.0000000000
## 1187       DS                                Nobilis 0.0170000000
## 1188       PC                                Nobilis 0.0100000000
## 1189      Wii                                Nobilis 0.0000000000
## 1190       DS                            Nordcurrent 0.0650000000
## 1191      Wii                            Nordcurrent 0.0033333333
## 1192       DS                           Nordic Games 0.0000000000
## 1193       PC                           Nordic Games 0.0450000000
## 1194      PS3                           Nordic Games 0.0150000000
## 1195      PS4                           Nordic Games 0.0433333333
## 1196      Wii                           Nordic Games 0.1726666667
## 1197     WiiU                           Nordic Games 0.0133333333
## 1198     X360                           Nordic Games 0.0300000000
## 1199     XOne                           Nordic Games 0.0100000000
## 1200       PC                              NovaLogic 0.0000000000
## 1201      PS2                              NovaLogic 0.1700000000
## 1202       XB                              NovaLogic 0.0700000000
## 1203       PC                            Number None 0.0200000000
## 1204       DS                                O-Games 0.0200000000
## 1205      PS3                                O-Games 0.0400000000
## 1206      Wii                                O-Games 0.0466666667
## 1207     X360                                O-Games 0.0100000000
## 1208       DS                       O3 Entertainment 0.0000000000
## 1209       GC                       O3 Entertainment 0.0200000000
## 1210      N64                                  Ocean 0.1000000000
## 1211      NES                                  Ocean 0.1000000000
## 1212       PS                                  Ocean 0.0571428571
## 1213     SNES                                  Ocean 0.0000000000
## 1214      3DS                          Office Create 0.0000000000
## 1215       PS                              On Demand 0.0800000000
## 1216      PS3                              Ongakukan 0.0000000000
## 1217       PS                         Origin Systems 0.0300000000
## 1218      PSP                                Otomate 0.0000000000
## 1219       DS                     Oxygen Interactive 0.0044444444
## 1220      PS2                     Oxygen Interactive 0.3850000000
## 1221      PSP                     Oxygen Interactive 0.0000000000
## 1222      Wii                     Oxygen Interactive 0.0383333333
## 1223     X360                     Oxygen Interactive 0.0000000000
## 1224       DS                               P2 Games 0.1650000000
## 1225      Wii                               P2 Games 0.0000000000
## 1226      PS2            Pacific Century Cyber Works 0.0900000000
## 1227     SNES                          Pack-In-Video 0.0000000000
## 1228      N64                           Pack In Soft 0.0600000000
## 1229      NES                                 Palcom 0.4400000000
## 1230       PS                       Panther Software 0.0200000000
## 1231       DS                                   Paon 0.0000000000
## 1232      PS2                                   Paon 0.0000000000
## 1233      PSP                                   Paon 0.0000000000
## 1234      PS3                       Paon Corporation 0.0000000000
## 1235       PC                    Paradox Development 0.0100000000
## 1236       PC                    Paradox Interactive 0.0247826087
## 1237     2600                           Parker Bros. 0.0385714286
## 1238       DS          Performance Designed Products 0.0000000000
## 1239      Wii          Performance Designed Products 0.0000000000
## 1240       XB                             Phantagram 0.0100000000
## 1241     X360                            Phantom EFX 0.0000000000
## 1242       DS                             Phenomedia 0.0000000000
## 1243       DS                          Phoenix Games 0.0000000000
## 1244      PSP                                 Piacci 0.0000000000
## 1245       DS                               Pinnacle 0.3166666667
## 1246       PC                               Pinnacle 0.0200000000
## 1247      Wii                               Pinnacle 0.3500000000
## 1248       PS                            Pioneer LDC 0.0400000000
## 1249      GBA                                Play It 0.0100000000
## 1250      PS2                                Play It 0.1008333333
## 1251      PSP                                Play It 0.0100000000
## 1252       DS                 Playlogic Game Factory 0.0000000000
## 1253       PC                 Playlogic Game Factory 0.0000000000
## 1254      PS2                 Playlogic Game Factory 0.0500000000
## 1255      PS3                 Playlogic Game Factory 0.0400000000
## 1256      PSP                 Playlogic Game Factory 0.0300000000
## 1257      Wii                 Playlogic Game Factory 0.0020000000
## 1258     X360                 Playlogic Game Factory 0.0150000000
## 1259       PS                              Playmates 0.1100000000
## 1260      PS2                               Playmore 0.0000000000
## 1261       DS                                  PlayV 0.0750000000
## 1262       DS                                 Plenty 0.0000000000
## 1263      PSP                             PM Studios 0.0000000000
## 1264       PS                            Pony Canyon 0.0200000000
## 1265       DS                           PopCap Games 0.0450000000
## 1266       PC                           PopCap Games 0.0233333333
## 1267      PS3                           PopCap Games 0.0000000000
## 1268     X360                           PopCap Games 0.0050000000
## 1269      Wii                         Popcorn Arcade 0.0000000000
## 1270       PS                        PopTop Software 0.0400000000
## 1271     SNES                                    Pow 0.0000000000
## 1272      3DS                                  PQube 0.0100000000
## 1273       DS                                  PQube 0.0166666667
## 1274       PC                                  PQube 0.0100000000
## 1275      PS2                                  PQube 0.0200000000
## 1276      PS3                                  PQube 0.0330000000
## 1277      PS4                                  PQube 0.0075000000
## 1278      PSP                                  PQube 0.0125000000
## 1279      PSV                                  PQube 0.0328571429
## 1280      Wii                                  PQube 0.0075000000
## 1281     X360                                  PQube 0.0500000000
## 1282     XOne                                  PQube 0.0100000000
## 1283      PS2                          Princess Soft 0.0000000000
## 1284      PS2                              Prototype 0.0000000000
## 1285      PS3                              Prototype 0.0000000000
## 1286      PSP                              Prototype 0.0000000000
## 1287      PSV                              Prototype 0.0000000000
## 1288     X360                              Prototype 0.0000000000
## 1289       PS                              Psygnosis 0.0775000000
## 1290     2600                                 Quelle 0.0500000000
## 1291     SNES                                  Quest 0.0000000000
## 1292      PSP                               Quinrose 0.0000000000
## 1293      SAT                                Quintet 0.0000000000
## 1294      GBA                          Rage Software 0.0100000000
## 1295       GC                          Rage Software 0.0200000000
## 1296      PS2                          Rage Software 0.1850000000
## 1297       XB                          Rage Software 0.0233333333
## 1298      PSV                             Rain Games 0.0100000000
## 1299      GBA                              Rebellion 0.0650000000
## 1300      PS4                 Rebellion Developments 0.1200000000
## 1301     XOne                 Rebellion Developments 0.0500000000
## 1302      PS2                      RED Entertainment 0.0000000000
## 1303       PC                                Red Orb 1.8050000000
## 1304      N64                Red Storm Entertainment 0.1500000000
## 1305       PS                Red Storm Entertainment 0.3250000000
## 1306      PS2                              RedOctane 0.3275000000
## 1307       DS                     Reef Entertainment 0.0300000000
## 1308       PC                     Reef Entertainment 0.0200000000
## 1309      PS3                     Reef Entertainment 0.0200000000
## 1310      Wii                     Reef Entertainment 0.0150000000
## 1311      PS2                           responDESIGN 0.0200000000
## 1312       XB                           responDESIGN 0.0200000000
## 1313      PS2                     Revolution (Japan) 0.0000000000
## 1314      PS4                    Revolution Software 0.0600000000
## 1315     XOne                    Revolution Software 0.0100000000
## 1316      3DS                      Rising Star Games 0.0450000000
## 1317       DS                      Rising Star Games 0.0290000000
## 1318       PC                      Rising Star Games 0.0400000000
## 1319      PS2                      Rising Star Games 0.0400000000
## 1320      PS3                      Rising Star Games 0.0600000000
## 1321      PS4                      Rising Star Games 0.0000000000
## 1322      PSP                      Rising Star Games 0.0066666667
## 1323      PSV                      Rising Star Games 0.0000000000
## 1324      Wii                      Rising Star Games 0.0605882353
## 1325     X360                      Rising Star Games 0.0500000000
## 1326       PS                          Riverhillsoft 0.0000000000
## 1327      3DS                         Rocket Company 0.0000000000
## 1328       DS                         Rocket Company 0.0000000000
## 1329      Wii                         Rocket Company 0.0000000000
## 1330       DS                             Rondomedia 0.1000000000
## 1331       PC                             Rondomedia 0.0842857143
## 1332      Wii                             Rondomedia 0.0200000000
## 1333       DS                                    RTL 0.0200000000
## 1334      Wii                                    RTL 0.3033333333
## 1335     X360                                    RTL 0.0050000000
## 1336       DS                                 Russel 0.0000000000
## 1337       PC                                 Russel 1.1200000000
## 1338      PS2                                 Russel 0.0000000000
## 1339      PSP                                 Russel 0.0000000000
## 1340      GBA                      Sammy Corporation 0.0200000000
## 1341      PS2                      Sammy Corporation 0.0322222222
## 1342     SNES                      Sammy Corporation 0.0000000000
## 1343       PS                                 Saurus 0.0100000000
## 1344       DS                        Scholastic Inc. 0.0000000000
## 1345      PS2                        Scholastic Inc. 0.0300000000
## 1346      Wii                        Scholastic Inc. 0.0000000000
## 1347       GC                                    SCi 0.0100000000
## 1348       PC                                    SCi 0.0300000000
## 1349      PS2                                    SCi 0.1260000000
## 1350       XB                                    SCi 0.0675000000
## 1351      3DS                             Screenlife 0.0000000000
## 1352      PSV                             Screenlife 0.0033333333
## 1353       PC                           SCS Software 0.1200000000
## 1354     2600                                  Sears 0.0100000000
## 1355     2600                                   Sega 0.0200000000
## 1356      3DS                                   Sega 0.0909523810
## 1357       DC                                   Sega 0.0486666667
## 1358       DS                                   Sega 0.1496875000
## 1359      GBA                                   Sega 0.1460000000
## 1360       GC                                   Sega 0.0832000000
## 1361      GEN                                   Sega 0.2144444444
## 1362       GG                                   Sega 0.0000000000
## 1363       PC                                   Sega 0.2839393939
## 1364      PS2                                   Sega 0.0877108434
## 1365      PS3                                   Sega 0.1698360656
## 1366      PS4                                   Sega 0.0750000000
## 1367      PSP                                   Sega 0.0911764706
## 1368      PSV                                   Sega 0.0443750000
## 1369      SAT                                   Sega 0.0070129870
## 1370      SCD                                   Sega 0.0600000000
## 1371      Wii                                   Sega 0.3752272727
## 1372     WiiU                                   Sega 0.1200000000
## 1373     X360                                   Sega 0.1812765957
## 1374       XB                                   Sega 0.0528947368
## 1375     XOne                                   Sega 0.2400000000
## 1376      N64                       Seta Corporation 0.0000000000
## 1377       PS                       Seta Corporation 0.0000000000
## 1378      SAT                       Seta Corporation 0.0000000000
## 1379      3DS                          Seventh Chord 0.0000000000
## 1380      3DS                             Shogakukan 0.0000000000
## 1381       DS                             Shogakukan 0.0000000000
## 1382      SAT                             Shogakukan 0.0000000000
## 1383       XB           Simon & Schuster Interactive 0.0200000000
## 1384       PC                   Slightly Mad Studios 0.1000000000
## 1385      PS4                   Slightly Mad Studios 0.6900000000
## 1386     XOne                   Slightly Mad Studios 0.1300000000
## 1387       DS                    Slitherine Software 0.0100000000
## 1388      PS3                    Slitherine Software 0.0400000000
## 1389      PSP                    Slitherine Software 0.0100000000
## 1390     X360                    Slitherine Software 0.0400000000
## 1391       DC                                    SNK 0.0000000000
## 1392       NG                                    SNK 0.0000000000
## 1393       PS                                    SNK 0.0000000000
## 1394      PS2                                    SNK 0.0300000000
## 1395      SAT                                    SNK 0.0000000000
## 1396       DS                           SNK Playmore 0.0000000000
## 1397       PS                           SNK Playmore 0.0166666667
## 1398      PS2                           SNK Playmore 0.0116666667
## 1399      PSP                           SNK Playmore 0.0000000000
## 1400      SAT                           SNK Playmore 0.0000000000
## 1401       XB                           SNK Playmore 0.0066666667
## 1402      SAT                                Societa 0.0000000000
## 1403      PS4                               Sold Out 0.0100000000
## 1404      SAT                                 Sonnet 0.0000000000
## 1405       PS            Sony Computer Entertainment 0.2854787234
## 1406      PS2            Sony Computer Entertainment 0.2390196078
## 1407      PS3            Sony Computer Entertainment 0.4066666667
## 1408      PS4            Sony Computer Entertainment 0.7688235294
## 1409      PSP            Sony Computer Entertainment 0.1388888889
## 1410      PSV            Sony Computer Entertainment 0.1253571429
## 1411      PS3    Sony Computer Entertainment America 0.0000000000
## 1412      PS4    Sony Computer Entertainment America 0.0000000000
## 1413      PSV    Sony Computer Entertainment America 0.0000000000
## 1414      PS2     Sony Computer Entertainment Europe 0.4500000000
## 1415      PS3     Sony Computer Entertainment Europe 0.5560000000
## 1416      PS4     Sony Computer Entertainment Europe 0.8975000000
## 1417      PSV     Sony Computer Entertainment Europe 0.4325000000
## 1418      PS2               Sony Music Entertainment 0.0000000000
## 1419       PC              Sony Online Entertainment 0.0300000000
## 1420      PS2              Sony Online Entertainment 0.2425000000
## 1421      PS3              Sony Online Entertainment 0.1200000000
## 1422      PSP              Sony Online Entertainment 0.0000000000
## 1423       DS                        SouthPeak Games 0.0161538462
## 1424       PC                        SouthPeak Games 0.0100000000
## 1425       PS                        SouthPeak Games 0.0400000000
## 1426      PS2                        SouthPeak Games 0.0266666667
## 1427      PS3                        SouthPeak Games 0.0533333333
## 1428      PSP                        SouthPeak Games 0.0000000000
## 1429      Wii                        SouthPeak Games 0.0066666667
## 1430     X360                        SouthPeak Games 0.0700000000
## 1431       DS                                  Spike 0.0000000000
## 1432      GBA                                  Spike 0.0300000000
## 1433      PS2                                  Spike 0.0428571429
## 1434      PS3                                  Spike 0.0000000000
## 1435      PSP                                  Spike 0.0000000000
## 1436     X360                                  Spike 0.0000000000
## 1437       PS                                    SPS 0.0400000000
## 1438      NES                                 Square 0.0000000000
## 1439       PS                                 Square 0.0500000000
## 1440     SNES                                 Square 0.0900000000
## 1441       PS                              Square EA 0.3000000000
## 1442      3DS                            Square Enix 0.0478571429
## 1443       DS                            Square Enix 0.0355555556
## 1444      GBA                            Square Enix 0.0900000000
## 1445       PC                            Square Enix 0.0980952381
## 1446      PS2                            Square Enix 0.1226923077
## 1447      PS3                            Square Enix 0.3444827586
## 1448      PS4                            Square Enix 0.2157894737
## 1449      PSP                            Square Enix 0.1205000000
## 1450      PSV                            Square Enix 0.0437500000
## 1451      Wii                            Square Enix 0.0166666667
## 1452     WiiU                            Square Enix 0.0166666667
## 1453     X360                            Square Enix 0.2411538462
## 1454     XOne                            Square Enix 0.1636363636
## 1455       GB                             SquareSoft 0.0000000000
## 1456      GBA                             SquareSoft 0.3700000000
## 1457      NES                             SquareSoft 0.0000000000
## 1458       PS                             SquareSoft 0.1804000000
## 1459      PS2                             SquareSoft 0.0000000000
## 1460     SNES                             SquareSoft 0.0050000000
## 1461       WS                             SquareSoft 0.0000000000
## 1462       PS                                    SSI 0.0700000000
## 1463     XOne                        Stainless Games 0.0100000000
## 1464       DS                               Starfish 0.0000000000
## 1465      GBA                               Starfish 0.0100000000
## 1466       PS                               Starfish 0.0900000000
## 1467      PSP                               Starfish 0.0000000000
## 1468      Wii                               Starfish 0.0000000000
## 1469     2600                         Starpath Corp. 0.0200000000
## 1470       DS                                  Sting 0.0000000000
## 1471      GBA                                  Sting 0.0150000000
## 1472      PS2                                  Sting 0.0400000000
## 1473      PSP                                  Sting 0.0000000000
## 1474      Wii                                  Sting 0.0000000000
## 1475       DS                       Storm City Games 0.0076923077
## 1476      Wii                       Storm City Games 0.0000000000
## 1477       PC                         Strategy First 0.0200000000
## 1478      3DS                                Success 0.0000000000
## 1479       DS                                Success 0.0000000000
## 1480       PS                                Success 0.1200000000
## 1481      PS2                                Success 0.0033333333
## 1482      PSP                                Success 0.0000000000
## 1483     X360                                Success 0.0000000000
## 1484      GBA                             Summitsoft 0.0100000000
## 1485       PC                             Sunflowers 0.0200000000
## 1486      PS2                    Sunrise Interactive 0.0000000000
## 1487      3DS                                Sunsoft 0.0000000000
## 1488      N64                                Sunsoft 0.0200000000
## 1489       PS                                Sunsoft 0.0575000000
## 1490      SAT                                Sunsoft 0.0000000000
## 1491     SNES                                Sunsoft 0.0000000000
## 1492      PS2                                 Sweets 0.0000000000
## 1493      GBA                   Swing! Entertainment 0.0100000000
## 1494       PS                   Swing! Entertainment 0.0200000000
## 1495      PS2                   Swing! Entertainment 0.0333333333
## 1496       XB                   Swing! Entertainment 0.0300000000
## 1497       PS                                 Syscom 0.0200000000
## 1498      PS3                               System 3 0.0100000000
## 1499      PS4                               System 3 0.0700000000
## 1500      PSV                               System 3 0.0200000000
## 1501       DS               System 3 Arcade Software 0.0033333333
## 1502      PS2               System 3 Arcade Software 0.0500000000
## 1503      PS3               System 3 Arcade Software 0.0300000000
## 1504      PSP               System 3 Arcade Software 0.0250000000
## 1505      Wii               System 3 Arcade Software 0.0766666667
## 1506      PSP                            System Soft 0.0000000000
## 1507     SNES                               T&E Soft 0.0000000000
## 1508     2600                                  Taito 0.0100000000
## 1509       DS                                  Taito 0.0000000000
## 1510      GBA                                  Taito 0.0100000000
## 1511       GC                                  Taito 0.0000000000
## 1512      N64                                  Taito 0.0000000000
## 1513       PS                                  Taito 0.0000000000
## 1514      PS2                                  Taito 0.0140000000
## 1515      SAT                                  Taito 0.0000000000
## 1516     SNES                                  Taito 0.0000000000
## 1517      Wii                                  Taito 0.0000000000
## 1518      GBA                                 Takara 0.0600000000
## 1519      N64                                 Takara 0.0000000000
## 1520       PS                                 Takara 0.0000000000
## 1521      PS2                                 Takara 0.0000000000
## 1522     SNES                                 Takara 0.0000000000
## 1523      3DS                            Takara Tomy 0.0000000000
## 1524       DS                            Takara Tomy 0.0013636364
## 1525      PSP                            Takara Tomy 0.0000000000
## 1526      Wii                            Takara Tomy 0.0000000000
## 1527     X360                            Takara Tomy 0.0000000000
## 1528      3DS                   Take-Two Interactive 0.0100000000
## 1529       DS                   Take-Two Interactive 0.0527586207
## 1530      GBA                   Take-Two Interactive 0.0225000000
## 1531       GC                   Take-Two Interactive 0.0200000000
## 1532      N64                   Take-Two Interactive 0.0500000000
## 1533       PC                   Take-Two Interactive 0.1564444444
## 1534       PS                   Take-Two Interactive 0.3488888889
## 1535      PS2                   Take-Two Interactive 0.3648333333
## 1536      PS3                   Take-Two Interactive 0.5524528302
## 1537      PS4                   Take-Two Interactive 0.7958333333
## 1538      PSP                   Take-Two Interactive 0.3100000000
## 1539      PSV                   Take-Two Interactive 0.1050000000
## 1540      Wii                   Take-Two Interactive 0.1157894737
## 1541     WiiU                   Take-Two Interactive 0.0400000000
## 1542     X360                   Take-Two Interactive 0.3502857143
## 1543       XB                   Take-Two Interactive 0.0702777778
## 1544     XOne                   Take-Two Interactive 0.2791666667
## 1545      PSP                                 Takuyo 0.0000000000
## 1546       PS                              TalonSoft 0.3300000000
## 1547       DS                               TDK Core 0.0000000000
## 1548      GBA                               TDK Core 0.0500000000
## 1549       PS                               TDK Core 0.0700000000
## 1550      GBA                         TDK Mediactive 0.0827272727
## 1551       GC                         TDK Mediactive 0.0111111111
## 1552       PS                         TDK Mediactive 0.0600000000
## 1553      PS2                         TDK Mediactive 0.1616666667
## 1554       XB                         TDK Mediactive 0.0400000000
## 1555       PC                        Team17 Software 0.0400000000
## 1556       NG              Technos Japan Corporation 0.0000000000
## 1557       PS                             TechnoSoft 0.0200000000
## 1558      3DS                             Tecmo Koei 0.0055555556
## 1559       DS                             Tecmo Koei 0.0007692308
## 1560      GBA                             Tecmo Koei 0.0000000000
## 1561       GC                             Tecmo Koei 0.0100000000
## 1562       PS                             Tecmo Koei 0.0183333333
## 1563      PS2                             Tecmo Koei 0.0357647059
## 1564      PS3                             Tecmo Koei 0.0251785714
## 1565      PS4                             Tecmo Koei 0.0309090909
## 1566      PSP                             Tecmo Koei 0.0009090909
## 1567      PSV                             Tecmo Koei 0.0106250000
## 1568      SAT                             Tecmo Koei 0.0000000000
## 1569     SNES                             Tecmo Koei 0.0000000000
## 1570      Wii                             Tecmo Koei 0.0083333333
## 1571     WiiU                             Tecmo Koei 0.0066666667
## 1572     X360                             Tecmo Koei 0.0352173913
## 1573       XB                             Tecmo Koei 0.0300000000
## 1574     XOne                             Tecmo Koei 0.0183333333
## 1575       DS                              Telegames 0.0000000000
## 1576      GBA                              Telegames 0.0166666667
## 1577       PS                              Telegames 0.0100000000
## 1578      PS3                         Telltale Games 0.0340000000
## 1579      PS4                         Telltale Games 0.0771428571
## 1580      PSV                         Telltale Games 0.0000000000
## 1581      Wii                         Telltale Games 0.0000000000
## 1582     X360                         Telltale Games 0.0300000000
## 1583     XOne                         Telltale Games 0.0283333333
## 1584       PS                                Telstar 0.0333333333
## 1585      3DS                          Tetris Online 0.1300000000
## 1586      PSP                                    TGL 0.0000000000
## 1587      PSV                                    TGL 0.0000000000
## 1588       DS                  The Adventure Company 0.0600000000
## 1589      Wii                  The Adventure Company 0.0175000000
## 1590       PS                   The Learning Company 0.0200000000
## 1591      3DS                                    THQ 0.0433333333
## 1592       DS                                    THQ 0.0573913043
## 1593      GBA                                    THQ 0.1244545455
## 1594       GC                                    THQ 0.0600000000
## 1595      N64                                    THQ 0.1072222222
## 1596       PC                                    THQ 0.0675862069
## 1597       PS                                    THQ 0.3948148148
## 1598      PS2                                    THQ 0.2239000000
## 1599      PS3                                    THQ 0.2132608696
## 1600      PSP                                    THQ 0.1416666667
## 1601     SNES                                    THQ 0.0000000000
## 1602      Wii                                    THQ 0.0976315789
## 1603     WiiU                                    THQ 0.0700000000
## 1604     X360                                    THQ 0.1703125000
## 1605       XB                                    THQ 0.0437500000
## 1606     2600                            Tigervision 0.0300000000
## 1607       PS                Time Warner Interactive 0.0240000000
## 1608      GBA                                  Titus 0.0075000000
## 1609       GC                                  Titus 0.0300000000
## 1610      N64                                  Titus 0.0750000000
## 1611       PS                                  Titus 0.0466666667
## 1612      PS2                                  Titus 0.1433333333
## 1613     SNES                                  Titus 0.0000000000
## 1614       XB                                  Titus 0.0000000000
## 1615       DS                                 Tivola 0.0233333333
## 1616     SNES                                   TOHO 0.0000000000
## 1617       DS                                  Tommo 0.0000000000
## 1618      Wii                                  Tommo 0.0000000000
## 1619       DS                       Tomy Corporation 0.0000000000
## 1620      GBA                       Tomy Corporation 0.0400000000
## 1621       GC                       Tomy Corporation 0.0340000000
## 1622       PS                       Tomy Corporation 0.0050000000
## 1623      Wii                       Tomy Corporation 0.2400000000
## 1624       PC                    TopWare Interactive 0.0200000000
## 1625      PS3                    TopWare Interactive 0.0400000000
## 1626      PS4                    TopWare Interactive 0.0100000000
## 1627     X360                    TopWare Interactive 0.0300000000
## 1628       DS                             Touchstone 0.0600000000
## 1629       PC                             Touchstone 0.0100000000
## 1630      PS3                             Touchstone 0.2200000000
## 1631     X360                             Touchstone 0.2100000000
## 1632      PS3                              Tradewest 0.0300000000
## 1633      Wii                              Tradewest 0.0200000000
## 1634     X360                              Tradewest 0.0100000000
## 1635       PC                           Trion Worlds 0.0200000000
## 1636      PS3                           Trion Worlds 0.1100000000
## 1637     X360                           Trion Worlds 0.1500000000
## 1638       PC                   Tripwire Interactive 0.0700000000
## 1639      PS3                  Tru Blu Entertainment 0.0250000000
## 1640      PS4                  Tru Blu Entertainment 0.0550000000
## 1641     X360                  Tru Blu Entertainment 0.0200000000
## 1642     XOne                  Tru Blu Entertainment 0.0250000000
## 1643      PS2                               Tryfirst 0.0000000000
## 1644       PS                                    TYO 0.1600000000
## 1645      PSV                              Type-Moon 0.0000000000
## 1646       PS                              U.S. Gold 0.0325000000
## 1647      3DS                                Ubisoft 0.0728571429
## 1648       DC                                Ubisoft 0.0000000000
## 1649       DS                                Ubisoft 0.0951381215
## 1650       GB                                Ubisoft 0.0000000000
## 1651      GBA                                Ubisoft 0.0477358491
## 1652       GC                                Ubisoft 0.0241666667
## 1653      N64                                Ubisoft 0.0466666667
## 1654       PC                                Ubisoft 0.1338157895
## 1655       PS                                Ubisoft 0.1320833333
## 1656      PS2                                Ubisoft 0.1727142857
## 1657      PS3                                Ubisoft 0.3856164384
## 1658      PS4                                Ubisoft 0.6708333333
## 1659      PSP                                Ubisoft 0.0615789474
## 1660      PSV                                Ubisoft 0.1354545455
## 1661      Wii                                Ubisoft 0.2469565217
## 1662     WiiU                                Ubisoft 0.1387500000
## 1663     X360                                Ubisoft 0.2401010101
## 1664       XB                                Ubisoft 0.1524444444
## 1665     XOne                                Ubisoft 0.2340000000
## 1666      3DS                         Ubisoft Annecy 0.1050000000
## 1667      PS3                         Ubisoft Annecy 0.0520000000
## 1668      PSP                         Ubisoft Annecy 0.0150000000
## 1669     X360                         Ubisoft Annecy 0.0433333333
## 1670       PS                            UEP Systems 0.4600000000
## 1671      3DS                        UFO Interactive 0.0000000000
## 1672       DS                        UFO Interactive 0.0000000000
## 1673      Wii                        UFO Interactive 0.0000000000
## 1674      PS4                      UIG Entertainment 0.0100000000
## 1675     2600                            Ultravision 0.0300000000
## 1676     2600                        Universal Gamex 0.0400000000
## 1677      GBA                  Universal Interactive 0.2180000000
## 1678       GC                  Universal Interactive 0.0680000000
## 1679      PS2                  Universal Interactive 0.5437500000
## 1680       XB                  Universal Interactive 0.1900000000
## 1681     2600                                Unknown 0.0200000000
## 1682      3DS                                Unknown 0.0155555556
## 1683       DS                                Unknown 0.0112121212
## 1684      GBA                                Unknown 0.0527272727
## 1685       GC                                Unknown 0.0150000000
## 1686      N64                                Unknown 0.0300000000
## 1687       PC                                Unknown 0.0390909091
## 1688       PS                                Unknown 0.1350000000
## 1689      PS2                                Unknown 0.1541666667
## 1690      PS3                                Unknown 0.0133333333
## 1691      PS4                                Unknown 0.0200000000
## 1692      PSP                                Unknown 0.0023076923
## 1693      PSV                                Unknown 0.0000000000
## 1694      Wii                                Unknown 0.0130769231
## 1695     X360                                Unknown 0.0183333333
## 1696       XB                                Unknown 0.0250000000
## 1697     XOne                                Unknown 0.0000000000
## 1698       DS                           Valcon Games 0.0000000000
## 1699      PS2                           Valcon Games 0.0250000000
## 1700      Wii                           Valcon Games 0.0000000000
## 1701     X360                           Valcon Games 0.0150000000
## 1702       DS                               ValuSoft 0.0000000000
## 1703       PC                               ValuSoft 0.0000000000
## 1704      PS2                               ValuSoft 0.0900000000
## 1705      PS3                                  Valve 0.6300000000
## 1706       PC                         Valve Software 0.3200000000
## 1707     X360                         Valve Software 0.5100000000
## 1708     SNES                                    Vap 0.0000000000
## 1709      N64                  Vatical Entertainment 0.0100000000
## 1710       PS                  Vatical Entertainment 0.0600000000
## 1711      N64                              Vic Tokai 0.0300000000
## 1712       PS                              Vic Tokai 0.0500000000
## 1713       GB                     Victor Interactive 0.0000000000
## 1714      GBA                     Victor Interactive 0.0100000000
## 1715       PS                     Victor Interactive 0.0233333333
## 1716      PS2                     Victor Interactive 0.0000000000
## 1717      SAT                     Victor Interactive 0.0000000000
## 1718     SNES                     Victor Interactive 0.0000000000
## 1719      N64                           Video System 0.5000000000
## 1720       PS                           Video System 0.0400000000
## 1721     SNES                           Video System 0.0000000000
## 1722      PS3                                  Views 0.0000000000
## 1723      PSP                                  Views 0.0000000000
## 1724       DS                          Vir2L Studios 0.0000000000
## 1725      Wii                          Vir2L Studios 0.0100000000
## 1726       DC                     Virgin Interactive 0.0000000000
## 1727       GC                     Virgin Interactive 0.0250000000
## 1728      GEN                     Virgin Interactive 0.3700000000
## 1729      N64                     Virgin Interactive 0.0350000000
## 1730       PC                     Virgin Interactive 0.8800000000
## 1731       PS                     Virgin Interactive 0.1794871795
## 1732      PS2                     Virgin Interactive 0.2383333333
## 1733      SAT                     Virgin Interactive 0.0000000000
## 1734     SNES                     Virgin Interactive 0.3900000000
## 1735       XB                     Virgin Interactive 0.0400000000
## 1736      Wii                     Virtual Play Games 0.0000000000
## 1737       PC                                  Visco 0.0000000000
## 1738       DS                          Vivendi Games 0.0207692308
## 1739      GBA                          Vivendi Games 0.1430434783
## 1740       GC                          Vivendi Games 0.0420000000
## 1741       PC                          Vivendi Games 0.0234782609
## 1742       PS                          Vivendi Games 0.0950000000
## 1743      PS2                          Vivendi Games 0.2358064516
## 1744      PS3                          Vivendi Games 0.1420000000
## 1745      PSP                          Vivendi Games 0.0812500000
## 1746      Wii                          Vivendi Games 0.0355555556
## 1747     X360                          Vivendi Games 0.0644444444
## 1748       XB                          Vivendi Games 0.0596153846
## 1749      GBA                                Wanadoo 0.0000000000
## 1750       GC                                Wanadoo 0.0000000000
## 1751      PS2                                Wanadoo 0.1050000000
## 1752       XB                                Wanadoo 0.0000000000
## 1753       DC                                Warashi 0.0000000000
## 1754       PC                          Wargaming.net 0.2300000000
## 1755      3DS Warner Bros. Interactive Entertainment 0.1316666667
## 1756       DS Warner Bros. Interactive Entertainment 0.1712500000
## 1757       GC Warner Bros. Interactive Entertainment 0.0300000000
## 1758       PC Warner Bros. Interactive Entertainment 0.0810000000
## 1759      PS2 Warner Bros. Interactive Entertainment 0.0787500000
## 1760      PS3 Warner Bros. Interactive Entertainment 0.3581250000
## 1761      PS4 Warner Bros. Interactive Entertainment 0.6035714286
## 1762      PSP Warner Bros. Interactive Entertainment 0.2080000000
## 1763      PSV Warner Bros. Interactive Entertainment 0.1537500000
## 1764      Wii Warner Bros. Interactive Entertainment 0.1866666667
## 1765     WiiU Warner Bros. Interactive Entertainment 0.1280000000
## 1766     X360 Warner Bros. Interactive Entertainment 0.3008823529
## 1767     XOne Warner Bros. Interactive Entertainment 0.2269230769
## 1768      SAT                                   Warp 0.0000000000
## 1769      3DS                WayForward Technologies 0.0000000000
## 1770       PC                       Westwood Studios 0.0000000000
## 1771       DS                White Park Bay Software 0.0100000000
## 1772     2600                     Wizard Video Games 0.0300000000
## 1773      PS2                      Xicat Interactive 0.0400000000
## 1774       XB                      Xicat Interactive 0.0100000000
## 1775       PS                     Xing Entertainment 0.0300000000
## 1776      PS2                                Xplosiv 0.0950000000
## 1777      PSP                                Xplosiv 0.0200000000
## 1778      Wii                                Xplosiv 0.2000000000
## 1779      GBA                               XS Games 0.0000000000
## 1780       PS                               XS Games 0.0900000000
## 1781      PS2                               XS Games 0.0233333333
## 1782      Wii                               XS Games 0.0000000000
## 1783     X360                               XS Games 0.0000000000
## 1784       XB                               XS Games 0.0100000000
## 1785      3DS                            Xseed Games 0.0000000000
## 1786      PS4                            Xseed Games 0.0200000000
## 1787      PSV                            Xseed Games 0.0100000000
## 1788      3DS                       Yacht Club Games 0.0400000000
## 1789      PS4                       Yacht Club Games 0.0300000000
## 1790     WiiU                       Yacht Club Games 0.0400000000
## 1791      PS2                   Yamasa Entertainment 0.0000000000
## 1792      PSP                   Yamasa Entertainment 0.0000000000
## 1793      PS2                                   Yeti 0.0000000000
## 1794      PS4                                   Yeti 0.0000000000
## 1795      PSP                                   Yeti 0.0000000000
## 1796     X360                                   Yeti 0.0000000000
## 1797      PS2                                 Yuke's 0.0033333333
## 1798      SAT                                Yumedia 0.0000000000
## 1799      PSP                                 Zenrin 0.0000000000
## 1800       DS                 Zoo Digital Publishing 0.0015384615
## 1801      GBA                 Zoo Digital Publishing 0.0286842105
## 1802       GC                 Zoo Digital Publishing 0.0000000000
## 1803      PS2                 Zoo Digital Publishing 0.0909090909
## 1804      Wii                 Zoo Digital Publishing 0.0016666667
## 1805       XB                 Zoo Digital Publishing 0.0290000000
## 1806       DS                              Zoo Games 0.0000000000
## 1807      Wii                              Zoo Games 0.0000000000
## 1808     X360                              Zoo Games 0.0000000000
## 1809       DS                            Zushi Games 0.0042857143
## 1810      PSP                            Zushi Games 0.0000000000
## 1811      Wii                            Zushi Games 0.0012500000
## 1812     X360                            Zushi Games 0.0050000000
aggregate(EU_Sales,by=list(Year = Year,Genre = Genre),mean)
##     Year        Genre            x
## 1   1980       Action 0.0200000000
## 2   1981       Action 0.0324000000
## 3   1982       Action 0.0211111111
## 4   1983       Action 0.0242857143
## 5   1984       Action 0.1900000000
## 6   1985       Action 0.1900000000
## 7   1986       Action 0.2766666667
## 8   1987       Action 0.0300000000
## 9   1988       Action 0.0800000000
## 10  1989       Action 0.2300000000
## 11  1990       Action 0.3233333333
## 12  1991       Action 0.2160000000
## 13  1992       Action 0.9600000000
## 14  1993       Action 0.0366666667
## 15  1994       Action 0.0300000000
## 16  1995       Action 0.0562500000
## 17  1996       Action 0.2940000000
## 18  1997       Action 0.3180645161
## 19  1998       Action 0.2704545455
## 20  1999       Action 0.2170000000
## 21  2000       Action 0.2463636364
## 22  2001       Action 0.2873134328
## 23  2002       Action 0.2160800000
## 24  2003       Action 0.1450000000
## 25  2004       Action 0.1282400000
## 26  2005       Action 0.1143229167
## 27  2006       Action 0.0830978261
## 28  2007       Action 0.1225592417
## 29  2008       Action 0.1786877828
## 30  2009       Action 0.1441176471
## 31  2010       Action 0.1581858407
## 32  2011       Action 0.1717154812
## 33  2012       Action 0.1608270677
## 34  2013       Action 0.3054729730
## 35  2014       Action 0.2176344086
## 36  2015       Action 0.0966666667
## 37  2016       Action 0.0534453782
## 38  2017       Action 0.0000000000
## 39   N/A       Action 0.1352380952
## 40  1983    Adventure 0.0200000000
## 41  1987    Adventure 0.5000000000
## 42  1991    Adventure 0.1550000000
## 43  1992    Adventure 0.7025000000
## 44  1993    Adventure 0.0000000000
## 45  1994    Adventure 0.7025000000
## 46  1995    Adventure 0.0007692308
## 47  1996    Adventure 0.0352941176
## 48  1997    Adventure 0.0957142857
## 49  1998    Adventure 0.1095652174
## 50  1999    Adventure 0.1463157895
## 51  2000    Adventure 0.0431250000
## 52  2001    Adventure 0.1747619048
## 53  2002    Adventure 0.0597619048
## 54  2003    Adventure 0.0475000000
## 55  2004    Adventure 0.0546153846
## 56  2005    Adventure 0.0488095238
## 57  2006    Adventure 0.0371830986
## 58  2007    Adventure 0.0661904762
## 59  2008    Adventure 0.0338554217
## 60  2009    Adventure 0.0394326241
## 61  2010    Adventure 0.0340259740
## 62  2011    Adventure 0.0434259259
## 63  2012    Adventure 0.0225862069
## 64  2013    Adventure 0.0328333333
## 65  2014    Adventure 0.0281333333
## 66  2015    Adventure 0.0625925926
## 67  2016    Adventure 0.0114705882
## 68   N/A    Adventure 0.0340000000
## 69  1980     Fighting 0.0400000000
## 70  1985     Fighting 0.0000000000
## 71  1987     Fighting 0.3250000000
## 72  1991     Fighting 0.0000000000
## 73  1992     Fighting 0.3257142857
## 74  1993     Fighting 0.0500000000
## 75  1994     Fighting 0.0445454545
## 76  1995     Fighting 0.0979310345
## 77  1996     Fighting 0.1350000000
## 78  1997     Fighting 0.0946428571
## 79  1998     Fighting 0.1902439024
## 80  1999     Fighting 0.1104166667
## 81  2000     Fighting 0.2175862069
## 82  2001     Fighting 0.2777777778
## 83  2002     Fighting 0.1150000000
## 84  2003     Fighting 0.1313636364
## 85  2004     Fighting 0.1056410256
## 86  2005     Fighting 0.1039534884
## 87  2006     Fighting 0.0821818182
## 88  2007     Fighting 0.0694000000
## 89  2008     Fighting 0.1257894737
## 90  2009     Fighting 0.1432075472
## 91  2010     Fighting 0.1055000000
## 92  2011     Fighting 0.1134000000
## 93  2012     Fighting 0.0837931034
## 94  2013     Fighting 0.0975000000
## 95  2014     Fighting 0.1334782609
## 96  2015     Fighting 0.1133333333
## 97  2016     Fighting 0.0821428571
## 98   N/A     Fighting 0.1100000000
## 99  1980         Misc 0.0375000000
## 100 1982         Misc 0.0500000000
## 101 1983         Misc 0.0000000000
## 102 1984         Misc 0.0000000000
## 103 1989         Misc 0.0000000000
## 104 1991         Misc 0.0000000000
## 105 1992         Misc 0.3550000000
## 106 1993         Misc 0.0000000000
## 107 1994         Misc 0.1350000000
## 108 1995         Misc 0.0709090909
## 109 1996         Misc 0.1195652174
## 110 1997         Misc 0.1016666667
## 111 1998         Misc 0.1322727273
## 112 1999         Misc 0.1492000000
## 113 2000         Misc 0.2455000000
## 114 2001         Misc 0.1634615385
## 115 2002         Misc 0.0791111111
## 116 2003         Misc 0.1407547170
## 117 2004         Misc 0.1110588235
## 118 2005         Misc 0.1766956522
## 119 2006         Misc 0.1775229358
## 120 2007         Misc 0.1388741722
## 121 2008         Misc 0.0992452830
## 122 2009         Misc 0.0997101449
## 123 2010         Misc 0.1348756219
## 124 2011         Misc 0.0765217391
## 125 2012         Misc 0.1744736842
## 126 2013         Misc 0.1785714286
## 127 2014         Misc 0.2163414634
## 128 2015         Misc 0.0951282051
## 129 2016         Misc 0.0050000000
## 130  N/A         Misc 0.0744827586
## 131 1981     Platform 0.1233333333
## 132 1982     Platform 0.0560000000
## 133 1983     Platform 0.0860000000
## 134 1984     Platform 0.0000000000
## 135 1985     Platform 0.9425000000
## 136 1986     Platform 0.0300000000
## 137 1987     Platform 0.0700000000
## 138 1988     Platform 1.2475000000
## 139 1989     Platform 1.0266666667
## 140 1990     Platform 1.3300000000
## 141 1991     Platform 0.1983333333
## 142 1992     Platform 0.3416666667
## 143 1993     Platform 0.2872727273
## 144 1994     Platform 0.5209090909
## 145 1995     Platform 0.2476923077
## 146 1996     Platform 0.4878571429
## 147 1997     Platform 0.3583333333
## 148 1998     Platform 0.3276000000
## 149 1999     Platform 0.2966666667
## 150 2000     Platform 0.1933333333
## 151 2001     Platform 0.2702325581
## 152 2002     Platform 0.1597402597
## 153 2003     Platform 0.1436781609
## 154 2004     Platform 0.1825757576
## 155 2005     Platform 0.0648192771
## 156 2006     Platform 0.2216666667
## 157 2007     Platform 0.2326190476
## 158 2008     Platform 0.1738709677
## 159 2009     Platform 0.3993103448
## 160 2010     Platform 0.2758064516
## 161 2011     Platform 0.2394594595
## 162 2012     Platform 0.4900000000
## 163 2013     Platform 0.2456756757
## 164 2014     Platform 0.3630000000
## 165 2015     Platform 0.1292857143
## 166 2016     Platform 0.0870000000
## 167  N/A     Platform 0.0960000000
## 168 1981       Puzzle 0.0650000000
## 169 1982       Puzzle 0.1933333333
## 170 1983       Puzzle 0.0500000000
## 171 1984       Puzzle 0.0600000000
## 172 1985       Puzzle 0.0475000000
## 173 1988       Puzzle 0.6900000000
## 174 1989       Puzzle 0.7220000000
## 175 1990       Puzzle 0.4000000000
## 176 1991       Puzzle 0.0400000000
## 177 1992       Puzzle 0.1040000000
## 178 1993       Puzzle 0.0433333333
## 179 1994       Puzzle 0.0000000000
## 180 1995       Puzzle 0.0108333333
## 181 1996       Puzzle 0.0322222222
## 182 1997       Puzzle 0.0378571429
## 183 1998       Puzzle 0.1223076923
## 184 1999       Puzzle 0.0750000000
## 185 2000       Puzzle 0.0775000000
## 186 2001       Puzzle 0.1226666667
## 187 2002       Puzzle 0.0705000000
## 188 2003       Puzzle 0.0350000000
## 189 2004       Puzzle 0.0592000000
## 190 2005       Puzzle 0.1839393939
## 191 2006       Puzzle 0.0497674419
## 192 2007       Puzzle 0.1333333333
## 193 2008       Puzzle 0.0801562500
## 194 2009       Puzzle 0.0713924051
## 195 2010       Puzzle 0.0711111111
## 196 2011       Puzzle 0.0509302326
## 197 2012       Puzzle 0.0381818182
## 198 2013       Puzzle 0.1600000000
## 199 2014       Puzzle 0.0475000000
## 200 2015       Puzzle 0.0183333333
## 201  N/A       Puzzle 0.0227272727
## 202 1981       Racing 0.0300000000
## 203 1982       Racing 0.0450000000
## 204 1984       Racing 0.1633333333
## 205 1986       Racing 0.3700000000
## 206 1988       Racing 0.3800000000
## 207 1990       Racing 0.6000000000
## 208 1991       Racing 0.3700000000
## 209 1992       Racing 0.6200000000
## 210 1993       Racing 0.0000000000
## 211 1994       Racing 0.0000000000
## 212 1995       Racing 0.1300000000
## 213 1996       Racing 0.2359090909
## 214 1997       Racing 0.3005555556
## 215 1998       Racing 0.1963265306
## 216 1999       Racing 0.2267346939
## 217 2000       Racing 0.1511627907
## 218 2001       Racing 0.2519718310
## 219 2002       Racing 0.0863106796
## 220 2003       Racing 0.1580733945
## 221 2004       Racing 0.1756338028
## 222 2005       Racing 0.2058441558
## 223 2006       Racing 0.1186666667
## 224 2007       Racing 0.1531395349
## 225 2008       Racing 0.2965853659
## 226 2009       Racing 0.1560714286
## 227 2010       Racing 0.2547368421
## 228 2011       Racing 0.2080000000
## 229 2012       Racing 0.2526666667
## 230 2013       Racing 0.3950000000
## 231 2014       Racing 0.2851851852
## 232 2015       Racing 0.2494736842
## 233 2016       Racing 0.0570000000
## 234  N/A       Racing 0.0900000000
## 235 1986 Role-Playing 0.0000000000
## 236 1987 Role-Playing 0.0000000000
## 237 1988 Role-Playing 0.0000000000
## 238 1989 Role-Playing 0.0000000000
## 239 1990 Role-Playing 0.0000000000
## 240 1991 Role-Playing 0.0180000000
## 241 1992 Role-Playing 0.0000000000
## 242 1993 Role-Playing 0.0077777778
## 243 1994 Role-Playing 0.0000000000
## 244 1995 Role-Playing 0.0125000000
## 245 1996 Role-Playing 0.3942857143
## 246 1997 Role-Playing 0.1495652174
## 247 1998 Role-Playing 0.2476923077
## 248 1999 Role-Playing 0.3384848485
## 249 2000 Role-Playing 0.1448275862
## 250 2001 Role-Playing 0.1009756098
## 251 2002 Role-Playing 0.1707272727
## 252 2003 Role-Playing 0.1187500000
## 253 2004 Role-Playing 0.2788333333
## 254 2005 Role-Playing 0.0698591549
## 255 2006 Role-Playing 0.0738181818
## 256 2007 Role-Playing 0.0812621359
## 257 2008 Role-Playing 0.1008928571
## 258 2009 Role-Playing 0.0811650485
## 259 2010 Role-Playing 0.1330097087
## 260 2011 Role-Playing 0.1484210526
## 261 2012 Role-Playing 0.1534615385
## 262 2013 Role-Playing 0.1259154930
## 263 2014 Role-Playing 0.1235164835
## 264 2015 Role-Playing 0.1605128205
## 265 2016 Role-Playing 0.0322500000
## 266 2017 Role-Playing 0.0000000000
## 267  N/A Role-Playing 0.0282352941
## 268 1980      Shooter 0.2150000000
## 269 1981      Shooter 0.0560000000
## 270 1982      Shooter 0.0420000000
## 271 1983      Shooter 0.0300000000
## 272 1984      Shooter 0.2833333333
## 273 1985      Shooter 0.1400000000
## 274 1986      Shooter 0.0400000000
## 275 1987      Shooter 0.0150000000
## 276 1988      Shooter 0.0300000000
## 277 1989      Shooter 0.3900000000
## 278 1991      Shooter 0.1266666667
## 279 1992      Shooter 0.0000000000
## 280 1993      Shooter 0.2550000000
## 281 1994      Shooter 0.2336363636
## 282 1995      Shooter 0.0165517241
## 283 1996      Shooter 0.0930434783
## 284 1997      Shooter 0.1666666667
## 285 1998      Shooter 0.1460869565
## 286 1999      Shooter 0.2331250000
## 287 2000      Shooter 0.1085000000
## 288 2001      Shooter 0.2083333333
## 289 2002      Shooter 0.1896202532
## 290 2003      Shooter 0.1169863014
## 291 2004      Shooter 0.1448863636
## 292 2005      Shooter 0.0959375000
## 293 2006      Shooter 0.1276811594
## 294 2007      Shooter 0.2598823529
## 295 2008      Shooter 0.1962650602
## 296 2009      Shooter 0.2326373626
## 297 2010      Shooter 0.2950617284
## 298 2011      Shooter 0.3756382979
## 299 2012      Shooter 0.5487500000
## 300 2013      Shooter 0.3923728814
## 301 2014      Shooter 0.5491489362
## 302 2015      Shooter 0.7126470588
## 303 2016      Shooter 0.2406250000
## 304  N/A      Shooter 0.1007142857
## 305 1981   Simulation 0.0200000000
## 306 1985   Simulation 0.0300000000
## 307 1988   Simulation 0.0200000000
## 308 1990   Simulation 0.1700000000
## 309 1991   Simulation 0.1350000000
## 310 1992   Simulation 0.8400000000
## 311 1993   Simulation 0.0000000000
## 312 1994   Simulation 0.0328571429
## 313 1995   Simulation 0.0450000000
## 314 1996   Simulation 0.2346153846
## 315 1997   Simulation 0.0678947368
## 316 1998   Simulation 0.0962500000
## 317 1999   Simulation 0.0665000000
## 318 2000   Simulation 0.0513333333
## 319 2001   Simulation 0.1553571429
## 320 2002   Simulation 0.1857894737
## 321 2003   Simulation 0.1848571429
## 322 2004   Simulation 0.1318518519
## 323 2005   Simulation 0.4328947368
## 324 2006   Simulation 0.1072413793
## 325 2007   Simulation 0.1558888889
## 326 2008   Simulation 0.1018487395
## 327 2009   Simulation 0.0946341463
## 328 2010   Simulation 0.0851219512
## 329 2011   Simulation 0.0930357143
## 330 2012   Simulation 0.2011111111
## 331 2013   Simulation 0.1977777778
## 332 2014   Simulation 0.3127272727
## 333 2015   Simulation 0.1673333333
## 334 2016   Simulation 0.0100000000
## 335 2020   Simulation 0.0000000000
## 336  N/A   Simulation 0.0112500000
## 337 1980       Sports 0.0300000000
## 338 1981       Sports 0.0100000000
## 339 1982       Sports 0.0300000000
## 340 1983       Sports 0.1000000000
## 341 1984       Sports 0.1950000000
## 342 1985       Sports 0.2300000000
## 343 1986       Sports 0.1566666667
## 344 1987       Sports 0.0075000000
## 345 1988       Sports 0.1600000000
## 346 1989       Sports 0.3000000000
## 347 1990       Sports 0.1666666667
## 348 1991       Sports 0.0142857143
## 349 1992       Sports 0.0625000000
## 350 1993       Sports 0.0011111111
## 351 1994       Sports 0.0250000000
## 352 1995       Sports 0.0441379310
## 353 1996       Sports 0.0726923077
## 354 1997       Sports 0.1189130435
## 355 1998       Sports 0.1458571429
## 356 1999       Sports 0.1133870968
## 357 2000       Sports 0.1206172840
## 358 2001       Sports 0.1472916667
## 359 2002       Sports 0.1023404255
## 360 2003       Sports 0.1276800000
## 361 2004       Sports 0.1401886792
## 362 2005       Sports 0.1155737705
## 363 2006       Sports 0.2913043478
## 364 2007       Sports 0.1589221557
## 365 2008       Sports 0.1348000000
## 366 2009       Sports 0.2291847826
## 367 2010       Sports 0.1561827957
## 368 2011       Sports 0.1627868852
## 369 2012       Sports 0.1635185185
## 370 2013       Sports 0.2860377358
## 371 2014       Sports 0.3400000000
## 372 2015       Sports 0.2691935484
## 373 2016       Sports 0.1936842105
## 374  N/A       Sports 0.1311904762
## 375 1991     Strategy 0.0000000000
## 376 1992     Strategy 0.0166666667
## 377 1993     Strategy 0.0000000000
## 378 1994     Strategy 0.1800000000
## 379 1995     Strategy 0.1742857143
## 380 1996     Strategy 0.1383333333
## 381 1997     Strategy 0.0357142857
## 382 1998     Strategy 0.0454285714
## 383 1999     Strategy 0.1796153846
## 384 2000     Strategy 0.0637500000
## 385 2001     Strategy 0.0620000000
## 386 2002     Strategy 0.0322727273
## 387 2003     Strategy 0.0659459459
## 388 2004     Strategy 0.0531250000
## 389 2005     Strategy 0.0389655172
## 390 2006     Strategy 0.0257142857
## 391 2007     Strategy 0.0279104478
## 392 2008     Strategy 0.0836000000
## 393 2009     Strategy 0.0758461538
## 394 2010     Strategy 0.0850943396
## 395 2011     Strategy 0.0632608696
## 396 2012     Strategy 0.0660000000
## 397 2013     Strategy 0.1300000000
## 398 2014     Strategy 0.0275000000
## 399 2015     Strategy 0.0576470588
## 400 2016     Strategy 0.0320000000
## 401  N/A     Strategy 0.0400000000
aggregate(EU_Sales,by=list(Year = Year,Publisher = Publisher),mean)
##      Year                              Publisher            x
## 1    2006                        10TACLE Studios 0.0100000000
## 2    2007                        10TACLE Studios 0.0150000000
## 3    2009                             1C Company 0.0100000000
## 4    2011                             1C Company 0.0300000000
## 5    1981           20th Century Fox Video Games 0.0233333333
## 6    1982           20th Century Fox Video Games 0.0150000000
## 7    2008                                 2D Boy 0.0300000000
## 8    1998                                    3DO 0.0450000000
## 9    1999                                    3DO 0.1600000000
## 10   2000                                    3DO 0.1040000000
## 11   2001                                    3DO 0.0509090909
## 12   2002                                    3DO 0.0575000000
## 13   2003                                    3DO 0.0533333333
## 14   2009                                49Games 0.0400000000
## 15   2002                              505 Games 0.0200000000
## 16   2003                              505 Games 0.0400000000
## 17   2004                              505 Games 0.0300000000
## 18   2005                              505 Games 0.0130769231
## 19   2006                              505 Games 0.0954545455
## 20   2007                              505 Games 0.1003571429
## 21   2008                              505 Games 0.0230769231
## 22   2009                              505 Games 0.0630000000
## 23   2010                              505 Games 0.2009090909
## 24   2011                              505 Games 0.0428571429
## 25   2012                              505 Games 0.1337500000
## 26   2013                              505 Games 0.1583333333
## 27   2014                              505 Games 0.1366666667
## 28   2015                              505 Games 0.0750000000
## 29   2016                              505 Games 0.0485714286
## 30   2008                                    5pb 0.0000000000
## 31   2009                                    5pb 0.0000000000
## 32   2010                                    5pb 0.0000000000
## 33   2011                                    5pb 0.0000000000
## 34   2012                                    5pb 0.0000000000
## 35   2013                                    5pb 0.0000000000
## 36   2014                                    5pb 0.0000000000
## 37   2015                                    5pb 0.0000000000
## 38   2016                                    5pb 0.0000000000
## 39   2010                               7G//AMES 0.0100000000
## 40   2011                               7G//AMES 0.0166666667
## 41   1999                             989 Sports 0.1400000000
## 42   1997                            989 Studios 0.0950000000
## 43   1998                            989 Studios 0.2416666667
## 44   1999                            989 Studios 0.2766666667
## 45   2010                               Abylight 0.0000000000
## 46   1993                  Acclaim Entertainment 0.3900000000
## 47   1994                  Acclaim Entertainment 0.1285714286
## 48   1995                  Acclaim Entertainment 0.0454545455
## 49   1996                  Acclaim Entertainment 0.0876923077
## 50   1997                  Acclaim Entertainment 0.0920000000
## 51   1998                  Acclaim Entertainment 0.1282608696
## 52   1999                  Acclaim Entertainment 0.0633333333
## 53   2000                  Acclaim Entertainment 0.1040000000
## 54   2001                  Acclaim Entertainment 0.1479166667
## 55   2002                  Acclaim Entertainment 0.0718181818
## 56   2003                  Acclaim Entertainment 0.0492857143
## 57   2004                  Acclaim Entertainment 0.0471428571
## 58   1996                               Accolade 0.0700000000
## 59   1997                               Accolade 0.2000000000
## 60   1999                               Accolade 0.0700000000
## 61   2009                            Ackkstudios 0.0000000000
## 62   2010                            Ackkstudios 0.0400000000
## 63   2011                            Ackkstudios 0.0000000000
## 64   2012                            Ackkstudios 0.0000000000
## 65   2006                                Acquire 0.0000000000
## 66   2008                                Acquire 0.0000000000
## 67   2009                                Acquire 0.0000000000
## 68   2010                                Acquire 0.0000000000
## 69   2011                                Acquire 0.0000000000
## 70   2012                                Acquire 0.0000000000
## 71   2014                                Acquire 0.0000000000
## 72   1980                             Activision 0.0360000000
## 73   1981                             Activision 0.0766666667
## 74   1982                             Activision 0.0275000000
## 75   1983                             Activision 0.0366666667
## 76   1984                             Activision 0.0100000000
## 77   1985                             Activision 0.0300000000
## 78   1987                             Activision 0.0300000000
## 79   1988                             Activision 0.0200000000
## 80   1989                             Activision 0.0200000000
## 81   1994                             Activision 1.0800000000
## 82   1995                             Activision 2.2700000000
## 83   1996                             Activision 0.5566666667
## 84   1997                             Activision 0.2666666667
## 85   1998                             Activision 0.1942857143
## 86   1999                             Activision 0.2587500000
## 87   2000                             Activision 0.3461538462
## 88   2001                             Activision 0.2691304348
## 89   2002                             Activision 0.1550000000
## 90   2003                             Activision 0.1882352941
## 91   2004                             Activision 0.3455319149
## 92   2005                             Activision 0.1111428571
## 93   2006                             Activision 0.0512000000
## 94   2007                             Activision 0.1797333333
## 95   2008                             Activision 0.1839772727
## 96   2009                             Activision 0.1808264463
## 97   2010                             Activision 0.1896629213
## 98   2011                             Activision 0.2237333333
## 99   2012                             Activision 0.4630952381
## 100  2013                             Activision 0.3894736842
## 101  2014                             Activision 0.3900000000
## 102  2015                             Activision 0.3438461538
## 103  2016                             Activision 0.0992857143
## 104   N/A                             Activision 0.2011111111
## 105  2014                    Activision Blizzard 0.3600000000
## 106  2001                       Activision Value 0.0800000000
## 107  2002                       Activision Value 0.0200000000
## 108  2003                       Activision Value 0.1700000000
## 109  2004                       Activision Value 0.0100000000
## 110  2005                       Activision Value 0.0100000000
## 111  2006                       Activision Value 0.0000000000
## 112  2007                       Activision Value 0.0475000000
## 113  2008                       Activision Value 0.0200000000
## 114  2009                       Activision Value 0.0071428571
## 115  1996                       Adeline Software 0.0700000000
## 116  2010                               Aerosoft 0.0000000000
## 117  2013                               Aerosoft 0.0200000000
## 118  2004                 Agatsuma Entertainment 0.0200000000
## 119  2012                 Agatsuma Entertainment 0.0000000000
## 120  2013                 Agatsuma Entertainment 0.0000000000
## 121  1997                                 Agetec 0.0100000000
## 122  1998                                 Agetec 0.0250000000
## 123  2002                                 Agetec 0.2150000000
## 124  2003                                 Agetec 0.0450000000
## 125  2009                                 Agetec 0.0000000000
## 126  2008                            Aksys Games 0.0000000000
## 127  2014                            Aksys Games 0.0050000000
## 128  2015                            Aksys Games 0.0000000000
## 129  2016                            Aksys Games 0.0000000000
## 130  2009                   Alawar Entertainment 0.0300000000
## 131  2015                   Alawar Entertainment 0.0100000000
## 132  2006                              Alchemist 0.2300000000
## 133  2007                              Alchemist 0.0000000000
## 134  2008                              Alchemist 0.0000000000
## 135  2009                              Alchemist 0.0000000000
## 136  2010                              Alchemist 0.0000000000
## 137  2011                              Alchemist 0.0000000000
## 138  2012                              Alchemist 0.0000000000
## 139  2013                              Alchemist 0.0000000000
## 140  2015                              Alchemist 0.0000000000
## 141  2010                   Alternative Software 0.0600000000
## 142  2015                   Alternative Software 0.0200000000
## 143  2016                   Alternative Software 0.0250000000
## 144  2001                                 Altron 0.0200000000
## 145  2009                                 Alvion 0.0000000000
## 146  2010                                 Alvion 0.0000000000
## 147  1996                     American Softworks 0.0900000000
## 148  1991                          Angel Studios 0.0000000000
## 149  1994                          Angel Studios 0.0000000000
## 150  1995                          Angel Studios 0.0000000000
## 151  1982                        Answer Software 0.0300000000
## 152  2007                         AQ Interactive 0.0500000000
## 153  2008                         AQ Interactive 0.0100000000
## 154  2009                         AQ Interactive 0.0000000000
## 155  1999                              Aqua Plus 0.0000000000
## 156  2006                              Aqua Plus 0.0000000000
## 157  2007                              Aqua Plus 0.0000000000
## 158  2008                              Aqua Plus 0.0000000000
## 159  2009                              Aqua Plus 0.0000000000
## 160  2010                              Aqua Plus 0.0000000000
## 161  2011                              Aqua Plus 0.0000000000
## 162  2012                              Aqua Plus 0.0000000000
## 163  2013                              Aqua Plus 0.0000000000
## 164  2015                              Aqua Plus 0.0000000000
## 165  2016                              Aqua Plus 0.0000000000
## 166  1997                                  Aques 0.0000000000
## 167  2008                       Arc System Works 0.0000000000
## 168  2009                       Arc System Works 0.0000000000
## 169  2010                       Arc System Works 0.0000000000
## 170  2012                       Arc System Works 0.0000000000
## 171  2013                       Arc System Works 0.0000000000
## 172  2014                       Arc System Works 0.0000000000
## 173  2015                       Arc System Works 0.0000000000
## 174  1992                    Arena Entertainment 0.4400000000
## 175  2006                                   Aria 0.0000000000
## 176  2002                                  Arika 0.0100000000
## 177  2004                                  Arika 0.0200000000
## 178  2008                                  Arika 0.0000000000
## 179  1994                                ArtDink 0.0000000000
## 180  1996                                ArtDink 0.0250000000
## 181  1998                                ArtDink 0.0000000000
## 182  2001                                ArtDink 0.0000000000
## 183  2009                                ArtDink 0.0000000000
## 184  2010                                ArtDink 0.0000000000
## 185  2014                                ArtDink 0.0000000000
## 186  1999                             Aruze Corp 0.0000000000
## 187  2000                             Aruze Corp 0.0000000000
## 188  1996                              ASC Games 0.5000000000
## 189  1998                              ASC Games 0.2500000000
## 190  1999                              ASC Games 0.0200000000
## 191  2012                  Ascaron Entertainment 0.0100000000
## 192  2004             Ascaron Entertainment GmbH 0.0300000000
## 193  2008             Ascaron Entertainment GmbH 0.0300000000
## 194  1994                    ASCII Entertainment 0.0000000000
## 195  1995                    ASCII Entertainment 0.0000000000
## 196  1996                    ASCII Entertainment 0.0100000000
## 197  1997                    ASCII Entertainment 0.0200000000
## 198  1998                    ASCII Entertainment 0.0650000000
## 199  1999                    ASCII Entertainment 0.0466666667
## 200  2001                    ASCII Entertainment 0.0000000000
## 201  2008                      ASCII Media Works 0.0000000000
## 202  2009                      ASCII Media Works 0.0000000000
## 203  2010                      ASCII Media Works 0.0000000000
## 204  2011                      ASCII Media Works 0.0000000000
## 205  2014                      ASCII Media Works 0.0000000000
## 206  2010                                 Asgard 0.0000000000
## 207  2011                                 Asgard 0.0000000000
## 208  2012                                 Asgard 0.0000000000
## 209  2013                                 Asgard 0.0000000000
## 210  2015                                 Asgard 0.0000000000
## 211  1996                                    ASK 0.0000000000
## 212  1996                Asmik Ace Entertainment 0.0000000000
## 213  2000                Asmik Ace Entertainment 0.0000000000
## 214  2006                Asmik Ace Entertainment 0.0000000000
## 215  1994                             Asmik Corp 0.0000000000
## 216  1995                             Asmik Corp 0.0000000000
## 217  2003                                  Aspyr 0.0100000000
## 218  2007                                  Aspyr 0.0000000000
## 219  2008                                  Aspyr 0.0000000000
## 220  2009                                  Aspyr 0.0075000000
## 221  2009                               Astragon 0.0100000000
## 222  2010                               Astragon 0.0900000000
## 223  2011                               Astragon 0.0200000000
## 224  2016                               Astragon 0.0200000000
## 225  2010                   Asylum Entertainment 0.0740000000
## 226  2011                   Asylum Entertainment 0.0600000000
## 227  1980                                  Atari 0.1225000000
## 228  1981                                  Atari 0.0427272727
## 229  1982                                  Atari 0.0792857143
## 230  1983                                  Atari 0.0333333333
## 231  1986                                  Atari 0.0200000000
## 232  1987                                  Atari 0.0075000000
## 233  1989                                  Atari 0.0100000000
## 234  1998                                  Atari 0.2800000000
## 235  1999                                  Atari 0.1433333333
## 236  2000                                  Atari 1.0650000000
## 237  2001                                  Atari 0.2088888889
## 238  2002                                  Atari 0.0908510638
## 239  2003                                  Atari 0.1125000000
## 240  2004                                  Atari 0.0866666667
## 241  2005                                  Atari 0.0294444444
## 242  2006                                  Atari 0.0204347826
## 243  2007                                  Atari 0.0316129032
## 244  2008                                  Atari 0.0743750000
## 245  2009                                  Atari 0.0470000000
## 246  2010                                  Atari 0.0018181818
## 247  2011                                  Atari 0.0000000000
## 248  2012                                  Atari 0.0000000000
## 249  2016                                  Atari 0.0200000000
## 250   N/A                                  Atari 0.0825000000
## 251  1999                                 Athena 0.0000000000
## 252  2001                                 Athena 0.0000000000
## 253  1994                                  Atlus 0.0000000000
## 254  1995                                  Atlus 0.0000000000
## 255  1996                                  Atlus 0.0200000000
## 256  1997                                  Atlus 0.0150000000
## 257  1998                                  Atlus 0.0350000000
## 258  1999                                  Atlus 0.0100000000
## 259  2000                                  Atlus 0.0200000000
## 260  2001                                  Atlus 0.0000000000
## 261  2002                                  Atlus 0.0066666667
## 262  2003                                  Atlus 0.0200000000
## 263  2004                                  Atlus 0.0100000000
## 264  2006                                  Atlus 0.0000000000
## 265  2007                                  Atlus 0.0000000000
## 266  2008                                  Atlus 0.0180000000
## 267  2009                                  Atlus 0.0000000000
## 268  2010                                  Atlus 0.0000000000
## 269  2011                                  Atlus 0.0060000000
## 270  2012                                  Atlus 0.0828571429
## 271  2013                                  Atlus 0.0050000000
## 272  2014                                  Atlus 0.0140000000
## 273  2015                                  Atlus 0.0133333333
## 274  2016                                  Atlus 0.0000000000
## 275  1982                     Avalon Interactive 0.0100000000
## 276  1999                     Avalon Interactive 0.0400000000
## 277  2002                     Avalon Interactive 0.0200000000
## 278  2003                     Avalon Interactive 0.0100000000
## 279  2004                     Avalon Interactive 0.0200000000
## 280  2007                              Avanquest 0.1500000000
## 281  2008                              Avanquest 0.0050000000
## 282  2009                              Avanquest 0.0457142857
## 283  2010                              Avanquest 0.1075000000
## 284  2011                              Avanquest 0.0442857143
## 285  2016                              Avanquest 0.0200000000
## 286   N/A                              Avanquest 0.0600000000
## 287  2012                     Avanquest Software 0.0800000000
## 288  2013                     Avanquest Software 0.0100000000
## 289  2015                     Avanquest Software 0.0200000000
## 290  1998                                  Axela 0.0000000000
## 291  2000                     BAM! Entertainment 0.0400000000
## 292  2001                     BAM! Entertainment 0.0528571429
## 293  2002                     BAM! Entertainment 0.0455555556
## 294  2003                     BAM! Entertainment 0.0316666667
## 295  2004                     BAM! Entertainment 0.0100000000
## 296  1991                              Banpresto 0.0000000000
## 297  1992                              Banpresto 0.0000000000
## 298  1993                              Banpresto 0.0000000000
## 299  1994                              Banpresto 0.0000000000
## 300  1995                              Banpresto 0.0000000000
## 301  1996                              Banpresto 0.0000000000
## 302  1997                              Banpresto 0.0000000000
## 303  1998                              Banpresto 0.0000000000
## 304  1999                              Banpresto 0.0000000000
## 305  2000                              Banpresto 0.0000000000
## 306  2001                              Banpresto 0.0075000000
## 307  2002                              Banpresto 0.0050000000
## 308  2003                              Banpresto 0.0033333333
## 309  2004                              Banpresto 0.0000000000
## 310  2005                              Banpresto 0.0000000000
## 311  2006                              Banpresto 0.0000000000
## 312  2007                              Banpresto 0.0000000000
## 313  2008                              Banpresto 0.0125000000
## 314  2009                              Banpresto 0.0400000000
## 315  2011                              Banpresto 0.0000000000
## 316  2007                                Benesse 0.0000000000
## 317  2008                                Benesse 0.0000000000
## 318  2001                               Berkeley 0.0100000000
## 319  2002                     Bethesda Softworks 0.5000000000
## 320  2003                     Bethesda Softworks 0.0400000000
## 321  2004                     Bethesda Softworks 0.0400000000
## 322  2005                     Bethesda Softworks 0.0300000000
## 323  2006                     Bethesda Softworks 0.0150000000
## 324  2007                     Bethesda Softworks 0.0050000000
## 325  2008                     Bethesda Softworks 0.4528571429
## 326  2009                     Bethesda Softworks 0.0700000000
## 327  2010                     Bethesda Softworks 0.8633333333
## 328  2011                     Bethesda Softworks 0.8300000000
## 329  2012                     Bethesda Softworks 0.2766666667
## 330  2014                     Bethesda Softworks 0.3754545455
## 331  2015                     Bethesda Softworks 0.6218181818
## 332  2016                     Bethesda Softworks 0.3300000000
## 333   N/A                     Bethesda Softworks 0.1250000000
## 334  2002                    Big Ben Interactive 0.0300000000
## 335  2004                    Big Ben Interactive 0.0000000000
## 336  2008                    Big Ben Interactive 0.0000000000
## 337  2009                    Big Ben Interactive 0.0400000000
## 338  2011                    Big Ben Interactive 0.0000000000
## 339  2013                    Big Ben Interactive 0.0200000000
## 340  2008                         Big Fish Games 0.0100000000
## 341  2014                         Big Fish Games 0.0300000000
## 342  2015                     Bigben Interactive 0.0476923077
## 343  2009                      bitComposer Games 0.0300000000
## 344  2011                      bitComposer Games 0.0425000000
## 345  2005                       Black Bean Games 0.0100000000
## 346  2007                       Black Bean Games 0.0150000000
## 347  2008                       Black Bean Games 0.0520000000
## 348  2009                       Black Bean Games 0.0160000000
## 349  2010                       Black Bean Games 0.0612500000
## 350  2011                       Black Bean Games 0.0400000000
## 351   N/A                       Black Bean Games 0.0825000000
## 352  2002                      Black Label Games 0.4600000000
## 353  2007               Blast! Entertainment Ltd 0.0600000000
## 354  2008               Blast! Entertainment Ltd 0.0000000000
## 355  2009               Blast! Entertainment Ltd 0.0125000000
## 356  2001                              Blue Byte 0.0150000000
## 357  1996          BMG Interactive Entertainment 0.0333333333
## 358  1997          BMG Interactive Entertainment 0.0400000000
## 359  1998          BMG Interactive Entertainment 0.2200000000
## 360  2013                    Bohemia Interactive 0.1000000000
## 361  1982                                   Bomb 0.0100000000
## 362  2013                               Boost On 0.0000000000
## 363  1991                                    BPS 0.0000000000
## 364  1994                                    BPS 0.0000000000
## 365  2007                    Brash Entertainment 0.0150000000
## 366  2008                    Brash Entertainment 0.0225000000
## 367  2006                               Broccoli 0.0000000000
## 368  2007                               Broccoli 0.0000000000
## 369  2008                               Broccoli 0.0000000000
## 370  2009                               Broccoli 0.0000000000
## 371  2010                               Broccoli 0.0000000000
## 372  2011                               Broccoli 0.0000000000
## 373  2012                               Broccoli 0.0000000000
## 374  2013                               Broccoli 0.0000000000
## 375  2015                               Broccoli 0.0000000000
## 376  2016                               Broccoli 0.0000000000
## 377  2012                              BushiRoad 0.0000000000
## 378  1985                                 Capcom 0.1400000000
## 379  1986                                 Capcom 0.1400000000
## 380  1987                                 Capcom 0.0800000000
## 381  1988                                 Capcom 0.1900000000
## 382  1989                                 Capcom 0.3000000000
## 383  1990                                 Capcom 0.1366666667
## 384  1991                                 Capcom 0.0766666667
## 385  1992                                 Capcom 0.3950000000
## 386  1993                                 Capcom 0.0885714286
## 387  1994                                 Capcom 0.0000000000
## 388  1996                                 Capcom 0.1000000000
## 389  1997                                 Capcom 0.0491666667
## 390  1998                                 Capcom 0.1300000000
## 391  1999                                 Capcom 0.1500000000
## 392  2000                                 Capcom 0.0880000000
## 393  2001                                 Capcom 0.2180000000
## 394  2002                                 Capcom 0.1068421053
## 395  2003                                 Capcom 0.0674193548
## 396  2004                                 Capcom 0.0843478261
## 397  2005                                 Capcom 0.1087500000
## 398  2006                                 Capcom 0.0703703704
## 399  2007                                 Capcom 0.0841176471
## 400  2008                                 Capcom 0.0880769231
## 401  2009                                 Capcom 0.3420000000
## 402  2010                                 Capcom 0.1159090909
## 403  2011                                 Capcom 0.0658333333
## 404  2012                                 Capcom 0.1633333333
## 405  2013                                 Capcom 0.0680952381
## 406  2014                                 Capcom 0.0000000000
## 407  2015                                 Capcom 0.0543750000
## 408  2016                                 Capcom 0.0283333333
## 409   N/A                                 Capcom 0.0120000000
## 410  2008                                   Cave 0.0000000000
## 411  2009                                   Cave 0.0000000000
## 412  2010                                   Cave 0.0000000000
## 413  2011                                   Cave 0.0000000000
## 414  2012                                   Cave 0.0000000000
## 415  2013                                   Cave 0.0000000000
## 416  1982                        CBS Electronics 0.0200000000
## 417  2003                                    CCP 0.1900000000
## 418  2005             CDV Software Entertainment 0.0100000000
## 419  2008             CDV Software Entertainment 0.0050000000
## 420  2009             CDV Software Entertainment 0.0200000000
## 421  2011             CDV Software Entertainment 0.0000000000
## 422  1992                               ChunSoft 0.0000000000
## 423  1993                               ChunSoft 0.0000000000
## 424  1994                               ChunSoft 0.0000000000
## 425  1995                               ChunSoft 0.0000000000
## 426  1996                               ChunSoft 0.0000000000
## 427  1998                               ChunSoft 0.0000000000
## 428  1999                               ChunSoft 0.0000000000
## 429  2000                               ChunSoft 0.0000000000
## 430  2002                               ChunSoft 0.0000000000
## 431  2006                               ChunSoft 0.0000000000
## 432  2009                               ChunSoft 0.0000000000
## 433  2010                               ChunSoft 0.0000000000
## 434  2011                               ChunSoft 0.0000000000
## 435  2012                               ChunSoft 0.0000000000
## 436  2008                       City Interactive 0.4500000000
## 437  2009                       City Interactive 0.0300000000
## 438  2010                       City Interactive 0.1640000000
## 439  2011                       City Interactive 0.1150000000
## 440  2013                       City Interactive 0.1233333333
## 441  2014                       City Interactive 0.0500000000
## 442   N/A                       City Interactive 0.0000000000
## 443  2012       Cloud Imperium Games Corporation 0.0000000000
## 444  1993                         Coconuts Japan 0.0000000000
## 445  1996                         Coconuts Japan 0.0100000000
## 446  1997                            Codemasters 1.0200000000
## 447  1998                            Codemasters 1.1925000000
## 448  1999                            Codemasters 0.1050000000
## 449  2000                            Codemasters 0.4200000000
## 450  2001                            Codemasters 0.1525000000
## 451  2002                            Codemasters 0.2360000000
## 452  2003                            Codemasters 0.1757142857
## 453  2004                            Codemasters 0.0215384615
## 454  2005                            Codemasters 0.0614285714
## 455  2006                            Codemasters 0.0100000000
## 456  2007                            Codemasters 0.0983333333
## 457  2008                            Codemasters 0.1158333333
## 458  2009                            Codemasters 0.1776923077
## 459  2010                            Codemasters 0.3340000000
## 460  2011                            Codemasters 0.2407692308
## 461  2012                            Codemasters 0.2225000000
## 462  2013                            Codemasters 0.2380000000
## 463  2014                            Codemasters 0.1233333333
## 464  2015                            Codemasters 0.2100000000
## 465  2016                            Codemasters 0.1083333333
## 466   N/A                            Codemasters 0.0200000000
## 467  2008                     Codemasters Online 0.0200000000
## 468  2007                      CokeM Interactive 0.0000000000
## 469  1981                                 Coleco 0.0375000000
## 470  1982                                 Coleco 0.0200000000
## 471  2010                                Comfort 0.0000000000
## 472  2011                                Comfort 0.0000000000
## 473  2012                                Comfort 0.0000000000
## 474  2013                                Comfort 0.0000000000
## 475  2008                               Commseed 0.0000000000
## 476  1995                                Compile 0.0000000000
## 477  1996                                Compile 0.0000000000
## 478  1997                                Compile 0.0000000000
## 479  1998                                Compile 0.0000000000
## 480  2008                          Compile Heart 0.0000000000
## 481  2009                          Compile Heart 0.0000000000
## 482  2010                          Compile Heart 0.0000000000
## 483  2011                          Compile Heart 0.0000000000
## 484  2012                          Compile Heart 0.0100000000
## 485  2013                          Compile Heart 0.0000000000
## 486  2014                          Compile Heart 0.0000000000
## 487  2015                          Compile Heart 0.0000000000
## 488  2016                          Compile Heart 0.0000000000
## 489  2001               Conspiracy Entertainment 0.0500000000
## 490  2002               Conspiracy Entertainment 0.0100000000
## 491  2007               Conspiracy Entertainment 0.0000000000
## 492  2008               Conspiracy Entertainment 0.0100000000
## 493  2009               Conspiracy Entertainment 0.0000000000
## 494  2010               Conspiracy Entertainment 0.0000000000
## 495  1994                       Core Design Ltd. 0.0700000000
## 496  1995                       Core Design Ltd. 0.0400000000
## 497  1982                           CPG Products 0.0300000000
## 498  1998                    Crave Entertainment 0.0600000000
## 499  1999                    Crave Entertainment 0.0400000000
## 500  2000                    Crave Entertainment 0.2433333333
## 501  2002                    Crave Entertainment 0.0700000000
## 502  2003                    Crave Entertainment 0.0200000000
## 503  2004                    Crave Entertainment 0.0290000000
## 504  2005                    Crave Entertainment 0.0222222222
## 505  2006                    Crave Entertainment 0.0080000000
## 506  2007                    Crave Entertainment 0.0000000000
## 507  2008                    Crave Entertainment 0.0266666667
## 508  2009                    Crave Entertainment 0.0000000000
## 509  2010                    Crave Entertainment 0.0000000000
## 510  2011                    Crave Entertainment 0.0007142857
## 511  2008                          Creative Core 0.0000000000
## 512  2009                          Creative Core 0.0000000000
## 513  2008                            Crimson Cow 0.0100000000
## 514  2011                            Crimson Cow 0.0500000000
## 515  1995                       Crystal Dynamics 0.1400000000
## 516  1996                       Crystal Dynamics 0.1150000000
## 517  1996                                CTO SpA 0.3300000000
## 518  1997                                CTO SpA 0.0100000000
## 519  1991                          Culture Brain 0.0000000000
## 520  1994                          Culture Brain 0.0000000000
## 521  2008                          Culture Brain 0.0000000000
## 522  2010                          Culture Brain 0.0000000000
## 523  1998                     Culture Publishers 0.0300000000
## 524  2007                             CyberFront 0.0000000000
## 525  2008                             CyberFront 0.0000000000
## 526  2009                             CyberFront 0.0000000000
## 527  2010                             CyberFront 0.0000000000
## 528  2011                             CyberFront 0.0000000000
## 529  2012                             CyberFront 0.0000000000
## 530  2013                             CyberFront 0.0000000000
## 531  2015                                Cygames 0.0000000000
## 532  1998                            D3Publisher 0.0000000000
## 533  2000                            D3Publisher 0.0300000000
## 534  2001                            D3Publisher 0.1200000000
## 535  2005                            D3Publisher 0.0050000000
## 536  2006                            D3Publisher 0.0046153846
## 537  2007                            D3Publisher 0.0795454545
## 538  2008                            D3Publisher 0.0185714286
## 539  2009                            D3Publisher 0.0245161290
## 540  2010                            D3Publisher 0.0287096774
## 541  2011                            D3Publisher 0.0227777778
## 542  2012                            D3Publisher 0.0022222222
## 543  2013                            D3Publisher 0.0210000000
## 544  2014                            D3Publisher 0.0000000000
## 545  2015                            D3Publisher 0.0000000000
## 546  2016                            D3Publisher 0.0000000000
## 547   N/A                            D3Publisher 0.0200000000
## 548  2009                               Daedalic 0.0900000000
## 549  2010                               Daedalic 0.0200000000
## 550  2012                               Daedalic 0.1300000000
## 551  2012                 Daedalic Entertainment 0.0200000000
## 552  2013                 Daedalic Entertainment 0.0450000000
## 553  2006                                  Daito 0.0000000000
## 554  1981                               Data Age 0.0200000000
## 555  1982                               Data Age 0.0200000000
## 556  2007                Data Design Interactive 0.0100000000
## 557  2008                Data Design Interactive 0.0000000000
## 558  2009                Data Design Interactive 0.0000000000
## 559  1995                              Data East 0.0000000000
## 560  1998                              Data East 0.0000000000
## 561  2002                         Datam Polystar 0.0000000000
## 562  2007                         Datam Polystar 0.0000000000
## 563  2004                            Deep Silver 0.0700000000
## 564  2005                            Deep Silver 0.0100000000
## 565  2006                            Deep Silver 0.0966666667
## 566  2007                            Deep Silver 0.0000000000
## 567  2008                            Deep Silver 0.0323076923
## 568  2009                            Deep Silver 0.0404166667
## 569  2010                            Deep Silver 0.0617647059
## 570  2011                            Deep Silver 0.1530769231
## 571  2012                            Deep Silver 0.1075000000
## 572  2013                            Deep Silver 0.1716666667
## 573  2014                            Deep Silver 0.0683333333
## 574  2015                            Deep Silver 0.0514285714
## 575  2016                            Deep Silver 0.0363636364
## 576   N/A                            Deep Silver 0.0700000000
## 577  2001              Destination Software, Inc 0.0300000000
## 578  2002              Destination Software, Inc 0.0100000000
## 579  2003              Destination Software, Inc 0.0100000000
## 580  2004              Destination Software, Inc 0.0050000000
## 581  2005              Destination Software, Inc 0.0200000000
## 582  2006              Destination Software, Inc 0.0000000000
## 583  2007              Destination Software, Inc 0.0000000000
## 584  2008              Destination Software, Inc 0.0000000000
## 585  2007                              Destineer 0.0000000000
## 586  2008                              Destineer 0.0006666667
## 587  2009                              Destineer 0.0033333333
## 588  2010                              Destineer 0.0000000000
## 589  2011                              Destineer 0.0000000000
## 590  2007                            Detn8 Games 0.0000000000
## 591  2010                       Devolver Digital 0.0200000000
## 592  2015                       Devolver Digital 0.0200000000
## 593  2007                        DHM Interactive 0.0000000000
## 594  2009                        DHM Interactive 0.0000000000
## 595  2002                               DigiCube 0.0000000000
## 596  1999             Disney Interactive Studios 0.0000000000
## 597  2002             Disney Interactive Studios 0.0700000000
## 598  2003             Disney Interactive Studios 0.0950000000
## 599  2004             Disney Interactive Studios 0.1112500000
## 600  2005             Disney Interactive Studios 0.0771428571
## 601  2006             Disney Interactive Studios 0.0869230769
## 602  2007             Disney Interactive Studios 0.1289285714
## 603  2008             Disney Interactive Studios 0.2096969697
## 604  2009             Disney Interactive Studios 0.1408333333
## 605  2010             Disney Interactive Studios 0.1782857143
## 606  2011             Disney Interactive Studios 0.2470000000
## 607  2012             Disney Interactive Studios 0.1071428571
## 608  2013             Disney Interactive Studios 0.1941666667
## 609  2014             Disney Interactive Studios 0.1590000000
## 610  2015             Disney Interactive Studios 0.2066666667
## 611   N/A             Disney Interactive Studios 0.0700000000
## 612  2008                                 Dorart 0.0000000000
## 613  2010                                 Dorart 0.0000000000
## 614  2015                        dramatic create 0.0000000000
## 615  2016                        dramatic create 0.0000000000
## 616  2001               DreamCatcher Interactive 0.0200000000
## 617  2003               DreamCatcher Interactive 0.0200000000
## 618  2004               DreamCatcher Interactive 0.0200000000
## 619  2005               DreamCatcher Interactive 0.0100000000
## 620  2006               DreamCatcher Interactive 0.0250000000
## 621  2008               DreamCatcher Interactive 0.0000000000
## 622  2009               DreamCatcher Interactive 0.0000000000
## 623  2010               DreamCatcher Interactive 0.0000000000
## 624  1998                 DreamWorks Interactive 0.0500000000
## 625  2005                              DSI Games 0.0400000000
## 626  2006                              DSI Games 0.0000000000
## 627  2007                              DSI Games 0.0000000000
## 628  2008                              DSI Games 0.0000000000
## 629  2005                      DTP Entertainment 0.0300000000
## 630  2007                      DTP Entertainment 0.0200000000
## 631  2008                      DTP Entertainment 0.0355555556
## 632  2009                      DTP Entertainment 0.0218181818
## 633  2010                      DTP Entertainment 0.0200000000
## 634  2011                      DTP Entertainment 0.0453846154
## 635  2012                      DTP Entertainment 0.0500000000
## 636   N/A                      DTP Entertainment 0.0100000000
## 637  2016               Dusenberry Martin Racing 0.0000000000
## 638  2012                               EA Games 0.0600000000
## 639  2012                       Easy Interactive 0.0150000000
## 640  2009                                  Ecole 0.0000000000
## 641  2006                                   Edia 0.0000000000
## 642  2009                                   Edia 0.0000000000
## 643  1996                      Eidos Interactive 0.5325000000
## 644  1997                      Eidos Interactive 1.2460000000
## 645  1998                      Eidos Interactive 0.1800000000
## 646  1999                      Eidos Interactive 0.5425000000
## 647  2000                      Eidos Interactive 0.1566666667
## 648  2001                      Eidos Interactive 0.0760000000
## 649  2002                      Eidos Interactive 0.1660000000
## 650  2003                      Eidos Interactive 0.2011764706
## 651  2004                      Eidos Interactive 0.1010000000
## 652  2005                      Eidos Interactive 0.1891666667
## 653  2006                      Eidos Interactive 0.0386206897
## 654  2007                      Eidos Interactive 0.1036363636
## 655  2008                      Eidos Interactive 0.0696000000
## 656  2009                      Eidos Interactive 0.1925000000
## 657   N/A                      Eidos Interactive 0.3900000000
## 658  1992                        Electronic Arts 0.0500000000
## 659  1994                        Electronic Arts 0.0800000000
## 660  1995                        Electronic Arts 0.1154545455
## 661  1996                        Electronic Arts 0.1823076923
## 662  1997                        Electronic Arts 0.2424000000
## 663  1998                        Electronic Arts 0.2633333333
## 664  1999                        Electronic Arts 0.2434615385
## 665  2000                        Electronic Arts 0.2303225806
## 666  2001                        Electronic Arts 0.3362790698
## 667  2002                        Electronic Arts 0.2769318182
## 668  2003                        Electronic Arts 0.2483529412
## 669  2004                        Electronic Arts 0.2195348837
## 670  2005                        Electronic Arts 0.1152991453
## 671  2006                        Electronic Arts 0.1296078431
## 672  2007                        Electronic Arts 0.1931775701
## 673  2008                        Electronic Arts 0.2132500000
## 674  2009                        Electronic Arts 0.2765178571
## 675  2010                        Electronic Arts 0.3543181818
## 676  2011                        Electronic Arts 0.3746052632
## 677  2012                        Electronic Arts 0.4665217391
## 678  2013                        Electronic Arts 0.5471428571
## 679  2014                        Electronic Arts 0.5888888889
## 680  2015                        Electronic Arts 0.6606250000
## 681  2016                        Electronic Arts 0.3455000000
## 682   N/A                        Electronic Arts 0.3241666667
## 683  1996                 Electronic Arts Victor 0.0850000000
## 684  1996                                    Elf 0.0000000000
## 685  1997                                    Elf 0.0000000000
## 686  1996                                  Elite 0.0300000000
## 687  1996                     Empire Interactive 0.1500000000
## 688  1998                     Empire Interactive 0.0100000000
## 689  1999                     Empire Interactive 0.0100000000
## 690  2000                     Empire Interactive 0.0750000000
## 691  2001                     Empire Interactive 0.1900000000
## 692  2002                     Empire Interactive 0.0600000000
## 693  2003                     Empire Interactive 0.1400000000
## 694  2004                     Empire Interactive 0.1360000000
## 695  2005                     Empire Interactive 0.0200000000
## 696  2006                     Empire Interactive 0.0225000000
## 697  2007                     Empire Interactive 0.0900000000
## 698  2008                     Empire Interactive 0.0337500000
## 699   N/A                     Empire Interactive 0.0600000000
## 700  2001                                 Encore 0.0100000000
## 701  2003                                 Encore 0.0000000000
## 702  2005                                 Encore 0.0200000000
## 703  1987                       Enix Corporation 0.0000000000
## 704  1988                       Enix Corporation 0.0000000000
## 705  1990                       Enix Corporation 0.0000000000
## 706  1992                       Enix Corporation 0.0000000000
## 707  1993                       Enix Corporation 0.0000000000
## 708  1994                       Enix Corporation 0.0000000000
## 709  1995                       Enix Corporation 0.0000000000
## 710  1996                       Enix Corporation 0.0000000000
## 711  1999                       Enix Corporation 0.0225000000
## 712  2000                       Enix Corporation 0.0466666667
## 713  2001                       Enix Corporation 0.0000000000
## 714  2002                       Enix Corporation 0.0160000000
## 715  2003                       Enix Corporation 0.0000000000
## 716  2004                       Enix Corporation 0.0000000000
## 717  2009                      Enjoy Gaming ltd. 0.0000000000
## 718  2001                             Enterbrain 0.0000000000
## 719  2002                             Enterbrain 0.0266666667
## 720  2004                             Enterbrain 0.0100000000
## 721  2006                             Enterbrain 0.0000000000
## 722  2007                             Enterbrain 0.0000000000
## 723  2008                             Enterbrain 0.0000000000
## 724  2009                             Enterbrain 0.0000000000
## 725  2010                             Enterbrain 0.0000000000
## 726  1999              EON Digital Entertainment 0.0000000000
## 727  2016                             Epic Games 0.0000000000
## 728  1991                                  Epoch 0.0000000000
## 729  1992                                  Epoch 0.0000000000
## 730  1993                                  Epoch 0.0000000000
## 731  1995                                  Epoch 0.0000000000
## 732  1996                                  Epoch 0.0000000000
## 733  2000                                  Epoch 0.0000000000
## 734  2007                                 Ertain 0.0000000000
## 735  1997                                    ESP 0.0000000000
## 736  1998                                    ESP 0.0066666667
## 737  2002                                    ESP 0.0000000000
## 738  2005                        Essential Games 0.0000000000
## 739  2006                        Essential Games 0.0000000000
## 740  1998                        Evolution Games 0.0000000000
## 741  2004                          Evolved Games 0.0075000000
## 742  2009                          Evolved Games 0.0050000000
## 743  2011                          Evolved Games 0.0000000000
## 744  2011                   Excalibur Publishing 0.0400000000
## 745  2012                   Excalibur Publishing 0.1200000000
## 746  2014                        Experience Inc. 0.0000000000
## 747  2015                        Experience Inc. 0.0000000000
## 748  2016                        Experience Inc. 0.0000000000
## 749  2015            Extreme Entertainment Group 0.0000000000
## 750  2007                     Falcom Corporation 0.0000000000
## 751  2008                     Falcom Corporation 0.0000000000
## 752  2009                     Falcom Corporation 0.0000000000
## 753  2010                     Falcom Corporation 0.0000000000
## 754  2011                     Falcom Corporation 0.0000000000
## 755  2012                     Falcom Corporation 0.0000000000
## 756  2013                     Falcom Corporation 0.0000000000
## 757  2012                                 Fields 0.0000000000
## 758  2005                       Flashpoint Games 0.0100000000
## 759  2010                       Flashpoint Games 0.0000000000
## 760  2007                            Flight-Plan 0.0000000000
## 761  2009                            Flight-Plan 0.0000000000
## 762  2006                 Focus Home Interactive 0.0150000000
## 763  2007                 Focus Home Interactive 0.0200000000
## 764  2008                 Focus Home Interactive 0.0100000000
## 765  2009                 Focus Home Interactive 0.0671428571
## 766  2010                 Focus Home Interactive 0.0566666667
## 767  2011                 Focus Home Interactive 0.0522222222
## 768  2012                 Focus Home Interactive 0.1842857143
## 769  2013                 Focus Home Interactive 0.0800000000
## 770  2014                 Focus Home Interactive 0.1336363636
## 771  2015                 Focus Home Interactive 0.0400000000
## 772  2016                 Focus Home Interactive 0.0240000000
## 773   N/A                 Focus Home Interactive 0.0350000000
## 774  2012                       Focus Multimedia 0.0150000000
## 775  2015                       Focus Multimedia 0.0200000000
## 776  2008                                 fonfun 0.0000000000
## 777  2010                    Foreign Media Games 0.0333333333
## 778  1998                              Fortyfive 0.0000000000
## 779  1996                        Fox Interactive 0.5800000000
## 780  1997                        Fox Interactive 0.9800000000
## 781  1998                        Fox Interactive 0.0650000000
## 782  1999                        Fox Interactive 0.2300000000
## 783  2000                        Fox Interactive 0.0600000000
## 784  1994                          From Software 0.0000000000
## 785  1996                          From Software 0.0600000000
## 786  1997                          From Software 0.0400000000
## 787  1998                          From Software 0.0150000000
## 788  1999                          From Software 0.0500000000
## 789  2001                          From Software 0.0200000000
## 790  2002                          From Software 0.0100000000
## 791  2006                          From Software 0.0000000000
## 792  2009                          From Software 0.0000000000
## 793  2010                          From Software 0.0000000000
## 794  2013                          From Software 0.0000000000
## 795  1995                                   Fuji 0.0000000000
## 796  2011                           Funbox Media 0.0200000000
## 797  2012                           Funbox Media 0.0400000000
## 798  2015                           Funbox Media 0.0100000000
## 799  2010                                 Funcom 0.0200000000
## 800  2012                                 Funcom 0.0800000000
## 801  1996                                FunSoft 0.0500000000
## 802  2006                                 Funsta 0.0000000000
## 803  2007                                 Funsta 0.0100000000
## 804   N/A                                 Funsta 0.0300000000
## 805  2010                                  FuRyu 0.0000000000
## 806  2011                                  FuRyu 0.0000000000
## 807  2012                                  FuRyu 0.0000000000
## 808  2013                                  FuRyu 0.0000000000
## 809  2014                                  FuRyu 0.0000000000
## 810  2015                                  FuRyu 0.0028571429
## 811  2016                                  FuRyu 0.0000000000
## 812  2015                      FuRyu Corporation 0.0000000000
## 813  2009                                  G.Rev 0.0000000000
## 814  2010                                  G.Rev 0.0000000000
## 815  1996                                   Gaga 0.0000000000
## 816  1998                 Gainax Network Systems 0.0000000000
## 817  2007                                 Gakken 0.0000000000
## 818  1994                              Game Arts 0.0000000000
## 819  2003                           Game Factory 0.0100000000
## 820  2004                           Game Factory 0.0600000000
## 821  2005                           Game Factory 0.0100000000
## 822  2006                           Game Factory 0.0042857143
## 823  2007                           Game Factory 0.0044444444
## 824  2008                           Game Factory 0.0036363636
## 825  2010                           Game Factory 0.0000000000
## 826  2007                              Game Life 0.0200000000
## 827  2009                              Game Life 0.1100000000
## 828  2008                             Gamebridge 0.0800000000
## 829  2009                             Gamebridge 0.0500000000
## 830  2008                               Gamecock 0.0050000000
## 831  2007                               Gameloft 0.0000000000
## 832  2010                 GameMill Entertainment 0.0000000000
## 833  2011                 GameMill Entertainment 0.0000000000
## 834  2012                 GameMill Entertainment 0.0200000000
## 835  1998                                GameTek 0.0200000000
## 836  2001                Gathering of Developers 0.0866666667
## 837  2003                Gathering of Developers 0.0250000000
## 838  2004                Gathering of Developers 0.0400000000
## 839  1998                  General Entertainment 0.0000000000
## 840  1999                                  Genki 0.0000000000
## 841  2001                                  Genki 0.0100000000
## 842  2003                                  Genki 0.1700000000
## 843  2007                                  Genki 0.0000000000
## 844  2012                                  Genki 0.0000000000
## 845  2009                            Genterprise 0.0000000000
## 846  2003                             Ghostlight 0.0500000000
## 847  2004                             Ghostlight 0.0500000000
## 848  2005                             Ghostlight 0.0450000000
## 849  2006                             Ghostlight 0.0300000000
## 850  2007                             Ghostlight 0.0150000000
## 851  2008                             Ghostlight 0.0100000000
## 852  2009                             Ghostlight 0.0600000000
## 853  2010                             Ghostlight 0.0550000000
## 854  2011                             Ghostlight 0.0100000000
## 855   N/A                             Ghostlight 0.0000000000
## 856  2014                                   Giga 0.0000000000
## 857  2012                                 Giza10 0.0000000000
## 858  1995                                  Glams 0.0000000000
## 859  2006                 Global A Entertainment 0.0000000000
## 860  2007                 Global A Entertainment 0.0000000000
## 861  2008                 Global A Entertainment 0.0000000000
## 862  2004                            Global Star 0.0514285714
## 863  2005                            Global Star 0.0406666667
## 864  2006                            Global Star 0.0066666667
## 865  2006                            GN Software 0.0000000000
## 866  2008                            GN Software 0.0000000000
## 867  2010                            GN Software 0.0000000000
## 868  2008                                    GOA 0.0200000000
## 869  2002                           Gotham Games 0.5300000000
## 870  2003                           Gotham Games 0.1100000000
## 871  2004                           Gotham Games 0.1600000000
## 872  2008                               Graffiti 0.0000000000
## 873  2009                               Graffiti 0.0000000000
## 874  2010                               Graffiti 0.0000000000
## 875  2007                       Grand Prix Games 0.0000000000
## 876  2005                 Graphsim Entertainment 0.0200000000
## 877  1996                Gremlin Interactive Ltd 0.0466666667
## 878  1997                Gremlin Interactive Ltd 0.0400000000
## 879  1998                Gremlin Interactive Ltd 0.0366666667
## 880  2010                  Griffin International 0.0000000000
## 881  2005                           Groove Games 0.0100000000
## 882  2006                           Groove Games 0.0100000000
## 883  2008                                    GSP 0.2466666667
## 884  2009                                    GSP 0.1683333333
## 885  2010                                    GSP 0.0833333333
## 886  2011                                    GSP 0.0400000000
## 887  1995                         GT Interactive 0.1000000000
## 888  1996                         GT Interactive 0.2328571429
## 889  1997                         GT Interactive 0.1225000000
## 890  1998                         GT Interactive 0.1052941176
## 891  1999                         GT Interactive 0.7525000000
## 892  2008                                 GungHo 0.0000000000
## 893  2009                                 GungHo 0.0000000000
## 894  2011                                 GungHo 0.0000000000
## 895  2012                                 GungHo 0.0050000000
## 896  2013                                 GungHo 0.0000000000
## 897  2014                                 GungHo 0.0100000000
## 898  2016                                 GungHo 0.0000000000
## 899  1996                                   Gust 0.0000000000
## 900  1997                                   Gust 0.0000000000
## 901  2001                                   Gust 0.0000000000
## 902  2002                                   Gust 0.0000000000
## 903  2007                                   Gust 0.0000000000
## 904  2008                                   Gust 0.0500000000
## 905  2009                                   Gust 0.0000000000
## 906  2010                                   Gust 0.0000000000
## 907  2011                                   Gust 0.0000000000
## 908  2012                                   Gust 0.0000000000
## 909  2013                                   Gust 0.0000000000
## 910  2007                              Hackberry 0.0000000000
## 911  2008                              Hackberry 0.0000000000
## 912  2010                              Hackberry 0.0000000000
## 913  1989                         HAL Laboratory 0.0000000000
## 914  2002                    Hamster Corporation 0.1100000000
## 915  2006                    Hamster Corporation 0.0000000000
## 916  2014                               Happinet 0.0000000000
## 917  2015                               Happinet 0.0000000000
## 918  2016                               Happinet 0.0000000000
## 919  2015                 Harmonix Music Systems 0.0450000000
## 920  1994                     Hasbro Interactive 0.8100000000
## 921  1997                     Hasbro Interactive 0.2700000000
## 922  1998                     Hasbro Interactive 0.2566666667
## 923  1999                     Hasbro Interactive 0.2066666667
## 924  2000                     Hasbro Interactive 0.1275000000
## 925  2001                     Hasbro Interactive 0.0600000000
## 926  2006                     Hasbro Interactive 0.0000000000
## 927  2000                      Havas Interactive 0.0900000000
## 928  2013                           Headup Games 0.0300000000
## 929  1996                           Hearty Robin 0.0000000000
## 930  1993                                   Hect 0.0000000000
## 931  1994                                   Hect 0.0000000000
## 932  1995                                   Hect 0.0000000000
## 933  2016                            Hello Games 0.7400000000
## 934  2011                        Her Interactive 0.0000000000
## 935  2004                        Hip Interactive 0.0250000000
## 936  2005                        Hip Interactive 0.0133333333
## 937  2008                        HMH Interactive 0.0300000000
## 938  2009                        HMH Interactive 0.0800000000
## 939  2010           Home Entertainment Suppliers 0.0200000000
## 940  2011           Home Entertainment Suppliers 0.1250000000
## 941   N/A           Home Entertainment Suppliers 0.2000000000
## 942  1997                   Hudson Entertainment 0.0000000000
## 943  1998                   Hudson Entertainment 0.0100000000
## 944  1999                   Hudson Entertainment 0.0000000000
## 945  2001                   Hudson Entertainment 0.0066666667
## 946  2003                   Hudson Entertainment 0.0200000000
## 947  2006                   Hudson Entertainment 0.0000000000
## 948  2007                   Hudson Entertainment 0.0000000000
## 949  2008                   Hudson Entertainment 0.0000000000
## 950  2009                   Hudson Entertainment 0.0000000000
## 951  1984                            Hudson Soft 0.0000000000
## 952  1985                            Hudson Soft 0.0000000000
## 953  1986                            Hudson Soft 0.0150000000
## 954  1991                            Hudson Soft 0.0300000000
## 955  1992                            Hudson Soft 0.0000000000
## 956  1993                            Hudson Soft 0.0000000000
## 957  1994                            Hudson Soft 0.0000000000
## 958  1995                            Hudson Soft 0.0000000000
## 959  1996                            Hudson Soft 0.0000000000
## 960  1997                            Hudson Soft 0.0350000000
## 961  1998                            Hudson Soft 0.0100000000
## 962  1999                            Hudson Soft 0.0100000000
## 963  2000                            Hudson Soft 0.0000000000
## 964  2001                            Hudson Soft 0.0000000000
## 965  2002                            Hudson Soft 0.0050000000
## 966  2003                            Hudson Soft 0.0033333333
## 967  2004                            Hudson Soft 0.0000000000
## 968  2005                            Hudson Soft 0.0000000000
## 969  2006                            Hudson Soft 0.0000000000
## 970  2007                            Hudson Soft 0.0000000000
## 971  2008                            Hudson Soft 0.0075000000
## 972  2009                            Hudson Soft 0.0487500000
## 973  2010                            Hudson Soft 0.0100000000
## 974  2011                            Hudson Soft 0.0100000000
## 975  1991                    Human Entertainment 0.0000000000
## 976  1994                    Human Entertainment 0.0000000000
## 977  1995                    Human Entertainment 0.0000000000
## 978  1996                    Human Entertainment 0.0000000000
## 979  1997                    Human Entertainment 0.0000000000
## 980  1998                    Human Entertainment 0.0133333333
## 981  1999                    Human Entertainment 0.0000000000
## 982  2015                                  HuneX 0.0000000000
## 983  2011                    Iceberg Interactive 0.0150000000
## 984  2012                    Iceberg Interactive 0.0200000000
## 985  1992                            id Software 0.0000000000
## 986  2002                           Idea Factory 0.0000000000
## 987  2005                           Idea Factory 0.0000000000
## 988  2006                           Idea Factory 0.0000000000
## 989  2007                           Idea Factory 0.0000000000
## 990  2008                           Idea Factory 0.0000000000
## 991  2009                           Idea Factory 0.0000000000
## 992  2010                           Idea Factory 0.0000000000
## 993  2011                           Idea Factory 0.0000000000
## 994  2012                           Idea Factory 0.0000000000
## 995  2013                           Idea Factory 0.0000000000
## 996  2014                           Idea Factory 0.0030769231
## 997  2015                           Idea Factory 0.0007142857
## 998  2016                           Idea Factory 0.0000000000
## 999  2017                           Idea Factory 0.0000000000
## 1000  N/A                           Idea Factory 0.0000000000
## 1001 2014             Idea Factory International 0.0166666667
## 1002 2015             Idea Factory International 0.0100000000
## 1003 2006                           IE Institute 0.0000000000
## 1004 2007                           IE Institute 0.0000000000
## 1005 2008                           IE Institute 0.0000000000
## 1006 2012                           IE Institute 0.0000000000
## 1007 2002                 Ignition Entertainment 0.0950000000
## 1008 2003                 Ignition Entertainment 0.0175000000
## 1009 2004                 Ignition Entertainment 0.0181818182
## 1010 2005                 Ignition Entertainment 0.0557142857
## 1011 2006                 Ignition Entertainment 0.0188888889
## 1012 2007                 Ignition Entertainment 0.0014285714
## 1013 2008                 Ignition Entertainment 0.0133333333
## 1014 2009                 Ignition Entertainment 0.0050000000
## 1015 2011                 Ignition Entertainment 0.0600000000
## 1016  N/A                 Ignition Entertainment 0.0000000000
## 1017 2004                     Illusion Softworks 0.2700000000
## 1018 1997                                 Imadio 0.0000000000
## 1019 2012                            Image Epoch 0.0000000000
## 1020 2014                        imageepoch Inc. 0.0000000000
## 1021 1995                             Imageworks 0.0000000000
## 1022 1981                                 Imagic 0.0675000000
## 1023 1991                              Imagineer 0.0000000000
## 1024 1996                              Imagineer 0.0000000000
## 1025 1997                              Imagineer 0.0000000000
## 1026 1998                              Imagineer 0.0050000000
## 1027 1999                              Imagineer 0.0066666667
## 1028 2000                              Imagineer 0.0000000000
## 1029 2001                              Imagineer 0.0000000000
## 1030 1993                                   Imax 0.0000000000
## 1031 2004                            Indie Games 0.0233333333
## 1032 1994                             Infogrames 0.3000000000
## 1033 1996                             Infogrames 0.1200000000
## 1034 1997                             Infogrames 0.2900000000
## 1035 1998                             Infogrames 0.0285714286
## 1036 1999                             Infogrames 0.0733333333
## 1037 2000                             Infogrames 0.0554545455
## 1038 2001                             Infogrames 0.0660000000
## 1039 2002                             Infogrames 0.0859090909
## 1040 2003                             Infogrames 0.0150000000
## 1041  N/A                             Infogrames 0.0600000000
## 1042 2016                        Insomniac Games 0.0000000000
## 1043 2006                           Interchannel 0.0000000000
## 1044 2008                           Interchannel 0.0000000000
## 1045 2007                     Interchannel-Holon 0.0000000000
## 1046 2015                              Intergrow 0.0000000000
## 1047 1993                              Interplay 0.0000000000
## 1048 1995                              Interplay 0.0366666667
## 1049 1996                              Interplay 0.1900000000
## 1050 1997                              Interplay 0.0850000000
## 1051 1998                              Interplay 0.0483333333
## 1052 1999                              Interplay 0.0166666667
## 1053 2000                              Interplay 0.1266666667
## 1054 2001                              Interplay 0.0566666667
## 1055 2002                              Interplay 0.0450000000
## 1056 2003                              Interplay 0.1000000000
## 1057 2004                              Interplay 0.2600000000
## 1058 1997                  Interplay Productions 0.0400000000
## 1059 2012             Interworks Unlimited, Inc. 0.0000000000
## 1060 2016                           Inti Creates 0.0000000000
## 1061 2016                  Introversion Software 0.0100000000
## 1062 2015                   inXile Entertainment 0.0600000000
## 1063 1998              Irem Software Engineering 0.0100000000
## 1064 2006              Irem Software Engineering 0.0000000000
## 1065 2007              Irem Software Engineering 0.0000000000
## 1066 2008              Irem Software Engineering 0.0000000000
## 1067 2009              Irem Software Engineering 0.0000000000
## 1068 2010              Irem Software Engineering 0.0000000000
## 1069 2011              Irem Software Engineering 0.0000000000
## 1070 2012              Irem Software Engineering 0.0000000000
## 1071 1982                       ITT Family Games 0.0200000000
## 1072 2008                              Ivolgamus 0.0000000000
## 1073 2011                                   iWin 0.0500000000
## 1074 2005                      Jack of All Games 0.1000000000
## 1075 2011                      Jack of All Games 0.0000000000
## 1076 1995                                 Jaleco 0.0950000000
## 1077 1996                                 Jaleco 0.0400000000
## 1078 1998                                 Jaleco 0.0100000000
## 1079 1999                                 Jaleco 0.0100000000
## 1080 2002                                 Jaleco 0.0050000000
## 1081 2003                                 Jaleco 0.0157142857
## 1082 2004                                 Jaleco 0.0150000000
## 1083 2007                                 Jaleco 0.0000000000
## 1084 2008                                 Jaleco 0.0000000000
## 1085 2002                     Jester Interactive 0.2700000000
## 1086 2003                     Jester Interactive 0.0100000000
## 1087 2005                     Jester Interactive 0.0100000000
## 1088 1999                                Jorudan 0.0000000000
## 1089 2002                                Jorudan 0.0000000000
## 1090 2003                                Jorudan 0.0000000000
## 1091 2002                     JoWood Productions 0.0200000000
## 1092 2004                     JoWood Productions 0.0050000000
## 1093 2005                     JoWood Productions 0.0100000000
## 1094 2006                     JoWood Productions 0.0500000000
## 1095 2007                     JoWood Productions 0.0300000000
## 1096 2008                     JoWood Productions 0.0080000000
## 1097 2009                     JoWood Productions 0.0325000000
## 1098 2010                     JoWood Productions 0.0400000000
## 1099 2010                            Just Flight 0.0300000000
## 1100 1994                                    JVC 0.0000000000
## 1101 1996                                    JVC 0.0900000000
## 1102 1997                                    JVC 0.0100000000
## 1103 1998                                    JVC 0.0300000000
## 1104 1999                                    JVC 0.0100000000
## 1105 2000                                    JVC 0.0200000000
## 1106 2012                         Kadokawa Games 0.0000000000
## 1107 2013                         Kadokawa Games 0.0000000000
## 1108 2014                         Kadokawa Games 0.0000000000
## 1109 2015                         Kadokawa Games 0.0000000000
## 1110 2016                         Kadokawa Games 0.0000000000
## 1111 1996                        Kadokawa Shoten 0.0000000000
## 1112 1997                        Kadokawa Shoten 0.0000000000
## 1113 1998                        Kadokawa Shoten 0.0450000000
## 1114 1999                        Kadokawa Shoten 0.1300000000
## 1115 2004                        Kadokawa Shoten 0.0000000000
## 1116 2005                        Kadokawa Shoten 0.0000000000
## 1117 2006                        Kadokawa Shoten 0.0000000000
## 1118 2007                        Kadokawa Shoten 0.0000000000
## 1119 2008                        Kadokawa Shoten 0.0000000000
## 1120 2009                        Kadokawa Shoten 0.0000000000
## 1121 2010                        Kadokawa Shoten 0.0000000000
## 1122 2011                        Kadokawa Shoten 0.0000000000
## 1123 2012                        Kadokawa Shoten 0.0000000000
## 1124 2013                        Kadokawa Shoten 0.0000000000
## 1125 2014                        Kadokawa Shoten 0.0000000000
## 1126 2015                        Kadokawa Shoten 0.0000000000
## 1127 2013                            Kaga Create 0.0000000000
## 1128 2015                            Kaga Create 0.0000000000
## 1129 2007                          Kalypso Media 0.0100000000
## 1130 2008                          Kalypso Media 0.0150000000
## 1131 2009                          Kalypso Media 0.0220000000
## 1132 2010                          Kalypso Media 0.0260000000
## 1133 2011                          Kalypso Media 0.0371428571
## 1134 2012                          Kalypso Media 0.0200000000
## 1135 2014                          Kalypso Media 0.0600000000
## 1136 2015                          Kalypso Media 0.0833333333
## 1137  N/A                          Kalypso Media 0.0433333333
## 1138 2010                                  Kamui 0.0000000000
## 1139 2006                            Kando Games 0.0100000000
## 1140 2010                    Karin Entertainment 0.0000000000
## 1141 1991                                  Kemco 0.0000000000
## 1142 1997                                  Kemco 0.0600000000
## 1143 1998                                  Kemco 0.0500000000
## 1144 1999                                  Kemco 0.0125000000
## 1145 2001                                  Kemco 0.0200000000
## 1146 2002                                  Kemco 0.0025000000
## 1147 2003                                  Kemco 0.0316666667
## 1148 2005                                  Kemco 0.0000000000
## 1149 1998                                    KID 0.0000000000
## 1150 2006                                    KID 0.0000000000
## 1151 2007                           Kids Station 0.0000000000
## 1152 2002                           King Records 0.0000000000
## 1153 2003                    Knowledge Adventure 0.0800000000
## 1154 2009                    Knowledge Adventure 0.0000000000
## 1155 2008                             Koch Media 0.1033333333
## 1156 2011                             Koch Media 0.0550000000
## 1157 2013                             Koch Media 0.0800000000
## 1158 2015                             Koch Media 0.1500000000
## 1159 2016                             Koch Media 0.0133333333
## 1160 1995               Kokopeli Digital Studios 0.0100000000
## 1161 1986           Konami Digital Entertainment 0.0350000000
## 1162 1987           Konami Digital Entertainment 0.0600000000
## 1163 1989           Konami Digital Entertainment 0.0700000000
## 1164 1990           Konami Digital Entertainment 0.2500000000
## 1165 1991           Konami Digital Entertainment 0.0550000000
## 1166 1992           Konami Digital Entertainment 0.0033333333
## 1167 1993           Konami Digital Entertainment 0.0000000000
## 1168 1994           Konami Digital Entertainment 0.0000000000
## 1169 1995           Konami Digital Entertainment 0.0216666667
## 1170 1996           Konami Digital Entertainment 0.0356250000
## 1171 1997           Konami Digital Entertainment 0.0529411765
## 1172 1998           Konami Digital Entertainment 0.1016666667
## 1173 1999           Konami Digital Entertainment 0.0700000000
## 1174 2000           Konami Digital Entertainment 0.0200000000
## 1175 2001           Konami Digital Entertainment 0.1687179487
## 1176 2002           Konami Digital Entertainment 0.0581818182
## 1177 2003           Konami Digital Entertainment 0.1588888889
## 1178 2004           Konami Digital Entertainment 0.1219047619
## 1179 2005           Konami Digital Entertainment 0.0885714286
## 1180 2006           Konami Digital Entertainment 0.0730303030
## 1181 2007           Konami Digital Entertainment 0.0544262295
## 1182 2008           Konami Digital Entertainment 0.1210937500
## 1183 2009           Konami Digital Entertainment 0.0823728814
## 1184 2010           Konami Digital Entertainment 0.0672058824
## 1185 2011           Konami Digital Entertainment 0.0602272727
## 1186 2012           Konami Digital Entertainment 0.0678125000
## 1187 2013           Konami Digital Entertainment 0.0893750000
## 1188 2014           Konami Digital Entertainment 0.1066666667
## 1189 2015           Konami Digital Entertainment 0.2266666667
## 1190 2016           Konami Digital Entertainment 0.0600000000
## 1191  N/A           Konami Digital Entertainment 0.1188888889
## 1192 2003                              Kool Kizz 0.0100000000
## 1193 1996                                    KSS 0.0000000000
## 1194 1993                                 Laguna 0.0200000000
## 1195 1994                                 Laguna 0.0000000000
## 1196 1995                                 Laguna 0.0100000000
## 1197 2008                     Legacy Interactive 0.0000000000
## 1198 1999                             LEGO Media 0.0925000000
## 1199 2001                             LEGO Media 0.0450000000
## 1200 2002                             LEGO Media 0.0400000000
## 1201 2009                                Level 5 0.0000000000
## 1202 2010                                Level 5 0.0000000000
## 1203 2011                                Level 5 0.0000000000
## 1204 2012                                Level 5 0.0300000000
## 1205 2013                                Level 5 0.0000000000
## 1206 2014                                Level 5 0.0000000000
## 1207 2015                                Level 5 0.0000000000
## 1208 2016                                Level 5 0.0000000000
## 1209 2007                  Lexicon Entertainment 0.0000000000
## 1210 2008                  Lexicon Entertainment 0.0000000000
## 1211 2012                            Licensed 4U 0.0200000000
## 1212 2007                 Lighthouse Interactive 0.0100000000
## 1213 2002                           Liquid Games 0.0700000000
## 1214 2006                           Liquid Games 0.0000000000
## 1215 2010                           Little Orbit 0.0000000000
## 1216 2013                           Little Orbit 0.0100000000
## 1217 2014                           Little Orbit 0.0888888889
## 1218 2015                           Little Orbit 0.0376923077
## 1219 1998                                  Locus 0.0000000000
## 1220 2002                              LSP Games 0.0100000000
## 1221 2003                              LSP Games 0.0100000000
## 1222 1994                              LucasArts 0.7700000000
## 1223 1996                              LucasArts 0.2100000000
## 1224 1997                              LucasArts 0.2600000000
## 1225 1999                              LucasArts 0.6850000000
## 1226 2000                              LucasArts 0.0500000000
## 1227 2001                              LucasArts 0.2375000000
## 1228 2002                              LucasArts 0.1950000000
## 1229 2003                              LucasArts 0.0775000000
## 1230 2004                              LucasArts 0.3450000000
## 1231 2005                              LucasArts 0.3512500000
## 1232 2006                              LucasArts 0.1800000000
## 1233 2007                              LucasArts 0.5227272727
## 1234 2008                              LucasArts 0.3138461538
## 1235 2009                              LucasArts 0.1377777778
## 1236 2010                              LucasArts 0.2320000000
## 1237 2011                              LucasArts 0.3687500000
## 1238  N/A                              LucasArts 0.6300000000
## 1239 2004                               Mad Catz 0.0400000000
## 1240 2006                               Mad Catz 0.0100000000
## 1241 2012                               Mad Catz 0.0000000000
## 1242 1998                        Magical Company 0.1000000000
## 1243 2001                                  Magix 0.1200000000
## 1244 2009                                  Magix 0.0100000000
## 1245 2001                  Majesco Entertainment 0.0966666667
## 1246 2002                  Majesco Entertainment 0.0100000000
## 1247 2003                  Majesco Entertainment 0.0950000000
## 1248 2004                  Majesco Entertainment 0.0850000000
## 1249 2005                  Majesco Entertainment 0.0060000000
## 1250 2006                  Majesco Entertainment 0.0016666667
## 1251 2007                  Majesco Entertainment 0.0016666667
## 1252 2008                  Majesco Entertainment 0.0025000000
## 1253 2009                  Majesco Entertainment 0.0158333333
## 1254 2010                  Majesco Entertainment 0.0020000000
## 1255 2011                  Majesco Entertainment 0.1783333333
## 1256 2013                  Majesco Entertainment 0.0800000000
## 1257  N/A                  Majesco Entertainment 0.0000000000
## 1258 2008                            Mamba Games 0.0300000000
## 1259 2010                            Mamba Games 0.0100000000
## 1260 2015                   Marvel Entertainment 0.0000000000
## 1261 2012                Marvelous Entertainment 0.0850000000
## 1262 2013                Marvelous Entertainment 0.0066666667
## 1263 2014                Marvelous Entertainment 0.0075000000
## 1264 2015                Marvelous Entertainment 0.0000000000
## 1265 2016                Marvelous Entertainment 0.0000000000
## 1266 2015                        Marvelous Games 0.0000000000
## 1267 2002                  Marvelous Interactive 0.0200000000
## 1268 2003                  Marvelous Interactive 0.0100000000
## 1269 2004                  Marvelous Interactive 0.0500000000
## 1270 2005                  Marvelous Interactive 0.0000000000
## 1271 2006                  Marvelous Interactive 0.0000000000
## 1272 2007                  Marvelous Interactive 0.0000000000
## 1273 2008                  Marvelous Interactive 0.0000000000
## 1274 2009                  Marvelous Interactive 0.0000000000
## 1275 2010                  Marvelous Interactive 0.0016666667
## 1276 2011                  Marvelous Interactive 0.0000000000
## 1277 2014                  Marvelous Interactive 0.0100000000
## 1278 2015                  Marvelous Interactive 0.0166666667
## 1279 2016                  Marvelous Interactive 0.0000000000
## 1280 2011                      Masque Publishing 0.0000000000
## 1281 2006                           Mastertronic 0.0100000000
## 1282 2009                           Mastertronic 0.0400000000
## 1283 2010                           Mastertronic 0.0250000000
## 1284 2011                           Mastertronic 0.0487500000
## 1285 2012                           Mastertronic 0.0100000000
## 1286 2004                                Mastiff 0.0300000000
## 1287 2005                                Mastiff 0.0100000000
## 1288 2009                                Mastiff 0.0000000000
## 1289 2010                                Mastiff 0.0000000000
## 1290 2011                                Mastiff 0.0000000000
## 1291 1981                     Mattel Interactive 0.0185714286
## 1292 1982                     Mattel Interactive 0.0200000000
## 1293 1999                     Mattel Interactive 0.0650000000
## 1294 2000                     Mattel Interactive 0.0450000000
## 1295 2001                               Max Five 0.0200000000
## 1296 2012                   Maximum Family Games 0.0000000000
## 1297 1988                                  Maxis 0.0200000000
## 1298 1992                                  Maxis 0.8400000000
## 1299 1996                                  Maxis 0.4600000000
## 1300 2004                      MC2 Entertainment 0.0100000000
## 1301 2005                      MC2 Entertainment 0.0100000000
## 1302 2002                    Media Entertainment 0.0000000000
## 1303 2000                          Media Factory 0.0000000000
## 1304 2001                          Media Factory 0.0000000000
## 1305 1994                            Media Rings 0.0000000000
## 1306 1995                            Media Rings 0.0000000000
## 1307 2002                            Media Rings 0.0500000000
## 1308 1996                            Media Works 0.0000000000
## 1309 1998                            Media Works 0.0000000000
## 1310 2006                            Media Works 0.0000000000
## 1311 2007                            Media Works 0.0000000000
## 1312 1995                             MediaQuest 0.0200000000
## 1313 1981                           Men-A-Vision 0.0400000000
## 1314 2009                     Mentor Interactive 0.0000000000
## 1315 2010                     Mentor Interactive 0.0000000000
## 1316 2011                     Mentor Interactive 0.0000000000
## 1317 2007                          Mercury Games 0.0000000000
## 1318 2008                          Mercury Games 0.0000000000
## 1319 2009                            Merscom LLC 0.1700000000
## 1320 2001                               Metro 3D 0.0500000000
## 1321 2002                               Metro 3D 0.1000000000
## 1322 2003                               Metro 3D 0.0400000000
## 1323 2007                               Metro 3D 0.0000000000
## 1324 2008                               Metro 3D 0.0000000000
## 1325 2006                            Michaelsoft 0.0000000000
## 1326 1994                            Micro Cabin 0.0000000000
## 1327 1995                            Micro Cabin 0.0000000000
## 1328 1996                            Micro Cabin 0.0000000000
## 1329 2002                               Microids 0.0100000000
## 1330 2003                               Microids 0.0150000000
## 1331 2004                               Microids 0.0150000000
## 1332 2005                               Microids 0.0200000000
## 1333 2016                               Microids 0.0150000000
## 1334 1995                             Microprose 0.0400000000
## 1335 1996                             Microprose 0.1550000000
## 1336 1997                             Microprose 0.0100000000
## 1337 1999                             Microprose 0.8100000000
## 1338  N/A                             Microprose 0.0200000000
## 1339 1996                 Microsoft Game Studios 1.6900000000
## 1340 1999                 Microsoft Game Studios 0.0800000000
## 1341 2000                 Microsoft Game Studios 0.2100000000
## 1342 2001                 Microsoft Game Studios 0.2840000000
## 1343 2002                 Microsoft Game Studios 0.0740000000
## 1344 2003                 Microsoft Game Studios 0.0778571429
## 1345 2004                 Microsoft Game Studios 0.2030769231
## 1346 2005                 Microsoft Game Studios 0.1121428571
## 1347 2006                 Microsoft Game Studios 0.4033333333
## 1348 2007                 Microsoft Game Studios 0.3910526316
## 1349 2008                 Microsoft Game Studios 0.5270000000
## 1350 2009                 Microsoft Game Studios 0.6771428571
## 1351 2010                 Microsoft Game Studios 0.9925000000
## 1352 2011                 Microsoft Game Studios 0.5809090909
## 1353 2012                 Microsoft Game Studios 0.6257142857
## 1354 2013                 Microsoft Game Studios 0.6425000000
## 1355 2014                 Microsoft Game Studios 0.4277777778
## 1356 2015                 Microsoft Game Studios 0.5340000000
## 1357 2016                 Microsoft Game Studios 0.1275000000
## 1358 1997        Midas Interactive Entertainment 0.0100000000
## 1359 1998        Midas Interactive Entertainment 0.0500000000
## 1360 1999        Midas Interactive Entertainment 0.0100000000
## 1361 2000        Midas Interactive Entertainment 0.0571428571
## 1362 2001        Midas Interactive Entertainment 0.0500000000
## 1363 2002        Midas Interactive Entertainment 0.1000000000
## 1364 2005        Midas Interactive Entertainment 0.0000000000
## 1365 2006        Midas Interactive Entertainment 0.0100000000
## 1366 2007        Midas Interactive Entertainment 0.0000000000
## 1367 2008        Midas Interactive Entertainment 0.0300000000
## 1368 2009        Midas Interactive Entertainment 0.0150000000
## 1369 1996                           Midway Games 0.0250000000
## 1370 1997                           Midway Games 0.0575000000
## 1371 1998                           Midway Games 0.1850000000
## 1372 1999                           Midway Games 0.0780000000
## 1373 2000                           Midway Games 0.1100000000
## 1374 2001                           Midway Games 0.1363636364
## 1375 2002                           Midway Games 0.0630303030
## 1376 2003                           Midway Games 0.0620833333
## 1377 2004                           Midway Games 0.1740000000
## 1378 2005                           Midway Games 0.0576190476
## 1379 2006                           Midway Games 0.0320000000
## 1380 2007                           Midway Games 0.1776470588
## 1381 2008                           Midway Games 0.1262500000
## 1382  N/A                           Midway Games 0.0800000000
## 1383 2008                              Milestone 0.0000000000
## 1384 2016                        Milestone S.r.l 0.0250000000
## 1385 2014                       Milestone S.r.l. 0.0550000000
## 1386 2015                       Milestone S.r.l. 0.0533333333
## 1387 2016                       Milestone S.r.l. 0.0266666667
## 1388 2008                         Minato Station 0.0000000000
## 1389 2012                         Minato Station 0.0000000000
## 1390 2015                         Minato Station 0.0000000000
## 1391 1995                              Mindscape 0.0900000000
## 1392 1996                              Mindscape 0.0450000000
## 1393 1997                              Mindscape 0.0500000000
## 1394 1998                              Mindscape 0.0450000000
## 1395 1999                              Mindscape 0.0200000000
## 1396 2000                              Mindscape 0.0000000000
## 1397 2003                              Mindscape 0.0300000000
## 1398 2007                              Mindscape 0.2050000000
## 1399 2008                              Mindscape 0.1100000000
## 1400 2009                              Mindscape 0.0846153846
## 1401 2010                              Mindscape 0.0760000000
## 1402 2008                          Mirai Shounen 0.0000000000
## 1403 1993                                 Misawa 0.0000000000
## 1404 1994                                 Misawa 0.0000000000
## 1405 1998                                 Mitsui 0.0200000000
## 1406 2015                              mixi, Inc 0.0000000000
## 1407 2016                                MLB.com 0.0000000000
## 1408 2015                                 Mojang 0.2600000000
## 1409 2007               Monte Christo Multimedia 0.0400000000
## 1410 2008                                   Moss 0.0000000000
## 1411 2013                                   Moss 0.0000000000
## 1412 1998                                    MTO 0.0000000000
## 1413 2006                                    MTO 0.0000000000
## 1414 2007                                    MTO 0.0000000000
## 1415 2008                                    MTO 0.0000000000
## 1416 2010                                    MTO 0.0000000000
## 1417 2008                              MTV Games 0.0530769231
## 1418 2009                              MTV Games 0.0825000000
## 1419 2010                              MTV Games 0.1800000000
## 1420 2011                              MTV Games 0.0000000000
## 1421  N/A                              MTV Games 0.5600000000
## 1422 2003                   Mud Duck Productions 0.0600000000
## 1423 2004                   Mud Duck Productions 0.0950000000
## 1424 2006                            Mumbo Jumbo 0.0000000000
## 1425 2007                            Mumbo Jumbo 0.0000000000
## 1426 2008                            Mumbo Jumbo 0.0000000000
## 1427 1985                                  Mycom 0.0000000000
## 1428 2006                           Myelin Media 0.0133333333
## 1429 1981                               Mystique 0.0500000000
## 1430 2004                                    N/A 0.0736842105
## 1431 2005                                    N/A 0.0760000000
## 1432 2007                                    N/A 0.3200000000
## 1433 2010                                    N/A 0.0800000000
## 1434 2011                                    N/A 0.0433333333
## 1435 2012                                    N/A 0.0100000000
## 1436 2014                                    N/A 0.0100000000
## 1437 2016                                    N/A 0.0000000000
## 1438  N/A                                    N/A 0.1022727273
## 1439 1984                     Namco Bandai Games 0.0466666667
## 1440 1985                     Namco Bandai Games 0.0000000000
## 1441 1986                     Namco Bandai Games 0.2250000000
## 1442 1987                     Namco Bandai Games 0.0000000000
## 1443 1988                     Namco Bandai Games 0.0000000000
## 1444 1989                     Namco Bandai Games 0.0000000000
## 1445 1990                     Namco Bandai Games 0.0000000000
## 1446 1991                     Namco Bandai Games 0.0000000000
## 1447 1992                     Namco Bandai Games 0.0000000000
## 1448 1993                     Namco Bandai Games 0.0000000000
## 1449 1994                     Namco Bandai Games 0.0000000000
## 1450 1995                     Namco Bandai Games 0.0000000000
## 1451 1996                     Namco Bandai Games 0.0000000000
## 1452 1997                     Namco Bandai Games 0.0784615385
## 1453 1998                     Namco Bandai Games 0.0800000000
## 1454 1999                     Namco Bandai Games 0.0450000000
## 1455 2000                     Namco Bandai Games 0.1642857143
## 1456 2001                     Namco Bandai Games 0.1233333333
## 1457 2002                     Namco Bandai Games 0.0856000000
## 1458 2003                     Namco Bandai Games 0.0800000000
## 1459 2004                     Namco Bandai Games 0.0344000000
## 1460 2005                     Namco Bandai Games 0.1012195122
## 1461 2006                     Namco Bandai Games 0.0278787879
## 1462 2007                     Namco Bandai Games 0.0077551020
## 1463 2008                     Namco Bandai Games 0.0240384615
## 1464 2009                     Namco Bandai Games 0.0459677419
## 1465 2010                     Namco Bandai Games 0.0490000000
## 1466 2011                     Namco Bandai Games 0.0572368421
## 1467 2012                     Namco Bandai Games 0.0289411765
## 1468 2013                     Namco Bandai Games 0.0236507937
## 1469 2014                     Namco Bandai Games 0.0265217391
## 1470 2015                     Namco Bandai Games 0.0797058824
## 1471 2016                     Namco Bandai Games 0.0395000000
## 1472  N/A                     Namco Bandai Games 0.0050000000
## 1473 1996                                Natsume 0.1300000000
## 1474 1997                                Natsume 0.0200000000
## 1475 2000                                Natsume 0.1000000000
## 1476 2001                                Natsume 0.0300000000
## 1477 2002                                Natsume 0.0500000000
## 1478 2003                                Natsume 0.1400000000
## 1479 2006                                Natsume 0.0033333333
## 1480 2007                                Natsume 0.0000000000
## 1481 2009                                Natsume 0.0000000000
## 1482 2010                                Natsume 0.0200000000
## 1483 2014                                Natsume 0.0200000000
## 1484 2008                           Navarre Corp 0.0000000000
## 1485 2008                             Naxat Soft 0.0000000000
## 1486 1996                                    NCS 0.0000000000
## 1487 1997                                    NCS 0.0000000000
## 1488 1998                                    NCS 0.0000000000
## 1489 2005                                 NCSoft 0.0150000000
## 1490 2006                                 NCSoft 0.0150000000
## 1491 2012                                 NCSoft 1.0600000000
## 1492 2014                                 NCSoft 0.0700000000
## 1493 2002                        NDA Productions 0.0200000000
## 1494 1995                                    NEC 0.0000000000
## 1495 1996                                    NEC 0.0000000000
## 1496 1996                       NEC Interchannel 0.0000000000
## 1497 1997                       NEC Interchannel 0.0000000000
## 1498 1998                       NEC Interchannel 0.0000000000
## 1499 2000                       NEC Interchannel 0.0000000000
## 1500 2008                       NEC Interchannel 0.0000000000
## 1501 2007                     Neko Entertainment 0.0000000000
## 1502 2008                     Neko Entertainment 0.0000000000
## 1503 2009                     Neko Entertainment 0.0100000000
## 1504 2010                     Neko Entertainment 0.0350000000
## 1505 2010                                NetRevo 0.0000000000
## 1506 2012                                NetRevo 0.0000000000
## 1507 1995                                    New 0.0000000000
## 1508 1992                    New World Computing 0.0000000000
## 1509 1998                               NewKidCo 0.1050000000
## 1510 1999                               NewKidCo 0.0400000000
## 1511 2001                               NewKidCo 0.0000000000
## 1512 2002                               NewKidCo 0.0700000000
## 1513 2003                               NewKidCo 0.0066666667
## 1514 2010                                  Nexon 0.0000000000
## 1515 1995                             Nichibutsu 0.0000000000
## 1516 2012               Nihon Falcom Corporation 0.0050000000
## 1517 2014               Nihon Falcom Corporation 0.0000000000
## 1518 2015               Nihon Falcom Corporation 0.0000000000
## 1519 2016               Nihon Falcom Corporation 0.0000000000
## 1520 1983                               Nintendo 0.0766666667
## 1521 1984                               Nintendo 0.2166666667
## 1522 1985                               Nintendo 0.6485714286
## 1523 1986                               Nintendo 0.2883333333
## 1524 1987                               Nintendo 0.2950000000
## 1525 1988                               Nintendo 1.0250000000
## 1526 1989                               Nintendo 0.8444444444
## 1527 1990                               Nintendo 0.9171428571
## 1528 1991                               Nintendo 0.1900000000
## 1529 1992                               Nintendo 0.6080000000
## 1530 1993                               Nintendo 0.3433333333
## 1531 1994                               Nintendo 0.5237500000
## 1532 1995                               Nintendo 0.2210000000
## 1533 1996                               Nintendo 0.9594117647
## 1534 1997                               Nintendo 0.4015384615
## 1535 1998                               Nintendo 0.7217647059
## 1536 1999                               Nintendo 0.6870000000
## 1537 2000                               Nintendo 0.2791304348
## 1538 2001                               Nintendo 0.4018181818
## 1539 2002                               Nintendo 0.4495454545
## 1540 2003                               Nintendo 0.2622222222
## 1541 2004                               Nintendo 0.2180701754
## 1542 2005                               Nintendo 0.9486666667
## 1543 2006                               Nintendo 1.1386792453
## 1544 2007                               Nintendo 0.7811904762
## 1545 2008                               Nintendo 0.7853125000
## 1546 2009                               Nintendo 1.1306250000
## 1547 2010                               Nintendo 0.5900000000
## 1548 2011                               Nintendo 0.5530769231
## 1549 2012                               Nintendo 0.4506451613
## 1550 2013                               Nintendo 0.7047826087
## 1551 2014                               Nintendo 0.5685000000
## 1552 2015                               Nintendo 0.2340625000
## 1553 2016                               Nintendo 0.0930000000
## 1554  N/A                               Nintendo 0.0628571429
## 1555 2002                           Nippon Amuse 0.0000000000
## 1556 2012                        Nippon Columbia 0.0000000000
## 1557 2013                        Nippon Columbia 0.0000000000
## 1558 2014                        Nippon Columbia 0.0000000000
## 1559 2015                        Nippon Columbia 0.0000000000
## 1560 2016                        Nippon Columbia 0.0000000000
## 1561 1998                   Nippon Ichi Software 0.0100000000
## 1562 2007                   Nippon Ichi Software 0.0083333333
## 1563 2008                   Nippon Ichi Software 0.0040000000
## 1564 2009                   Nippon Ichi Software 0.0211111111
## 1565 2010                   Nippon Ichi Software 0.0088888889
## 1566 2011                   Nippon Ichi Software 0.0322222222
## 1567 2012                   Nippon Ichi Software 0.0120000000
## 1568 2013                   Nippon Ichi Software 0.0255555556
## 1569 2014                   Nippon Ichi Software 0.0184210526
## 1570 2015                   Nippon Ichi Software 0.0236363636
## 1571 2016                   Nippon Ichi Software 0.0083333333
## 1572  N/A                   Nippon Ichi Software 0.0600000000
## 1573 1996                         Nippon Telenet 0.0000000000
## 1574 2014                              Nitroplus 0.0000000000
## 1575 2015                              Nitroplus 0.0000000000
## 1576 2007                                Nobilis 0.0000000000
## 1577 2008                                Nobilis 0.0214285714
## 1578 2009                                Nobilis 0.0100000000
## 1579 2010                                Nobilis 0.0000000000
## 1580 2007                            Nordcurrent 0.0000000000
## 1581 2008                            Nordcurrent 0.1300000000
## 1582 2009                            Nordcurrent 0.0100000000
## 1583 2010                            Nordcurrent 0.0000000000
## 1584 2008                           Nordic Games 0.0000000000
## 1585 2009                           Nordic Games 0.2675000000
## 1586 2010                           Nordic Games 0.1220000000
## 1587 2011                           Nordic Games 0.1775000000
## 1588 2012                           Nordic Games 0.0900000000
## 1589 2013                           Nordic Games 0.0150000000
## 1590 2014                           Nordic Games 0.0300000000
## 1591 2015                           Nordic Games 0.0310000000
## 1592 2016                           Nordic Games 0.0100000000
## 1593 2005                              NovaLogic 0.1200000000
## 1594 2009                              NovaLogic 0.0000000000
## 1595 2009                            Number None 0.0200000000
## 1596 2009                                O-Games 0.0000000000
## 1597 2010                                O-Games 0.0383333333
## 1598 2011                                O-Games 0.0200000000
## 1599 2004                       O3 Entertainment 0.0200000000
## 1600 2006                       O3 Entertainment 0.0000000000
## 1601 2007                       O3 Entertainment 0.0000000000
## 1602 1992                                  Ocean 0.0000000000
## 1603 1993                                  Ocean 0.1000000000
## 1604 1995                                  Ocean 0.0300000000
## 1605 1996                                  Ocean 0.0200000000
## 1606 1997                                  Ocean 0.1733333333
## 1607 1998                                  Ocean 0.0560000000
## 1608 2013                          Office Create 0.0000000000
## 1609 2014                          Office Create 0.0000000000
## 1610 1997                              On Demand 0.0800000000
## 1611 2006                              Ongakukan 0.0000000000
## 1612 1997                         Origin Systems 0.0300000000
## 1613 2013                                Otomate 0.0000000000
## 1614 2005                     Oxygen Interactive 0.1300000000
## 1615 2006                     Oxygen Interactive 0.2133333333
## 1616 2007                     Oxygen Interactive 0.0000000000
## 1617 2008                     Oxygen Interactive 0.0357142857
## 1618 2009                     Oxygen Interactive 0.0022222222
## 1619  N/A                     Oxygen Interactive 0.0000000000
## 1620 2009                               P2 Games 0.0250000000
## 1621 2011                               P2 Games 0.2800000000
## 1622 2002            Pacific Century Cyber Works 0.0900000000
## 1623 1995                          Pack-In-Video 0.0000000000
## 1624 1999                           Pack In Soft 0.0600000000
## 1625 1989                                 Palcom 0.4400000000
## 1626 1995                       Panther Software 0.0200000000
## 1627 2007                                   Paon 0.0000000000
## 1628 2008                                   Paon 0.0000000000
## 1629 2010                                   Paon 0.0000000000
## 1630 2011                                   Paon 0.0000000000
## 1631 2013                       Paon Corporation 0.0000000000
## 1632 2016                    Paradox Development 0.0100000000
## 1633 2007                    Paradox Interactive 0.0300000000
## 1634 2008                    Paradox Interactive 0.0200000000
## 1635 2009                    Paradox Interactive 0.0100000000
## 1636 2010                    Paradox Interactive 0.0220000000
## 1637 2011                    Paradox Interactive 0.0216666667
## 1638 2012                    Paradox Interactive 0.0200000000
## 1639 2014                    Paradox Interactive 0.0100000000
## 1640 2015                    Paradox Interactive 0.1300000000
## 1641 2016                    Paradox Interactive 0.0300000000
## 1642 1981                           Parker Bros. 0.0600000000
## 1643 1982                           Parker Bros. 0.0300000000
## 1644 1983                           Parker Bros. 0.0150000000
## 1645 2009          Performance Designed Products 0.0000000000
## 1646 2002                             Phantagram 0.0100000000
## 1647 2009                            Phantom EFX 0.0000000000
## 1648 2007                             Phenomedia 0.0000000000
## 1649 2008                             Phenomedia 0.0000000000
## 1650 2009                             Phenomedia 0.0000000000
## 1651 2007                          Phoenix Games 0.0000000000
## 1652 2010                                 Piacci 0.0000000000
## 1653 2008                               Pinnacle 0.2425000000
## 1654 2009                               Pinnacle 0.3500000000
## 1655 1996                            Pioneer LDC 0.0800000000
## 1656 1998                            Pioneer LDC 0.0000000000
## 1657 2001                            Pioneer LDC 0.0000000000
## 1658 2002                                Play It 0.2150000000
## 1659 2003                                Play It 0.0600000000
## 1660 2004                                Play It 0.0842857143
## 1661 2005                                Play It 0.0300000000
## 1662 2005                 Playlogic Game Factory 0.0500000000
## 1663 2008                 Playlogic Game Factory 0.0000000000
## 1664 2009                 Playlogic Game Factory 0.0100000000
## 1665 1997                              Playmates 0.1100000000
## 1666 2002                               Playmore 0.0000000000
## 1667 2009                                  PlayV 0.0200000000
## 1668 2010                                  PlayV 0.0933333333
## 1669 2011                                 Plenty 0.0000000000
## 1670 2009                             PM Studios 0.0000000000
## 1671 2000                            Pony Canyon 0.0200000000
## 1672 2006                           PopCap Games 0.0000000000
## 1673 2007                           PopCap Games 0.0000000000
## 1674 2008                           PopCap Games 0.0433333333
## 1675 2009                           PopCap Games 0.0125000000
## 1676 2010                           PopCap Games 0.0466666667
## 1677 2011                           PopCap Games 0.0066666667
## 1678 2007                         Popcorn Arcade 0.0000000000
## 1679 2008                         Popcorn Arcade 0.0000000000
## 1680 1999                        PopTop Software 0.0400000000
## 1681 1995                                    Pow 0.0000000000
## 1682 2007                                  PQube 0.0000000000
## 1683 2008                                  PQube 0.0150000000
## 1684 2009                                  PQube 0.0500000000
## 1685 2010                                  PQube 0.0266666667
## 1686 2011                                  PQube 0.0240000000
## 1687 2012                                  PQube 0.0400000000
## 1688 2013                                  PQube 0.0900000000
## 1689 2015                                  PQube 0.0150000000
## 1690 2016                                  PQube 0.0080000000
## 1691 2002                          Princess Soft 0.0000000000
## 1692 2006                          Princess Soft 0.0000000000
## 1693 2008                          Princess Soft 0.0000000000
## 1694 2007                              Prototype 0.0000000000
## 1695 2008                              Prototype 0.0000000000
## 1696 2009                              Prototype 0.0000000000
## 1697 2010                              Prototype 0.0000000000
## 1698 2011                              Prototype 0.0000000000
## 1699 2012                              Prototype 0.0000000000
## 1700 2013                              Prototype 0.0000000000
## 1701 2014                              Prototype 0.0000000000
## 1702 2015                              Prototype 0.0000000000
## 1703 2016                              Prototype 0.0000000000
## 1704 1994                              Psygnosis 0.0200000000
## 1705 1995                              Psygnosis 0.0885714286
## 1706 1996                              Psygnosis 0.1014285714
## 1707 1997                              Psygnosis 0.0622222222
## 1708 1998                              Psygnosis 0.0725000000
## 1709 1999                              Psygnosis 0.0766666667
## 1710 2000                              Psygnosis 0.0500000000
## 1711 1982                                 Quelle 0.0500000000
## 1712 1995                                  Quest 0.0000000000
## 1713 2011                               Quinrose 0.0000000000
## 1714 2012                               Quinrose 0.0000000000
## 1715 2013                               Quinrose 0.0000000000
## 1716 2014                               Quinrose 0.0000000000
## 1717 1998                                Quintet 0.0000000000
## 1718 2001                          Rage Software 0.0250000000
## 1719 2002                          Rage Software 0.0840000000
## 1720 2015                             Rain Games 0.0100000000
## 1721 2001                              Rebellion 0.1300000000
## 1722 2002                              Rebellion 0.0000000000
## 1723 2015                 Rebellion Developments 0.0850000000
## 1724 2010                      RED Entertainment 0.0000000000
## 1725 1994                                Red Orb 2.7900000000
## 1726 1997                                Red Orb 0.8200000000
## 1727 1999                Red Storm Entertainment 0.3900000000
## 1728 2001                Red Storm Entertainment 0.0200000000
## 1729 2005                              RedOctane 0.3200000000
## 1730 2006                              RedOctane 0.6300000000
## 1731 2007                              RedOctane 0.0400000000
## 1732 2009                     Reef Entertainment 0.0100000000
## 1733 2010                     Reef Entertainment 0.0300000000
## 1734 2012                     Reef Entertainment 0.0200000000
## 1735 2004                           responDESIGN 0.0200000000
## 1736 2005                           responDESIGN 0.0200000000
## 1737 2009                     Revolution (Japan) 0.0000000000
## 1738 2015                    Revolution Software 0.0350000000
## 1739 2005                      Rising Star Games 0.0100000000
## 1740 2006                      Rising Star Games 0.0155555556
## 1741 2007                      Rising Star Games 0.0421052632
## 1742 2008                      Rising Star Games 0.0317647059
## 1743 2009                      Rising Star Games 0.0441666667
## 1744 2010                      Rising Star Games 0.0500000000
## 1745 2011                      Rising Star Games 0.0455555556
## 1746 2012                      Rising Star Games 0.0250000000
## 1747 2013                      Rising Star Games 0.0466666667
## 1748 2016                      Rising Star Games 0.0000000000
## 1749  N/A                      Rising Star Games 0.0000000000
## 1750 1995                          Riverhillsoft 0.0000000000
## 1751 2006                         Rocket Company 0.0000000000
## 1752 2007                         Rocket Company 0.0000000000
## 1753 2008                         Rocket Company 0.0000000000
## 1754 2009                         Rocket Company 0.0000000000
## 1755 2010                         Rocket Company 0.0000000000
## 1756 2011                         Rocket Company 0.0000000000
## 1757 2012                         Rocket Company 0.0000000000
## 1758 2013                         Rocket Company 0.0000000000
## 1759 2014                         Rocket Company 0.0000000000
## 1760 2015                         Rocket Company 0.0000000000
## 1761 2016                         Rocket Company 0.0000000000
## 1762 2008                             Rondomedia 0.1500000000
## 1763 2009                             Rondomedia 0.0980000000
## 1764 2010                             Rondomedia 0.0200000000
## 1765 2011                             Rondomedia 0.0400000000
## 1766 2015                             Rondomedia 0.0300000000
## 1767 2007                                    RTL 0.6800000000
## 1768 2008                                    RTL 0.0520000000
## 1769 2009                                    RTL 0.0200000000
## 1770 2007                                 Russel 1.1200000000
## 1771 2008                                 Russel 0.0000000000
## 1772 2009                                 Russel 0.0000000000
## 1773 2010                                 Russel 0.0000000000
## 1774 1993                      Sammy Corporation 0.0000000000
## 1775 2001                      Sammy Corporation 0.0650000000
## 1776 2002                      Sammy Corporation 0.0240000000
## 1777 2003                      Sammy Corporation 0.0600000000
## 1778 2004                      Sammy Corporation 0.0000000000
## 1779 2006                      Sammy Corporation 0.0000000000
## 1780 1998                                 Saurus 0.0100000000
## 1781 2007                        Scholastic Inc. 0.0000000000
## 1782 2008                        Scholastic Inc. 0.0075000000
## 1783 2010                        Scholastic Inc. 0.0000000000
## 1784 2011                        Scholastic Inc. 0.0000000000
## 1785 2002                                    SCi 0.3700000000
## 1786 2003                                    SCi 0.0612500000
## 1787 2004                                    SCi 0.0600000000
## 1788 2005                                    SCi 0.0233333333
## 1789 2013                             Screenlife 0.0025000000
## 1790 2015                             Screenlife 0.0000000000
## 1791 2016                             Screenlife 0.0000000000
## 1792 2012                           SCS Software 0.1200000000
## 1793  N/A                                  Sears 0.0100000000
## 1794 1982                                   Sega 0.0200000000
## 1795 1990                                   Sega 0.5500000000
## 1796 1991                                   Sega 0.9100000000
## 1797 1992                                   Sega 0.3000000000
## 1798 1993                                   Sega 0.0600000000
## 1799 1994                                   Sega 0.0392307692
## 1800 1995                                   Sega 0.0155555556
## 1801 1996                                   Sega 0.0000000000
## 1802 1997                                   Sega 0.0000000000
## 1803 1998                                   Sega 0.0435714286
## 1804 1999                                   Sega 0.0322222222
## 1805 2000                                   Sega 0.0509090909
## 1806 2001                                   Sega 0.1833333333
## 1807 2002                                   Sega 0.0828205128
## 1808 2003                                   Sega 0.1243750000
## 1809 2004                                   Sega 0.0896428571
## 1810 2005                                   Sega 0.0941935484
## 1811 2006                                   Sega 0.0648936170
## 1812 2007                                   Sega 0.1968000000
## 1813 2008                                   Sega 0.1925373134
## 1814 2009                                   Sega 0.2134883721
## 1815 2010                                   Sega 0.2461538462
## 1816 2011                                   Sega 0.2048571429
## 1817 2012                                   Sega 0.1732000000
## 1818 2013                                   Sega 0.1323529412
## 1819 2014                                   Sega 0.0852173913
## 1820 2015                                   Sega 0.0460000000
## 1821 2016                                   Sega 0.0175000000
## 1822 2017                                   Sega 0.0000000000
## 1823  N/A                                   Sega 0.0842857143
## 1824 1995                       Seta Corporation 0.0000000000
## 1825 1996                       Seta Corporation 0.0000000000
## 1826 2013                          Seventh Chord 0.0000000000
## 1827 1995                             Shogakukan 0.0000000000
## 1828 2006                             Shogakukan 0.0000000000
## 1829 2007                             Shogakukan 0.0000000000
## 1830 2015                             Shogakukan 0.0000000000
## 1831 2002           Simon & Schuster Interactive 0.0200000000
## 1832 2015                   Slightly Mad Studios 0.3066666667
## 1833 2009                    Slitherine Software 0.0100000000
## 1834 2010                    Slitherine Software 0.0400000000
## 1835  N/A                    Slitherine Software 0.0400000000
## 1836 1993                                    SNK 0.0000000000
## 1837 1994                                    SNK 0.0000000000
## 1838 1995                                    SNK 0.0000000000
## 1839 1996                                    SNK 0.0000000000
## 1840 1997                                    SNK 0.0000000000
## 1841 1998                                    SNK 0.0000000000
## 1842 1999                                    SNK 0.0000000000
## 1843 2000                                    SNK 0.0000000000
## 1844 2005                                    SNK 0.0300000000
## 1845 1995                           SNK Playmore 0.0000000000
## 1846 1998                           SNK Playmore 0.0000000000
## 1847 1999                           SNK Playmore 0.0250000000
## 1848 2005                           SNK Playmore 0.0200000000
## 1849 2006                           SNK Playmore 0.0000000000
## 1850 2007                           SNK Playmore 0.0075000000
## 1851 2008                           SNK Playmore 0.0000000000
## 1852 2009                           SNK Playmore 0.0000000000
## 1853 2010                           SNK Playmore 0.0000000000
## 1854 1996                                Societa 0.0000000000
## 1855 2016                               Sold Out 0.0100000000
## 1856 1995                                 Sonnet 0.0000000000
## 1857 1996                                 Sonnet 0.0000000000
## 1858 1994            Sony Computer Entertainment 0.0814285714
## 1859 1995            Sony Computer Entertainment 0.1474193548
## 1860 1996            Sony Computer Entertainment 0.3132142857
## 1861 1997            Sony Computer Entertainment 0.3335294118
## 1862 1998            Sony Computer Entertainment 0.3126666667
## 1863 1999            Sony Computer Entertainment 0.4336000000
## 1864 2000            Sony Computer Entertainment 0.2400000000
## 1865 2001            Sony Computer Entertainment 0.3326315789
## 1866 2002            Sony Computer Entertainment 0.2440000000
## 1867 2003            Sony Computer Entertainment 0.2712500000
## 1868 2004            Sony Computer Entertainment 0.2893333333
## 1869 2005            Sony Computer Entertainment 0.1233333333
## 1870 2006            Sony Computer Entertainment 0.2350980392
## 1871 2007            Sony Computer Entertainment 0.2841463415
## 1872 2008            Sony Computer Entertainment 0.2297297297
## 1873 2009            Sony Computer Entertainment 0.2968888889
## 1874 2010            Sony Computer Entertainment 0.2965116279
## 1875 2011            Sony Computer Entertainment 0.2547222222
## 1876 2012            Sony Computer Entertainment 0.1408333333
## 1877 2013            Sony Computer Entertainment 0.4316666667
## 1878 2014            Sony Computer Entertainment 0.6515384615
## 1879 2015            Sony Computer Entertainment 0.3840000000
## 1880 2016            Sony Computer Entertainment 0.5740000000
## 1881  N/A            Sony Computer Entertainment 0.1700000000
## 1882 2014    Sony Computer Entertainment America 0.0000000000
## 1883 2001     Sony Computer Entertainment Europe 0.5600000000
## 1884 2004     Sony Computer Entertainment Europe 0.3400000000
## 1885 2012     Sony Computer Entertainment Europe 0.1500000000
## 1886 2013     Sony Computer Entertainment Europe 0.5885714286
## 1887 2014     Sony Computer Entertainment Europe 0.7350000000
## 1888 2015     Sony Computer Entertainment Europe 0.8900000000
## 1889 2001               Sony Music Entertainment 0.0000000000
## 1890 2003              Sony Online Entertainment 0.1150000000
## 1891 2004              Sony Online Entertainment 0.4900000000
## 1892 2005              Sony Online Entertainment 0.2500000000
## 1893 2006              Sony Online Entertainment 0.0000000000
## 1894 2011              Sony Online Entertainment 0.0600000000
## 1895 1999                        SouthPeak Games 0.0400000000
## 1896 2004                        SouthPeak Games 0.0400000000
## 1897 2005                        SouthPeak Games 0.0000000000
## 1898 2006                        SouthPeak Games 0.0150000000
## 1899 2007                        SouthPeak Games 0.0600000000
## 1900 2008                        SouthPeak Games 0.0075000000
## 1901 2009                        SouthPeak Games 0.0238461538
## 1902 2010                        SouthPeak Games 0.0271428571
## 1903 2001                                  Spike 0.0300000000
## 1904 2002                                  Spike 0.0000000000
## 1905 2004                                  Spike 0.0000000000
## 1906 2006                                  Spike 0.0025000000
## 1907 2007                                  Spike 0.0287500000
## 1908 2008                                  Spike 0.0000000000
## 1909 2009                                  Spike 0.0075000000
## 1910 2010                                  Spike 0.0000000000
## 1911 2011                                  Spike 0.0000000000
## 1912 2012                                  Spike 0.0000000000
## 1913 1996                                    SPS 0.0400000000
## 1914 1991                                 Square 0.0900000000
## 1915 1994                                 Square 0.0000000000
## 1916 1997                                 Square 0.0000000000
## 1917 1999                                 Square 0.0000000000
## 1918 2001                                 Square 0.2000000000
## 1919 1999                              Square EA 0.3000000000
## 1920 2003                            Square Enix 0.0633333333
## 1921 2004                            Square Enix 0.1866666667
## 1922 2005                            Square Enix 0.1433333333
## 1923 2006                            Square Enix 0.0500000000
## 1924 2007                            Square Enix 0.0926086957
## 1925 2008                            Square Enix 0.0533333333
## 1926 2009                            Square Enix 0.1138888889
## 1927 2010                            Square Enix 0.2100000000
## 1928 2011                            Square Enix 0.1695454545
## 1929 2012                            Square Enix 0.3118181818
## 1930 2013                            Square Enix 0.2618750000
## 1931 2014                            Square Enix 0.1426923077
## 1932 2015                            Square Enix 0.1981250000
## 1933 2016                            Square Enix 0.0335000000
## 1934  N/A                            Square Enix 0.1250000000
## 1935 1987                             SquareSoft 0.0000000000
## 1936 1988                             SquareSoft 0.0000000000
## 1937 1989                             SquareSoft 0.0000000000
## 1938 1990                             SquareSoft 0.0000000000
## 1939 1991                             SquareSoft 0.0000000000
## 1940 1992                             SquareSoft 0.0000000000
## 1941 1993                             SquareSoft 0.0350000000
## 1942 1994                             SquareSoft 0.0000000000
## 1943 1995                             SquareSoft 0.0000000000
## 1944 1996                             SquareSoft 0.0000000000
## 1945 1997                             SquareSoft 0.0287500000
## 1946 1998                             SquareSoft 0.0937500000
## 1947 1999                             SquareSoft 0.3450000000
## 1948 2000                             SquareSoft 0.1925000000
## 1949 2001                             SquareSoft 0.0000000000
## 1950 2002                             SquareSoft 0.0000000000
## 1951 2003                             SquareSoft 0.3700000000
## 1952 1996                                    SSI 0.0700000000
## 1953 2016                        Stainless Games 0.0100000000
## 1954 1997                               Starfish 0.1400000000
## 1955 1999                               Starfish 0.0400000000
## 1956 2001                               Starfish 0.0100000000
## 1957 2007                               Starfish 0.0000000000
## 1958 2009                               Starfish 0.0000000000
## 1959 2010                               Starfish 0.0000000000
## 1960 2011                               Starfish 0.0000000000
## 1961 2012                               Starfish 0.0000000000
## 1962 1981                         Starpath Corp. 0.0200000000
## 1963 2004                                  Sting 0.0300000000
## 1964 2006                                  Sting 0.0000000000
## 1965 2007                                  Sting 0.0400000000
## 1966 2008                                  Sting 0.0000000000
## 1967 2010                                  Sting 0.0000000000
## 1968 2009                       Storm City Games 0.0000000000
## 1969 2010                       Storm City Games 0.0076923077
## 1970 2011                       Storm City Games 0.0000000000
## 1971 2001                         Strategy First 0.0200000000
## 1972 1998                                Success 0.4300000000
## 1973 1999                                Success 0.0100000000
## 1974 2000                                Success 0.0000000000
## 1975 2001                                Success 0.0400000000
## 1976 2002                                Success 0.0000000000
## 1977 2005                                Success 0.0050000000
## 1978 2006                                Success 0.0000000000
## 1979 2007                                Success 0.0000000000
## 1980 2008                                Success 0.0000000000
## 1981 2009                                Success 0.0000000000
## 1982 2013                                Success 0.0000000000
## 1983 2014                                Success 0.0000000000
## 1984 2004                             Summitsoft 0.0100000000
## 1985 2004                             Sunflowers 0.0200000000
## 1986 2000                    Sunrise Interactive 0.0000000000
## 1987 2006                    Sunrise Interactive 0.0000000000
## 1988 2007                    Sunrise Interactive 0.0000000000
## 1989 1994                                Sunsoft 0.0000000000
## 1990 1995                                Sunsoft 0.0000000000
## 1991 1996                                Sunsoft 0.0300000000
## 1992 1997                                Sunsoft 0.0200000000
## 1993 1998                                Sunsoft 0.0500000000
## 1994 1999                                Sunsoft 0.0500000000
## 1995 2000                                Sunsoft 0.1000000000
## 1996 2011                                Sunsoft 0.0000000000
## 1997 2006                                 Sweets 0.0000000000
## 1998 2009                                 Sweets 0.0000000000
## 1999 1998                   Swing! Entertainment 0.0200000000
## 2000 2000                   Swing! Entertainment 0.0350000000
## 2001 2001                   Swing! Entertainment 0.0200000000
## 2002 2002                   Swing! Entertainment 0.0300000000
## 2003 1998                                 Syscom 0.0000000000
## 2004 1999                                 Syscom 0.0400000000
## 2005 2013                               System 3 0.0333333333
## 2006 2006               System 3 Arcade Software 0.0000000000
## 2007 2007               System 3 Arcade Software 0.0200000000
## 2008 2008               System 3 Arcade Software 0.0883333333
## 2009 2009               System 3 Arcade Software 0.0250000000
## 2010  N/A               System 3 Arcade Software 0.0100000000
## 2011 2008                            System Soft 0.0000000000
## 2012 2010                            System Soft 0.0000000000
## 2013 2011                            System Soft 0.0000000000
## 2014 1993                               T&E Soft 0.0000000000
## 2015 1981                                  Taito 0.0100000000
## 2016 1994                                  Taito 0.0000000000
## 2017 1995                                  Taito 0.0000000000
## 2018 1997                                  Taito 0.0000000000
## 2019 1999                                  Taito 0.0000000000
## 2020 2001                                  Taito 0.0000000000
## 2021 2002                                  Taito 0.0266666667
## 2022 2003                                  Taito 0.0000000000
## 2023 2006                                  Taito 0.0000000000
## 2024 2007                                  Taito 0.0000000000
## 2025 2010                                  Taito 0.0000000000
## 2026 1992                                 Takara 0.0000000000
## 2027 1993                                 Takara 0.0000000000
## 2028 1994                                 Takara 0.0000000000
## 2029 1995                                 Takara 0.0000000000
## 2030 1996                                 Takara 0.0000000000
## 2031 1997                                 Takara 0.0000000000
## 2032 1998                                 Takara 0.0000000000
## 2033 1999                                 Takara 0.0000000000
## 2034 2001                                 Takara 0.0300000000
## 2035 2002                                 Takara 0.0000000000
## 2036 2003                                 Takara 0.0000000000
## 2037 2006                            Takara Tomy 0.0000000000
## 2038 2007                            Takara Tomy 0.0000000000
## 2039 2008                            Takara Tomy 0.0023076923
## 2040 2009                            Takara Tomy 0.0000000000
## 2041 2010                            Takara Tomy 0.0000000000
## 2042 2011                            Takara Tomy 0.0000000000
## 2043 2013                            Takara Tomy 0.0000000000
## 2044 2015                            Takara Tomy 0.0000000000
## 2045 1997                   Take-Two Interactive 0.4766666667
## 2046 1998                   Take-Two Interactive 0.4766666667
## 2047 1999                   Take-Two Interactive 0.1325000000
## 2048 2000                   Take-Two Interactive 0.2950000000
## 2049 2001                   Take-Two Interactive 0.5683333333
## 2050 2002                   Take-Two Interactive 0.8400000000
## 2051 2003                   Take-Two Interactive 0.2142857143
## 2052 2004                   Take-Two Interactive 0.1200000000
## 2053 2005                   Take-Two Interactive 0.2056097561
## 2054 2006                   Take-Two Interactive 0.1700000000
## 2055 2007                   Take-Two Interactive 0.1405405405
## 2056 2008                   Take-Two Interactive 0.3360975610
## 2057 2009                   Take-Two Interactive 0.1082926829
## 2058 2010                   Take-Two Interactive 0.2965714286
## 2059 2011                   Take-Two Interactive 0.1509677419
## 2060 2012                   Take-Two Interactive 0.2239285714
## 2061 2013                   Take-Two Interactive 1.1437500000
## 2062 2014                   Take-Two Interactive 0.7606666667
## 2063 2015                   Take-Two Interactive 0.2505882353
## 2064 2016                   Take-Two Interactive 0.0516666667
## 2065  N/A                   Take-Two Interactive 0.1900000000
## 2066 2011                                 Takuyo 0.0000000000
## 2067 2001                              TalonSoft 0.3300000000
## 2068 2000                               TDK Core 0.0700000000
## 2069 2002                               TDK Core 0.0500000000
## 2070 2006                               TDK Core 0.0000000000
## 2071 2007                               TDK Core 0.0000000000
## 2072 2001                         TDK Mediactive 0.0460000000
## 2073 2002                         TDK Mediactive 0.0625000000
## 2074 2003                         TDK Mediactive 0.0485714286
## 2075 2004                         TDK Mediactive 0.5100000000
## 2076 2010                        Team17 Software 0.0400000000
## 2077 1995              Technos Japan Corporation 0.0000000000
## 2078 1998                             TechnoSoft 0.0200000000
## 2079 1991                             Tecmo Koei 0.0000000000
## 2080 1992                             Tecmo Koei 0.0000000000
## 2081 1993                             Tecmo Koei 0.0000000000
## 2082 1994                             Tecmo Koei 0.0000000000
## 2083 1995                             Tecmo Koei 0.0100000000
## 2084 1996                             Tecmo Koei 0.0175000000
## 2085 1997                             Tecmo Koei 0.0350000000
## 2086 1998                             Tecmo Koei 0.0050000000
## 2087 1999                             Tecmo Koei 0.0060000000
## 2088 2000                             Tecmo Koei 0.0360000000
## 2089 2001                             Tecmo Koei 0.0375000000
## 2090 2002                             Tecmo Koei 0.0309090909
## 2091 2003                             Tecmo Koei 0.0744444444
## 2092 2004                             Tecmo Koei 0.0269230769
## 2093 2005                             Tecmo Koei 0.0376923077
## 2094 2006                             Tecmo Koei 0.0165384615
## 2095 2007                             Tecmo Koei 0.0209677419
## 2096 2008                             Tecmo Koei 0.0133333333
## 2097 2009                             Tecmo Koei 0.0090476190
## 2098 2010                             Tecmo Koei 0.0168421053
## 2099 2011                             Tecmo Koei 0.0358823529
## 2100 2012                             Tecmo Koei 0.0430000000
## 2101 2013                             Tecmo Koei 0.0189473684
## 2102 2014                             Tecmo Koei 0.0222222222
## 2103 2015                             Tecmo Koei 0.0105714286
## 2104 2016                             Tecmo Koei 0.0041176471
## 2105 1999                              Telegames 0.0100000000
## 2106 2003                              Telegames 0.0250000000
## 2107 2005                              Telegames 0.0000000000
## 2108 2007                              Telegames 0.0000000000
## 2109 2008                              Telegames 0.0000000000
## 2110 2010                              Telegames 0.0000000000
## 2111 2011                         Telltale Games 0.0133333333
## 2112 2014                         Telltale Games 0.0663636364
## 2113 2015                         Telltale Games 0.0157142857
## 2114 2016                         Telltale Games 0.0300000000
## 2115 1995                                Telstar 0.0200000000
## 2116 1998                                Telstar 0.0400000000
## 2117 2011                          Tetris Online 0.1300000000
## 2118 2009                                    TGL 0.0000000000
## 2119 2015                                    TGL 0.0000000000
## 2120 2008                  The Adventure Company 0.0133333333
## 2121 2009                  The Adventure Company 0.0450000000
## 2122 2000                   The Learning Company 0.0200000000
## 2123 1995                                    THQ 0.0100000000
## 2124 1997                                    THQ 0.1200000000
## 2125 1998                                    THQ 0.3072727273
## 2126 1999                                    THQ 0.1437500000
## 2127 2000                                    THQ 0.3533333333
## 2128 2001                                    THQ 0.2225000000
## 2129 2002                                    THQ 0.1498181818
## 2130 2003                                    THQ 0.1348437500
## 2131 2004                                    THQ 0.1800000000
## 2132 2005                                    THQ 0.0817460317
## 2133 2006                                    THQ 0.0998245614
## 2134 2007                                    THQ 0.1045945946
## 2135 2008                                    THQ 0.1283606557
## 2136 2009                                    THQ 0.1120833333
## 2137 2010                                    THQ 0.0922807018
## 2138 2011                                    THQ 0.1097368421
## 2139 2012                                    THQ 0.2950000000
## 2140 2013                                    THQ 0.2500000000
## 2141  N/A                                    THQ 0.0433333333
## 2142 1981                            Tigervision 0.0350000000
## 2143 1982                            Tigervision 0.0200000000
## 2144 1994                Time Warner Interactive 0.0400000000
## 2145 1995                Time Warner Interactive 0.0300000000
## 2146 1996                Time Warner Interactive 0.0166666667
## 2147 1993                                  Titus 0.0000000000
## 2148 1997                                  Titus 0.1700000000
## 2149 1998                                  Titus 0.0550000000
## 2150 1999                                  Titus 0.0725000000
## 2151 2000                                  Titus 0.0100000000
## 2152 2001                                  Titus 0.0925000000
## 2153 2002                                  Titus 0.0300000000
## 2154 2003                                  Titus 0.0000000000
## 2155 2008                                 Tivola 0.0000000000
## 2156 2009                                 Tivola 0.0350000000
## 2157 1993                                   TOHO 0.0000000000
## 2158 2007                                  Tommo 0.0000000000
## 2159 2009                                  Tommo 0.0000000000
## 2160 2011                                  Tommo 0.0000000000
## 2161 1995                       Tomy Corporation 0.0000000000
## 2162 1996                       Tomy Corporation 0.0100000000
## 2163 1998                       Tomy Corporation 0.0000000000
## 2164 2003                       Tomy Corporation 0.0500000000
## 2165 2004                       Tomy Corporation 0.0000000000
## 2166 2005                       Tomy Corporation 0.0000000000
## 2167 2006                       Tomy Corporation 0.0000000000
## 2168 2007                       Tomy Corporation 0.4600000000
## 2169 2008                       Tomy Corporation 0.0200000000
## 2170 2009                       Tomy Corporation 0.0000000000
## 2171 2010                       Tomy Corporation 0.0000000000
## 2172 2011                    TopWare Interactive 0.0300000000
## 2173 2015                    TopWare Interactive 0.0100000000
## 2174  N/A                    TopWare Interactive 0.0300000000
## 2175 2007                             Touchstone 0.0600000000
## 2176 2008                             Touchstone 0.1466666667
## 2177 2010                              Tradewest 0.0200000000
## 2178 2012                           Trion Worlds 0.0000000000
## 2179 2013                           Trion Worlds 0.1000000000
## 2180 2011                   Tripwire Interactive 0.0700000000
## 2181 2014                  Tru Blu Entertainment 0.0150000000
## 2182 2015                  Tru Blu Entertainment 0.0366666667
## 2183 2008                               Tryfirst 0.0000000000
## 2184 1998                                    TYO 0.1600000000
## 2185 2014                              Type-Moon 0.0000000000
## 2186 1995                              U.S. Gold 0.0350000000
## 2187 1996                              U.S. Gold 0.0300000000
## 2188 1995                                Ubisoft 1.3300000000
## 2189 1996                                Ubisoft 0.0600000000
## 2190 1997                                Ubisoft 0.1300000000
## 2191 1998                                Ubisoft 0.0233333333
## 2192 1999                                Ubisoft 0.0976923077
## 2193 2000                                Ubisoft 0.0695238095
## 2194 2001                                Ubisoft 0.0604000000
## 2195 2002                                Ubisoft 0.1015909091
## 2196 2003                                Ubisoft 0.1176595745
## 2197 2004                                Ubisoft 0.1684375000
## 2198 2005                                Ubisoft 0.0800000000
## 2199 2006                                Ubisoft 0.0383606557
## 2200 2007                                Ubisoft 0.1706818182
## 2201 2008                                Ubisoft 0.1692857143
## 2202 2009                                Ubisoft 0.1467647059
## 2203 2010                                Ubisoft 0.1941666667
## 2204 2011                                Ubisoft 0.2051724138
## 2205 2012                                Ubisoft 0.4446875000
## 2206 2013                                Ubisoft 0.3668965517
## 2207 2014                                Ubisoft 0.4254545455
## 2208 2015                                Ubisoft 0.1925000000
## 2209 2016                                Ubisoft 0.3369230769
## 2210 2020                                Ubisoft 0.0000000000
## 2211  N/A                                Ubisoft 0.0966666667
## 2212 2009                         Ubisoft Annecy 0.0666666667
## 2213 2010                         Ubisoft Annecy 0.0250000000
## 2214 2011                         Ubisoft Annecy 0.0933333333
## 2215 2012                         Ubisoft Annecy 0.0200000000
## 2216 1997                            UEP Systems 0.4600000000
## 2217 2007                        UFO Interactive 0.0000000000
## 2218 2008                        UFO Interactive 0.0000000000
## 2219 2009                        UFO Interactive 0.0000000000
## 2220 2010                        UFO Interactive 0.0000000000
## 2221 2011                        UFO Interactive 0.0000000000
## 2222 2012                        UFO Interactive 0.0000000000
## 2223 2016                      UIG Entertainment 0.0100000000
## 2224  N/A                            Ultravision 0.0300000000
## 2225 1982                        Universal Gamex 0.0400000000
## 2226 2001                  Universal Interactive 1.2400000000
## 2227 2002                  Universal Interactive 0.2314285714
## 2228 2003                  Universal Interactive 0.1566666667
## 2229  N/A                  Universal Interactive 0.0700000000
## 2230 1981                                Unknown 0.0200000000
## 2231 1998                                Unknown 0.3100000000
## 2232 2001                                Unknown 0.4066666667
## 2233 2002                                Unknown 0.0066666667
## 2234 2003                                Unknown 0.2500000000
## 2235 2004                                Unknown 0.0100000000
## 2236 2005                                Unknown 0.0300000000
## 2237 2006                                Unknown 0.0100000000
## 2238 2007                                Unknown 0.0066666667
## 2239 2008                                Unknown 0.0000000000
## 2240 2009                                Unknown 0.0100000000
## 2241 2010                                Unknown 0.0105555556
## 2242 2011                                Unknown 0.0316666667
## 2243 2012                                Unknown 0.0100000000
## 2244 2013                                Unknown 0.0300000000
## 2245 2014                                Unknown 0.0366666667
## 2246 2015                                Unknown 0.0100000000
## 2247 2016                                Unknown 0.0000000000
## 2248  N/A                                Unknown 0.0369902913
## 2249 2005                           Valcon Games 0.0400000000
## 2250 2006                           Valcon Games 0.0100000000
## 2251 2008                           Valcon Games 0.0150000000
## 2252 2009                           Valcon Games 0.0000000000
## 2253 2010                           Valcon Games 0.0000000000
## 2254 2005                               ValuSoft 0.0900000000
## 2255 2008                               ValuSoft 0.0000000000
## 2256 2009                               ValuSoft 0.0000000000
## 2257 2011                               ValuSoft 0.0000000000
## 2258 2011                                  Valve 0.6300000000
## 2259 2009                         Valve Software 0.3200000000
## 2260 2011                         Valve Software 0.4150000000
## 2261 1994                                    Vap 0.0000000000
## 2262 2000                  Vatical Entertainment 0.0350000000
## 2263 1996                              Vic Tokai 0.0500000000
## 2264 1997                              Vic Tokai 0.0300000000
## 2265 1993                     Victor Interactive 0.0000000000
## 2266 1995                     Victor Interactive 0.0000000000
## 2267 1997                     Victor Interactive 0.0000000000
## 2268 1998                     Victor Interactive 0.0000000000
## 2269 2000                     Victor Interactive 0.0700000000
## 2270 2001                     Victor Interactive 0.0050000000
## 2271 2002                     Victor Interactive 0.0000000000
## 2272 1992                           Video System 0.0000000000
## 2273 1997                           Video System 0.0400000000
## 2274 1998                           Video System 0.9600000000
## 2275 2000                           Video System 0.0400000000
## 2276 2012                                  Views 0.0000000000
## 2277 2014                                  Views 0.0000000000
## 2278 2008                          Vir2L Studios 0.0000000000
## 2279 2009                          Vir2L Studios 0.0100000000
## 2280 1992                     Virgin Interactive 0.7700000000
## 2281 1994                     Virgin Interactive 0.7200000000
## 2282 1995                     Virgin Interactive 0.0400000000
## 2283 1996                     Virgin Interactive 0.3492307692
## 2284 1997                     Virgin Interactive 0.0811111111
## 2285 1998                     Virgin Interactive 0.2170000000
## 2286 1999                     Virgin Interactive 0.0533333333
## 2287 2000                     Virgin Interactive 0.1300000000
## 2288 2001                     Virgin Interactive 0.1966666667
## 2289 2002                     Virgin Interactive 0.0325000000
## 2290 2010                     Virtual Play Games 0.0000000000
## 2291 2011                                  Visco 0.0000000000
## 2292 1995                          Vivendi Games 0.0000000000
## 2293 1997                          Vivendi Games 0.0050000000
## 2294 1998                          Vivendi Games 0.0233333333
## 2295 1999                          Vivendi Games 0.1500000000
## 2296 2000                          Vivendi Games 0.0400000000
## 2297 2001                          Vivendi Games 0.2800000000
## 2298 2002                          Vivendi Games 0.0900000000
## 2299 2003                          Vivendi Games 0.1925000000
## 2300 2004                          Vivendi Games 0.0783333333
## 2301 2005                          Vivendi Games 0.0808000000
## 2302 2006                          Vivendi Games 0.0326315789
## 2303 2007                          Vivendi Games 0.0495238095
## 2304 2008                          Vivendi Games 0.0912500000
## 2305 2009                          Vivendi Games 0.0550000000
## 2306  N/A                          Vivendi Games 0.1300000000
## 2307 2001                                Wanadoo 0.0600000000
## 2308 2002                                Wanadoo 0.1500000000
## 2309 2003                                Wanadoo 0.0000000000
## 2310 2005                                Wanadoo 0.0000000000
## 2311 2007                                Warashi 0.0000000000
## 2312 2011                          Wargaming.net 0.2300000000
## 2313 2003 Warner Bros. Interactive Entertainment 0.1100000000
## 2314 2005 Warner Bros. Interactive Entertainment 0.0200000000
## 2315 2006 Warner Bros. Interactive Entertainment 0.0600000000
## 2316 2007 Warner Bros. Interactive Entertainment 0.0500000000
## 2317 2008 Warner Bros. Interactive Entertainment 0.3200000000
## 2318 2009 Warner Bros. Interactive Entertainment 0.1117241379
## 2319 2010 Warner Bros. Interactive Entertainment 0.1460606061
## 2320 2011 Warner Bros. Interactive Entertainment 0.2905263158
## 2321 2012 Warner Bros. Interactive Entertainment 0.2461904762
## 2322 2013 Warner Bros. Interactive Entertainment 0.2965384615
## 2323 2014 Warner Bros. Interactive Entertainment 0.2830000000
## 2324 2015 Warner Bros. Interactive Entertainment 0.3250000000
## 2325 2016 Warner Bros. Interactive Entertainment 0.1200000000
## 2326  N/A Warner Bros. Interactive Entertainment 0.2860000000
## 2327 1997                                   Warp 0.0000000000
## 2328 2015                WayForward Technologies 0.0000000000
## 2329 1999                       Westwood Studios 0.0000000000
## 2330 2007                White Park Bay Software 0.0100000000
## 2331 1982                     Wizard Video Games 0.0300000000
## 2332 2002                      Xicat Interactive 0.0250000000
## 2333 2003                      Xicat Interactive 0.0100000000
## 2334 1997                     Xing Entertainment 0.0300000000
## 2335 2005                                Xplosiv 0.0700000000
## 2336 2006                                Xplosiv 0.0575000000
## 2337 2007                                Xplosiv 0.0000000000
## 2338 2008                                Xplosiv 0.1866666667
## 2339 2002                               XS Games 0.0900000000
## 2340 2004                               XS Games 0.0033333333
## 2341 2005                               XS Games 0.0500000000
## 2342 2007                               XS Games 0.0100000000
## 2343 2008                               XS Games 0.0050000000
## 2344 2009                               XS Games 0.0000000000
## 2345 2010                               XS Games 0.0000000000
## 2346 2012                            Xseed Games 0.0000000000
## 2347 2013                            Xseed Games 0.0100000000
## 2348 2014                            Xseed Games 0.0100000000
## 2349 2015                            Xseed Games 0.0200000000
## 2350 2015                       Yacht Club Games 0.0366666667
## 2351 2006                   Yamasa Entertainment 0.0000000000
## 2352 2006                                   Yeti 0.0000000000
## 2353 2007                                   Yeti 0.0000000000
## 2354 2008                                   Yeti 0.0000000000
## 2355 2009                                   Yeti 0.0000000000
## 2356 2010                                   Yeti 0.0000000000
## 2357 2012                                   Yeti 0.0000000000
## 2358 2016                                   Yeti 0.0000000000
## 2359 2005                                 Yuke's 0.0100000000
## 2360 2006                                 Yuke's 0.0000000000
## 2361 2007                                 Yuke's 0.0000000000
## 2362 1995                                Yumedia 0.0000000000
## 2363 2006                                 Zenrin 0.0000000000
## 2364 2007                                 Zenrin 0.0000000000
## 2365 2002                 Zoo Digital Publishing 0.0100000000
## 2366 2003                 Zoo Digital Publishing 0.0844444444
## 2367 2004                 Zoo Digital Publishing 0.0417647059
## 2368 2005                 Zoo Digital Publishing 0.0274193548
## 2369 2006                 Zoo Digital Publishing 0.0000000000
## 2370 2007                 Zoo Digital Publishing 0.0008333333
## 2371 2008                 Zoo Digital Publishing 0.0041666667
## 2372 2009                 Zoo Digital Publishing 0.0009090909
## 2373 2008                              Zoo Games 0.0000000000
## 2374 2009                              Zoo Games 0.0000000000
## 2375 2010                              Zoo Games 0.0000000000
## 2376 2011                              Zoo Games 0.0000000000
## 2377 2007                            Zushi Games 0.0000000000
## 2378 2008                            Zushi Games 0.0000000000
## 2379 2009                            Zushi Games 0.0038461538
aggregate(EU_Sales,by=list(Genre = Genre,Publisher=Publisher),mean)
##             Genre                              Publisher            x
## 1       Adventure                        10TACLE Studios 0.0100000000
## 2          Puzzle                        10TACLE Studios 0.0300000000
## 3        Strategy                        10TACLE Studios 0.0000000000
## 4          Racing                             1C Company 0.0300000000
## 5    Role-Playing                             1C Company 0.0100000000
## 6        Strategy                             1C Company 0.0300000000
## 7          Action           20th Century Fox Video Games 0.0225000000
## 8         Shooter           20th Century Fox Video Games 0.0100000000
## 9          Puzzle                                 2D Boy 0.0300000000
## 10         Action                                    3DO 0.0982352941
## 11      Adventure                                    3DO 0.0466666667
## 12       Fighting                                    3DO 0.2100000000
## 13       Platform                                    3DO 0.0500000000
## 14         Puzzle                                    3DO 0.0400000000
## 15   Role-Playing                                    3DO 0.1000000000
## 16        Shooter                                    3DO 0.0400000000
## 17         Sports                                    3DO 0.0983333333
## 18       Strategy                                    3DO 0.0400000000
## 19         Sports                                49Games 0.0400000000
## 20         Action                              505 Games 0.0576190476
## 21      Adventure                              505 Games 0.0200000000
## 22       Fighting                              505 Games 0.0200000000
## 23           Misc                              505 Games 0.0167741935
## 24       Platform                              505 Games 0.0016666667
## 25         Puzzle                              505 Games 0.0313333333
## 26         Racing                              505 Games 0.0250000000
## 27   Role-Playing                              505 Games 0.0270000000
## 28        Shooter                              505 Games 0.1188888889
## 29     Simulation                              505 Games 0.1648780488
## 30         Sports                              505 Games 0.1696296296
## 31       Strategy                              505 Games 0.0200000000
## 32         Action                                    5pb 0.0000000000
## 33      Adventure                                    5pb 0.0000000000
## 34       Fighting                                    5pb 0.0000000000
## 35   Role-Playing                                    5pb 0.0000000000
## 36        Shooter                                    5pb 0.0000000000
## 37     Simulation                                    5pb 0.0000000000
## 38           Misc                               7G//AMES 0.0200000000
## 39         Puzzle                               7G//AMES 0.0100000000
## 40     Simulation                               7G//AMES 0.0150000000
## 41         Sports                             989 Sports 0.1400000000
## 42         Action                            989 Studios 0.2700000000
## 43         Racing                            989 Studios 0.1066666667
## 44         Sports                            989 Studios 0.2711111111
## 45         Action                               Abylight 0.0000000000
## 46         Action                  Acclaim Entertainment 0.0378571429
## 47      Adventure                  Acclaim Entertainment 0.1050000000
## 48       Fighting                  Acclaim Entertainment 0.1287096774
## 49           Misc                  Acclaim Entertainment 0.0680000000
## 50       Platform                  Acclaim Entertainment 0.1120000000
## 51         Puzzle                  Acclaim Entertainment 0.0511111111
## 52         Racing                  Acclaim Entertainment 0.1038636364
## 53   Role-Playing                  Acclaim Entertainment 0.0600000000
## 54        Shooter                  Acclaim Entertainment 0.1041176471
## 55         Sports                  Acclaim Entertainment 0.0761538462
## 56       Strategy                  Acclaim Entertainment 0.0450000000
## 57       Platform                               Accolade 0.0700000000
## 58         Racing                               Accolade 0.2000000000
## 59         Sports                               Accolade 0.0700000000
## 60         Action                            Ackkstudios 0.0000000000
## 61      Adventure                            Ackkstudios 0.0000000000
## 62   Role-Playing                            Ackkstudios 0.0200000000
## 63         Sports                            Ackkstudios 0.0000000000
## 64       Strategy                            Ackkstudios 0.0000000000
## 65         Action                                Acquire 0.0000000000
## 66      Adventure                                Acquire 0.0000000000
## 67   Role-Playing                                Acquire 0.0000000000
## 68       Strategy                                Acquire 0.0000000000
## 69         Action                             Activision 0.1290967742
## 70      Adventure                             Activision 0.0348000000
## 71       Fighting                             Activision 0.1085714286
## 72           Misc                             Activision 0.1711650485
## 73       Platform                             Activision 0.1308333333
## 74         Puzzle                             Activision 0.0157142857
## 75         Racing                             Activision 0.0494594595
## 76   Role-Playing                             Activision 0.4487804878
## 77        Shooter                             Activision 0.6200628931
## 78     Simulation                             Activision 0.0930434783
## 79         Sports                             Activision 0.1219444444
## 80       Strategy                             Activision 0.3609090909
## 81         Action                    Activision Blizzard 0.3600000000
## 82         Action                       Activision Value 0.0000000000
## 83           Misc                       Activision Value 0.0100000000
## 84        Shooter                       Activision Value 0.0275000000
## 85         Sports                       Activision Value 0.0340909091
## 86       Strategy                       Activision Value 0.0100000000
## 87         Action                       Adeline Software 0.0700000000
## 88     Simulation                               Aerosoft 0.0100000000
## 89         Action                 Agatsuma Entertainment 0.0000000000
## 90           Misc                 Agatsuma Entertainment 0.0200000000
## 91       Platform                 Agatsuma Entertainment 0.0000000000
## 92         Action                                 Agetec 0.0150000000
## 93       Fighting                                 Agetec 0.0400000000
## 94           Misc                                 Agetec 0.0300000000
## 95         Racing                                 Agetec 0.0000000000
## 96     Simulation                                 Agetec 0.0600000000
## 97         Sports                                 Agetec 0.4100000000
## 98       Strategy                                 Agetec 0.0100000000
## 99         Action                            Aksys Games 0.0000000000
## 100     Adventure                            Aksys Games 0.0000000000
## 101  Role-Playing                            Aksys Games 0.0025000000
## 102        Action                   Alawar Entertainment 0.0100000000
## 103      Strategy                   Alawar Entertainment 0.0300000000
## 104        Action                              Alchemist 0.0000000000
## 105     Adventure                              Alchemist 0.0143750000
## 106          Misc                              Alchemist 0.0000000000
## 107  Role-Playing                              Alchemist 0.0000000000
## 108       Shooter                              Alchemist 0.0000000000
## 109        Action                   Alternative Software 0.0200000000
## 110        Sports                   Alternative Software 0.0320000000
## 111       Shooter                                 Altron 0.0200000000
## 112          Misc                                 Alvion 0.0000000000
## 113        Action                     American Softworks 0.0900000000
## 114      Fighting                          Angel Studios 0.0000000000
## 115  Role-Playing                          Angel Studios 0.0000000000
## 116      Strategy                          Angel Studios 0.0000000000
## 117        Action                        Answer Software 0.0300000000
## 118      Fighting                         AQ Interactive 0.0250000000
## 119          Misc                         AQ Interactive 0.0033333333
## 120     Adventure                              Aqua Plus 0.0000000000
## 121      Fighting                              Aqua Plus 0.0000000000
## 122          Misc                              Aqua Plus 0.0000000000
## 123  Role-Playing                              Aqua Plus 0.0000000000
## 124      Strategy                              Aqua Plus 0.0000000000
## 125        Sports                                  Aques 0.0000000000
## 126        Action                       Arc System Works 0.0000000000
## 127     Adventure                       Arc System Works 0.0000000000
## 128      Fighting                       Arc System Works 0.0000000000
## 129          Misc                       Arc System Works 0.0000000000
## 130  Role-Playing                       Arc System Works 0.0000000000
## 131        Sports                       Arc System Works 0.0000000000
## 132      Fighting                    Arena Entertainment 0.6300000000
## 133        Sports                    Arena Entertainment 0.2500000000
## 134     Adventure                                   Aria 0.0000000000
## 135          Misc                                  Arika 0.0100000000
## 136  Role-Playing                                  Arika 0.0200000000
## 137       Shooter                                  Arika 0.0000000000
## 138  Role-Playing                                ArtDink 0.0166666667
## 139    Simulation                                ArtDink 0.0000000000
## 140      Strategy                                ArtDink 0.0000000000
## 141          Misc                             Aruze Corp 0.0000000000
## 142        Action                              ASC Games 0.0200000000
## 143        Racing                              ASC Games 0.5000000000
## 144        Sports                              ASC Games 0.2500000000
## 145      Strategy                  Ascaron Entertainment 0.0100000000
## 146  Role-Playing             Ascaron Entertainment GmbH 0.0500000000
## 147      Strategy             Ascaron Entertainment GmbH 0.0200000000
## 148     Adventure                    ASCII Entertainment 0.0250000000
## 149          Misc                    ASCII Entertainment 0.0650000000
## 150        Racing                    ASCII Entertainment 0.0166666667
## 151  Role-Playing                    ASCII Entertainment 0.0233333333
## 152    Simulation                    ASCII Entertainment 0.0000000000
## 153        Sports                    ASCII Entertainment 0.0175000000
## 154      Strategy                    ASCII Entertainment 0.0000000000
## 155     Adventure                      ASCII Media Works 0.0000000000
## 156  Role-Playing                      ASCII Media Works 0.0000000000
## 157        Action                                 Asgard 0.0000000000
## 158          Misc                                 Asgard 0.0000000000
## 159          Misc                                    ASK 0.0000000000
## 160     Adventure                Asmik Ace Entertainment 0.0000000000
## 161      Fighting                Asmik Ace Entertainment 0.0000000000
## 162    Simulation                Asmik Ace Entertainment 0.0000000000
## 163        Sports                             Asmik Corp 0.0000000000
## 164     Adventure                                  Aspyr 0.0000000000
## 165          Misc                                  Aspyr 0.0100000000
## 166  Role-Playing                                  Aspyr 0.0000000000
## 167    Simulation                                  Aspyr 0.0000000000
## 168        Sports                                  Aspyr 0.0050000000
## 169        Action                               Astragon 0.0200000000
## 170     Adventure                               Astragon 0.1150000000
## 171        Puzzle                               Astragon 0.0250000000
## 172    Simulation                               Astragon 0.0200000000
## 173     Adventure                   Asylum Entertainment 0.1233333333
## 174      Platform                   Asylum Entertainment 0.0600000000
## 175    Simulation                   Asylum Entertainment 0.0000000000
## 176        Action                                  Atari 0.1194444444
## 177     Adventure                                  Atari 0.0429411765
## 178      Fighting                                  Atari 0.0878378378
## 179          Misc                                  Atari 0.0280769231
## 180      Platform                                  Atari 0.0390476190
## 181        Puzzle                                  Atari 0.1386363636
## 182        Racing                                  Atari 0.1158333333
## 183  Role-Playing                                  Atari 0.0721428571
## 184       Shooter                                  Atari 0.0645000000
## 185    Simulation                                  Atari 0.0233333333
## 186        Sports                                  Atari 0.0412500000
## 187      Strategy                                  Atari 0.0470588235
## 188     Adventure                                 Athena 0.0000000000
## 189        Sports                                 Athena 0.0000000000
## 190        Action                                  Atlus 0.0100000000
## 191     Adventure                                  Atlus 0.0000000000
## 192      Fighting                                  Atlus 0.0320000000
## 193          Misc                                  Atlus 0.0000000000
## 194      Platform                                  Atlus 0.0300000000
## 195        Racing                                  Atlus 0.0000000000
## 196  Role-Playing                                  Atlus 0.0169565217
## 197       Shooter                                  Atlus 0.0000000000
## 198    Simulation                                  Atlus 0.0000000000
## 199        Sports                                  Atlus 0.0175000000
## 200      Strategy                                  Atlus 0.0150000000
## 201        Action                     Avalon Interactive 0.0100000000
## 202        Racing                     Avalon Interactive 0.0200000000
## 203  Role-Playing                     Avalon Interactive 0.0200000000
## 204       Shooter                     Avalon Interactive 0.0100000000
## 205    Simulation                     Avalon Interactive 0.0400000000
## 206        Action                              Avanquest 0.0650000000
## 207     Adventure                              Avanquest 0.0100000000
## 208          Misc                              Avanquest 0.0866666667
## 209        Puzzle                              Avanquest 0.0750000000
## 210    Simulation                              Avanquest 0.0100000000
## 211        Sports                              Avanquest 0.0100000000
## 212        Action                     Avanquest Software 0.0175000000
## 213     Adventure                     Avanquest Software 0.1400000000
## 214          Misc                     Avanquest Software 0.0200000000
## 215        Sports                                  Axela 0.0000000000
## 216        Action                     BAM! Entertainment 0.0388888889
## 217     Adventure                     BAM! Entertainment 0.0700000000
## 218      Fighting                     BAM! Entertainment 0.0400000000
## 219          Misc                     BAM! Entertainment 0.0500000000
## 220      Platform                     BAM! Entertainment 0.0550000000
## 221        Racing                     BAM! Entertainment 0.0342857143
## 222       Shooter                     BAM! Entertainment 0.0300000000
## 223        Sports                     BAM! Entertainment 0.0500000000
## 224        Action                              Banpresto 0.0000000000
## 225     Adventure                              Banpresto 0.0000000000
## 226      Fighting                              Banpresto 0.0050000000
## 227          Misc                              Banpresto 0.0000000000
## 228      Platform                              Banpresto 0.0000000000
## 229        Puzzle                              Banpresto 0.0000000000
## 230        Racing                              Banpresto 0.0000000000
## 231  Role-Playing                              Banpresto 0.0082352941
## 232       Shooter                              Banpresto 0.0000000000
## 233    Simulation                              Banpresto 0.0000000000
## 234        Sports                              Banpresto 0.0100000000
## 235      Strategy                              Banpresto 0.0000000000
## 236          Misc                                Benesse 0.0000000000
## 237        Action                               Berkeley 0.0100000000
## 238        Action                     Bethesda Softworks 0.2288235294
## 239        Racing                     Bethesda Softworks 0.1000000000
## 240  Role-Playing                     Bethesda Softworks 1.1829411765
## 241       Shooter                     Bethesda Softworks 0.2790476190
## 242    Simulation                     Bethesda Softworks 0.0300000000
## 243        Sports                     Bethesda Softworks 0.0120000000
## 244      Strategy                     Bethesda Softworks 0.0250000000
## 245     Adventure                    Big Ben Interactive 0.0200000000
## 246      Platform                    Big Ben Interactive 0.0000000000
## 247        Racing                    Big Ben Interactive 0.0000000000
## 248       Shooter                    Big Ben Interactive 0.0300000000
## 249        Sports                    Big Ben Interactive 0.0400000000
## 250        Action                         Big Fish Games 0.0300000000
## 251     Adventure                         Big Fish Games 0.0100000000
## 252        Sports                     Bigben Interactive 0.0476923077
## 253        Racing                      bitComposer Games 0.0300000000
## 254    Simulation                      bitComposer Games 0.0425000000
## 255        Action                       Black Bean Games 0.0600000000
## 256          Misc                       Black Bean Games 0.0200000000
## 257        Racing                       Black Bean Games 0.0521052632
## 258        Sports                       Black Bean Games 0.0512500000
## 259      Strategy                       Black Bean Games 0.0000000000
## 260        Action                      Black Label Games 0.4600000000
## 261        Action               Blast! Entertainment Ltd 0.0300000000
## 262     Adventure               Blast! Entertainment Ltd 0.0250000000
## 263        Sports               Blast! Entertainment Ltd 0.0000000000
## 264    Simulation                              Blue Byte 0.0100000000
## 265      Strategy                              Blue Byte 0.0200000000
## 266      Platform          BMG Interactive Entertainment 0.1066666667
## 267        Racing          BMG Interactive Entertainment 0.0600000000
## 268       Shooter          BMG Interactive Entertainment 0.0250000000
## 269        Sports          BMG Interactive Entertainment 0.0100000000
## 270       Shooter                    Bohemia Interactive 0.1000000000
## 271        Action                                   Bomb 0.0100000000
## 272     Adventure                               Boost On 0.0000000000
## 273        Puzzle                                    BPS 0.0000000000
## 274        Racing                                    BPS 0.0000000000
## 275          Misc                    Brash Entertainment 0.0100000000
## 276      Platform                    Brash Entertainment 0.0257142857
## 277        Action                               Broccoli 0.0000000000
## 278     Adventure                               Broccoli 0.0000000000
## 279      Fighting                               Broccoli 0.0000000000
## 280          Misc                               Broccoli 0.0000000000
## 281  Role-Playing                               Broccoli 0.0000000000
## 282    Simulation                               Broccoli 0.0000000000
## 283      Strategy                               Broccoli 0.0000000000
## 284     Adventure                              BushiRoad 0.0000000000
## 285        Action                                 Capcom 0.1322077922
## 286     Adventure                                 Capcom 0.0672727273
## 287      Fighting                                 Capcom 0.1167241379
## 288          Misc                                 Capcom 0.0263636364
## 289      Platform                                 Capcom 0.0832608696
## 290        Puzzle                                 Capcom 0.0150000000
## 291        Racing                                 Capcom 0.0861538462
## 292  Role-Playing                                 Capcom 0.0613157895
## 293       Shooter                                 Capcom 0.1124000000
## 294    Simulation                                 Capcom 0.0050000000
## 295        Sports                                 Capcom 0.0100000000
## 296      Strategy                                 Capcom 0.0333333333
## 297        Action                                   Cave 0.0000000000
## 298     Adventure                                   Cave 0.0000000000
## 299          Misc                                   Cave 0.0000000000
## 300       Shooter                                   Cave 0.0000000000
## 301        Action                        CBS Electronics 0.0200000000
## 302  Role-Playing                                    CCP 0.1900000000
## 303     Adventure             CDV Software Entertainment 0.0000000000
## 304        Puzzle             CDV Software Entertainment 0.0000000000
## 305    Simulation             CDV Software Entertainment 0.0100000000
## 306      Strategy             CDV Software Entertainment 0.0166666667
## 307        Action                               ChunSoft 0.0000000000
## 308     Adventure                               ChunSoft 0.0000000000
## 309  Role-Playing                               ChunSoft 0.0000000000
## 310        Action                       City Interactive 0.1600000000
## 311     Adventure                       City Interactive 0.0400000000
## 312          Misc                       City Interactive 0.0000000000
## 313        Puzzle                       City Interactive 0.0150000000
## 314       Shooter                       City Interactive 0.2337500000
## 315    Simulation                       City Interactive 0.0050000000
## 316      Fighting       Cloud Imperium Games Corporation 0.0000000000
## 317     Adventure                         Coconuts Japan 0.0100000000
## 318          Misc                         Coconuts Japan 0.0000000000
## 319        Action                            Codemasters 0.0677777778
## 320     Adventure                            Codemasters 0.0200000000
## 321          Misc                            Codemasters 0.0871428571
## 322        Puzzle                            Codemasters 0.0000000000
## 323        Racing                            Codemasters 0.2558426966
## 324  Role-Playing                            Codemasters 0.0833333333
## 325       Shooter                            Codemasters 0.0885000000
## 326    Simulation                            Codemasters 0.0533333333
## 327        Sports                            Codemasters 0.2330000000
## 328      Strategy                            Codemasters 0.0175000000
## 329  Role-Playing                     Codemasters Online 0.0200000000
## 330        Action                      CokeM Interactive 0.0000000000
## 331        Action                                 Coleco 0.0233333333
## 332      Platform                                 Coleco 0.0800000000
## 333       Shooter                                 Coleco 0.0200000000
## 334        Action                                Comfort 0.0000000000
## 335     Adventure                                Comfort 0.0000000000
## 336          Misc                               Commseed 0.0000000000
## 337        Puzzle                                Compile 0.0000000000
## 338  Role-Playing                                Compile 0.0000000000
## 339        Action                          Compile Heart 0.0000000000
## 340     Adventure                          Compile Heart 0.0000000000
## 341  Role-Playing                          Compile Heart 0.0023076923
## 342      Strategy                          Compile Heart 0.0000000000
## 343        Action               Conspiracy Entertainment 0.0333333333
## 344          Misc               Conspiracy Entertainment 0.0000000000
## 345      Platform               Conspiracy Entertainment 0.0100000000
## 346        Puzzle               Conspiracy Entertainment 0.0000000000
## 347        Racing               Conspiracy Entertainment 0.0000000000
## 348       Shooter               Conspiracy Entertainment 0.0000000000
## 349    Simulation               Conspiracy Entertainment 0.0000000000
## 350        Sports               Conspiracy Entertainment 0.0300000000
## 351        Action                       Core Design Ltd. 0.0400000000
## 352    Simulation                       Core Design Ltd. 0.0700000000
## 353        Action                           CPG Products 0.0300000000
## 354        Action                    Crave Entertainment 0.0136363636
## 355     Adventure                    Crave Entertainment 0.0600000000
## 356      Fighting                    Crave Entertainment 0.0160000000
## 357          Misc                    Crave Entertainment 0.0205555556
## 358      Platform                    Crave Entertainment 0.0133333333
## 359        Puzzle                    Crave Entertainment 0.0010000000
## 360        Racing                    Crave Entertainment 0.1425000000
## 361  Role-Playing                    Crave Entertainment 0.1500000000
## 362       Shooter                    Crave Entertainment 0.0133333333
## 363    Simulation                    Crave Entertainment 0.0000000000
## 364        Sports                    Crave Entertainment 0.0210000000
## 365      Strategy                    Crave Entertainment 0.0200000000
## 366     Adventure                          Creative Core 0.0000000000
## 367          Misc                          Creative Core 0.0000000000
## 368    Simulation                          Creative Core 0.0000000000
## 369        Action                            Crimson Cow 0.0500000000
## 370     Adventure                            Crimson Cow 0.0100000000
## 371     Adventure                       Crystal Dynamics 0.0600000000
## 372      Platform                       Crystal Dynamics 0.3300000000
## 373        Racing                       Crystal Dynamics 0.0600000000
## 374  Role-Playing                       Crystal Dynamics 0.1700000000
## 375        Sports                       Crystal Dynamics 0.0300000000
## 376       Shooter                                CTO SpA 0.3300000000
## 377        Sports                                CTO SpA 0.0100000000
## 378     Adventure                          Culture Brain 0.0000000000
## 379          Misc                          Culture Brain 0.0000000000
## 380  Role-Playing                          Culture Brain 0.0000000000
## 381        Sports                          Culture Brain 0.0000000000
## 382        Puzzle                     Culture Publishers 0.0300000000
## 383        Action                             CyberFront 0.0000000000
## 384     Adventure                             CyberFront 0.0000000000
## 385          Misc                             CyberFront 0.0000000000
## 386  Role-Playing                             CyberFront 0.0000000000
## 387      Strategy                             CyberFront 0.0000000000
## 388      Platform                                Cygames 0.0000000000
## 389        Action                            D3Publisher 0.0500000000
## 390     Adventure                            D3Publisher 0.0000000000
## 391      Fighting                            D3Publisher 0.0033333333
## 392          Misc                            D3Publisher 0.0100000000
## 393      Platform                            D3Publisher 0.0625000000
## 394        Puzzle                            D3Publisher 0.0136363636
## 395        Racing                            D3Publisher 0.0300000000
## 396  Role-Playing                            D3Publisher 0.0000000000
## 397       Shooter                            D3Publisher 0.0650000000
## 398    Simulation                            D3Publisher 0.0000000000
## 399        Sports                            D3Publisher 0.0154545455
## 400      Strategy                            D3Publisher 0.0000000000
## 401     Adventure                               Daedalic 0.0800000000
## 402     Adventure                 Daedalic Entertainment 0.0366666667
## 403          Misc                                  Daito 0.0000000000
## 404        Action                               Data Age 0.0200000000
## 405          Misc                Data Design Interactive 0.0000000000
## 406        Racing                Data Design Interactive 0.0100000000
## 407        Sports                Data Design Interactive 0.0000000000
## 408     Adventure                              Data East 0.0000000000
## 409  Role-Playing                              Data East 0.0000000000
## 410     Adventure                         Datam Polystar 0.0000000000
## 411        Action                            Deep Silver 0.1788888889
## 412     Adventure                            Deep Silver 0.0620000000
## 413      Fighting                            Deep Silver 0.0150000000
## 414          Misc                            Deep Silver 0.0800000000
## 415      Platform                            Deep Silver 0.0033333333
## 416        Puzzle                            Deep Silver 0.0171428571
## 417        Racing                            Deep Silver 0.0100000000
## 418  Role-Playing                            Deep Silver 0.0817647059
## 419       Shooter                            Deep Silver 0.0620000000
## 420    Simulation                            Deep Silver 0.0241176471
## 421        Sports                            Deep Silver 0.0390000000
## 422      Strategy                            Deep Silver 0.0220000000
## 423        Action              Destination Software, Inc 0.0000000000
## 424          Misc              Destination Software, Inc 0.0200000000
## 425        Puzzle              Destination Software, Inc 0.0150000000
## 426        Racing              Destination Software, Inc 0.0033333333
## 427  Role-Playing              Destination Software, Inc 0.0100000000
## 428    Simulation              Destination Software, Inc 0.0050000000
## 429        Sports              Destination Software, Inc 0.0000000000
## 430        Action                              Destineer 0.0066666667
## 431     Adventure                              Destineer 0.0000000000
## 432          Misc                              Destineer 0.0000000000
## 433      Platform                              Destineer 0.0000000000
## 434        Puzzle                              Destineer 0.0014285714
## 435        Racing                              Destineer 0.0000000000
## 436       Shooter                              Destineer 0.0000000000
## 437    Simulation                              Destineer 0.0000000000
## 438        Sports                              Destineer 0.0000000000
## 439        Sports                            Detn8 Games 0.0000000000
## 440        Puzzle                       Devolver Digital 0.0200000000
## 441       Shooter                       Devolver Digital 0.0200000000
## 442        Puzzle                        DHM Interactive 0.0000000000
## 443       Shooter                        DHM Interactive 0.0000000000
## 444    Simulation                        DHM Interactive 0.0000000000
## 445        Sports                               DigiCube 0.0000000000
## 446        Action             Disney Interactive Studios 0.1718750000
## 447     Adventure             Disney Interactive Studios 0.1641379310
## 448          Misc             Disney Interactive Studios 0.1290909091
## 449      Platform             Disney Interactive Studios 0.1365000000
## 450        Puzzle             Disney Interactive Studios 0.3500000000
## 451        Racing             Disney Interactive Studios 0.2242857143
## 452  Role-Playing             Disney Interactive Studios 0.0533333333
## 453       Shooter             Disney Interactive Studios 0.0033333333
## 454    Simulation             Disney Interactive Studios 0.0560000000
## 455        Sports             Disney Interactive Studios 0.3300000000
## 456          Misc                                 Dorart 0.0000000000
## 457        Action                        dramatic create 0.0000000000
## 458     Adventure                        dramatic create 0.0000000000
## 459     Adventure               DreamCatcher Interactive 0.0133333333
## 460          Misc               DreamCatcher Interactive 0.0000000000
## 461      Platform               DreamCatcher Interactive 0.0200000000
## 462        Puzzle               DreamCatcher Interactive 0.0050000000
## 463       Shooter               DreamCatcher Interactive 0.0133333333
## 464    Simulation               DreamCatcher Interactive 0.0000000000
## 465        Sports               DreamCatcher Interactive 0.0300000000
## 466      Platform                 DreamWorks Interactive 0.0500000000
## 467        Action                              DSI Games 0.0000000000
## 468     Adventure                              DSI Games 0.0000000000
## 469          Misc                              DSI Games 0.0200000000
## 470    Simulation                              DSI Games 0.0000000000
## 471        Sports                              DSI Games 0.0000000000
## 472        Action                      DTP Entertainment 0.0360000000
## 473     Adventure                      DTP Entertainment 0.0280000000
## 474          Misc                      DTP Entertainment 0.0180000000
## 475        Puzzle                      DTP Entertainment 0.0200000000
## 476  Role-Playing                      DTP Entertainment 0.0342857143
## 477       Shooter                      DTP Entertainment 0.0200000000
## 478    Simulation                      DTP Entertainment 0.0033333333
## 479        Sports                      DTP Entertainment 0.0427272727
## 480      Strategy                      DTP Entertainment 0.1000000000
## 481        Racing               Dusenberry Martin Racing 0.0000000000
## 482       Shooter                               EA Games 0.0600000000
## 483        Puzzle                       Easy Interactive 0.0150000000
## 484      Fighting                                  Ecole 0.0000000000
## 485          Misc                                   Edia 0.0000000000
## 486        Action                      Eidos Interactive 0.2785714286
## 487     Adventure                      Eidos Interactive 0.0760000000
## 488      Fighting                      Eidos Interactive 0.1342857143
## 489          Misc                      Eidos Interactive 0.0760000000
## 490      Platform                      Eidos Interactive 0.1175000000
## 491        Puzzle                      Eidos Interactive 0.0100000000
## 492        Racing                      Eidos Interactive 0.0907142857
## 493  Role-Playing                      Eidos Interactive 0.0211111111
## 494       Shooter                      Eidos Interactive 0.0742857143
## 495    Simulation                      Eidos Interactive 0.0437500000
## 496        Sports                      Eidos Interactive 0.4087500000
## 497      Strategy                      Eidos Interactive 0.2090909091
## 498        Action                        Electronic Arts 0.2408196721
## 499     Adventure                        Electronic Arts 0.1269230769
## 500      Fighting                        Electronic Arts 0.2243589744
## 501          Misc                        Electronic Arts 0.1586956522
## 502      Platform                        Electronic Arts 0.1593750000
## 503        Puzzle                        Electronic Arts 0.2042857143
## 504        Racing                        Electronic Arts 0.3220125786
## 505  Role-Playing                        Electronic Arts 0.3254285714
## 506       Shooter                        Electronic Arts 0.4030935252
## 507    Simulation                        Electronic Arts 0.3088793103
## 508        Sports                        Electronic Arts 0.2619786096
## 509      Strategy                        Electronic Arts 0.1108108108
## 510        Action                 Electronic Arts Victor 0.0200000000
## 511        Sports                 Electronic Arts Victor 0.1500000000
## 512     Adventure                                    Elf 0.0000000000
## 513      Strategy                                    Elf 0.0000000000
## 514    Simulation                                  Elite 0.0300000000
## 515        Action                     Empire Interactive 0.0480000000
## 516     Adventure                     Empire Interactive 0.0100000000
## 517      Fighting                     Empire Interactive 0.0400000000
## 518          Misc                     Empire Interactive 0.0466666667
## 519        Puzzle                     Empire Interactive 0.0500000000
## 520        Racing                     Empire Interactive 0.0966666667
## 521  Role-Playing                     Empire Interactive 0.0000000000
## 522       Shooter                     Empire Interactive 0.1080000000
## 523    Simulation                     Empire Interactive 0.1400000000
## 524        Sports                     Empire Interactive 0.0700000000
## 525        Action                                 Encore 0.0100000000
## 526        Racing                                 Encore 0.0000000000
## 527  Role-Playing                                 Encore 0.0200000000
## 528        Action                       Enix Corporation 0.0300000000
## 529          Misc                       Enix Corporation 0.0150000000
## 530  Role-Playing                       Enix Corporation 0.0108695652
## 531    Simulation                       Enix Corporation 0.0000000000
## 532        Sports                       Enix Corporation 0.0000000000
## 533       Shooter                      Enjoy Gaming ltd. 0.0000000000
## 534     Adventure                             Enterbrain 0.0000000000
## 535      Fighting                             Enterbrain 0.0300000000
## 536  Role-Playing                             Enterbrain 0.0116666667
## 537    Simulation                             Enterbrain 0.0000000000
## 538        Sports                             Enterbrain 0.0000000000
## 539      Strategy              EON Digital Entertainment 0.0000000000
## 540        Action                             Epic Games 0.0000000000
## 541          Misc                                  Epoch 0.0000000000
## 542      Platform                                  Epoch 0.0000000000
## 543  Role-Playing                                  Epoch 0.0000000000
## 544        Sports                                  Epoch 0.0000000000
## 545    Simulation                                 Ertain 0.0000000000
## 546      Fighting                                    ESP 0.0000000000
## 547      Platform                                    ESP 0.0200000000
## 548  Role-Playing                                    ESP 0.0000000000
## 549       Shooter                                    ESP 0.0000000000
## 550    Simulation                                    ESP 0.0000000000
## 551        Action                        Essential Games 0.0000000000
## 552       Shooter                        Essential Games 0.0000000000
## 553      Strategy                        Essential Games 0.0000000000
## 554        Action                        Evolution Games 0.0000000000
## 555      Platform                          Evolved Games 0.0050000000
## 556        Racing                          Evolved Games 0.0050000000
## 557       Shooter                          Evolved Games 0.0050000000
## 558        Action                   Excalibur Publishing 0.1200000000
## 559    Simulation                   Excalibur Publishing 0.0400000000
## 560  Role-Playing                        Experience Inc. 0.0000000000
## 561  Role-Playing            Extreme Entertainment Group 0.0000000000
## 562      Fighting                     Falcom Corporation 0.0000000000
## 563  Role-Playing                     Falcom Corporation 0.0000000000
## 564          Misc                                 Fields 0.0000000000
## 565        Action                       Flashpoint Games 0.0100000000
## 566      Platform                       Flashpoint Games 0.0000000000
## 567  Role-Playing                            Flight-Plan 0.0000000000
## 568      Strategy                            Flight-Plan 0.0000000000
## 569        Action                 Focus Home Interactive 0.0100000000
## 570     Adventure                 Focus Home Interactive 0.0717647059
## 571          Misc                 Focus Home Interactive 0.0100000000
## 572      Platform                 Focus Home Interactive 0.0200000000
## 573        Puzzle                 Focus Home Interactive 0.0550000000
## 574        Racing                 Focus Home Interactive 0.0566666667
## 575  Role-Playing                 Focus Home Interactive 0.0475000000
## 576    Simulation                 Focus Home Interactive 0.3450000000
## 577        Sports                 Focus Home Interactive 0.0257142857
## 578      Strategy                 Focus Home Interactive 0.0300000000
## 579          Misc                       Focus Multimedia 0.0200000000
## 580        Puzzle                       Focus Multimedia 0.0150000000
## 581    Simulation                                 fonfun 0.0000000000
## 582     Adventure                    Foreign Media Games 0.0400000000
## 583          Misc                    Foreign Media Games 0.0100000000
## 584        Puzzle                    Foreign Media Games 0.0575000000
## 585    Simulation                    Foreign Media Games 0.0050000000
## 586     Adventure                              Fortyfive 0.0000000000
## 587        Action                        Fox Interactive 0.1800000000
## 588      Platform                        Fox Interactive 1.0350000000
## 589       Shooter                        Fox Interactive 0.2700000000
## 590        Sports                        Fox Interactive 0.0650000000
## 591        Action                          From Software 0.0000000000
## 592     Adventure                          From Software 0.0200000000
## 593  Role-Playing                          From Software 0.0225000000
## 594       Shooter                          From Software 0.0100000000
## 595    Simulation                          From Software 0.0150000000
## 596     Adventure                                   Fuji 0.0000000000
## 597        Action                           Funbox Media 0.0200000000
## 598     Adventure                           Funbox Media 0.0200000000
## 599          Misc                           Funbox Media 0.0400000000
## 600      Strategy                           Funbox Media 0.0100000000
## 601  Role-Playing                                 Funcom 0.0500000000
## 602        Racing                                FunSoft 0.0500000000
## 603        Puzzle                                 Funsta 0.0166666667
## 604       Shooter                                 Funsta 0.0000000000
## 605        Action                                  FuRyu 0.0000000000
## 606     Adventure                                  FuRyu 0.0000000000
## 607          Misc                                  FuRyu 0.0000000000
## 608  Role-Playing                                  FuRyu 0.0025000000
## 609    Simulation                                  FuRyu 0.0000000000
## 610        Action                      FuRyu Corporation 0.0000000000
## 611      Fighting                                  G.Rev 0.0000000000
## 612       Shooter                                  G.Rev 0.0000000000
## 613       Shooter                                   Gaga 0.0000000000
## 614     Adventure                 Gainax Network Systems 0.0000000000
## 615          Misc                 Gainax Network Systems 0.0000000000
## 616          Misc                                 Gakken 0.0000000000
## 617  Role-Playing                              Game Arts 0.0000000000
## 618        Action                           Game Factory 0.0050000000
## 619     Adventure                           Game Factory 0.0150000000
## 620      Fighting                           Game Factory 0.0000000000
## 621          Misc                           Game Factory 0.0040000000
## 622      Platform                           Game Factory 0.0025000000
## 623        Puzzle                           Game Factory 0.0100000000
## 624        Racing                           Game Factory 0.0100000000
## 625  Role-Playing                           Game Factory 0.0000000000
## 626    Simulation                           Game Factory 0.0050000000
## 627          Misc                              Game Life 0.1100000000
## 628    Simulation                              Game Life 0.0200000000
## 629        Action                             Gamebridge 0.0650000000
## 630        Action                               Gamecock 0.0000000000
## 631          Misc                               Gamecock 0.0000000000
## 632      Strategy                               Gamecock 0.0200000000
## 633          Misc                               Gameloft 0.0000000000
## 634        Action                 GameMill Entertainment 0.0133333333
## 635     Adventure                 GameMill Entertainment 0.0000000000
## 636          Misc                 GameMill Entertainment 0.0000000000
## 637        Sports                 GameMill Entertainment 0.0000000000
## 638          Misc                                GameTek 0.0200000000
## 639          Misc                Gathering of Developers 0.0350000000
## 640        Racing                Gathering of Developers 0.0850000000
## 641       Shooter                Gathering of Developers 0.0366666667
## 642      Strategy                Gathering of Developers 0.0600000000
## 643      Strategy                  General Entertainment 0.0000000000
## 644        Action                                  Genki 0.0050000000
## 645        Racing                                  Genki 0.0680000000
## 646        Sports                                  Genki 0.0000000000
## 647        Puzzle                            Genterprise 0.0000000000
## 648  Role-Playing                             Ghostlight 0.0366666667
## 649    Simulation                             Ghostlight 0.0200000000
## 650        Sports                             Ghostlight 0.0366666667
## 651      Strategy                             Ghostlight 0.0000000000
## 652     Adventure                                   Giga 0.0000000000
## 653        Action                                 Giza10 0.0000000000
## 654      Strategy                                  Glams 0.0000000000
## 655          Misc                 Global A Entertainment 0.0000000000
## 656  Role-Playing                 Global A Entertainment 0.0000000000
## 657        Action                            Global Star 0.0200000000
## 658     Adventure                            Global Star 0.0633333333
## 659      Fighting                            Global Star 0.0700000000
## 660      Platform                            Global Star 0.0160000000
## 661        Racing                            Global Star 0.0280000000
## 662       Shooter                            Global Star 0.0175000000
## 663    Simulation                            Global Star 0.0250000000
## 664        Sports                            Global Star 0.0820000000
## 665      Strategy                            Global Star 0.0100000000
## 666     Adventure                            GN Software 0.0000000000
## 667  Role-Playing                                    GOA 0.0200000000
## 668      Fighting                           Gotham Games 0.1700000000
## 669      Platform                           Gotham Games 0.0700000000
## 670       Shooter                           Gotham Games 0.5300000000
## 671        Sports                           Gotham Games 0.1600000000
## 672          Misc                               Graffiti 0.0000000000
## 673  Role-Playing                               Graffiti 0.0000000000
## 674       Shooter                               Graffiti 0.0000000000
## 675    Simulation                               Graffiti 0.0000000000
## 676      Fighting                       Grand Prix Games 0.0000000000
## 677    Simulation                 Graphsim Entertainment 0.0200000000
## 678        Action                Gremlin Interactive Ltd 0.0600000000
## 679      Platform                Gremlin Interactive Ltd 0.0200000000
## 680        Racing                Gremlin Interactive Ltd 0.0350000000
## 681       Shooter                Gremlin Interactive Ltd 0.0400000000
## 682        Sports                Gremlin Interactive Ltd 0.0450000000
## 683        Sports                  Griffin International 0.0000000000
## 684       Shooter                           Groove Games 0.0100000000
## 685     Adventure                                    GSP 0.1550000000
## 686          Misc                                    GSP 0.2040000000
## 687        Puzzle                                    GSP 0.0700000000
## 688    Simulation                                    GSP 0.0000000000
## 689        Action                         GT Interactive 0.3570000000
## 690      Fighting                         GT Interactive 0.2785714286
## 691          Misc                         GT Interactive 0.3600000000
## 692      Platform                         GT Interactive 0.3133333333
## 693        Racing                         GT Interactive 0.0883333333
## 694       Shooter                         GT Interactive 0.0808333333
## 695    Simulation                         GT Interactive 0.0300000000
## 696        Sports                         GT Interactive 0.0280000000
## 697        Action                                 GungHo 0.0000000000
## 698     Adventure                                 GungHo 0.0000000000
## 699          Misc                                 GungHo 0.0000000000
## 700  Role-Playing                                 GungHo 0.0022222222
## 701     Adventure                                   Gust 0.0000000000
## 702  Role-Playing                                   Gust 0.0045454545
## 703      Strategy                                   Gust 0.0000000000
## 704          Misc                              Hackberry 0.0000000000
## 705        Puzzle                         HAL Laboratory 0.0000000000
## 706        Action                    Hamster Corporation 0.1100000000
## 707    Simulation                    Hamster Corporation 0.0000000000
## 708     Adventure                               Happinet 0.0000000000
## 709          Misc                               Happinet 0.0000000000
## 710    Simulation                               Happinet 0.0000000000
## 711          Misc                 Harmonix Music Systems 0.0450000000
## 712        Action                     Hasbro Interactive 0.4050000000
## 713          Misc                     Hasbro Interactive 0.2350000000
## 714      Platform                     Hasbro Interactive 0.1700000000
## 715        Puzzle                     Hasbro Interactive 0.2100000000
## 716        Racing                     Hasbro Interactive 0.1050000000
## 717       Shooter                     Hasbro Interactive 0.0900000000
## 718  Role-Playing                      Havas Interactive 0.0900000000
## 719     Adventure                           Headup Games 0.0300000000
## 720    Simulation                           Hearty Robin 0.0000000000
## 721    Simulation                                   Hect 0.0000000000
## 722        Action                            Hello Games 0.7400000000
## 723     Adventure                        Her Interactive 0.0000000000
## 724        Action                        Hip Interactive 0.0200000000
## 725       Shooter                        Hip Interactive 0.0100000000
## 726     Adventure                        HMH Interactive 0.0800000000
## 727          Misc                        HMH Interactive 0.0300000000
## 728        Sports           Home Entertainment Suppliers 0.0980000000
## 729          Misc                   Hudson Entertainment 0.0066666667
## 730      Platform                   Hudson Entertainment 0.0200000000
## 731        Puzzle                   Hudson Entertainment 0.0000000000
## 732  Role-Playing                   Hudson Entertainment 0.0000000000
## 733       Shooter                   Hudson Entertainment 0.0100000000
## 734    Simulation                   Hudson Entertainment 0.0000000000
## 735        Sports                   Hudson Entertainment 0.0000000000
## 736        Action                            Hudson Soft 0.0000000000
## 737     Adventure                            Hudson Soft 0.0033333333
## 738      Fighting                            Hudson Soft 0.0050000000
## 739          Misc                            Hudson Soft 0.0000000000
## 740      Platform                            Hudson Soft 0.0000000000
## 741        Puzzle                            Hudson Soft 0.0241666667
## 742  Role-Playing                            Hudson Soft 0.0025000000
## 743       Shooter                            Hudson Soft 0.0150000000
## 744    Simulation                            Hudson Soft 0.0166666667
## 745        Sports                            Hudson Soft 0.0391666667
## 746      Strategy                            Hudson Soft 0.0100000000
## 747     Adventure                    Human Entertainment 0.0050000000
## 748      Fighting                    Human Entertainment 0.0000000000
## 749        Racing                    Human Entertainment 0.0000000000
## 750    Simulation                    Human Entertainment 0.0000000000
## 751        Sports                    Human Entertainment 0.0000000000
## 752      Strategy                    Human Entertainment 0.0300000000
## 753        Action                                  HuneX 0.0000000000
## 754     Adventure                                  HuneX 0.0000000000
## 755  Role-Playing                    Iceberg Interactive 0.0100000000
## 756      Strategy                    Iceberg Interactive 0.0200000000
## 757       Shooter                            id Software 0.0000000000
## 758        Action                           Idea Factory 0.0000000000
## 759     Adventure                           Idea Factory 0.0000000000
## 760          Misc                           Idea Factory 0.0000000000
## 761  Role-Playing                           Idea Factory 0.0038461538
## 762      Strategy                           Idea Factory 0.0000000000
## 763        Action             Idea Factory International 0.0200000000
## 764  Role-Playing             Idea Factory International 0.0000000000
## 765        Action                           IE Institute 0.0000000000
## 766          Misc                           IE Institute 0.0000000000
## 767        Action                 Ignition Entertainment 0.0240000000
## 768     Adventure                 Ignition Entertainment 0.0000000000
## 769      Fighting                 Ignition Entertainment 0.0261904762
## 770          Misc                 Ignition Entertainment 0.0200000000
## 771      Platform                 Ignition Entertainment 0.0033333333
## 772        Puzzle                 Ignition Entertainment 0.0325000000
## 773        Racing                 Ignition Entertainment 0.0633333333
## 774  Role-Playing                 Ignition Entertainment 0.0133333333
## 775       Shooter                 Ignition Entertainment 0.0083333333
## 776        Sports                 Ignition Entertainment 0.0100000000
## 777      Strategy                 Ignition Entertainment 0.0000000000
## 778        Action                     Illusion Softworks 0.2700000000
## 779     Adventure                                 Imadio 0.0000000000
## 780  Role-Playing                            Image Epoch 0.0000000000
## 781     Adventure                        imageepoch Inc. 0.0000000000
## 782  Role-Playing                        imageepoch Inc. 0.0000000000
## 783    Simulation                             Imageworks 0.0000000000
## 784        Action                                 Imagic 0.0200000000
## 785       Shooter                                 Imagic 0.0833333333
## 786     Adventure                              Imagineer 0.0000000000
## 787      Fighting                              Imagineer 0.0100000000
## 788        Racing                              Imagineer 0.0100000000
## 789  Role-Playing                              Imagineer 0.0000000000
## 790    Simulation                              Imagineer 0.0000000000
## 791        Sports                              Imagineer 0.0016666667
## 792          Misc                                   Imax 0.0000000000
## 793     Adventure                            Indie Games 0.0100000000
## 794    Simulation                            Indie Games 0.0500000000
## 795        Action                             Infogrames 0.0560000000
## 796     Adventure                             Infogrames 0.0675000000
## 797      Fighting                             Infogrames 0.0800000000
## 798          Misc                             Infogrames 0.1400000000
## 799      Platform                             Infogrames 0.0410000000
## 800        Racing                             Infogrames 0.0773333333
## 801  Role-Playing                             Infogrames 0.0900000000
## 802       Shooter                             Infogrames 0.1283333333
## 803    Simulation                             Infogrames 0.0200000000
## 804        Sports                             Infogrames 0.0500000000
## 805      Strategy                             Infogrames 0.0066666667
## 806        Action                        Insomniac Games 0.0000000000
## 807     Adventure                           Interchannel 0.0000000000
## 808      Strategy                     Interchannel-Holon 0.0000000000
## 809      Platform                              Intergrow 0.0000000000
## 810        Action                              Interplay 0.0716666667
## 811     Adventure                              Interplay 0.3100000000
## 812      Fighting                              Interplay 0.0400000000
## 813          Misc                              Interplay 0.1900000000
## 814      Platform                              Interplay 0.0566666667
## 815        Racing                              Interplay 0.0325000000
## 816  Role-Playing                              Interplay 0.0966666667
## 817       Shooter                              Interplay 0.0500000000
## 818    Simulation                              Interplay 0.0200000000
## 819        Sports                              Interplay 0.0766666667
## 820       Shooter                  Interplay Productions 0.0400000000
## 821        Sports             Interworks Unlimited, Inc. 0.0000000000
## 822        Action                           Inti Creates 0.0000000000
## 823        Action                  Introversion Software 0.0100000000
## 824  Role-Playing                   inXile Entertainment 0.0600000000
## 825        Action              Irem Software Engineering 0.0000000000
## 826      Fighting              Irem Software Engineering 0.0000000000
## 827          Misc              Irem Software Engineering 0.0000000000
## 828  Role-Playing              Irem Software Engineering 0.0000000000
## 829       Shooter              Irem Software Engineering 0.0100000000
## 830      Strategy              Irem Software Engineering 0.0000000000
## 831        Action                       ITT Family Games 0.0200000000
## 832        Puzzle                              Ivolgamus 0.0000000000
## 833        Puzzle                                   iWin 0.0500000000
## 834      Platform                      Jack of All Games 0.0500000000
## 835       Shooter                      Jack of All Games 0.0000000000
## 836        Action                                 Jaleco 0.0150000000
## 837      Fighting                                 Jaleco 0.0100000000
## 838          Misc                                 Jaleco 0.0000000000
## 839        Puzzle                                 Jaleco 0.0033333333
## 840        Racing                                 Jaleco 0.0083333333
## 841       Shooter                                 Jaleco 0.0100000000
## 842        Sports                                 Jaleco 0.0440000000
## 843      Strategy                                 Jaleco 0.0300000000
## 844          Misc                     Jester Interactive 0.0100000000
## 845        Racing                     Jester Interactive 0.1400000000
## 846    Simulation                                Jorudan 0.0000000000
## 847        Action                     JoWood Productions 0.0200000000
## 848     Adventure                     JoWood Productions 0.0100000000
## 849          Misc                     JoWood Productions 0.0000000000
## 850      Platform                     JoWood Productions 0.0050000000
## 851        Puzzle                     JoWood Productions 0.0000000000
## 852  Role-Playing                     JoWood Productions 0.0520000000
## 853    Simulation                     JoWood Productions 0.0050000000
## 854        Sports                     JoWood Productions 0.0500000000
## 855      Strategy                     JoWood Productions 0.0150000000
## 856    Simulation                            Just Flight 0.0300000000
## 857        Action                                    JVC 0.0200000000
## 858      Fighting                                    JVC 0.0000000000
## 859          Misc                                    JVC 0.0300000000
## 860        Puzzle                                    JVC 0.2400000000
## 861        Racing                                    JVC 0.0150000000
## 862       Shooter                                    JVC 0.0100000000
## 863        Action                         Kadokawa Games 0.0000000000
## 864     Adventure                         Kadokawa Games 0.0000000000
## 865          Misc                         Kadokawa Games 0.0000000000
## 866  Role-Playing                         Kadokawa Games 0.0000000000
## 867    Simulation                         Kadokawa Games 0.0000000000
## 868        Action                        Kadokawa Shoten 0.0000000000
## 869     Adventure                        Kadokawa Shoten 0.0000000000
## 870          Misc                        Kadokawa Shoten 0.0000000000
## 871  Role-Playing                        Kadokawa Shoten 0.0281818182
## 872    Simulation                        Kadokawa Shoten 0.0000000000
## 873        Sports                        Kadokawa Shoten 0.0000000000
## 874      Strategy                        Kadokawa Shoten 0.0000000000
## 875        Action                            Kaga Create 0.0000000000
## 876     Adventure                            Kaga Create 0.0000000000
## 877          Misc                            Kaga Create 0.0000000000
## 878        Action                          Kalypso Media 0.0233333333
## 879     Adventure                          Kalypso Media 0.0150000000
## 880          Misc                          Kalypso Media 0.0100000000
## 881    Simulation                          Kalypso Media 0.0571428571
## 882      Strategy                          Kalypso Media 0.0343750000
## 883          Misc                                  Kamui 0.0000000000
## 884    Simulation                            Kando Games 0.0100000000
## 885          Misc                    Karin Entertainment 0.0000000000
## 886        Action                                  Kemco 0.0300000000
## 887     Adventure                                  Kemco 0.0100000000
## 888          Misc                                  Kemco 0.0200000000
## 889      Platform                                  Kemco 0.0250000000
## 890        Puzzle                                  Kemco 0.0033333333
## 891        Racing                                  Kemco 0.0360000000
## 892  Role-Playing                                  Kemco 0.0000000000
## 893       Shooter                                  Kemco 0.0000000000
## 894        Sports                                  Kemco 0.0400000000
## 895     Adventure                                    KID 0.0000000000
## 896     Adventure                           Kids Station 0.0000000000
## 897  Role-Playing                           King Records 0.0000000000
## 898        Action                    Knowledge Adventure 0.0600000000
## 899     Adventure                    Knowledge Adventure 0.0000000000
## 900          Misc                    Knowledge Adventure 0.0000000000
## 901        Sports                    Knowledge Adventure 0.1000000000
## 902        Action                             Koch Media 0.1475000000
## 903     Adventure                             Koch Media 0.0200000000
## 904        Puzzle                             Koch Media 0.0400000000
## 905  Role-Playing                             Koch Media 0.0100000000
## 906    Simulation                             Koch Media 0.1333333333
## 907        Sports                             Koch Media 0.0550000000
## 908      Strategy                             Koch Media 0.0100000000
## 909      Fighting               Kokopeli Digital Studios 0.0100000000
## 910        Action           Konami Digital Entertainment 0.1324324324
## 911     Adventure           Konami Digital Entertainment 0.0275471698
## 912      Fighting           Konami Digital Entertainment 0.0130000000
## 913          Misc           Konami Digital Entertainment 0.0490909091
## 914      Platform           Konami Digital Entertainment 0.0535000000
## 915        Puzzle           Konami Digital Entertainment 0.0060000000
## 916        Racing           Konami Digital Entertainment 0.0192307692
## 917  Role-Playing           Konami Digital Entertainment 0.0556756757
## 918       Shooter           Konami Digital Entertainment 0.0465000000
## 919    Simulation           Konami Digital Entertainment 0.0696511628
## 920        Sports           Konami Digital Entertainment 0.1091428571
## 921      Strategy           Konami Digital Entertainment 0.0596428571
## 922      Strategy                              Kool Kizz 0.0100000000
## 923          Misc                                    KSS 0.0000000000
## 924        Action                                 Laguna 0.0100000000
## 925      Platform                                 Laguna 0.0150000000
## 926  Role-Playing                                 Laguna 0.0000000000
## 927     Adventure                     Legacy Interactive 0.0000000000
## 928        Action                             LEGO Media 0.0100000000
## 929     Adventure                             LEGO Media 0.0700000000
## 930      Platform                             LEGO Media 0.0200000000
## 931        Racing                             LEGO Media 0.1200000000
## 932      Strategy                             LEGO Media 0.0400000000
## 933        Action                                Level 5 0.0000000000
## 934     Adventure                                Level 5 0.0000000000
## 935          Misc                                Level 5 0.0000000000
## 936        Puzzle                                Level 5 0.0866666667
## 937  Role-Playing                                Level 5 0.0009090909
## 938        Sports                                Level 5 0.0000000000
## 939      Strategy                                Level 5 0.0000000000
## 940       Shooter                  Lexicon Entertainment 0.0000000000
## 941    Simulation                  Lexicon Entertainment 0.0000000000
## 942        Action                            Licensed 4U 0.0200000000
## 943        Puzzle                            Licensed 4U 0.0200000000
## 944    Simulation                 Lighthouse Interactive 0.0100000000
## 945        Puzzle                           Liquid Games 0.0000000000
## 946        Racing                           Liquid Games 0.0700000000
## 947        Action                           Little Orbit 0.0388235294
## 948     Adventure                           Little Orbit 0.0928571429
## 949    Simulation                           Little Orbit 0.0000000000
## 950  Role-Playing                                  Locus 0.0000000000
## 951        Action                              LSP Games 0.0100000000
## 952      Platform                              LSP Games 0.0150000000
## 953       Shooter                              LSP Games 0.0000000000
## 954        Action                              LucasArts 0.3814583333
## 955     Adventure                              LucasArts 0.3566666667
## 956        Racing                              LucasArts 0.0900000000
## 957  Role-Playing                              LucasArts 0.0700000000
## 958       Shooter                              LucasArts 0.2763157895
## 959    Simulation                              LucasArts 0.2150000000
## 960      Strategy                              LucasArts 0.0390000000
## 961          Misc                               Mad Catz 0.0400000000
## 962    Simulation                               Mad Catz 0.0000000000
## 963        Sports                               Mad Catz 0.0100000000
## 964        Sports                        Magical Company 0.1000000000
## 965          Misc                                  Magix 0.0650000000
## 966        Action                  Majesco Entertainment 0.0533333333
## 967     Adventure                  Majesco Entertainment 0.0475000000
## 968      Fighting                  Majesco Entertainment 0.0033333333
## 969          Misc                  Majesco Entertainment 0.0204761905
## 970      Platform                  Majesco Entertainment 0.0150000000
## 971        Puzzle                  Majesco Entertainment 0.0044444444
## 972        Racing                  Majesco Entertainment 0.0320000000
## 973  Role-Playing                  Majesco Entertainment 0.0000000000
## 974       Shooter                  Majesco Entertainment 0.0011111111
## 975    Simulation                  Majesco Entertainment 0.0100000000
## 976        Sports                  Majesco Entertainment 0.2160000000
## 977      Strategy                  Majesco Entertainment 0.0000000000
## 978     Adventure                            Mamba Games 0.0300000000
## 979      Strategy                            Mamba Games 0.0100000000
## 980        Action                   Marvel Entertainment 0.0000000000
## 981        Action                Marvelous Entertainment 0.0333333333
## 982      Fighting                Marvelous Entertainment 0.0200000000
## 983          Misc                Marvelous Entertainment 0.0000000000
## 984  Role-Playing                Marvelous Entertainment 0.0000000000
## 985    Simulation                Marvelous Entertainment 0.0000000000
## 986     Adventure                        Marvelous Games 0.0000000000
## 987        Action                  Marvelous Interactive 0.0050000000
## 988     Adventure                  Marvelous Interactive 0.0021428571
## 989      Fighting                  Marvelous Interactive 0.0022222222
## 990          Misc                  Marvelous Interactive 0.0000000000
## 991  Role-Playing                  Marvelous Interactive 0.0053846154
## 992    Simulation                  Marvelous Interactive 0.0000000000
## 993        Sports                  Marvelous Interactive 0.0000000000
## 994    Simulation                      Masque Publishing 0.0000000000
## 995     Adventure                           Mastertronic 0.0300000000
## 996          Misc                           Mastertronic 0.0300000000
## 997        Puzzle                           Mastertronic 0.0350000000
## 998        Racing                           Mastertronic 0.0100000000
## 999       Shooter                           Mastertronic 0.0325000000
## 1000       Sports                           Mastertronic 0.0100000000
## 1001     Strategy                           Mastertronic 0.1500000000
## 1002    Adventure                                Mastiff 0.0000000000
## 1003         Misc                                Mastiff 0.0100000000
## 1004      Shooter                                Mastiff 0.0000000000
## 1005   Simulation                                Mastiff 0.0300000000
## 1006       Sports                                Mastiff 0.0000000000
## 1007       Action                     Mattel Interactive 0.0200000000
## 1008    Adventure                     Mattel Interactive 0.0600000000
## 1009       Puzzle                     Mattel Interactive 0.0300000000
## 1010       Racing                     Mattel Interactive 0.0200000000
## 1011      Shooter                     Mattel Interactive 0.0100000000
## 1012       Sports                     Mattel Interactive 0.0366666667
## 1013 Role-Playing                               Max Five 0.0200000000
## 1014       Action                   Maximum Family Games 0.0000000000
## 1015   Simulation                                  Maxis 0.4400000000
## 1016    Adventure                      MC2 Entertainment 0.0100000000
## 1017      Shooter                      MC2 Entertainment 0.0100000000
## 1018         Misc                    Media Entertainment 0.0000000000
## 1019    Adventure                          Media Factory 0.0000000000
## 1020       Sports                          Media Factory 0.0000000000
## 1021       Racing                            Media Rings 0.0000000000
## 1022 Role-Playing                            Media Rings 0.0500000000
## 1023       Sports                            Media Rings 0.0000000000
## 1024    Adventure                            Media Works 0.0000000000
## 1025         Misc                            Media Works 0.0000000000
## 1026     Strategy                            Media Works 0.0000000000
## 1027       Puzzle                             MediaQuest 0.0200000000
## 1028       Action                           Men-A-Vision 0.0400000000
## 1029         Misc                     Mentor Interactive 0.0000000000
## 1030 Role-Playing                          Mercury Games 0.0000000000
## 1031   Simulation                          Mercury Games 0.0000000000
## 1032    Adventure                            Merscom LLC 0.1700000000
## 1033     Fighting                               Metro 3D 0.0100000000
## 1034     Platform                               Metro 3D 0.0000000000
## 1035       Racing                               Metro 3D 0.0100000000
## 1036 Role-Playing                               Metro 3D 0.0350000000
## 1037      Shooter                               Metro 3D 0.0700000000
## 1038   Simulation                               Metro 3D 0.0933333333
## 1039 Role-Playing                            Michaelsoft 0.0000000000
## 1040       Puzzle                            Micro Cabin 0.0000000000
## 1041 Role-Playing                            Micro Cabin 0.0000000000
## 1042   Simulation                            Micro Cabin 0.0000000000
## 1043       Action                               Microids 0.0133333333
## 1044    Adventure                               Microids 0.0150000000
## 1045       Sports                               Microids 0.0100000000
## 1046         Misc                             Microprose 0.2100000000
## 1047   Simulation                             Microprose 0.1000000000
## 1048     Strategy                             Microprose 0.2200000000
## 1049       Action                 Microsoft Game Studios 0.1504761905
## 1050    Adventure                 Microsoft Game Studios 0.1466666667
## 1051     Fighting                 Microsoft Game Studios 0.0900000000
## 1052         Misc                 Microsoft Game Studios 0.3602941176
## 1053     Platform                 Microsoft Game Studios 0.0983333333
## 1054       Puzzle                 Microsoft Game Studios 0.0200000000
## 1055       Racing                 Microsoft Game Studios 0.5968181818
## 1056 Role-Playing                 Microsoft Game Studios 0.3468750000
## 1057      Shooter                 Microsoft Game Studios 0.8139285714
## 1058   Simulation                 Microsoft Game Studios 0.2505555556
## 1059       Sports                 Microsoft Game Studios 0.2223529412
## 1060     Strategy                 Microsoft Game Studios 0.1077777778
## 1061       Action        Midas Interactive Entertainment 0.0200000000
## 1062     Fighting        Midas Interactive Entertainment 0.0300000000
## 1063         Misc        Midas Interactive Entertainment 0.0300000000
## 1064     Platform        Midas Interactive Entertainment 0.0200000000
## 1065       Puzzle        Midas Interactive Entertainment 0.0033333333
## 1066       Racing        Midas Interactive Entertainment 0.0766666667
## 1067 Role-Playing        Midas Interactive Entertainment 0.0000000000
## 1068      Shooter        Midas Interactive Entertainment 0.0600000000
## 1069   Simulation        Midas Interactive Entertainment 0.0200000000
## 1070       Sports        Midas Interactive Entertainment 0.0825000000
## 1071     Strategy        Midas Interactive Entertainment 0.0066666667
## 1072       Action                           Midway Games 0.0685185185
## 1073    Adventure                           Midway Games 0.0025000000
## 1074     Fighting                           Midway Games 0.1324000000
## 1075         Misc                           Midway Games 0.1370000000
## 1076     Platform                           Midway Games 0.0264285714
## 1077       Puzzle                           Midway Games 0.4400000000
## 1078       Racing                           Midway Games 0.0664000000
## 1079 Role-Playing                           Midway Games 0.0875000000
## 1080      Shooter                           Midway Games 0.1047058824
## 1081       Sports                           Midway Games 0.0784482759
## 1082      Shooter                              Milestone 0.0000000000
## 1083       Racing                        Milestone S.r.l 0.0250000000
## 1084       Racing                       Milestone S.r.l. 0.0487500000
## 1085       Action                         Minato Station 0.0000000000
## 1086    Adventure                         Minato Station 0.0000000000
## 1087       Action                              Mindscape 0.0125000000
## 1088    Adventure                              Mindscape 0.0100000000
## 1089         Misc                              Mindscape 0.1240000000
## 1090       Puzzle                              Mindscape 0.0520000000
## 1091       Racing                              Mindscape 0.0250000000
## 1092 Role-Playing                              Mindscape 0.0100000000
## 1093       Sports                              Mindscape 0.0500000000
## 1094     Strategy                              Mindscape 0.0733333333
## 1095         Misc                          Mirai Shounen 0.0000000000
## 1096       Sports                                 Misawa 0.0000000000
## 1097      Shooter                                 Mitsui 0.0200000000
## 1098       Action                              mixi, Inc 0.0000000000
## 1099       Sports                                MLB.com 0.0000000000
## 1100    Adventure                                 Mojang 0.2600000000
## 1101   Simulation               Monte Christo Multimedia 0.0400000000
## 1102      Shooter                                   Moss 0.0000000000
## 1103       Action                                    MTO 0.0000000000
## 1104       Racing                                    MTO 0.0000000000
## 1105   Simulation                                    MTO 0.0000000000
## 1106         Misc                              MTV Games 0.0978048780
## 1107         Misc                   Mud Duck Productions 0.0950000000
## 1108       Sports                   Mud Duck Productions 0.0600000000
## 1109       Puzzle                            Mumbo Jumbo 0.0000000000
## 1110       Sports                            Mumbo Jumbo 0.0000000000
## 1111     Strategy                            Mumbo Jumbo 0.0000000000
## 1112       Action                                  Mycom 0.0000000000
## 1113         Misc                           Myelin Media 0.0133333333
## 1114       Action                               Mystique 0.0500000000
## 1115       Action                                    N/A 0.0114285714
## 1116    Adventure                                    N/A 0.0125000000
## 1117     Fighting                                    N/A 0.5500000000
## 1118         Misc                                    N/A 0.0759259259
## 1119     Platform                                    N/A 0.2500000000
## 1120       Puzzle                                    N/A 0.0100000000
## 1121       Racing                                    N/A 0.0100000000
## 1122 Role-Playing                                    N/A 0.0050000000
## 1123      Shooter                                    N/A 0.0150000000
## 1124   Simulation                                    N/A 0.0450000000
## 1125       Sports                                    N/A 0.1833333333
## 1126     Strategy                                    N/A 0.0366666667
## 1127       Action                     Namco Bandai Games 0.0207258065
## 1128    Adventure                     Namco Bandai Games 0.0117241379
## 1129     Fighting                     Namco Bandai Games 0.1098507463
## 1130         Misc                     Namco Bandai Games 0.0454639175
## 1131     Platform                     Namco Bandai Games 0.0189473684
## 1132       Puzzle                     Namco Bandai Games 0.0260000000
## 1133       Racing                     Namco Bandai Games 0.0844444444
## 1134 Role-Playing                     Namco Bandai Games 0.0633774834
## 1135      Shooter                     Namco Bandai Games 0.0681081081
## 1136   Simulation                     Namco Bandai Games 0.0306896552
## 1137       Sports                     Namco Bandai Games 0.0294117647
## 1138     Strategy                     Namco Bandai Games 0.0006557377
## 1139    Adventure                                Natsume 0.0000000000
## 1140     Fighting                                Natsume 0.0200000000
## 1141         Misc                                Natsume 0.0000000000
## 1142     Platform                                Natsume 0.0100000000
## 1143       Puzzle                                Natsume 0.0000000000
## 1144 Role-Playing                                Natsume 0.0400000000
## 1145   Simulation                                Natsume 0.0266666667
## 1146       Sports                                Natsume 0.0880000000
## 1147     Strategy                                Natsume 0.0300000000
## 1148       Sports                           Navarre Corp 0.0000000000
## 1149         Misc                             Naxat Soft 0.0000000000
## 1150     Strategy                                    NCS 0.0000000000
## 1151       Action                                 NCSoft 1.0600000000
## 1152 Role-Playing                                 NCSoft 0.0260000000
## 1153      Shooter                        NDA Productions 0.0200000000
## 1154    Adventure                                    NEC 0.0000000000
## 1155 Role-Playing                                    NEC 0.0000000000
## 1156    Adventure                       NEC Interchannel 0.0000000000
## 1157 Role-Playing                       NEC Interchannel 0.0000000000
## 1158   Simulation                       NEC Interchannel 0.0000000000
## 1159     Strategy                       NEC Interchannel 0.0000000000
## 1160       Action                     Neko Entertainment 0.0100000000
## 1161    Adventure                     Neko Entertainment 0.0000000000
## 1162         Misc                     Neko Entertainment 0.0000000000
## 1163       Puzzle                     Neko Entertainment 0.0100000000
## 1164      Shooter                     Neko Entertainment 0.0300000000
## 1165       Action                                NetRevo 0.0000000000
## 1166    Adventure                                NetRevo 0.0000000000
## 1167     Fighting                                    New 0.0000000000
## 1168     Strategy                    New World Computing 0.0000000000
## 1169       Action                               NewKidCo 0.0050000000
## 1170    Adventure                               NewKidCo 0.0700000000
## 1171     Fighting                               NewKidCo 0.0100000000
## 1172         Misc                               NewKidCo 0.0725000000
## 1173     Platform                               NewKidCo 0.0000000000
## 1174 Role-Playing                                  Nexon 0.0000000000
## 1175         Misc                             Nichibutsu 0.0000000000
## 1176       Action               Nihon Falcom Corporation 0.0050000000
## 1177 Role-Playing               Nihon Falcom Corporation 0.0000000000
## 1178       Action                               Nintendo 0.3673417722
## 1179    Adventure                               Nintendo 0.2188571429
## 1180     Fighting                               Nintendo 0.4800000000
## 1181         Misc                               Nintendo 0.5162000000
## 1182     Platform                               Nintendo 0.7608035714
## 1183       Puzzle                               Nintendo 0.3570270270
## 1184       Racing                               Nintendo 1.0743243243
## 1185 Role-Playing                               Nintendo 0.6030188679
## 1186      Shooter                               Nintendo 0.3788461538
## 1187   Simulation                               Nintendo 0.8982758621
## 1188       Sports                               Nintendo 1.2032727273
## 1189     Strategy                               Nintendo 0.1381250000
## 1190         Misc                           Nippon Amuse 0.0000000000
## 1191       Action                        Nippon Columbia 0.0000000000
## 1192         Misc                        Nippon Columbia 0.0000000000
## 1193       Action                   Nippon Ichi Software 0.0115384615
## 1194    Adventure                   Nippon Ichi Software 0.0008333333
## 1195     Fighting                   Nippon Ichi Software 0.0650000000
## 1196         Misc                   Nippon Ichi Software 0.0800000000
## 1197     Platform                   Nippon Ichi Software 0.0100000000
## 1198 Role-Playing                   Nippon Ichi Software 0.0198550725
## 1199      Shooter                   Nippon Ichi Software 0.0000000000
## 1200     Strategy                   Nippon Ichi Software 0.0000000000
## 1201         Misc                         Nippon Telenet 0.0000000000
## 1202    Adventure                              Nitroplus 0.0000000000
## 1203     Fighting                              Nitroplus 0.0000000000
## 1204       Action                                Nobilis 0.0050000000
## 1205    Adventure                                Nobilis 0.0100000000
## 1206         Misc                                Nobilis 0.0000000000
## 1207       Racing                                Nobilis 0.0200000000
## 1208 Role-Playing                                Nobilis 0.0000000000
## 1209   Simulation                                Nobilis 0.0260000000
## 1210       Action                            Nordcurrent 0.0000000000
## 1211         Misc                            Nordcurrent 0.0100000000
## 1212       Puzzle                            Nordcurrent 0.1300000000
## 1213       Sports                            Nordcurrent 0.0000000000
## 1214       Action                           Nordic Games 0.0450000000
## 1215    Adventure                           Nordic Games 0.0350000000
## 1216         Misc                           Nordic Games 0.2327272727
## 1217       Racing                           Nordic Games 0.0128571429
## 1218 Role-Playing                           Nordic Games 0.0000000000
## 1219      Shooter                           Nordic Games 0.0150000000
## 1220       Sports                           Nordic Games 0.0250000000
## 1221     Strategy                           Nordic Games 0.0100000000
## 1222      Shooter                              NovaLogic 0.0800000000
## 1223     Platform                            Number None 0.0200000000
## 1224    Adventure                                O-Games 0.0300000000
## 1225         Misc                                O-Games 0.0375000000
## 1226       Puzzle                                O-Games 0.0260000000
## 1227       Racing                                O-Games 0.0000000000
## 1228      Shooter                                O-Games 0.0000000000
## 1229       Sports                                O-Games 0.0460000000
## 1230       Puzzle                       O3 Entertainment 0.0000000000
## 1231      Shooter                       O3 Entertainment 0.0200000000
## 1232   Simulation                       O3 Entertainment 0.0000000000
## 1233       Action                                  Ocean 0.1700000000
## 1234     Fighting                                  Ocean 0.0250000000
## 1235         Misc                                  Ocean 0.0100000000
## 1236     Platform                                  Ocean 0.1000000000
## 1237       Puzzle                                  Ocean 0.0200000000
## 1238       Racing                                  Ocean 0.0350000000
## 1239      Shooter                                  Ocean 0.0400000000
## 1240       Sports                                  Ocean 0.0000000000
## 1241   Simulation                          Office Create 0.0000000000
## 1242 Role-Playing                              On Demand 0.0800000000
## 1243   Simulation                              Ongakukan 0.0000000000
## 1244   Simulation                         Origin Systems 0.0300000000
## 1245    Adventure                                Otomate 0.0000000000
## 1246       Action                     Oxygen Interactive 0.0000000000
## 1247    Adventure                     Oxygen Interactive 0.0050000000
## 1248         Misc                     Oxygen Interactive 0.1000000000
## 1249     Platform                     Oxygen Interactive 0.0000000000
## 1250       Puzzle                     Oxygen Interactive 0.0000000000
## 1251       Sports                     Oxygen Interactive 0.0460000000
## 1252         Misc                               P2 Games 0.1650000000
## 1253       Puzzle                               P2 Games 0.0000000000
## 1254         Misc            Pacific Century Cyber Works 0.0900000000
## 1255    Adventure                          Pack-In-Video 0.0000000000
## 1256   Simulation                          Pack-In-Video 0.0000000000
## 1257   Simulation                           Pack In Soft 0.0600000000
## 1258       Action                                 Palcom 0.4400000000
## 1259 Role-Playing                       Panther Software 0.0200000000
## 1260         Misc                                   Paon 0.0000000000
## 1261         Misc                       Paon Corporation 0.0000000000
## 1262   Simulation                    Paradox Development 0.0100000000
## 1263         Misc                    Paradox Interactive 0.0300000000
## 1264 Role-Playing                    Paradox Interactive 0.0160000000
## 1265   Simulation                    Paradox Interactive 0.0525000000
## 1266     Strategy                    Paradox Interactive 0.0192307692
## 1267       Action                           Parker Bros. 0.0420000000
## 1268     Platform                           Parker Bros. 0.0300000000
## 1269       Puzzle                           Parker Bros. 0.0300000000
## 1270       Puzzle          Performance Designed Products 0.0000000000
## 1271   Simulation                             Phantagram 0.0100000000
## 1272      Shooter                            Phantom EFX 0.0000000000
## 1273     Platform                             Phenomedia 0.0000000000
## 1274       Puzzle                             Phenomedia 0.0000000000
## 1275       Racing                             Phenomedia 0.0000000000
## 1276      Shooter                          Phoenix Games 0.0000000000
## 1277    Adventure                                 Piacci 0.0000000000
## 1278         Misc                               Pinnacle 0.5850000000
## 1279       Puzzle                               Pinnacle 0.0300000000
## 1280       Sports                               Pinnacle 0.1000000000
## 1281     Strategy                               Pinnacle 0.0200000000
## 1282    Adventure                            Pioneer LDC 0.0000000000
## 1283       Racing                            Pioneer LDC 0.1600000000
## 1284         Misc                                Play It 0.0550000000
## 1285     Platform                                Play It 0.0100000000
## 1286       Racing                                Play It 0.1450000000
## 1287      Shooter                                Play It 0.0450000000
## 1288       Sports                                Play It 0.2400000000
## 1289       Action                 Playlogic Game Factory 0.0150000000
## 1290         Misc                 Playlogic Game Factory 0.0000000000
## 1291       Puzzle                 Playlogic Game Factory 0.0050000000
## 1292      Shooter                 Playlogic Game Factory 0.0300000000
## 1293       Sports                 Playlogic Game Factory 0.0000000000
## 1294     Strategy                 Playlogic Game Factory 0.0000000000
## 1295       Racing                              Playmates 0.1100000000
## 1296     Fighting                               Playmore 0.0000000000
## 1297       Action                                  PlayV 0.1400000000
## 1298         Misc                                  PlayV 0.0200000000
## 1299       Puzzle                                  PlayV 0.0700000000
## 1300         Misc                                 Plenty 0.0000000000
## 1301         Misc                             PM Studios 0.0000000000
## 1302         Misc                            Pony Canyon 0.0200000000
## 1303    Adventure                           PopCap Games 0.0800000000
## 1304         Misc                           PopCap Games 0.0100000000
## 1305       Puzzle                           PopCap Games 0.0222222222
## 1306     Strategy                           PopCap Games 0.0133333333
## 1307       Action                         Popcorn Arcade 0.0000000000
## 1308     Platform                         Popcorn Arcade 0.0000000000
## 1309       Puzzle                         Popcorn Arcade 0.0000000000
## 1310       Racing                         Popcorn Arcade 0.0000000000
## 1311      Shooter                         Popcorn Arcade 0.0000000000
## 1312     Strategy                        PopTop Software 0.0400000000
## 1313       Puzzle                                    Pow 0.0000000000
## 1314       Action                                  PQube 0.0150000000
## 1315    Adventure                                  PQube 0.0260000000
## 1316     Fighting                                  PQube 0.0323529412
## 1317         Misc                                  PQube 0.0400000000
## 1318       Racing                                  PQube 0.0000000000
## 1319      Shooter                                  PQube 0.0000000000
## 1320   Simulation                                  PQube 0.0100000000
## 1321       Sports                                  PQube 0.0200000000
## 1322    Adventure                          Princess Soft 0.0000000000
## 1323       Action                              Prototype 0.0000000000
## 1324    Adventure                              Prototype 0.0000000000
## 1325       Action                              Psygnosis 0.0960000000
## 1326    Adventure                              Psygnosis 0.0233333333
## 1327         Misc                              Psygnosis 0.0100000000
## 1328     Platform                              Psygnosis 0.0100000000
## 1329       Puzzle                              Psygnosis 0.0200000000
## 1330       Racing                              Psygnosis 0.1625000000
## 1331 Role-Playing                              Psygnosis 0.0900000000
## 1332      Shooter                              Psygnosis 0.0266666667
## 1333   Simulation                              Psygnosis 0.0825000000
## 1334       Sports                              Psygnosis 0.0100000000
## 1335         Misc                                 Quelle 0.0500000000
## 1336 Role-Playing                                  Quest 0.0000000000
## 1337       Action                               Quinrose 0.0000000000
## 1338    Adventure                               Quinrose 0.0000000000
## 1339    Adventure                                Quintet 0.0000000000
## 1340     Fighting                          Rage Software 0.1266666667
## 1341       Puzzle                          Rage Software 0.0100000000
## 1342       Racing                          Rage Software 0.0300000000
## 1343      Shooter                          Rage Software 0.0200000000
## 1344     Platform                             Rain Games 0.0100000000
## 1345       Racing                              Rebellion 0.0650000000
## 1346      Shooter                 Rebellion Developments 0.0850000000
## 1347    Adventure                      RED Entertainment 0.0000000000
## 1348    Adventure                                Red Orb 1.8050000000
## 1349       Action                Red Storm Entertainment 0.0200000000
## 1350      Shooter                Red Storm Entertainment 0.3900000000
## 1351         Misc                              RedOctane 0.3275000000
## 1352    Adventure                     Reef Entertainment 0.0200000000
## 1353      Shooter                     Reef Entertainment 0.0150000000
## 1354       Sports                     Reef Entertainment 0.0200000000
## 1355       Sports                           responDESIGN 0.0200000000
## 1356    Adventure                     Revolution (Japan) 0.0000000000
## 1357    Adventure                    Revolution Software 0.0350000000
## 1358       Action                      Rising Star Games 0.0525000000
## 1359    Adventure                      Rising Star Games 0.0000000000
## 1360     Fighting                      Rising Star Games 0.0500000000
## 1361         Misc                      Rising Star Games 0.1150000000
## 1362     Platform                      Rising Star Games 0.0100000000
## 1363       Puzzle                      Rising Star Games 0.0269230769
## 1364 Role-Playing                      Rising Star Games 0.0288461538
## 1365      Shooter                      Rising Star Games 0.0275000000
## 1366   Simulation                      Rising Star Games 0.0345454545
## 1367       Sports                      Rising Star Games 0.0000000000
## 1368     Strategy                      Rising Star Games 0.0275000000
## 1369   Simulation                          Riverhillsoft 0.0000000000
## 1370       Action                         Rocket Company 0.0000000000
## 1371    Adventure                         Rocket Company 0.0000000000
## 1372         Misc                         Rocket Company 0.0000000000
## 1373 Role-Playing                         Rocket Company 0.0000000000
## 1374   Simulation                         Rocket Company 0.0000000000
## 1375       Sports                         Rocket Company 0.0000000000
## 1376       Action                             Rondomedia 0.0400000000
## 1377    Adventure                             Rondomedia 0.0366666667
## 1378         Misc                             Rondomedia 0.0300000000
## 1379       Puzzle                             Rondomedia 0.0940000000
## 1380       Racing                             Rondomedia 0.0200000000
## 1381   Simulation                             Rondomedia 0.2200000000
## 1382       Racing                                    RTL 0.0000000000
## 1383   Simulation                                    RTL 0.0200000000
## 1384       Sports                                    RTL 0.1880000000
## 1385       Action                                 Russel 0.0000000000
## 1386    Adventure                                 Russel 0.0000000000
## 1387       Sports                                 Russel 1.1200000000
## 1388    Adventure                      Sammy Corporation 0.0300000000
## 1389     Fighting                      Sammy Corporation 0.0350000000
## 1390         Misc                      Sammy Corporation 0.0000000000
## 1391   Simulation                      Sammy Corporation 0.0700000000
## 1392       Action                                 Saurus 0.0100000000
## 1393       Action                        Scholastic Inc. 0.0000000000
## 1394    Adventure                        Scholastic Inc. 0.0060000000
## 1395         Misc                        Scholastic Inc. 0.0000000000
## 1396       Puzzle                        Scholastic Inc. 0.0000000000
## 1397       Action                                    SCi 0.0280000000
## 1398     Platform                                    SCi 0.0200000000
## 1399       Racing                                    SCi 0.0150000000
## 1400      Shooter                                    SCi 0.1275000000
## 1401       Action                             Screenlife 0.0033333333
## 1402     Fighting                             Screenlife 0.0000000000
## 1403 Role-Playing                             Screenlife 0.0000000000
## 1404       Action                           SCS Software 0.1200000000
## 1405       Puzzle                                  Sears 0.0100000000
## 1406       Action                                   Sega 0.0755445545
## 1407    Adventure                                   Sega 0.0096774194
## 1408     Fighting                                   Sega 0.0705405405
## 1409         Misc                                   Sega 0.0756451613
## 1410     Platform                                   Sega 0.3553846154
## 1411       Puzzle                                   Sega 0.0040909091
## 1412       Racing                                   Sega 0.1537500000
## 1413 Role-Playing                                   Sega 0.0300000000
## 1414      Shooter                                   Sega 0.1322500000
## 1415   Simulation                                   Sega 0.1583333333
## 1416       Sports                                   Sega 0.2106666667
## 1417     Strategy                                   Sega 0.0934285714
## 1418         Misc                       Seta Corporation 0.0000000000
## 1419 Role-Playing                       Seta Corporation 0.0000000000
## 1420       Sports                       Seta Corporation 0.0000000000
## 1421       Action                          Seventh Chord 0.0000000000
## 1422    Adventure                             Shogakukan 0.0000000000
## 1423         Misc                             Shogakukan 0.0000000000
## 1424       Sports           Simon & Schuster Interactive 0.0200000000
## 1425       Racing                   Slightly Mad Studios 0.3066666667
## 1426     Strategy                    Slitherine Software 0.0250000000
## 1427     Fighting                                    SNK 0.0013636364
## 1428    Adventure                           SNK Playmore 0.0000000000
## 1429     Fighting                           SNK Playmore 0.0075000000
## 1430 Role-Playing                           SNK Playmore 0.0000000000
## 1431      Shooter                           SNK Playmore 0.0250000000
## 1432    Adventure                                Societa 0.0000000000
## 1433       Action                               Sold Out 0.0100000000
## 1434         Misc                                 Sonnet 0.0000000000
## 1435       Action            Sony Computer Entertainment 0.3315555556
## 1436    Adventure            Sony Computer Entertainment 0.1070731707
## 1437     Fighting            Sony Computer Entertainment 0.2843333333
## 1438         Misc            Sony Computer Entertainment 0.2641406250
## 1439     Platform            Sony Computer Entertainment 0.4980303030
## 1440       Puzzle            Sony Computer Entertainment 0.0650000000
## 1441       Racing            Sony Computer Entertainment 0.5449230769
## 1442 Role-Playing            Sony Computer Entertainment 0.1879591837
## 1443      Shooter            Sony Computer Entertainment 0.3274509804
## 1444   Simulation            Sony Computer Entertainment 0.1600000000
## 1445       Sports            Sony Computer Entertainment 0.1054032258
## 1446     Strategy            Sony Computer Entertainment 0.0583333333
## 1447       Sports    Sony Computer Entertainment America 0.0000000000
## 1448       Action     Sony Computer Entertainment Europe 2.2800000000
## 1449    Adventure     Sony Computer Entertainment Europe 0.4766666667
## 1450         Misc     Sony Computer Entertainment Europe 0.7350000000
## 1451     Platform     Sony Computer Entertainment Europe 0.2400000000
## 1452      Shooter     Sony Computer Entertainment Europe 0.4900000000
## 1453   Simulation     Sony Computer Entertainment Europe 0.4500000000
## 1454         Misc               Sony Music Entertainment 0.0000000000
## 1455 Role-Playing              Sony Online Entertainment 0.1642857143
## 1456     Strategy              Sony Online Entertainment 0.0000000000
## 1457       Action                        SouthPeak Games 0.0077777778
## 1458    Adventure                        SouthPeak Games 0.0850000000
## 1459     Fighting                        SouthPeak Games 0.0133333333
## 1460         Misc                        SouthPeak Games 0.0150000000
## 1461       Puzzle                        SouthPeak Games 0.0000000000
## 1462       Racing                        SouthPeak Games 0.0166666667
## 1463 Role-Playing                        SouthPeak Games 0.1750000000
## 1464      Shooter                        SouthPeak Games 0.0212500000
## 1465   Simulation                        SouthPeak Games 0.0150000000
## 1466       Sports                        SouthPeak Games 0.0000000000
## 1467     Strategy                        SouthPeak Games 0.0000000000
## 1468       Action                                  Spike 0.0000000000
## 1469    Adventure                                  Spike 0.0000000000
## 1470     Fighting                                  Spike 0.0150000000
## 1471         Misc                                  Spike 0.0000000000
## 1472 Role-Playing                                  Spike 0.0000000000
## 1473   Simulation                                  Spike 0.0000000000
## 1474       Sports                                  Spike 0.0272727273
## 1475       Sports                                    SPS 0.0400000000
## 1476       Racing                                 Square 0.0000000000
## 1477 Role-Playing                                 Square 0.0580000000
## 1478 Role-Playing                              Square EA 0.3000000000
## 1479       Action                            Square Enix 0.2459615385
## 1480    Adventure                            Square Enix 0.1120000000
## 1481     Fighting                            Square Enix 0.2133333333
## 1482         Misc                            Square Enix 0.0250000000
## 1483       Puzzle                            Square Enix 0.0425000000
## 1484 Role-Playing                            Square Enix 0.1157364341
## 1485      Shooter                            Square Enix 0.1618750000
## 1486   Simulation                            Square Enix 0.0125000000
## 1487     Strategy                            Square Enix 0.0422222222
## 1488     Fighting                             SquareSoft 0.0725000000
## 1489       Racing                             SquareSoft 0.0500000000
## 1490 Role-Playing                             SquareSoft 0.1176315789
## 1491      Shooter                             SquareSoft 0.0700000000
## 1492   Simulation                             SquareSoft 0.0000000000
## 1493       Sports                             SquareSoft 0.0000000000
## 1494     Strategy                             SquareSoft 0.0175000000
## 1495     Strategy                                    SSI 0.0700000000
## 1496       Action                        Stainless Games 0.0100000000
## 1497       Action                               Starfish 0.0000000000
## 1498 Role-Playing                               Starfish 0.0000000000
## 1499      Shooter                               Starfish 0.0000000000
## 1500       Sports                               Starfish 0.0633333333
## 1501       Action                         Starpath Corp. 0.0200000000
## 1502 Role-Playing                                  Sting 0.0077777778
## 1503       Action                       Storm City Games 0.0000000000
## 1504    Adventure                       Storm City Games 0.0000000000
## 1505         Misc                       Storm City Games 0.0000000000
## 1506     Platform                       Storm City Games 0.0000000000
## 1507       Puzzle                       Storm City Games 0.0142857143
## 1508       Racing                       Storm City Games 0.0000000000
## 1509       Sports                       Storm City Games 0.0000000000
## 1510     Strategy                       Storm City Games 0.0000000000
## 1511     Strategy                         Strategy First 0.0200000000
## 1512       Action                                Success 0.0000000000
## 1513    Adventure                                Success 0.0000000000
## 1514         Misc                                Success 0.0050000000
## 1515       Puzzle                                Success 0.0000000000
## 1516 Role-Playing                                Success 0.0014285714
## 1517      Shooter                                Success 0.4300000000
## 1518   Simulation                                Success 0.0000000000
## 1519     Strategy                                Success 0.0200000000
## 1520       Sports                             Summitsoft 0.0100000000
## 1521     Strategy                             Sunflowers 0.0200000000
## 1522       Action                    Sunrise Interactive 0.0000000000
## 1523     Fighting                    Sunrise Interactive 0.0000000000
## 1524       Racing                    Sunrise Interactive 0.0000000000
## 1525 Role-Playing                    Sunrise Interactive 0.0000000000
## 1526    Adventure                                Sunsoft 0.0250000000
## 1527     Fighting                                Sunsoft 0.0000000000
## 1528         Misc                                Sunsoft 0.0000000000
## 1529     Platform                                Sunsoft 0.0200000000
## 1530       Puzzle                                Sunsoft 0.0000000000
## 1531 Role-Playing                                Sunsoft 0.0400000000
## 1532      Shooter                                Sunsoft 0.1000000000
## 1533    Adventure                                 Sweets 0.0000000000
## 1534       Action                   Swing! Entertainment 0.0200000000
## 1535    Adventure                   Swing! Entertainment 0.0300000000
## 1536     Platform                   Swing! Entertainment 0.0100000000
## 1537      Shooter                   Swing! Entertainment 0.0300000000
## 1538   Simulation                   Swing! Entertainment 0.0400000000
## 1539         Misc                                 Syscom 0.0000000000
## 1540       Racing                                 Syscom 0.0400000000
## 1541     Platform                               System 3 0.0333333333
## 1542         Misc               System 3 Arcade Software 0.0133333333
## 1543     Platform               System 3 Arcade Software 0.0200000000
## 1544       Puzzle               System 3 Arcade Software 0.0000000000
## 1545       Racing               System 3 Arcade Software 0.0785714286
## 1546       Sports               System 3 Arcade Software 0.0000000000
## 1547    Adventure                            System Soft 0.0000000000
## 1548     Strategy                            System Soft 0.0000000000
## 1549       Sports                               T&E Soft 0.0000000000
## 1550       Action                                  Taito 0.0100000000
## 1551    Adventure                                  Taito 0.0000000000
## 1552     Fighting                                  Taito 0.0000000000
## 1553         Misc                                  Taito 0.0000000000
## 1554 Role-Playing                                  Taito 0.0200000000
## 1555      Shooter                                  Taito 0.0100000000
## 1556   Simulation                                  Taito 0.0000000000
## 1557       Action                                 Takara 0.0000000000
## 1558     Fighting                                 Takara 0.0000000000
## 1559         Misc                                 Takara 0.0150000000
## 1560       Racing                                 Takara 0.0000000000
## 1561 Role-Playing                                 Takara 0.0000000000
## 1562       Action                            Takara Tomy 0.0000000000
## 1563     Fighting                            Takara Tomy 0.0030000000
## 1564         Misc                            Takara Tomy 0.0000000000
## 1565       Racing                            Takara Tomy 0.0000000000
## 1566 Role-Playing                            Takara Tomy 0.0000000000
## 1567       Sports                            Takara Tomy 0.0000000000
## 1568     Strategy                            Takara Tomy 0.0000000000
## 1569       Action                   Take-Two Interactive 0.7574193548
## 1570    Adventure                   Take-Two Interactive 0.2150000000
## 1571     Fighting                   Take-Two Interactive 0.0000000000
## 1572         Misc                   Take-Two Interactive 0.1081481481
## 1573     Platform                   Take-Two Interactive 0.0572727273
## 1574       Puzzle                   Take-Two Interactive 0.0200000000
## 1575       Racing                   Take-Two Interactive 0.2400000000
## 1576 Role-Playing                   Take-Two Interactive 0.3033333333
## 1577      Shooter                   Take-Two Interactive 0.2827692308
## 1578   Simulation                   Take-Two Interactive 0.0850000000
## 1579       Sports                   Take-Two Interactive 0.0911258278
## 1580     Strategy                   Take-Two Interactive 0.1113636364
## 1581    Adventure                                 Takuyo 0.0000000000
## 1582      Shooter                              TalonSoft 0.3300000000
## 1583       Action                               TDK Core 0.0600000000
## 1584         Misc                               TDK Core 0.0000000000
## 1585   Simulation                               TDK Core 0.0000000000
## 1586       Action                         TDK Mediactive 0.0350000000
## 1587    Adventure                         TDK Mediactive 0.0250000000
## 1588         Misc                         TDK Mediactive 0.0340000000
## 1589     Platform                         TDK Mediactive 0.0862500000
## 1590       Racing                         TDK Mediactive 0.1266666667
## 1591      Shooter                         TDK Mediactive 0.0825000000
## 1592       Sports                         TDK Mediactive 0.0466666667
## 1593     Strategy                        Team17 Software 0.0400000000
## 1594       Sports              Technos Japan Corporation 0.0000000000
## 1595      Shooter                             TechnoSoft 0.0200000000
## 1596       Action                             Tecmo Koei 0.0281021898
## 1597    Adventure                             Tecmo Koei 0.0000000000
## 1598     Fighting                             Tecmo Koei 0.0616666667
## 1599         Misc                             Tecmo Koei 0.0014285714
## 1600     Platform                             Tecmo Koei 0.0100000000
## 1601       Racing                             Tecmo Koei 0.0000000000
## 1602 Role-Playing                             Tecmo Koei 0.0272340426
## 1603      Shooter                             Tecmo Koei 0.0400000000
## 1604   Simulation                             Tecmo Koei 0.0230769231
## 1605       Sports                             Tecmo Koei 0.0087179487
## 1606     Strategy                             Tecmo Koei 0.0084000000
## 1607         Misc                              Telegames 0.0125000000
## 1608       Puzzle                              Telegames 0.0000000000
## 1609   Simulation                              Telegames 0.0100000000
## 1610     Strategy                              Telegames 0.0000000000
## 1611       Action                         Telltale Games 0.0450000000
## 1612    Adventure                         Telltale Games 0.0395652174
## 1613       Action                                Telstar 0.0500000000
## 1614       Racing                                Telstar 0.0300000000
## 1615      Shooter                                Telstar 0.0200000000
## 1616       Puzzle                          Tetris Online 0.1300000000
## 1617    Adventure                                    TGL 0.0000000000
## 1618    Adventure                  The Adventure Company 0.0200000000
## 1619       Puzzle                  The Adventure Company 0.0350000000
## 1620       Racing                   The Learning Company 0.0200000000
## 1621       Action                                    THQ 0.1279896907
## 1622    Adventure                                    THQ 0.1525531915
## 1623     Fighting                                    THQ 0.2898591549
## 1624         Misc                                    THQ 0.0706060606
## 1625     Platform                                    THQ 0.1382352941
## 1626       Puzzle                                    THQ 0.1188235294
## 1627       Racing                                    THQ 0.0900000000
## 1628 Role-Playing                                    THQ 0.0500000000
## 1629      Shooter                                    THQ 0.1575000000
## 1630   Simulation                                    THQ 0.0533333333
## 1631       Sports                                    THQ 0.1364516129
## 1632     Strategy                                    THQ 0.0903125000
## 1633       Action                            Tigervision 0.0300000000
## 1634     Fighting                Time Warner Interactive 0.0400000000
## 1635      Shooter                Time Warner Interactive 0.0100000000
## 1636       Sports                Time Warner Interactive 0.0200000000
## 1637     Strategy                Time Warner Interactive 0.0300000000
## 1638       Action                                  Titus 0.0250000000
## 1639     Fighting                                  Titus 0.0733333333
## 1640         Misc                                  Titus 0.0100000000
## 1641     Platform                                  Titus 0.0000000000
## 1642       Racing                                  Titus 0.0825000000
## 1643 Role-Playing                                  Titus 0.0100000000
## 1644      Shooter                                  Titus 0.0100000000
## 1645   Simulation                                  Titus 0.1900000000
## 1646     Strategy                                  Titus 0.0100000000
## 1647         Misc                                 Tivola 0.0233333333
## 1648 Role-Playing                                   TOHO 0.0000000000
## 1649         Misc                                  Tommo 0.0000000000
## 1650      Shooter                                  Tommo 0.0000000000
## 1651       Sports                                  Tommo 0.0000000000
## 1652       Action                       Tomy Corporation 0.0450000000
## 1653     Fighting                       Tomy Corporation 0.0620000000
## 1654         Misc                       Tomy Corporation 0.0000000000
## 1655       Racing                       Tomy Corporation 0.0200000000
## 1656 Role-Playing                       Tomy Corporation 0.0066666667
## 1657   Simulation                       Tomy Corporation 0.0000000000
## 1658         Misc                    TopWare Interactive 0.0300000000
## 1659 Role-Playing                    TopWare Interactive 0.0100000000
## 1660       Action                             Touchstone 0.1466666667
## 1661   Simulation                             Touchstone 0.0600000000
## 1662       Sports                              Tradewest 0.0200000000
## 1663      Shooter                           Trion Worlds 0.1000000000
## 1664     Strategy                           Trion Worlds 0.0000000000
## 1665      Shooter                   Tripwire Interactive 0.0700000000
## 1666       Action                  Tru Blu Entertainment 0.0225000000
## 1667       Sports                  Tru Blu Entertainment 0.0400000000
## 1668     Fighting                               Tryfirst 0.0000000000
## 1669       Racing                                    TYO 0.1600000000
## 1670    Adventure                              Type-Moon 0.0000000000
## 1671     Platform                              U.S. Gold 0.0200000000
## 1672       Sports                              U.S. Gold 0.0366666667
## 1673       Action                                Ubisoft 0.2803108808
## 1674    Adventure                                Ubisoft 0.1369491525
## 1675     Fighting                                Ubisoft 0.1026315789
## 1676         Misc                                Ubisoft 0.1963576159
## 1677     Platform                                Ubisoft 0.1290000000
## 1678       Puzzle                                Ubisoft 0.1270833333
## 1679       Racing                                Ubisoft 0.1205769231
## 1680 Role-Playing                                Ubisoft 0.0987804878
## 1681      Shooter                                Ubisoft 0.2613043478
## 1682   Simulation                                Ubisoft 0.0983193277
## 1683       Sports                                Ubisoft 0.1023611111
## 1684     Strategy                                Ubisoft 0.1389655172
## 1685       Action                         Ubisoft Annecy 0.0320000000
## 1686     Fighting                         Ubisoft Annecy 0.1450000000
## 1687         Misc                         Ubisoft Annecy 0.0200000000
## 1688 Role-Playing                         Ubisoft Annecy 0.0300000000
## 1689       Sports                            UEP Systems 0.4600000000
## 1690       Action                        UFO Interactive 0.0000000000
## 1691         Misc                        UFO Interactive 0.0000000000
## 1692       Puzzle                        UFO Interactive 0.0000000000
## 1693      Shooter                        UFO Interactive 0.0000000000
## 1694       Sports                        UFO Interactive 0.0000000000
## 1695   Simulation                      UIG Entertainment 0.0100000000
## 1696     Fighting                            Ultravision 0.0300000000
## 1697       Action                        Universal Gamex 0.0400000000
## 1698       Action                  Universal Interactive 0.1366666667
## 1699     Fighting                  Universal Interactive 0.0700000000
## 1700         Misc                  Universal Interactive 0.1500000000
## 1701     Platform                  Universal Interactive 0.6928571429
## 1702      Shooter                  Universal Interactive 0.0600000000
## 1703       Sports                  Universal Interactive 0.1900000000
## 1704       Action                                Unknown 0.0332142857
## 1705    Adventure                                Unknown 0.0047058824
## 1706     Fighting                                Unknown 0.0083333333
## 1707         Misc                                Unknown 0.0445161290
## 1708     Platform                                Unknown 0.0190000000
## 1709       Puzzle                                Unknown 0.0188235294
## 1710       Racing                                Unknown 0.1553846154
## 1711 Role-Playing                                Unknown 0.0400000000
## 1712      Shooter                                Unknown 0.0238461538
## 1713   Simulation                                Unknown 0.0192307692
## 1714       Sports                                Unknown 0.0373076923
## 1715     Strategy                                Unknown 0.0214285714
## 1716    Adventure                           Valcon Games 0.0000000000
## 1717       Racing                           Valcon Games 0.0000000000
## 1718      Shooter                           Valcon Games 0.0300000000
## 1719   Simulation                           Valcon Games 0.0000000000
## 1720       Sports                           Valcon Games 0.0250000000
## 1721    Adventure                               ValuSoft 0.0000000000
## 1722       Puzzle                               ValuSoft 0.0000000000
## 1723       Racing                               ValuSoft 0.0900000000
## 1724      Shooter                                  Valve 0.6300000000
## 1725      Shooter                         Valve Software 0.3833333333
## 1726         Misc                                    Vap 0.0000000000
## 1727       Racing                  Vatical Entertainment 0.0350000000
## 1728     Fighting                              Vic Tokai 0.0400000000
## 1729    Adventure                     Victor Interactive 0.0000000000
## 1730         Misc                     Victor Interactive 0.0000000000
## 1731 Role-Playing                     Victor Interactive 0.0100000000
## 1732   Simulation                     Victor Interactive 0.0000000000
## 1733       Sports                     Victor Interactive 0.0175000000
## 1734       Action                           Video System 0.0400000000
## 1735       Racing                           Video System 0.3333333333
## 1736       Action                                  Views 0.0000000000
## 1737    Adventure                                  Views 0.0000000000
## 1738       Action                          Vir2L Studios 0.0100000000
## 1739       Racing                          Vir2L Studios 0.0000000000
## 1740       Sports                          Vir2L Studios 0.0000000000
## 1741       Action                     Virgin Interactive 0.4400000000
## 1742    Adventure                     Virgin Interactive 0.7700000000
## 1743     Fighting                     Virgin Interactive 0.0857894737
## 1744         Misc                     Virgin Interactive 0.0200000000
## 1745     Platform                     Virgin Interactive 0.1433333333
## 1746       Puzzle                     Virgin Interactive 0.0500000000
## 1747       Racing                     Virgin Interactive 0.0100000000
## 1748 Role-Playing                     Virgin Interactive 0.1833333333
## 1749      Shooter                     Virgin Interactive 0.2300000000
## 1750   Simulation                     Virgin Interactive 0.0500000000
## 1751       Sports                     Virgin Interactive 0.0300000000
## 1752     Strategy                     Virgin Interactive 0.3250000000
## 1753         Misc                     Virtual Play Games 0.0000000000
## 1754       Sports                     Virtual Play Games 0.0000000000
## 1755      Shooter                                  Visco 0.0000000000
## 1756       Action                          Vivendi Games 0.0645652174
## 1757    Adventure                          Vivendi Games 0.0671428571
## 1758     Fighting                          Vivendi Games 0.0400000000
## 1759         Misc                          Vivendi Games 0.0625000000
## 1760     Platform                          Vivendi Games 0.1467567568
## 1761       Puzzle                          Vivendi Games 0.0200000000
## 1762       Racing                          Vivendi Games 0.3285714286
## 1763 Role-Playing                          Vivendi Games 0.0200000000
## 1764      Shooter                          Vivendi Games 0.0486666667
## 1765   Simulation                          Vivendi Games 0.0200000000
## 1766       Sports                          Vivendi Games 0.0100000000
## 1767     Strategy                          Vivendi Games 0.0291666667
## 1768       Action                                Wanadoo 0.1050000000
## 1769     Platform                                Wanadoo 0.0000000000
## 1770       Racing                                Wanadoo 0.0000000000
## 1771      Shooter                                Warashi 0.0000000000
## 1772      Shooter                          Wargaming.net 0.2300000000
## 1773       Action Warner Bros. Interactive Entertainment 0.2710303030
## 1774    Adventure Warner Bros. Interactive Entertainment 0.0633333333
## 1775     Fighting Warner Bros. Interactive Entertainment 0.3018181818
## 1776         Misc Warner Bros. Interactive Entertainment 0.0413636364
## 1777     Platform Warner Bros. Interactive Entertainment 0.0362500000
## 1778       Puzzle Warner Bros. Interactive Entertainment 0.1637500000
## 1779       Racing Warner Bros. Interactive Entertainment 0.0500000000
## 1780      Shooter Warner Bros. Interactive Entertainment 0.1490000000
## 1781     Strategy Warner Bros. Interactive Entertainment 0.3700000000
## 1782    Adventure                                   Warp 0.0000000000
## 1783    Adventure                WayForward Technologies 0.0000000000
## 1784     Strategy                       Westwood Studios 0.0000000000
## 1785       Puzzle                White Park Bay Software 0.0100000000
## 1786       Action                     Wizard Video Games 0.0300000000
## 1787       Racing                      Xicat Interactive 0.0100000000
## 1788 Role-Playing                      Xicat Interactive 0.0100000000
## 1789       Sports                      Xicat Interactive 0.0400000000
## 1790     Fighting                     Xing Entertainment 0.0300000000
## 1791         Misc                                Xplosiv 0.0000000000
## 1792       Puzzle                                Xplosiv 0.1150000000
## 1793       Racing                                Xplosiv 0.1260000000
## 1794         Misc                               XS Games 0.0100000000
## 1795       Racing                               XS Games 0.0300000000
## 1796       Sports                               XS Games 0.0000000000
## 1797       Action                            Xseed Games 0.0100000000
## 1798 Role-Playing                            Xseed Games 0.0050000000
## 1799      Shooter                            Xseed Games 0.0200000000
## 1800     Platform                       Yacht Club Games 0.0366666667
## 1801         Misc                   Yamasa Entertainment 0.0000000000
## 1802       Action                                   Yeti 0.0000000000
## 1803    Adventure                                   Yeti 0.0000000000
## 1804     Fighting                                   Yeti 0.0000000000
## 1805     Fighting                                 Yuke's 0.0000000000
## 1806       Racing                                 Yuke's 0.0100000000
## 1807    Adventure                                Yumedia 0.0000000000
## 1808         Misc                                 Zenrin 0.0000000000
## 1809       Action                 Zoo Digital Publishing 0.0100000000
## 1810    Adventure                 Zoo Digital Publishing 0.0014285714
## 1811     Fighting                 Zoo Digital Publishing 0.0100000000
## 1812         Misc                 Zoo Digital Publishing 0.0294444444
## 1813     Platform                 Zoo Digital Publishing 0.0500000000
## 1814       Puzzle                 Zoo Digital Publishing 0.0114285714
## 1815       Racing                 Zoo Digital Publishing 0.0142307692
## 1816      Shooter                 Zoo Digital Publishing 0.0250000000
## 1817   Simulation                 Zoo Digital Publishing 0.0300000000
## 1818       Sports                 Zoo Digital Publishing 0.0587500000
## 1819     Strategy                 Zoo Digital Publishing 0.0000000000
## 1820       Action                              Zoo Games 0.0000000000
## 1821    Adventure                              Zoo Games 0.0000000000
## 1822         Misc                              Zoo Games 0.0000000000
## 1823       Puzzle                              Zoo Games 0.0000000000
## 1824       Racing                              Zoo Games 0.0000000000
## 1825      Shooter                              Zoo Games 0.0000000000
## 1826   Simulation                              Zoo Games 0.0000000000
## 1827       Sports                              Zoo Games 0.0000000000
## 1828       Action                            Zushi Games 0.0200000000
## 1829    Adventure                            Zushi Games 0.0000000000
## 1830         Misc                            Zushi Games 0.0000000000
## 1831       Puzzle                            Zushi Games 0.0050000000
## 1832       Racing                            Zushi Games 0.0000000000
## 1833 Role-Playing                            Zushi Games 0.0000000000
## 1834      Shooter                            Zushi Games 0.0000000000
## 1835   Simulation                            Zushi Games 0.0000000000
## 1836       Sports                            Zushi Games 0.0066666667
## 1837     Strategy                            Zushi Games 0.0000000000
aggregate(JP_Sales,by=list(Platform = Platform,Year = Year),sum)
##     Platform Year     x
## 1       2600 1980  0.00
## 2       2600 1981  0.00
## 3       2600 1982  0.00
## 4       2600 1983  0.00
## 5        NES 1983  8.10
## 6       2600 1984  0.00
## 7        NES 1984 14.27
## 8       2600 1985  0.00
## 9         DS 1985  0.02
## 10       NES 1985 14.54
## 11        PC 1985  0.00
## 12      2600 1986  0.00
## 13       NES 1986 19.81
## 14      2600 1987  0.00
## 15       NES 1987 11.63
## 16      2600 1988  0.00
## 17        GB 1988  0.35
## 18       NES 1988 15.41
## 19        PC 1988  0.00
## 20      2600 1989  0.00
## 21        GB 1989 16.16
## 22       NES 1989  2.20
## 23        GB 1990  1.33
## 24       GEN 1990  0.11
## 25       NES 1990  7.84
## 26      SNES 1990  5.60
## 27        GB 1991  3.38
## 28       GEN 1991  0.26
## 29       NES 1991  2.60
## 30      SNES 1991  8.54
## 31        GB 1992  7.51
## 32       GEN 1992  0.72
## 33        GG 1992  0.04
## 34       NES 1992  0.97
## 35        PC 1992  0.00
## 36      SNES 1992 19.67
## 37       GEN 1993  0.65
## 38       NES 1993  1.17
## 39        NG 1993  0.21
## 40       SCD 1993  0.09
## 41      SNES 1993 23.21
## 42       3DO 1994  0.02
## 43        GB 1994  3.19
## 44       GEN 1994  0.93
## 45       NES 1994  0.11
## 46        NG 1994  0.80
## 47        PC 1994  0.00
## 48        PS 1994  2.67
## 49       SAT 1994  3.34
## 50       SCD 1994  0.36
## 51      SNES 1994 22.57
## 52       3DO 1995  0.08
## 53        GB 1995  2.72
## 54        NG 1995  0.33
## 55        PC 1995  0.00
## 56        PS 1995  9.54
## 57       SAT 1995 10.55
## 58      SNES 1995 22.37
## 59      TG16 1995  0.16
## 60        GB 1996 12.91
## 61       N64 1996  5.77
## 62        NG 1996  0.10
## 63        PC 1996  0.00
## 64      PCFX 1996  0.03
## 65        PS 1996 17.82
## 66       SAT 1996  7.69
## 67      SNES 1996 13.12
## 68        GB 1997  3.26
## 69       N64 1997  4.66
## 70        PC 1997  0.09
## 71        PS 1997 33.10
## 72       SAT 1997  6.77
## 73      SNES 1997  0.99
## 74        DC 1998  1.43
## 75        GB 1998  9.55
## 76       N64 1998  6.54
## 77        PC 1998  0.00
## 78        PS 1998 28.48
## 79       SAT 1998  3.82
## 80      SNES 1998  0.22
## 81        DC 1999  3.17
## 82        GB 1999 11.75
## 83       N64 1999  8.54
## 84        PC 1999  0.00
## 85        PS 1999 28.07
## 86       SAT 1999  0.09
## 87      SNES 1999  0.26
## 88        WS 1999  0.46
## 89        DC 2000  2.54
## 90        GB 2000  8.36
## 91       GBA 2000  0.00
## 92       N64 2000  7.72
## 93        PC 2000  0.00
## 94        PS 2000 14.60
## 95       PS2 2000  8.87
## 96        WS 2000  0.68
## 97        XB 2000  0.00
## 98        DC 2001  1.07
## 99        GB 2001  4.65
## 100      GBA 2001  7.46
## 101       GC 2001  3.85
## 102      N64 2001  0.53
## 103       PC 2001  0.00
## 104       PS 2001  3.86
## 105      PS2 2001 17.79
## 106       WS 2001  0.28
## 107       XB 2001  0.37
## 108       DC 2002  0.29
## 109      GBA 2002 12.21
## 110       GC 2002  5.28
## 111      N64 2002  0.00
## 112       PC 2002  0.00
## 113       PS 2002  1.64
## 114      PS2 2002 21.85
## 115       XB 2002  0.49
## 116      GBA 2003  8.59
## 117       GC 2003  6.43
## 118       PC 2003  0.00
## 119       PS 2003  0.00
## 120      PS2 2003 18.88
## 121       XB 2003  0.30
## 122       DS 2004  3.65
## 123      GBA 2004 13.52
## 124       GC 2004  3.00
## 125       PC 2004  0.08
## 126      PS2 2004 19.17
## 127      PSP 2004  2.03
## 128       XB 2004  0.20
## 129       DS 2005 29.86
## 130      GBA 2005  3.27
## 131       GC 2005  2.57
## 132       PC 2005  0.00
## 133      PS2 2005 15.05
## 134      PSP 2005  3.23
## 135     X360 2005  0.28
## 136       XB 2005  0.02
## 137       DS 2006 38.56
## 138      GBA 2006  1.51
## 139       GC 2006  0.21
## 140       PC 2006  0.00
## 141      PS2 2006 17.64
## 142      PS3 2006  1.07
## 143      PSP 2006  4.39
## 144      Wii 2006  9.15
## 145     X360 2006  1.20
## 146       XB 2006  0.00
## 147       DC 2007  0.02
## 148       DS 2007 26.81
## 149      GBA 2007  0.00
## 150       GC 2007  0.00
## 151       PC 2007  0.00
## 152      PS2 2007  9.82
## 153      PS3 2007  4.22
## 154      PSP 2007  5.78
## 155      Wii 2007 12.12
## 156     X360 2007  1.52
## 157       XB 2007  0.00
## 158       DC 2008  0.04
## 159       DS 2008 24.01
## 160       PC 2008  0.00
## 161      PS2 2008  5.73
## 162      PS3 2008  5.83
## 163      PSP 2008 10.07
## 164      Wii 2008 12.69
## 165     X360 2008  1.89
## 166       XB 2008  0.00
## 167       DS 2009 24.21
## 168       PC 2009  0.00
## 169      PS2 2009  1.94
## 170      PS3 2009  9.03
## 171      PSP 2009  8.19
## 172      Wii 2009 16.57
## 173     X360 2009  1.95
## 174       DS 2010 19.86
## 175       PC 2010  0.00
## 176      PS2 2010  0.71
## 177      PS3 2010  9.87
## 178      PSP 2010 18.16
## 179      Wii 2010  8.78
## 180     X360 2010  2.11
## 181      3DS 2011 12.80
## 182       DS 2011  4.32
## 183       PC 2011  0.00
## 184      PS2 2011  0.09
## 185      PS3 2011 14.10
## 186      PSP 2011 13.57
## 187      PSV 2011  0.80
## 188      Wii 2011  5.58
## 189     X360 2011  1.78
## 190      3DS 2012 19.92
## 191       DS 2012  3.72
## 192       PC 2012  0.00
## 193      PS3 2012 11.94
## 194      PSP 2012  7.18
## 195      PSV 2012  2.45
## 196      Wii 2012  3.34
## 197     WiiU 2012  2.13
## 198     X360 2012  1.06
## 199      3DS 2013 23.52
## 200       DS 2013  0.00
## 201       PC 2013  0.00
## 202      PS3 2013 12.12
## 203      PS4 2013  0.93
## 204      PSP 2013  2.93
## 205      PSV 2013  4.05
## 206      Wii 2013  0.05
## 207     WiiU 2013  3.54
## 208     X360 2013  0.43
## 209     XOne 2013  0.02
## 210      3DS 2014 20.64
## 211       DS 2014  0.00
## 212       PC 2014  0.00
## 213      PS3 2014  6.23
## 214      PS4 2014  2.92
## 215      PSP 2014  0.24
## 216      PSV 2014  6.05
## 217      Wii 2014  0.00
## 218     WiiU 2014  3.16
## 219     X360 2014  0.08
## 220     XOne 2014  0.14
## 221      3DS 2015 15.39
## 222       PC 2015  0.00
## 223      PS3 2015  3.67
## 224      PS4 2015  6.19
## 225      PSP 2015  0.12
## 226      PSV 2015  4.77
## 227      Wii 2015  0.00
## 228     WiiU 2015  3.41
## 229     X360 2015  0.00
## 230     XOne 2015  0.17
## 231      3DS 2016  5.03
## 232       PC 2016  0.00
## 233      PS3 2016  1.13
## 234      PS4 2016  4.23
## 235      PSV 2016  2.75
## 236     WiiU 2016  0.55
## 237     X360 2016  0.00
## 238     XOne 2016  0.01
## 239      PS4 2017  0.03
## 240      PSV 2017  0.02
## 241       DS 2020  0.00
## 242     2600  N/A  0.00
## 243      3DS  N/A  0.05
## 244       DS  N/A  0.55
## 245       GB  N/A  0.00
## 246      GBA  N/A  0.77
## 247       GC  N/A  0.24
## 248      N64  N/A  0.46
## 249       PC  N/A  0.00
## 250       PS  N/A  0.04
## 251      PS2  N/A  1.66
## 252      PS3  N/A  0.78
## 253      PSP  N/A  0.90
## 254      PSV  N/A  0.07
## 255      Wii  N/A  1.07
## 256     X360  N/A  0.13
## 257       XB  N/A  0.00
aggregate(JP_Sales,by=list(Platform = Platform,Genre = Genre),sum)
##     Platform        Genre     x
## 1       2600       Action  0.00
## 2        3DS       Action 22.05
## 3         DC       Action  0.59
## 4         DS       Action 12.74
## 5         GB       Action  1.49
## 6        GBA       Action  2.47
## 7         GC       Action  2.83
## 8        GEN       Action  0.25
## 9        N64       Action  3.67
## 10       NES       Action  8.65
## 11        PC       Action  0.00
## 12        PS       Action 11.46
## 13       PS2       Action 25.81
## 14       PS3       Action 29.59
## 15       PS4       Action  5.41
## 16       PSP       Action 12.15
## 17       PSV       Action  6.54
## 18       SAT       Action  0.65
## 19      SNES       Action  4.46
## 20       Wii       Action  4.92
## 21      WiiU       Action  1.07
## 22      X360       Action  2.77
## 23        XB       Action  0.33
## 24      XOne       Action  0.05
## 25      2600    Adventure  0.00
## 26       3DO    Adventure  0.06
## 27       3DS    Adventure  2.74
## 28        DC    Adventure  1.70
## 29        DS    Adventure  7.87
## 30        GB    Adventure  4.25
## 31       GBA    Adventure  1.57
## 32        GC    Adventure  0.67
## 33       GEN    Adventure  0.19
## 34       N64    Adventure  0.17
## 35       NES    Adventure  1.61
## 36        PC    Adventure  0.00
## 37        PS    Adventure  3.45
## 38       PS2    Adventure  7.43
## 39       PS3    Adventure  2.68
## 40       PS4    Adventure  0.38
## 41       PSP    Adventure  7.50
## 42       PSV    Adventure  2.19
## 43       SAT    Adventure  4.16
## 44      SNES    Adventure  1.50
## 45      TG16    Adventure  0.14
## 46       Wii    Adventure  1.17
## 47      WiiU    Adventure  0.00
## 48      X360    Adventure  0.61
## 49        XB    Adventure  0.00
## 50      XOne    Adventure  0.03
## 51      2600     Fighting  0.00
## 52       3DS     Fighting  3.19
## 53        DC     Fighting  1.83
## 54        DS     Fighting  4.09
## 55       GBA     Fighting  0.14
## 56        GC     Fighting  3.69
## 57       GEN     Fighting  0.54
## 58       N64     Fighting  2.45
## 59       NES     Fighting  2.94
## 60        NG     Fighting  1.42
## 61        PC     Fighting  0.00
## 62        PS     Fighting 13.90
## 63       PS2     Fighting 11.65
## 64       PS3     Fighting  6.54
## 65       PS4     Fighting  0.70
## 66       PSP     Fighting  5.75
## 67       PSV     Fighting  0.67
## 68       SAT     Fighting  7.59
## 69      SNES     Fighting 14.27
## 70       Wii     Fighting  3.67
## 71      WiiU     Fighting  0.99
## 72      X360     Fighting  0.96
## 73        XB     Fighting  0.36
## 74      XOne     Fighting  0.01
## 75      2600         Misc  0.00
## 76       3DS         Misc  5.38
## 77        DS         Misc 37.33
## 78        GB         Misc  4.81
## 79       GBA         Misc  1.69
## 80        GC         Misc  3.58
## 81       GEN         Misc  0.03
## 82       N64         Misc  3.36
## 83       NES         Misc  3.58
## 84        PC         Misc  0.00
## 85        PS         Misc  8.31
## 86       PS2         Misc  8.03
## 87       PS3         Misc  1.38
## 88       PS4         Misc  0.35
## 89       PSP         Misc  6.08
## 90       PSV         Misc  2.24
## 91       SAT         Misc  1.20
## 92       SCD         Misc  0.09
## 93      SNES         Misc  2.98
## 94       Wii         Misc 14.48
## 95      WiiU         Misc  2.40
## 96      X360         Misc  0.45
## 97        XB         Misc  0.00
## 98      XOne         Misc  0.01
## 99      2600     Platform  0.00
## 100      3DS     Platform  6.45
## 101       DC     Platform  0.58
## 102       DS     Platform 14.15
## 103       GB     Platform 13.84
## 104      GBA     Platform 11.28
## 105       GC     Platform  1.50
## 106      GEN     Platform  0.77
## 107       GG     Platform  0.04
## 108      N64     Platform  6.31
## 109      NES     Platform 30.26
## 110       PC     Platform  0.00
## 111       PS     Platform  5.12
## 112      PS2     Platform  2.47
## 113      PS3     Platform  0.61
## 114      PS4     Platform  0.49
## 115      PSP     Platform  0.65
## 116      PSV     Platform  0.06
## 117      SAT     Platform  0.76
## 118      SCD     Platform  0.09
## 119     SNES     Platform 20.42
## 120      Wii     Platform 11.24
## 121     WiiU     Platform  3.65
## 122     X360     Platform  0.02
## 123       XB     Platform  0.01
## 124     XOne     Platform  0.00
## 125     2600       Puzzle  0.00
## 126      3DO       Puzzle  0.02
## 127      3DS       Puzzle  1.80
## 128       DS       Puzzle 15.89
## 129       GB       Puzzle 12.08
## 130      GBA       Puzzle  2.64
## 131       GC       Puzzle  0.73
## 132      N64       Puzzle  0.54
## 133      NES       Puzzle  9.44
## 134       PC       Puzzle  0.00
## 135       PS       Puzzle  3.80
## 136      PS2       Puzzle  0.45
## 137      PS3       Puzzle  0.10
## 138      PS4       Puzzle  0.00
## 139      PSP       Puzzle  0.53
## 140      PSV       Puzzle  0.05
## 141      SAT       Puzzle  1.00
## 142     SNES       Puzzle  6.37
## 143      Wii       Puzzle  1.50
## 144     WiiU       Puzzle  0.22
## 145     X360       Puzzle  0.15
## 146       XB       Puzzle  0.00
## 147     2600       Racing  0.00
## 148      3DS       Racing  2.81
## 149       DC       Racing  0.96
## 150       DS       Racing  4.57
## 151       GB       Racing  0.74
## 152      GBA       Racing  1.50
## 153       GC       Racing  1.57
## 154      GEN       Racing  0.26
## 155      N64       Racing  4.46
## 156      NES       Racing  3.69
## 157       PC       Racing  0.00
## 158       PS       Racing 10.89
## 159      PS2       Racing  5.92
## 160      PS3       Racing  3.13
## 161      PS4       Racing  0.26
## 162      PSP       Racing  0.97
## 163      PSV       Racing  0.16
## 164      SAT       Racing  2.01
## 165      SCD       Racing  0.07
## 166     SNES       Racing  6.58
## 167      Wii       Racing  4.11
## 168     WiiU       Racing  1.29
## 169     X360       Racing  0.52
## 170       XB       Racing  0.17
## 171     XOne       Racing  0.05
## 172      3DS Role-Playing 39.61
## 173       DC Role-Playing  0.68
## 174       DS Role-Playing 54.55
## 175       GB Role-Playing 34.55
## 176      GBA Role-Playing 21.21
## 177       GC Role-Playing  2.47
## 178      GEN Role-Playing  0.27
## 179      N64 Role-Playing  1.50
## 180      NES Role-Playing 16.11
## 181       PC Role-Playing  0.00
## 182     PCFX Role-Playing  0.03
## 183       PS Role-Playing 40.95
## 184      PS2 Role-Playing 34.01
## 185      PS3 Role-Playing 16.82
## 186      PS4 Role-Playing  3.23
## 187      PSP Role-Playing 30.82
## 188      PSV Role-Playing  7.54
## 189      SAT Role-Playing  3.76
## 190      SCD Role-Playing  0.06
## 191     SNES Role-Playing 33.76
## 192      Wii Role-Playing  5.63
## 193     WiiU Role-Playing  0.83
## 194       WS Role-Playing  1.22
## 195     X360 Role-Playing  2.61
## 196       XB Role-Playing  0.08
## 197     XOne Role-Playing  0.01
## 198     2600      Shooter  0.00
## 199      3DS      Shooter  0.20
## 200       DC      Shooter  0.33
## 201       DS      Shooter  0.34
## 202       GB      Shooter  0.36
## 203      GBA      Shooter  0.32
## 204       GC      Shooter  0.37
## 205      GEN      Shooter  0.13
## 206      N64      Shooter  1.02
## 207      NES      Shooter  4.94
## 208       PC      Shooter  0.17
## 209       PS      Shooter  2.38
## 210      PS2      Shooter  3.84
## 211      PS3      Shooter  8.81
## 212      PS4      Shooter  2.33
## 213      PSP      Shooter  0.45
## 214      PSV      Shooter  0.24
## 215      SAT      Shooter  3.97
## 216     SNES      Shooter  2.38
## 217     TG16      Shooter  0.02
## 218      Wii      Shooter  0.66
## 219     WiiU      Shooter  1.52
## 220     X360      Shooter  3.10
## 221       XB      Shooter  0.24
## 222     XOne      Shooter  0.16
## 223     2600   Simulation  0.00
## 224      3DO   Simulation  0.02
## 225      3DS   Simulation 10.32
## 226       DC   Simulation  0.52
## 227       DS   Simulation 15.51
## 228       GB   Simulation  3.53
## 229      GBA   Simulation  0.74
## 230       GC   Simulation  1.21
## 231      N64   Simulation  2.51
## 232       PC   Simulation  0.00
## 233       PS   Simulation 12.64
## 234      PS2   Simulation  6.57
## 235      PS3   Simulation  1.27
## 236      PS4   Simulation  0.16
## 237      PSP   Simulation  1.06
## 238      PSV   Simulation  0.06
## 239      SAT   Simulation  1.13
## 240     SNES   Simulation  3.74
## 241      Wii   Simulation  1.98
## 242     WiiU   Simulation  0.00
## 243     X360   Simulation  0.70
## 244       XB   Simulation  0.03
## 245     XOne   Simulation  0.00
## 246     2600       Sports  0.00
## 247      3DS       Sports  1.97
## 248       DC       Sports  1.37
## 249       DS       Sports  5.70
## 250       GB       Sports  3.74
## 251      GBA       Sports  1.99
## 252       GC       Sports  1.63
## 253      GEN       Sports  0.04
## 254      N64       Sports  4.55
## 255      NES       Sports 17.43
## 256       NG       Sports  0.02
## 257       PC       Sports  0.00
## 258       PS       Sports 18.43
## 259      PS2       Sports 24.74
## 260      PS3       Sports  7.90
## 261      PS4       Sports  0.92
## 262      PSP       Sports  6.36
## 263      PSV       Sports  1.03
## 264      SAT       Sports  2.79
## 265     SNES       Sports 15.41
## 266      Wii       Sports 18.25
## 267     WiiU       Sports  0.51
## 268     X360       Sports  0.41
## 269       XB       Sports  0.16
## 270     XOne       Sports  0.02
## 271      3DS     Strategy  0.83
## 272       DS     Strategy  2.83
## 273       GB     Strategy  5.73
## 274      GBA     Strategy  1.78
## 275       GC     Strategy  1.33
## 276      GEN     Strategy  0.19
## 277      N64     Strategy  3.68
## 278       PC     Strategy  0.00
## 279       PS     Strategy  8.49
## 280      PS2     Strategy  8.28
## 281      PS3     Strategy  1.16
## 282      PS4     Strategy  0.07
## 283      PSP     Strategy  4.47
## 284      PSV     Strategy  0.18
## 285      SAT     Strategy  3.24
## 286      SCD     Strategy  0.14
## 287     SNES     Strategy  4.68
## 288      Wii     Strategy  1.74
## 289     WiiU     Strategy  0.31
## 290       WS     Strategy  0.20
## 291     X360     Strategy  0.13
## 292       XB     Strategy  0.00
## 293     XOne     Strategy  0.00
aggregate(JP_Sales,by=list(Platform = Platform,Publisher = Publisher),sum)
##      Platform                              Publisher      x
## 1          DS                        10TACLE Studios   0.00
## 2         PS2                        10TACLE Studios   0.00
## 3          PC                             1C Company   0.00
## 4        2600           20th Century Fox Video Games   0.00
## 5          PC                                 2D Boy   0.00
## 6          GC                                    3DO   0.00
## 7         N64                                    3DO   0.00
## 8          PS                                    3DO   0.00
## 9         PS2                                    3DO   0.00
## 10         XB                                    3DO   0.00
## 11       X360                                49Games   0.00
## 12        3DS                              505 Games   0.10
## 13         DS                              505 Games   0.71
## 14         PC                              505 Games   0.00
## 15        PS2                              505 Games   0.66
## 16        PS3                              505 Games   0.25
## 17        PS4                              505 Games   0.01
## 18        PSP                              505 Games   0.08
## 19        PSV                              505 Games   0.00
## 20        Wii                              505 Games   0.18
## 21       WiiU                              505 Games   0.00
## 22       X360                              505 Games   0.06
## 23         XB                              505 Games   0.00
## 24       XOne                              505 Games   0.00
## 25        3DS                                    5pb   0.04
## 26        PS2                                    5pb   0.19
## 27        PS3                                    5pb   0.33
## 28        PS4                                    5pb   0.01
## 29        PSP                                    5pb   0.32
## 30        PSV                                    5pb   0.29
## 31       X360                                    5pb   0.42
## 32       XOne                                    5pb   0.01
## 33         DS                               7G//AMES   0.00
## 34        Wii                               7G//AMES   0.00
## 35         PS                             989 Sports   0.00
## 36         PS                            989 Studios   0.10
## 37        PS3                               Abylight   0.00
## 38         DC                  Acclaim Entertainment   0.14
## 39        GBA                  Acclaim Entertainment   0.00
## 40         GC                  Acclaim Entertainment   0.02
## 41        GEN                  Acclaim Entertainment   0.00
## 42        N64                  Acclaim Entertainment   0.09
## 43         PC                  Acclaim Entertainment   0.00
## 44         PS                  Acclaim Entertainment   0.27
## 45        PS2                  Acclaim Entertainment   0.06
## 46        SAT                  Acclaim Entertainment   0.56
## 47       SNES                  Acclaim Entertainment   0.00
## 48         XB                  Acclaim Entertainment   0.00
## 49         PS                               Accolade   0.00
## 50        3DS                            Ackkstudios   0.06
## 51         DS                            Ackkstudios   0.00
## 52        PS3                            Ackkstudios   0.41
## 53        PSP                            Ackkstudios   0.11
## 54        Wii                            Ackkstudios   0.08
## 55        3DS                                Acquire   0.06
## 56        PS2                                Acquire   0.05
## 57        PS3                                Acquire   0.11
## 58        PS4                                Acquire   0.01
## 59        PSP                                Acquire   0.68
## 60       2600                             Activision   0.00
## 61        3DS                             Activision   0.00
## 62         DC                             Activision   0.10
## 63         DS                             Activision   0.07
## 64         GB                             Activision   0.01
## 65        GBA                             Activision   0.11
## 66         GC                             Activision   0.06
## 67        N64                             Activision   0.05
## 68         PC                             Activision   0.00
## 69         PS                             Activision   0.37
## 70        PS2                             Activision   0.53
## 71        PS3                             Activision   3.39
## 72        PS4                             Activision   0.97
## 73        PSP                             Activision   0.01
## 74        PSV                             Activision   0.07
## 75        Wii                             Activision   0.14
## 76       WiiU                             Activision   0.01
## 77       X360                             Activision   0.61
## 78         XB                             Activision   0.02
## 79       XOne                             Activision   0.02
## 80         PC                    Activision Blizzard   0.00
## 81        GBA                       Activision Value   0.00
## 82         GC                       Activision Value   0.00
## 83         PS                       Activision Value   0.00
## 84        PS2                       Activision Value   0.00
## 85        PS3                       Activision Value   0.00
## 86        PSP                       Activision Value   0.00
## 87        Wii                       Activision Value   0.00
## 88       X360                       Activision Value   0.00
## 89         XB                       Activision Value   0.00
## 90         PS                       Adeline Software   0.00
## 91         PC                               Aerosoft   0.00
## 92        3DS                 Agatsuma Entertainment   0.06
## 93        GBA                 Agatsuma Entertainment   0.00
## 94         PS                                 Agetec   0.07
## 95        PS2                                 Agetec   0.31
## 96        PSP                                 Agetec   0.00
## 97        3DS                            Aksys Games   0.01
## 98         DS                            Aksys Games   0.00
## 99        PS3                            Aksys Games   0.02
## 100       PS4                            Aksys Games   0.03
## 101       PSV                            Aksys Games   0.12
## 102        PC                   Alawar Entertainment   0.00
## 103       3DS                              Alchemist   0.29
## 104        DS                              Alchemist   0.31
## 105       PS2                              Alchemist   0.36
## 106       PS3                              Alchemist   0.04
## 107       PSP                              Alchemist   0.37
## 108      X360                              Alchemist   0.05
## 109        PC                   Alternative Software   0.00
## 110       PS3                   Alternative Software   0.00
## 111       PS4                   Alternative Software   0.00
## 112       Wii                   Alternative Software   0.00
## 113      X360                   Alternative Software   0.00
## 114      XOne                   Alternative Software   0.00
## 115       GBA                                 Altron   0.00
## 116        DS                                 Alvion   0.04
## 117        PS                     American Softworks   0.00
## 118      SNES                          Angel Studios   0.44
## 119      2600                        Answer Software   0.00
## 120        DS                         AQ Interactive   0.02
## 121       PS2                         AQ Interactive   0.07
## 122       PSP                         AQ Interactive   0.02
## 123        PS                              Aqua Plus   0.13
## 124       PS2                              Aqua Plus   0.12
## 125       PS3                              Aqua Plus   0.37
## 126       PS4                              Aqua Plus   0.10
## 127       PSP                              Aqua Plus   0.28
## 128       PSV                              Aqua Plus   0.19
## 129        PS                                  Aques   0.15
## 130       3DS                       Arc System Works   0.08
## 131        DS                       Arc System Works   0.12
## 132       PS3                       Arc System Works   0.24
## 133       PS4                       Arc System Works   0.04
## 134       PSP                       Arc System Works   0.02
## 135       PSV                       Arc System Works   0.07
## 136       GEN                    Arena Entertainment   0.00
## 137       PS2                                   Aria   0.07
## 138        DS                                  Arika   0.02
## 139       PS2                                  Arika   0.00
## 140       3DS                                ArtDink   0.06
## 141        DS                                ArtDink   0.04
## 142        PS                                ArtDink   0.42
## 143       PS2                                ArtDink   0.05
## 144       PSP                                ArtDink   0.02
## 145        PS                             Aruze Corp   1.09
## 146        PS                              ASC Games   0.00
## 147        PC                  Ascaron Entertainment   0.00
## 148        PC             Ascaron Entertainment GmbH   0.00
## 149        GB                    ASCII Entertainment   0.37
## 150       N64                    ASCII Entertainment   0.00
## 151        PS                    ASCII Entertainment   4.09
## 152       PS2                    ASCII Entertainment   0.32
## 153       SAT                    ASCII Entertainment   0.09
## 154      SNES                    ASCII Entertainment   4.53
## 155        DS                      ASCII Media Works   0.12
## 156       PS2                      ASCII Media Works   0.02
## 157       PSP                      ASCII Media Works   0.12
## 158       PSV                      ASCII Media Works   0.01
## 159       PSP                                 Asgard   0.23
## 160       PSV                                 Asgard   0.02
## 161       SAT                                    ASK   0.03
## 162        PS                Asmik Ace Entertainment   0.09
## 163       PS2                Asmik Ace Entertainment   0.13
## 164      SNES                             Asmik Corp   0.17
## 165        DS                                  Aspyr   0.00
## 166       GBA                                  Aspyr   0.00
## 167        PC                                  Aspyr   0.00
## 168      X360                                  Aspyr   0.00
## 169        DS                               Astragon   0.00
## 170        PC                               Astragon   0.00
## 171       3DS                   Asylum Entertainment   0.00
## 172        DS                   Asylum Entertainment   0.00
## 173       Wii                   Asylum Entertainment   0.00
## 174      2600                                  Atari   0.00
## 175       3DS                                  Atari   0.00
## 176        DS                                  Atari   2.05
## 177       GBA                                  Atari   0.14
## 178        GC                                  Atari   0.18
## 179        PC                                  Atari   0.00
## 180        PS                                  Atari   0.48
## 181       PS2                                  Atari   6.21
## 182       PS3                                  Atari   0.26
## 183       PSP                                  Atari   0.21
## 184       Wii                                  Atari   0.60
## 185      X360                                  Atari   0.57
## 186        XB                                  Atari   0.01
## 187       N64                                 Athena   0.00
## 188       PS2                                 Athena   0.07
## 189       3DS                                  Atlus   1.13
## 190        DS                                  Atlus   0.77
## 191       GBA                                  Atlus   0.00
## 192        GC                                  Atlus   0.00
## 193       N64                                  Atlus   0.00
## 194        PS                                  Atlus   1.03
## 195       PS2                                  Atlus   0.61
## 196       PS3                                  Atlus   0.37
## 197       PS4                                  Atlus   0.34
## 198       PSP                                  Atlus   0.60
## 199       PSV                                  Atlus   0.43
## 200       SAT                                  Atlus   0.92
## 201      SNES                                  Atlus   0.45
## 202      WiiU                                  Atlus   0.00
## 203      X360                                  Atlus   0.03
## 204        XB                                  Atlus   0.05
## 205      2600                     Avalon Interactive   0.00
## 206        PS                     Avalon Interactive   0.00
## 207       PS2                     Avalon Interactive   0.00
## 208        XB                     Avalon Interactive   0.00
## 209        DS                              Avanquest   0.00
## 210        PC                              Avanquest   0.00
## 211       PS4                              Avanquest   0.00
## 212       Wii                              Avanquest   0.00
## 213       3DS                     Avanquest Software   0.00
## 214        DS                     Avanquest Software   0.00
## 215        PC                     Avanquest Software   0.00
## 216       PS3                     Avanquest Software   0.03
## 217      X360                     Avanquest Software   0.00
## 218        PS                                  Axela   0.24
## 219       GBA                     BAM! Entertainment   0.00
## 220        GC                     BAM! Entertainment   0.00
## 221       N64                     BAM! Entertainment   0.00
## 222        PS                     BAM! Entertainment   0.00
## 223       PS2                     BAM! Entertainment   0.03
## 224        XB                     BAM! Entertainment   0.00
## 225        DS                              Banpresto   0.57
## 226        GB                              Banpresto   0.39
## 227       GBA                              Banpresto   1.40
## 228       N64                              Banpresto   0.24
## 229        PS                              Banpresto   3.22
## 230       PS2                              Banpresto   5.03
## 231       PSP                              Banpresto   0.70
## 232       SAT                              Banpresto   1.10
## 233      SNES                              Banpresto   3.71
## 234      X360                              Banpresto   0.08
## 235        DS                                Benesse   0.32
## 236        PS                               Berkeley   0.00
## 237        PC                     Bethesda Softworks   0.00
## 238       PS2                     Bethesda Softworks   0.00
## 239       PS3                     Bethesda Softworks   0.70
## 240       PS4                     Bethesda Softworks   0.44
## 241       Wii                     Bethesda Softworks   0.00
## 242      X360                     Bethesda Softworks   0.30
## 243        XB                     Bethesda Softworks   0.00
## 244      XOne                     Bethesda Softworks   0.01
## 245       3DS                    Big Ben Interactive   0.00
## 246        DS                    Big Ben Interactive   0.00
## 247       PS2                    Big Ben Interactive   0.00
## 248       Wii                    Big Ben Interactive   0.00
## 249        PC                         Big Fish Games   0.00
## 250       PS3                     Bigben Interactive   0.00
## 251       PS4                     Bigben Interactive   0.00
## 252       PSV                     Bigben Interactive   0.00
## 253      X360                     Bigben Interactive   0.00
## 254      XOne                     Bigben Interactive   0.00
## 255        PC                      bitComposer Games   0.00
## 256       PS3                      bitComposer Games   0.00
## 257      X360                      bitComposer Games   0.00
## 258        DS                       Black Bean Games   0.00
## 259        PC                       Black Bean Games   0.00
## 260       PS2                       Black Bean Games   0.00
## 261       PS3                       Black Bean Games   0.01
## 262       PSP                       Black Bean Games   0.00
## 263       Wii                       Black Bean Games   0.00
## 264      X360                       Black Bean Games   0.00
## 265       PS2                      Black Label Games   0.00
## 266        DS               Blast! Entertainment Ltd   0.00
## 267       PS2               Blast! Entertainment Ltd   0.00
## 268       Wii               Blast! Entertainment Ltd   0.00
## 269        PC                              Blue Byte   0.00
## 270        PS          BMG Interactive Entertainment   0.00
## 271        PC                    Bohemia Interactive   0.00
## 272      2600                                   Bomb   0.00
## 273       PSP                               Boost On   0.01
## 274       NES                                    BPS   0.32
## 275      SNES                                    BPS   0.20
## 276        DS                    Brash Entertainment   0.00
## 277       PS2                    Brash Entertainment   0.00
## 278       Wii                    Brash Entertainment   0.00
## 279      X360                    Brash Entertainment   0.00
## 280        DS                               Broccoli   0.04
## 281       PS2                               Broccoli   0.12
## 282       PSP                               Broccoli   0.74
## 283       PSV                               Broccoli   0.06
## 284       PSP                              BushiRoad   0.03
## 285       3DS                                 Capcom   8.03
## 286        DC                                 Capcom   0.27
## 287        DS                                 Capcom   4.17
## 288        GB                                 Capcom   0.49
## 289       GBA                                 Capcom   3.52
## 290        GC                                 Capcom   1.15
## 291       GEN                                 Capcom   0.22
## 292       N64                                 Capcom   0.05
## 293       NES                                 Capcom   4.24
## 294        PC                                 Capcom   0.00
## 295        PS                                 Capcom   3.14
## 296       PS2                                 Capcom   8.25
## 297       PS3                                 Capcom   7.75
## 298       PS4                                 Capcom   0.50
## 299       PSP                                 Capcom  13.58
## 300       PSV                                 Capcom   0.07
## 301       SAT                                 Capcom   1.29
## 302      SNES                                 Capcom   8.28
## 303       Wii                                 Capcom   1.61
## 304      WiiU                                 Capcom   0.03
## 305      X360                                 Capcom   1.35
## 306        XB                                 Capcom   0.09
## 307      XOne                                 Capcom   0.00
## 308        DS                                   Cave   0.00
## 309      X360                                   Cave   0.18
## 310      2600                        CBS Electronics   0.00
## 311        PC                                    CCP   0.00
## 312        DS             CDV Software Entertainment   0.00
## 313        PC             CDV Software Entertainment   0.00
## 314       Wii             CDV Software Entertainment   0.00
## 315       3DS                               ChunSoft   0.03
## 316        DS                               ChunSoft   0.11
## 317        GB                               ChunSoft   0.27
## 318       N64                               ChunSoft   0.32
## 319        PS                               ChunSoft   0.16
## 320       PS2                               ChunSoft   0.36
## 321       PSP                               ChunSoft   0.03
## 322       PSV                               ChunSoft   0.08
## 323       SAT                               ChunSoft   0.09
## 324      SNES                               ChunSoft   2.15
## 325      X360                               ChunSoft   0.01
## 326        DS                       City Interactive   0.00
## 327        PC                       City Interactive   0.00
## 328       PS3                       City Interactive   0.07
## 329       Wii                       City Interactive   0.00
## 330      X360                       City Interactive   0.00
## 331       PS3       Cloud Imperium Games Corporation   0.00
## 332      X360       Cloud Imperium Games Corporation   0.00
## 333        PS                         Coconuts Japan   0.00
## 334      SNES                         Coconuts Japan   0.05
## 335       3DS                            Codemasters   0.00
## 336        DS                            Codemasters   0.00
## 337       GBA                            Codemasters   0.00
## 338        GC                            Codemasters   0.00
## 339       N64                            Codemasters   0.00
## 340        PC                            Codemasters   0.00
## 341        PS                            Codemasters   0.19
## 342       PS2                            Codemasters   0.03
## 343       PS3                            Codemasters   0.47
## 344       PS4                            Codemasters   0.04
## 345       PSP                            Codemasters   0.01
## 346       PSV                            Codemasters   0.01
## 347       Wii                            Codemasters   0.00
## 348      X360                            Codemasters   0.08
## 349        XB                            Codemasters   0.00
## 350      XOne                            Codemasters   0.00
## 351        PC                     Codemasters Online   0.00
## 352        DS                      CokeM Interactive   0.00
## 353      2600                                 Coleco   0.00
## 354       PS2                                Comfort   0.03
## 355       PSP                                Comfort   0.12
## 356        DS                               Commseed   0.01
## 357       N64                                Compile   0.16
## 358        PS                                Compile   1.07
## 359       SAT                                Compile   0.63
## 360      SNES                                Compile   0.49
## 361       PS3                          Compile Heart   0.28
## 362       PS4                          Compile Heart   0.02
## 363       PSP                          Compile Heart   0.06
## 364       PSV                          Compile Heart   0.39
## 365      X360                          Compile Heart   0.02
## 366        DS               Conspiracy Entertainment   0.00
## 367       GBA               Conspiracy Entertainment   0.00
## 368        PS               Conspiracy Entertainment   0.00
## 369       PS2               Conspiracy Entertainment   0.00
## 370       PS3               Conspiracy Entertainment   0.00
## 371       PSP               Conspiracy Entertainment   0.00
## 372       Wii               Conspiracy Entertainment   0.00
## 373      X360               Conspiracy Entertainment   0.00
## 374        PS                       Core Design Ltd.   0.00
## 375      2600                           CPG Products   0.00
## 376       3DS                    Crave Entertainment   0.00
## 377        DS                    Crave Entertainment   0.00
## 378       GBA                    Crave Entertainment   0.00
## 379        GC                    Crave Entertainment   0.00
## 380       N64                    Crave Entertainment   0.00
## 381        PS                    Crave Entertainment   0.30
## 382       PS2                    Crave Entertainment   0.15
## 383       PS3                    Crave Entertainment   0.00
## 384       PSP                    Crave Entertainment   0.00
## 385       Wii                    Crave Entertainment   0.00
## 386      X360                    Crave Entertainment   0.00
## 387        XB                    Crave Entertainment   0.00
## 388        DS                          Creative Core   0.10
## 389        PC                            Crimson Cow   0.00
## 390        PS                       Crystal Dynamics   0.00
## 391        PS                                CTO SpA   0.00
## 392        DS                          Culture Brain   0.04
## 393      SNES                          Culture Brain   0.23
## 394        PS                     Culture Publishers   0.00
## 395       PS2                             CyberFront   0.06
## 396       PSP                             CyberFront   0.12
## 397       PSV                             CyberFront   0.04
## 398      X360                             CyberFront   0.04
## 399       PSV                                Cygames   0.03
## 400       3DS                            D3Publisher   0.03
## 401        DS                            D3Publisher   0.79
## 402       GBA                            D3Publisher   0.00
## 403        GC                            D3Publisher   0.00
## 404        PS                            D3Publisher   0.99
## 405       PS2                            D3Publisher   0.89
## 406       PS3                            D3Publisher   0.51
## 407       PS4                            D3Publisher   0.12
## 408       PSP                            D3Publisher   0.75
## 409       PSV                            D3Publisher   0.30
## 410       Wii                            D3Publisher   0.00
## 411      WiiU                            D3Publisher   0.00
## 412      X360                            D3Publisher   0.27
## 413        PC                               Daedalic   0.00
## 414        PC                 Daedalic Entertainment   0.00
## 415       PS2                                  Daito   0.14
## 416       PSP                                  Daito   0.09
## 417      2600                               Data Age   0.00
## 418       Wii                Data Design Interactive   0.00
## 419       SAT                              Data East   0.11
## 420      SNES                              Data East   0.04
## 421       PS2                         Datam Polystar   0.03
## 422       3DS                            Deep Silver   0.14
## 423        DS                            Deep Silver   0.00
## 424        PC                            Deep Silver   0.00
## 425       PS3                            Deep Silver   0.70
## 426       PS4                            Deep Silver   0.15
## 427       PSP                            Deep Silver   0.00
## 428       Wii                            Deep Silver   0.00
## 429      WiiU                            Deep Silver   0.00
## 430      X360                            Deep Silver   0.10
## 431        XB                            Deep Silver   0.00
## 432      XOne                            Deep Silver   0.00
## 433        DS              Destination Software, Inc   0.00
## 434       GBA              Destination Software, Inc   0.00
## 435        DS                              Destineer   0.00
## 436        PC                              Destineer   0.00
## 437       PS2                              Destineer   0.00
## 438       PSP                              Destineer   0.00
## 439       Wii                              Destineer   0.00
## 440       Wii                            Detn8 Games   0.00
## 441        PC                       Devolver Digital   0.00
## 442       PS4                       Devolver Digital   0.00
## 443        DS                        DHM Interactive   0.00
## 444       PSP                        DHM Interactive   0.00
## 445       PS2                               DigiCube   0.06
## 446       3DS             Disney Interactive Studios   0.04
## 447        DS             Disney Interactive Studios   0.36
## 448       GBA             Disney Interactive Studios   0.00
## 449        GC             Disney Interactive Studios   0.00
## 450        PC             Disney Interactive Studios   0.00
## 451       PS2             Disney Interactive Studios   0.00
## 452       PS3             Disney Interactive Studios   0.01
## 453       PS4             Disney Interactive Studios   0.00
## 454       PSP             Disney Interactive Studios   0.00
## 455       PSV             Disney Interactive Studios   0.00
## 456       Wii             Disney Interactive Studios   0.14
## 457      WiiU             Disney Interactive Studios   0.01
## 458      X360             Disney Interactive Studios   0.00
## 459        XB             Disney Interactive Studios   0.00
## 460      XOne             Disney Interactive Studios   0.00
## 461       PSP                                 Dorart   0.03
## 462       PSV                        dramatic create   0.11
## 463        DS               DreamCatcher Interactive   0.00
## 464        PC               DreamCatcher Interactive   0.00
## 465       PS2               DreamCatcher Interactive   0.00
## 466        XB               DreamCatcher Interactive   0.00
## 467        PS                 DreamWorks Interactive   0.00
## 468        DS                              DSI Games   0.00
## 469       GBA                              DSI Games   0.00
## 470       3DS                      DTP Entertainment   0.00
## 471        DS                      DTP Entertainment   0.00
## 472       GBA                      DTP Entertainment   0.00
## 473        PC                      DTP Entertainment   0.00
## 474       PS2                      DTP Entertainment   0.00
## 475       PS3                      DTP Entertainment   0.01
## 476       Wii                      DTP Entertainment   0.00
## 477      X360                      DTP Entertainment   0.01
## 478       PS4               Dusenberry Martin Racing   0.00
## 479      XOne               Dusenberry Martin Racing   0.00
## 480       PS3                               EA Games   0.00
## 481        DS                       Easy Interactive   0.00
## 482       PS2                                  Ecole   0.06
## 483       PSP                                   Edia   0.09
## 484        DC                      Eidos Interactive   0.61
## 485        DS                      Eidos Interactive   0.00
## 486        GB                      Eidos Interactive   2.34
## 487       GBA                      Eidos Interactive   0.00
## 488        GC                      Eidos Interactive   0.00
## 489        PC                      Eidos Interactive   0.00
## 490        PS                      Eidos Interactive   2.34
## 491       PS2                      Eidos Interactive   0.51
## 492       PS3                      Eidos Interactive   0.22
## 493       PSP                      Eidos Interactive   0.00
## 494       Wii                      Eidos Interactive   0.01
## 495      X360                      Eidos Interactive   0.08
## 496        XB                      Eidos Interactive   0.00
## 497       3DS                        Electronic Arts   0.03
## 498        DS                        Electronic Arts   0.54
## 499        GB                        Electronic Arts   0.10
## 500       GBA                        Electronic Arts   0.13
## 501        GC                        Electronic Arts   0.02
## 502       N64                        Electronic Arts   0.02
## 503        PC                        Electronic Arts   0.00
## 504        PS                        Electronic Arts   1.14
## 505       PS2                        Electronic Arts   6.51
## 506       PS3                        Electronic Arts   2.79
## 507       PS4                        Electronic Arts   1.01
## 508       PSP                        Electronic Arts   0.29
## 509       PSV                        Electronic Arts   0.13
## 510       SAT                        Electronic Arts   0.08
## 511       Wii                        Electronic Arts   0.24
## 512      WiiU                        Electronic Arts   0.00
## 513      X360                        Electronic Arts   0.94
## 514        XB                        Electronic Arts   0.00
## 515      XOne                        Electronic Arts   0.07
## 516        PS                 Electronic Arts Victor   0.00
## 517       SAT                                    Elf   0.64
## 518        PS                                  Elite   0.00
## 519        DS                     Empire Interactive   0.04
## 520       GBA                     Empire Interactive   0.00
## 521        GC                     Empire Interactive   0.00
## 522        PC                     Empire Interactive   0.00
## 523        PS                     Empire Interactive   0.00
## 524       PS2                     Empire Interactive   0.38
## 525       PSP                     Empire Interactive   0.00
## 526      X360                     Empire Interactive   0.00
## 527        XB                     Empire Interactive   0.00
## 528        GC                                 Encore   0.00
## 529        PC                                 Encore   0.00
## 530        PS                                 Encore   0.00
## 531        XB                                 Encore   0.00
## 532        GB                       Enix Corporation   3.28
## 533       GBA                       Enix Corporation   0.64
## 534       N64                       Enix Corporation   0.12
## 535       NES                       Enix Corporation   9.21
## 536        PS                       Enix Corporation   6.99
## 537       PS2                       Enix Corporation   2.56
## 538      SNES                       Enix Corporation   9.60
## 539        DS                      Enjoy Gaming ltd.   0.00
## 540        DS                             Enterbrain   0.50
## 541       GBA                             Enterbrain   0.12
## 542        PS                             Enterbrain   0.37
## 543       PS2                             Enterbrain   0.85
## 544       PSP                             Enterbrain   0.10
## 545        PS              EON Digital Entertainment   0.00
## 546       PS4                             Epic Games   0.00
## 547       N64                                  Epoch   0.09
## 548      SNES                                  Epoch   0.90
## 549        DS                                 Ertain   0.00
## 550       GBA                                    ESP   0.03
## 551        PS                                    ESP   0.00
## 552       SAT                                    ESP   0.51
## 553       PS2                        Essential Games   0.22
## 554        PS                        Evolution Games   0.06
## 555        PC                          Evolved Games   0.00
## 556       PS2                          Evolved Games   0.00
## 557       PS3                          Evolved Games   0.00
## 558      X360                          Evolved Games   0.00
## 559        XB                          Evolved Games   0.00
## 560       3DS                   Excalibur Publishing   0.00
## 561        PC                   Excalibur Publishing   0.00
## 562       PSV                        Experience Inc.   0.06
## 563       3DS            Extreme Entertainment Group   0.01
## 564       PS3                     Falcom Corporation   0.07
## 565       PSP                     Falcom Corporation   0.77
## 566       PSV                     Falcom Corporation   0.07
## 567       PS3                                 Fields   0.03
## 568       GBA                       Flashpoint Games   0.00
## 569       Wii                       Flashpoint Games   0.00
## 570       PS2                            Flight-Plan   0.12
## 571        DS                 Focus Home Interactive   0.00
## 572        PC                 Focus Home Interactive   0.00
## 573       PS3                 Focus Home Interactive   0.02
## 574       PS4                 Focus Home Interactive   0.02
## 575       PSV                 Focus Home Interactive   0.00
## 576       Wii                 Focus Home Interactive   0.00
## 577      X360                 Focus Home Interactive   0.00
## 578      XOne                 Focus Home Interactive   0.00
## 579        PC                       Focus Multimedia   0.00
## 580       PSP                                 fonfun   0.02
## 581        DS                    Foreign Media Games   0.00
## 582        DC                              Fortyfive   0.06
## 583       N64                        Fox Interactive   0.00
## 584        PS                        Fox Interactive   0.00
## 585        DS                          From Software   0.01
## 586        PS                          From Software   0.61
## 587       PS2                          From Software   0.04
## 588       PS3                          From Software   0.12
## 589       PSP                          From Software   0.15
## 590        XB                          From Software   0.06
## 591        PS                                   Fuji   0.03
## 592       3DS                           Funbox Media   0.00
## 593       PS3                           Funbox Media   0.00
## 594       PSV                           Funbox Media   0.00
## 595       Wii                           Funbox Media   0.00
## 596        PC                                 Funcom   0.00
## 597        PS                                FunSoft   0.00
## 598        DS                                 Funsta   0.00
## 599       PSP                                 Funsta   0.00
## 600       Wii                                 Funsta   0.00
## 601       3DS                                  FuRyu   0.78
## 602        DS                                  FuRyu   0.01
## 603       PSP                                  FuRyu   0.16
## 604       PSV                                  FuRyu   0.22
## 605       PS4                      FuRyu Corporation   0.00
## 606      X360                                  G.Rev   0.04
## 607       SAT                                   Gaga   0.02
## 608        PS                 Gainax Network Systems   0.16
## 609        DS                                 Gakken   0.04
## 610       GEN                              Game Arts   0.14
## 611        DS                           Game Factory   0.00
## 612       GBA                           Game Factory   0.00
## 613       PS2                           Game Factory   0.00
## 614       PSP                           Game Factory   0.00
## 615       Wii                           Game Factory   0.00
## 616        DS                              Game Life   0.00
## 617       PS3                             Gamebridge   0.22
## 618      X360                             Gamebridge   0.02
## 619        DS                               Gamecock   0.00
## 620        PC                               Gamecock   0.00
## 621       PS3                               Gamecock   0.00
## 622      X360                               Gamecock   0.00
## 623        DS                               Gameloft   0.00
## 624        DS                 GameMill Entertainment   0.00
## 625       Wii                 GameMill Entertainment   0.00
## 626      X360                 GameMill Entertainment   0.00
## 627       N64                                GameTek   0.00
## 628        PC                Gathering of Developers   0.00
## 629       PS2                Gathering of Developers   0.00
## 630        XB                Gathering of Developers   0.00
## 631        PS                  General Entertainment   0.13
## 632       3DS                                  Genki   0.05
## 633        DC                                  Genki   0.17
## 634        DS                                  Genki   0.04
## 635       PS2                                  Genki   0.21
## 636       PS3                                  Genki   0.03
## 637       PSP                                  Genki   0.02
## 638        XB                                  Genki   0.00
## 639        DS                            Genterprise   0.01
## 640       3DS                             Ghostlight   0.06
## 641        DS                             Ghostlight   0.12
## 642       PS2                             Ghostlight   0.25
## 643       PS3                             Ghostlight   0.06
## 644       PSP                             Ghostlight   0.40
## 645       Wii                             Ghostlight   0.00
## 646       PSV                                   Giga   0.02
## 647       PSP                                 Giza10   0.02
## 648       SAT                                  Glams   0.08
## 649        DS                 Global A Entertainment   0.01
## 650       PSP                 Global A Entertainment   0.00
## 651       GBA                            Global Star   0.00
## 652        GC                            Global Star   0.00
## 653       PS2                            Global Star   0.00
## 654        XB                            Global Star   0.00
## 655       PS2                            GN Software   0.04
## 656       PSP                            GN Software   0.01
## 657        PC                                    GOA   0.00
## 658       GBA                           Gotham Games   0.00
## 659        GC                           Gotham Games   0.00
## 660        PS                           Gotham Games   0.00
## 661       PS2                           Gotham Games   0.00
## 662        XB                           Gotham Games   0.00
## 663        DS                               Graffiti   0.00
## 664       PSP                               Graffiti   0.00
## 665       Wii                               Graffiti   0.00
## 666       PSP                       Grand Prix Games   0.06
## 667        PC                 Graphsim Entertainment   0.00
## 668       N64                Gremlin Interactive Ltd   0.00
## 669        PS                Gremlin Interactive Ltd   0.00
## 670      X360                  Griffin International   0.00
## 671        XB                           Groove Games   0.00
## 672        DS                                    GSP   0.00
## 673        PC                                    GSP   0.00
## 674       Wii                                    GSP   0.00
## 675       N64                         GT Interactive   0.00
## 676        PS                         GT Interactive   0.02
## 677       3DS                                 GungHo   1.71
## 678        DS                                 GungHo   0.17
## 679       PS3                                 GungHo   0.00
## 680       PSP                                 GungHo   0.09
## 681       PSV                                 GungHo   0.21
## 682        DS                                   Gust   0.07
## 683        PS                                   Gust   0.24
## 684       PS2                                   Gust   0.21
## 685       PSP                                   Gust   0.07
## 686       PSV                                   Gust   0.25
## 687       PS2                              Hackberry   0.31
## 688       NES                         HAL Laboratory   0.00
## 689        PS                    Hamster Corporation   0.00
## 690       PS2                    Hamster Corporation   0.02
## 691       3DS                               Happinet   0.18
## 692       PS4                 Harmonix Music Systems   0.00
## 693      XOne                 Harmonix Music Systems   0.00
## 694       GBA                     Hasbro Interactive   0.00
## 695       N64                     Hasbro Interactive   0.00
## 696        PC                     Hasbro Interactive   0.00
## 697        PS                     Hasbro Interactive   0.00
## 698        PC                      Havas Interactive   0.00
## 699        PC                           Headup Games   0.00
## 700        PS                           Hearty Robin   0.08
## 701        PS                                   Hect   0.04
## 702      SNES                                   Hect   0.46
## 703       PS4                            Hello Games   0.02
## 704        PC                        Her Interactive   0.00
## 705       GBA                        Hip Interactive   0.00
## 706       PS2                        Hip Interactive   0.00
## 707        XB                        Hip Interactive   0.00
## 708        DS                        HMH Interactive   0.00
## 709        PC                        HMH Interactive   0.00
## 710        PC           Home Entertainment Suppliers   0.00
## 711       PS3           Home Entertainment Suppliers   0.00
## 712      X360           Home Entertainment Suppliers   0.00
## 713        DS                   Hudson Entertainment   0.02
## 714       GBA                   Hudson Entertainment   0.00
## 715       N64                   Hudson Entertainment   0.00
## 716        PS                   Hudson Entertainment   1.18
## 717       PSP                   Hudson Entertainment   0.00
## 718       Wii                   Hudson Entertainment   0.01
## 719       3DS                            Hudson Soft   0.03
## 720        DS                            Hudson Soft   1.35
## 721       GBA                            Hudson Soft   0.11
## 722        GC                            Hudson Soft   0.07
## 723       N64                            Hudson Soft   0.42
## 724       NES                            Hudson Soft   6.37
## 725        NG                            Hudson Soft   0.03
## 726        PS                            Hudson Soft   0.15
## 727       PS2                            Hudson Soft   1.90
## 728       PS3                            Hudson Soft   0.00
## 729       PSP                            Hudson Soft   0.11
## 730       SAT                            Hudson Soft   0.47
## 731      SNES                            Hudson Soft   7.03
## 732      TG16                            Hudson Soft   0.02
## 733       Wii                            Hudson Soft   1.15
## 734      X360                            Hudson Soft   0.00
## 735        XB                            Hudson Soft   0.00
## 736        PS                    Human Entertainment   1.30
## 737       SAT                    Human Entertainment   0.12
## 738      SNES                    Human Entertainment   1.40
## 739       PSV                                  HuneX   0.03
## 740        PC                    Iceberg Interactive   0.00
## 741        PC                            id Software   0.00
## 742        DS                           Idea Factory   0.20
## 743       PS2                           Idea Factory   0.46
## 744       PS3                           Idea Factory   0.04
## 745       PS4                           Idea Factory   0.02
## 746       PSP                           Idea Factory   1.84
## 747       PSV                           Idea Factory   0.74
## 748      X360                           Idea Factory   0.02
## 749       PS4             Idea Factory International   0.09
## 750       PSV             Idea Factory International   0.11
## 751       3DS                           IE Institute   0.02
## 752        DS                           IE Institute   0.94
## 753        DS                 Ignition Entertainment   0.20
## 754       GBA                 Ignition Entertainment   0.00
## 755        GC                 Ignition Entertainment   0.00
## 756       PS2                 Ignition Entertainment   0.18
## 757       PS3                 Ignition Entertainment   0.11
## 758       PSP                 Ignition Entertainment   0.15
## 759       Wii                 Ignition Entertainment   0.00
## 760      X360                 Ignition Entertainment   0.04
## 761        XB                 Ignition Entertainment   0.00
## 762       PS2                     Illusion Softworks   0.00
## 763       SAT                                 Imadio   0.14
## 764       PSP                            Image Epoch   0.10
## 765       3DS                        imageepoch Inc.   0.04
## 766       3DO                             Imageworks   0.02
## 767      2600                                 Imagic   0.00
## 768        GB                              Imagineer   1.33
## 769       N64                              Imagineer   0.41
## 770        PS                              Imagineer   0.01
## 771       SAT                              Imagineer   0.40
## 772      SNES                              Imagineer   0.38
## 773      SNES                                   Imax   0.06
## 774       PS2                            Indie Games   0.14
## 775        DC                             Infogrames   0.06
## 776       GBA                             Infogrames   0.00
## 777        GC                             Infogrames   0.21
## 778       N64                             Infogrames   0.00
## 779        PC                             Infogrames   0.00
## 780        PS                             Infogrames   0.09
## 781       PS2                             Infogrames   0.02
## 782        XB                             Infogrames   0.00
## 783        PC                        Insomniac Games   0.00
## 784       PS4                        Insomniac Games   0.00
## 785      XOne                        Insomniac Games   0.00
## 786       PS2                           Interchannel   0.10
## 787       PS2                     Interchannel-Holon   0.01
## 788       3DS                              Intergrow   0.03
## 789       GBA                              Interplay   0.00
## 790       N64                              Interplay   0.00
## 791        PC                              Interplay   0.00
## 792        PS                              Interplay   0.00
## 793       PS2                              Interplay   0.00
## 794      SNES                              Interplay   0.01
## 795        XB                              Interplay   0.00
## 796        PS                  Interplay Productions   0.00
## 797       PS3             Interworks Unlimited, Inc.   0.00
## 798       3DS                           Inti Creates   0.01
## 799       PS4                  Introversion Software   0.00
## 800        PC                   inXile Entertainment   0.00
## 801       3DS              Irem Software Engineering   0.04
## 802        PS              Irem Software Engineering   0.00
## 803       PS2              Irem Software Engineering   0.11
## 804       PS3              Irem Software Engineering   0.02
## 805       PSP              Irem Software Engineering   0.14
## 806      2600                       ITT Family Games   0.00
## 807       PSP                              Ivolgamus   0.00
## 808        DS                                   iWin   0.00
## 809        DS                      Jack of All Games   0.00
## 810       GBA                      Jack of All Games   0.00
## 811        DS                                 Jaleco   0.20
## 812       GBA                                 Jaleco   0.00
## 813        GC                                 Jaleco   0.00
## 814        PS                                 Jaleco   0.30
## 815       PS2                                 Jaleco   0.01
## 816       SAT                                 Jaleco   0.10
## 817       Wii                                 Jaleco   0.03
## 818        XB                                 Jaleco   0.00
## 819       PS2                     Jester Interactive   0.00
## 820        GB                                Jorudan   0.30
## 821       GBA                                Jorudan   0.63
## 822        DS                     JoWood Productions   0.00
## 823        GC                     JoWood Productions   0.00
## 824        PC                     JoWood Productions   0.00
## 825       PS2                     JoWood Productions   0.00
## 826       Wii                     JoWood Productions   0.00
## 827      X360                     JoWood Productions   0.01
## 828        XB                     JoWood Productions   0.00
## 829        PC                            Just Flight   0.00
## 830        PS                                    JVC   0.00
## 831       SAT                                    JVC   0.12
## 832       3DS                         Kadokawa Games   0.01
## 833       PS3                         Kadokawa Games   0.02
## 834       PSP                         Kadokawa Games   0.06
## 835       PSV                         Kadokawa Games   0.49
## 836       3DS                        Kadokawa Shoten   0.20
## 837        DS                        Kadokawa Shoten   0.14
## 838        PS                        Kadokawa Shoten   0.14
## 839       PS2                        Kadokawa Shoten   0.50
## 840       PSP                        Kadokawa Shoten   1.02
## 841       PSV                        Kadokawa Shoten   0.20
## 842       SAT                        Kadokawa Shoten   0.64
## 843       Wii                        Kadokawa Shoten   0.09
## 844       PS3                            Kaga Create   0.01
## 845       PSP                            Kaga Create   0.01
## 846       PSV                            Kaga Create   0.12
## 847        PC                          Kalypso Media   0.00
## 848       PS3                          Kalypso Media   0.00
## 849       PS4                          Kalypso Media   0.06
## 850      X360                          Kalypso Media   0.03
## 851        DS                                  Kamui   0.03
## 852       PS2                            Kando Games   0.00
## 853       PSP                    Karin Entertainment   0.02
## 854       GBA                                  Kemco   0.00
## 855        GC                                  Kemco   0.00
## 856       N64                                  Kemco   0.00
## 857        PS                                  Kemco   0.00
## 858       PS2                                  Kemco   0.00
## 859      SNES                                  Kemco   0.05
## 860        XB                                  Kemco   0.00
## 861       PS2                                    KID   0.05
## 862       SAT                                    KID   0.03
## 863        DS                           Kids Station   0.03
## 864       GBA                           King Records   0.02
## 865       GBA                    Knowledge Adventure   0.00
## 866       Wii                    Knowledge Adventure   0.00
## 867       3DS                             Koch Media   0.00
## 868        DS                             Koch Media   0.00
## 869        PC                             Koch Media   0.00
## 870       PS2                             Koch Media   0.00
## 871       PS3                             Koch Media   0.00
## 872       PS4                             Koch Media   0.00
## 873       PSP                             Koch Media   0.00
## 874       Wii                             Koch Media   0.00
## 875      X360                             Koch Media   0.00
## 876      XOne                             Koch Media   0.00
## 877        PS               Kokopeli Digital Studios   0.00
## 878       3DO           Konami Digital Entertainment   0.06
## 879       3DS           Konami Digital Entertainment   1.11
## 880        DC           Konami Digital Entertainment   0.06
## 881        DS           Konami Digital Entertainment   8.16
## 882        GB           Konami Digital Entertainment   6.47
## 883       GBA           Konami Digital Entertainment   3.01
## 884        GC           Konami Digital Entertainment   0.63
## 885       GEN           Konami Digital Entertainment   0.04
## 886       N64           Konami Digital Entertainment   3.11
## 887       NES           Konami Digital Entertainment   5.19
## 888        PC           Konami Digital Entertainment   0.00
## 889        PS           Konami Digital Entertainment  16.36
## 890       PS2           Konami Digital Entertainment  20.35
## 891       PS3           Konami Digital Entertainment   9.16
## 892       PS4           Konami Digital Entertainment   1.18
## 893       PSP           Konami Digital Entertainment   8.83
## 894       PSV           Konami Digital Entertainment   0.92
## 895       SAT           Konami Digital Entertainment   0.75
## 896      SNES           Konami Digital Entertainment   4.25
## 897       Wii           Konami Digital Entertainment   1.37
## 898      X360           Konami Digital Entertainment   0.26
## 899        XB           Konami Digital Entertainment   0.02
## 900      XOne           Konami Digital Entertainment   0.01
## 901        XB                              Kool Kizz   0.00
## 902      SNES                                    KSS   0.03
## 903      SNES                                 Laguna   1.34
## 904        DS                     Legacy Interactive   0.00
## 905       GBA                             LEGO Media   0.00
## 906       N64                             LEGO Media   0.00
## 907        PC                             LEGO Media   0.00
## 908        PS                             LEGO Media   0.00
## 909       3DS                                Level 5   8.14
## 910        DS                                Level 5   2.29
## 911       PSP                                Level 5   0.81
## 912       PSV                                Level 5   0.09
## 913       Wii                                Level 5   0.29
## 914      WiiU                                Level 5   0.03
## 915        DS                  Lexicon Entertainment   0.00
## 916       3DS                            Licensed 4U   0.00
## 917        DS                            Licensed 4U   0.00
## 918        PC                 Lighthouse Interactive   0.00
## 919       GBA                           Liquid Games   0.00
## 920       3DS                           Little Orbit   0.00
## 921        DS                           Little Orbit   0.00
## 922       PS3                           Little Orbit   0.00
## 923       PS4                           Little Orbit   0.00
## 924       Wii                           Little Orbit   0.00
## 925      WiiU                           Little Orbit   0.00
## 926      X360                           Little Orbit   0.00
## 927      XOne                           Little Orbit   0.00
## 928        PS                                  Locus   0.07
## 929       GBA                              LSP Games   0.00
## 930       PS2                              LSP Games   0.00
## 931       3DS                              LucasArts   0.00
## 932        DS                              LucasArts   0.00
## 933       GBA                              LucasArts   0.00
## 934        GC                              LucasArts   0.03
## 935       N64                              LucasArts   0.00
## 936        PC                              LucasArts   0.00
## 937        PS                              LucasArts   0.05
## 938       PS2                              LucasArts   0.11
## 939       PS3                              LucasArts   0.00
## 940       PSP                              LucasArts   0.01
## 941       Wii                              LucasArts   0.00
## 942      X360                              LucasArts   0.00
## 943        XB                              LucasArts   0.00
## 944        GC                               Mad Catz   0.00
## 945      X360                               Mad Catz   0.00
## 946        XB                               Mad Catz   0.00
## 947        PS                        Magical Company   0.12
## 948       PS2                                  Magix   0.00
## 949       3DS                  Majesco Entertainment   0.00
## 950        DS                  Majesco Entertainment   0.00
## 951       GBA                  Majesco Entertainment   0.00
## 952       PS2                  Majesco Entertainment   0.00
## 953       PS3                  Majesco Entertainment   0.00
## 954       PSP                  Majesco Entertainment   0.02
## 955       Wii                  Majesco Entertainment   0.00
## 956      X360                  Majesco Entertainment   0.00
## 957        XB                  Majesco Entertainment   0.00
## 958      XOne                  Majesco Entertainment   0.00
## 959        PC                            Mamba Games   0.00
## 960       PSV                   Marvel Entertainment   0.05
## 961       3DS                Marvelous Entertainment   0.67
## 962       PSP                Marvelous Entertainment   0.13
## 963       PSV                Marvelous Entertainment   0.37
## 964       PSV                        Marvelous Games   0.02
## 965       3DS                  Marvelous Interactive   0.41
## 966        DS                  Marvelous Interactive   0.48
## 967       GBA                  Marvelous Interactive   0.02
## 968        GC                  Marvelous Interactive   0.00
## 969       PS2                  Marvelous Interactive   0.20
## 970       PS3                  Marvelous Interactive   0.16
## 971       PS4                  Marvelous Interactive   0.10
## 972       PSP                  Marvelous Interactive   0.50
## 973       PSV                  Marvelous Interactive   0.17
## 974       Wii                  Marvelous Interactive   0.16
## 975      X360                  Marvelous Interactive   0.02
## 976        PC                      Masque Publishing   0.00
## 977        DS                           Mastertronic   0.00
## 978        PC                           Mastertronic   0.00
## 979       PS2                           Mastertronic   0.00
## 980       Wii                           Mastertronic   0.00
## 981      X360                           Mastertronic   0.00
## 982       3DS                                Mastiff   0.00
## 983        DS                                Mastiff   0.00
## 984       GBA                                Mastiff   0.00
## 985        PC                                Mastiff   0.00
## 986       PS2                                Mastiff   0.00
## 987       Wii                                Mastiff   0.00
## 988        XB                                Mastiff   0.00
## 989      2600                     Mattel Interactive   0.00
## 990        PS                     Mattel Interactive   0.00
## 991        PS                               Max Five   0.00
## 992       3DS                   Maximum Family Games   0.00
## 993        PC                                  Maxis   0.00
## 994        PS                                  Maxis   0.00
## 995        PC                      MC2 Entertainment   0.00
## 996        XB                      MC2 Entertainment   0.00
## 997       PS2                    Media Entertainment   0.01
## 998        GB                          Media Factory   0.14
## 999       N64                          Media Factory   0.15
## 1000      GBA                            Media Rings   0.00
## 1001     SNES                            Media Rings   0.46
## 1002       PS                            Media Works   0.10
## 1003      PS2                            Media Works   0.05
## 1004      SAT                            Media Works   0.03
## 1005       PS                             MediaQuest   0.00
## 1006     2600                           Men-A-Vision   0.00
## 1007       DS                     Mentor Interactive   0.00
## 1008       DS                          Mercury Games   0.00
## 1009      PSP                          Mercury Games   0.02
## 1010       PC                            Merscom LLC   0.00
## 1011      PS2                               Metro 3D   0.42
## 1012      Wii                               Metro 3D   0.00
## 1013       XB                               Metro 3D   0.00
## 1014      PS2                            Michaelsoft   0.01
## 1015      3DO                            Micro Cabin   0.02
## 1016      SAT                            Micro Cabin   0.18
## 1017      GBA                               Microids   0.00
## 1018       PC                               Microids   0.00
## 1019      PS2                               Microids   0.00
## 1020      PS4                               Microids   0.00
## 1021       XB                               Microids   0.00
## 1022       PC                             Microprose   0.00
## 1023       PS                             Microprose   0.00
## 1024       PC                 Microsoft Game Studios   0.00
## 1025     WiiU                 Microsoft Game Studios   0.14
## 1026     X360                 Microsoft Game Studios   2.18
## 1027       XB                 Microsoft Game Studios   0.78
## 1028     XOne                 Microsoft Game Studios   0.16
## 1029       DS        Midas Interactive Entertainment   0.00
## 1030       PS        Midas Interactive Entertainment   0.00
## 1031      PS2        Midas Interactive Entertainment   0.15
## 1032      PSP        Midas Interactive Entertainment   0.00
## 1033      Wii        Midas Interactive Entertainment   0.00
## 1034       DS                           Midway Games   0.00
## 1035      GBA                           Midway Games   0.00
## 1036       GC                           Midway Games   0.00
## 1037      N64                           Midway Games   0.00
## 1038       PC                           Midway Games   0.00
## 1039       PS                           Midway Games   0.00
## 1040      PS2                           Midway Games   0.10
## 1041      PS3                           Midway Games   0.00
## 1042      PSP                           Midway Games   0.00
## 1043      Wii                           Midway Games   0.00
## 1044     X360                           Midway Games   0.02
## 1045       XB                           Midway Games   0.00
## 1046      Wii                              Milestone   0.00
## 1047      PS4                        Milestone S.r.l   0.00
## 1048     XOne                        Milestone S.r.l   0.00
## 1049       PC                       Milestone S.r.l.   0.00
## 1050      PS3                       Milestone S.r.l.   0.04
## 1051      PS4                       Milestone S.r.l.   0.06
## 1052      PSV                       Milestone S.r.l.   0.00
## 1053     X360                       Milestone S.r.l.   0.00
## 1054     XOne                       Milestone S.r.l.   0.00
## 1055      PS2                         Minato Station   0.02
## 1056      PS3                         Minato Station   0.02
## 1057      PSV                         Minato Station   0.01
## 1058       DS                              Mindscape   0.00
## 1059      N64                              Mindscape   0.00
## 1060       PS                              Mindscape   0.00
## 1061      PS2                              Mindscape   0.00
## 1062      Wii                              Mindscape   0.00
## 1063     X360                              Mindscape   0.00
## 1064       XB                              Mindscape   0.00
## 1065       DS                          Mirai Shounen   0.02
## 1066     SNES                                 Misawa   0.07
## 1067      N64                                 Mitsui   0.00
## 1068      3DS                              mixi, Inc   0.86
## 1069     XOne                                MLB.com   0.00
## 1070       PC                                 Mojang   0.00
## 1071      PS3                                 Mojang   0.00
## 1072      PS4                                 Mojang   0.00
## 1073     X360                                 Mojang   0.00
## 1074     XOne                                 Mojang   0.00
## 1075       PC               Monte Christo Multimedia   0.00
## 1076     X360                                   Moss   0.02
## 1077       DS                                    MTO   0.30
## 1078       PS                                    MTO   0.09
## 1079       DS                              MTV Games   0.00
## 1080      PS2                              MTV Games   0.00
## 1081      PS3                              MTV Games   0.00
## 1082      PSP                              MTV Games   0.00
## 1083      Wii                              MTV Games   0.00
## 1084     X360                              MTV Games   0.01
## 1085      PS2                   Mud Duck Productions   0.00
## 1086       XB                   Mud Duck Productions   0.00
## 1087       DS                            Mumbo Jumbo   0.00
## 1088       PC                            Mumbo Jumbo   0.00
## 1089      PSP                            Mumbo Jumbo   0.00
## 1090      Wii                            Mumbo Jumbo   0.00
## 1091       DS                                  Mycom   0.02
## 1092      PS2                           Myelin Media   0.00
## 1093      PSP                           Myelin Media   0.00
## 1094       XB                           Myelin Media   0.00
## 1095     2600                               Mystique   0.00
## 1096      3DS                                    N/A   0.02
## 1097       DS                                    N/A   0.23
## 1098      GBA                                    N/A   0.27
## 1099       PC                                    N/A   0.00
## 1100       PS                                    N/A   0.04
## 1101      PS2                                    N/A   0.00
## 1102      PS3                                    N/A   0.07
## 1103      PSP                                    N/A   0.12
## 1104      PSV                                    N/A   0.03
## 1105      Wii                                    N/A   0.14
## 1106     X360                                    N/A   0.01
## 1107      3DS                     Namco Bandai Games   8.64
## 1108       DC                     Namco Bandai Games   0.38
## 1109       DS                     Namco Bandai Games  13.27
## 1110       GB                     Namco Bandai Games   3.21
## 1111      GBA                     Namco Bandai Games   0.48
## 1112       GC                     Namco Bandai Games   0.88
## 1113      N64                     Namco Bandai Games   0.52
## 1114      NES                     Namco Bandai Games  13.52
## 1115       PC                     Namco Bandai Games   0.00
## 1116       PS                     Namco Bandai Games  11.15
## 1117      PS2                     Namco Bandai Games  18.89
## 1118      PS3                     Namco Bandai Games  14.70
## 1119      PS4                     Namco Bandai Games   1.97
## 1120      PSP                     Namco Bandai Games  14.68
## 1121      PSV                     Namco Bandai Games   4.70
## 1122      SAT                     Namco Bandai Games   1.63
## 1123     SNES                     Namco Bandai Games  10.81
## 1124      Wii                     Namco Bandai Games   5.44
## 1125     WiiU                     Namco Bandai Games   0.65
## 1126       WS                     Namco Bandai Games   0.66
## 1127     X360                     Namco Bandai Games   0.86
## 1128       XB                     Namco Bandai Games   0.03
## 1129     XOne                     Namco Bandai Games   0.00
## 1130      3DS                                Natsume   0.00
## 1131       DS                                Natsume   0.22
## 1132      GBA                                Natsume   0.00
## 1133      N64                                Natsume   0.00
## 1134       PS                                Natsume   0.10
## 1135      PS2                                Natsume   0.00
## 1136      PSP                                Natsume   0.00
## 1137      Wii                                Natsume   0.00
## 1138     X360                           Navarre Corp   0.00
## 1139      PS2                             Naxat Soft   0.01
## 1140      SAT                                    NCS   0.40
## 1141       PC                                 NCSoft   0.00
## 1142       GC                        NDA Productions   0.00
## 1143     PCFX                                    NEC   0.03
## 1144      SAT                                    NEC   0.26
## 1145     TG16                                    NEC   0.14
## 1146       DC                       NEC Interchannel   0.18
## 1147      SAT                       NEC Interchannel   0.60
## 1148       DS                     Neko Entertainment   0.00
## 1149      Wii                     Neko Entertainment   0.00
## 1150      PSP                                NetRevo   0.03
## 1151       PS                                    New   0.33
## 1152       PC                    New World Computing   0.00
## 1153      GBA                               NewKidCo   0.00
## 1154       GC                               NewKidCo   0.00
## 1155      N64                               NewKidCo   0.00
## 1156       PS                               NewKidCo   0.00
## 1157       DS                                  Nexon   0.03
## 1158     SNES                             Nichibutsu   0.28
## 1159      PS4               Nihon Falcom Corporation   0.02
## 1160      PSP               Nihon Falcom Corporation   0.14
## 1161      PSV               Nihon Falcom Corporation   0.42
## 1162      3DS                               Nintendo  52.23
## 1163       DS                               Nintendo 108.50
## 1164       GB                               Nintendo  63.83
## 1165      GBA                               Nintendo  32.94
## 1166       GC                               Nintendo  16.57
## 1167      N64                               Nintendo  27.92
## 1168      NES                               Nintendo  56.71
## 1169     SNES                               Nintendo  34.44
## 1170      Wii                               Nintendo  51.04
## 1171     WiiU                               Nintendo  11.24
## 1172      PS2                           Nippon Amuse   0.09
## 1173      3DS                        Nippon Columbia   0.95
## 1174      3DS                   Nippon Ichi Software   0.43
## 1175       DS                   Nippon Ichi Software   0.03
## 1176       PS                   Nippon Ichi Software   0.00
## 1177      PS2                   Nippon Ichi Software   0.18
## 1178      PS3                   Nippon Ichi Software   2.25
## 1179      PS4                   Nippon Ichi Software   0.28
## 1180      PSP                   Nippon Ichi Software   0.92
## 1181      PSV                   Nippon Ichi Software   1.76
## 1182      Wii                   Nippon Ichi Software   0.01
## 1183     WiiU                   Nippon Ichi Software   0.01
## 1184     SNES                         Nippon Telenet   0.26
## 1185      PS3                              Nitroplus   0.01
## 1186      PSV                              Nitroplus   0.01
## 1187       DS                                Nobilis   0.01
## 1188       PC                                Nobilis   0.00
## 1189      Wii                                Nobilis   0.01
## 1190       DS                            Nordcurrent   0.00
## 1191      Wii                            Nordcurrent   0.00
## 1192       DS                           Nordic Games   0.00
## 1193       PC                           Nordic Games   0.00
## 1194      PS3                           Nordic Games   0.00
## 1195      PS4                           Nordic Games   0.00
## 1196      Wii                           Nordic Games   0.00
## 1197     WiiU                           Nordic Games   0.00
## 1198     X360                           Nordic Games   0.00
## 1199     XOne                           Nordic Games   0.00
## 1200       PC                              NovaLogic   0.00
## 1201      PS2                              NovaLogic   0.00
## 1202       XB                              NovaLogic   0.00
## 1203       PC                            Number None   0.00
## 1204       DS                                O-Games   0.00
## 1205      PS3                                O-Games   0.00
## 1206      Wii                                O-Games   0.00
## 1207     X360                                O-Games   0.00
## 1208       DS                       O3 Entertainment   0.00
## 1209       GC                       O3 Entertainment   0.00
## 1210      N64                                  Ocean   0.02
## 1211      NES                                  Ocean   0.00
## 1212       PS                                  Ocean   0.12
## 1213     SNES                                  Ocean   0.28
## 1214      3DS                          Office Create   0.06
## 1215       PS                              On Demand   0.00
## 1216      PS3                              Ongakukan   0.01
## 1217       PS                         Origin Systems   0.00
## 1218      PSP                                Otomate   0.01
## 1219       DS                     Oxygen Interactive   0.00
## 1220      PS2                     Oxygen Interactive   0.00
## 1221      PSP                     Oxygen Interactive   0.00
## 1222      Wii                     Oxygen Interactive   0.00
## 1223     X360                     Oxygen Interactive   0.00
## 1224       DS                               P2 Games   0.00
## 1225      Wii                               P2 Games   0.00
## 1226      PS2            Pacific Century Cyber Works   0.03
## 1227     SNES                          Pack-In-Video   0.11
## 1228      N64                           Pack In Soft   0.11
## 1229      NES                                 Palcom   0.31
## 1230       PS                       Panther Software   0.12
## 1231       DS                                   Paon   0.10
## 1232      PS2                                   Paon   0.11
## 1233      PSP                                   Paon   0.04
## 1234      PS3                       Paon Corporation   0.03
## 1235       PC                    Paradox Development   0.00
## 1236       PC                    Paradox Interactive   0.00
## 1237     2600                           Parker Bros.   0.00
## 1238       DS          Performance Designed Products   0.00
## 1239      Wii          Performance Designed Products   0.00
## 1240       XB                             Phantagram   0.01
## 1241     X360                            Phantom EFX   0.00
## 1242       DS                             Phenomedia   0.00
## 1243       DS                          Phoenix Games   0.00
## 1244      PSP                                 Piacci   0.01
## 1245       DS                               Pinnacle   0.00
## 1246       PC                               Pinnacle   0.00
## 1247      Wii                               Pinnacle   0.00
## 1248       PS                            Pioneer LDC   0.32
## 1249      GBA                                Play It   0.00
## 1250      PS2                                Play It   0.00
## 1251      PSP                                Play It   0.00
## 1252       DS                 Playlogic Game Factory   0.00
## 1253       PC                 Playlogic Game Factory   0.00
## 1254      PS2                 Playlogic Game Factory   0.00
## 1255      PS3                 Playlogic Game Factory   0.00
## 1256      PSP                 Playlogic Game Factory   0.00
## 1257      Wii                 Playlogic Game Factory   0.00
## 1258     X360                 Playlogic Game Factory   0.00
## 1259       PS                              Playmates   0.00
## 1260      PS2                               Playmore   0.04
## 1261       DS                                  PlayV   0.00
## 1262       DS                                 Plenty   0.02
## 1263      PSP                             PM Studios   0.00
## 1264       PS                            Pony Canyon   0.00
## 1265       DS                           PopCap Games   0.00
## 1266       PC                           PopCap Games   0.00
## 1267      PS3                           PopCap Games   0.00
## 1268     X360                           PopCap Games   0.00
## 1269      Wii                         Popcorn Arcade   0.00
## 1270       PS                        PopTop Software   0.00
## 1271     SNES                                    Pow   0.05
## 1272      3DS                                  PQube   0.04
## 1273       DS                                  PQube   0.05
## 1274       PC                                  PQube   0.00
## 1275      PS2                                  PQube   0.00
## 1276      PS3                                  PQube   0.42
## 1277      PS4                                  PQube   0.12
## 1278      PSP                                  PQube   0.19
## 1279      PSV                                  PQube   0.15
## 1280      Wii                                  PQube   0.00
## 1281     X360                                  PQube   0.08
## 1282     XOne                                  PQube   0.00
## 1283      PS2                          Princess Soft   0.07
## 1284      PS2                              Prototype   0.14
## 1285      PS3                              Prototype   0.03
## 1286      PSP                              Prototype   0.29
## 1287      PSV                              Prototype   0.11
## 1288     X360                              Prototype   0.04
## 1289       PS                              Psygnosis   0.72
## 1290     2600                                 Quelle   0.00
## 1291     SNES                                  Quest   0.71
## 1292      PSP                               Quinrose   0.22
## 1293      SAT                                Quintet   0.02
## 1294      GBA                          Rage Software   0.00
## 1295       GC                          Rage Software   0.00
## 1296      PS2                          Rage Software   0.00
## 1297       XB                          Rage Software   0.00
## 1298      PSV                             Rain Games   0.00
## 1299      GBA                              Rebellion   0.00
## 1300      PS4                 Rebellion Developments   0.00
## 1301     XOne                 Rebellion Developments   0.00
## 1302      PS2                      RED Entertainment   0.02
## 1303       PC                                Red Orb   0.00
## 1304      N64                Red Storm Entertainment   0.00
## 1305       PS                Red Storm Entertainment   0.00
## 1306      PS2                              RedOctane   0.03
## 1307       DS                     Reef Entertainment   0.00
## 1308       PC                     Reef Entertainment   0.00
## 1309      PS3                     Reef Entertainment   0.00
## 1310      Wii                     Reef Entertainment   0.00
## 1311      PS2                           responDESIGN   0.00
## 1312       XB                           responDESIGN   0.00
## 1313      PS2                     Revolution (Japan)   0.02
## 1314      PS4                    Revolution Software   0.00
## 1315     XOne                    Revolution Software   0.00
## 1316      3DS                      Rising Star Games   0.04
## 1317       DS                      Rising Star Games   1.43
## 1318       PC                      Rising Star Games   0.00
## 1319      PS2                      Rising Star Games   0.07
## 1320      PS3                      Rising Star Games   0.04
## 1321      PS4                      Rising Star Games   0.00
## 1322      PSP                      Rising Star Games   0.39
## 1323      PSV                      Rising Star Games   0.03
## 1324      Wii                      Rising Star Games   0.47
## 1325     X360                      Rising Star Games   0.06
## 1326       PS                          Riverhillsoft   0.04
## 1327      3DS                         Rocket Company   0.40
## 1328       DS                         Rocket Company   1.35
## 1329      Wii                         Rocket Company   0.07
## 1330       DS                             Rondomedia   0.00
## 1331       PC                             Rondomedia   0.00
## 1332      Wii                             Rondomedia   0.00
## 1333       DS                                    RTL   0.00
## 1334      Wii                                    RTL   0.00
## 1335     X360                                    RTL   0.00
## 1336       DS                                 Russel   0.03
## 1337       PC                                 Russel   0.00
## 1338      PS2                                 Russel   0.03
## 1339      PSP                                 Russel   0.03
## 1340      GBA                      Sammy Corporation   0.00
## 1341      PS2                      Sammy Corporation   1.72
## 1342     SNES                      Sammy Corporation   0.19
## 1343       PS                                 Saurus   0.00
## 1344       DS                        Scholastic Inc.   0.00
## 1345      PS2                        Scholastic Inc.   0.00
## 1346      Wii                        Scholastic Inc.   0.00
## 1347       GC                                    SCi   0.00
## 1348       PC                                    SCi   0.00
## 1349      PS2                                    SCi   0.00
## 1350       XB                                    SCi   0.00
## 1351      3DS                             Screenlife   0.51
## 1352      PSV                             Screenlife   0.15
## 1353       PC                           SCS Software   0.00
## 1354     2600                                  Sears   0.00
## 1355     2600                                   Sega   0.00
## 1356      3DS                                   Sega   1.50
## 1357       DC                                   Sega   5.78
## 1358       DS                                   Sega   5.83
## 1359      GBA                                   Sega   1.13
## 1360       GC                                   Sega   0.44
## 1361      GEN                                   Sega   2.24
## 1362       GG                                   Sega   0.04
## 1363       PC                                   Sega   0.00
## 1364      PS2                                   Sega   6.47
## 1365      PS3                                   Sega   5.52
## 1366      PS4                                   Sega   0.64
## 1367      PSP                                   Sega   5.75
## 1368      PSV                                   Sega   1.17
## 1369      SAT                                   Sega  17.59
## 1370      SCD                                   Sega   0.45
## 1371      Wii                                   Sega   1.96
## 1372     WiiU                                   Sega   0.05
## 1373     X360                                   Sega   0.31
## 1374       XB                                   Sega   0.16
## 1375     XOne                                   Sega   0.00
## 1376      N64                       Seta Corporation   0.06
## 1377       PS                       Seta Corporation   0.27
## 1378      SAT                       Seta Corporation   0.26
## 1379      3DS                          Seventh Chord   0.08
## 1380      3DS                             Shogakukan   0.03
## 1381       DS                             Shogakukan   0.30
## 1382      SAT                             Shogakukan   0.11
## 1383       XB           Simon & Schuster Interactive   0.00
## 1384       PC                   Slightly Mad Studios   0.00
## 1385      PS4                   Slightly Mad Studios   0.02
## 1386     XOne                   Slightly Mad Studios   0.00
## 1387       DS                    Slitherine Software   0.00
## 1388      PS3                    Slitherine Software   0.00
## 1389      PSP                    Slitherine Software   0.00
## 1390     X360                    Slitherine Software   0.00
## 1391       DC                                    SNK   0.17
## 1392       NG                                    SNK   1.39
## 1393       PS                                    SNK   0.39
## 1394      PS2                                    SNK   0.00
## 1395      SAT                                    SNK   0.53
## 1396       DS                           SNK Playmore   0.11
## 1397       PS                           SNK Playmore   0.04
## 1398      PS2                           SNK Playmore   0.10
## 1399      PSP                           SNK Playmore   0.03
## 1400      SAT                           SNK Playmore   0.28
## 1401       XB                           SNK Playmore   0.00
## 1402      SAT                                Societa   0.04
## 1403      PS4                               Sold Out   0.00
## 1404      SAT                                 Sonnet   0.06
## 1405       PS            Sony Computer Entertainment  43.24
## 1406      PS2            Sony Computer Entertainment  15.93
## 1407      PS3            Sony Computer Entertainment   7.17
## 1408      PS4            Sony Computer Entertainment   0.91
## 1409      PSP            Sony Computer Entertainment   5.43
## 1410      PSV            Sony Computer Entertainment   1.42
## 1411      PS3    Sony Computer Entertainment America   0.00
## 1412      PS4    Sony Computer Entertainment America   0.00
## 1413      PSV    Sony Computer Entertainment America   0.00
## 1414      PS2     Sony Computer Entertainment Europe   0.70
## 1415      PS3     Sony Computer Entertainment Europe   0.30
## 1416      PS4     Sony Computer Entertainment Europe   0.59
## 1417      PSV     Sony Computer Entertainment Europe   0.91
## 1418      PS2               Sony Music Entertainment   0.14
## 1419       PC              Sony Online Entertainment   0.00
## 1420      PS2              Sony Online Entertainment   0.00
## 1421      PS3              Sony Online Entertainment   0.00
## 1422      PSP              Sony Online Entertainment   0.00
## 1423       DS                        SouthPeak Games   0.00
## 1424       PC                        SouthPeak Games   0.00
## 1425       PS                        SouthPeak Games   0.00
## 1426      PS2                        SouthPeak Games   0.00
## 1427      PS3                        SouthPeak Games   0.05
## 1428      PSP                        SouthPeak Games   0.00
## 1429      Wii                        SouthPeak Games   0.00
## 1430     X360                        SouthPeak Games   0.02
## 1431       DS                                  Spike   0.66
## 1432      GBA                                  Spike   0.00
## 1433      PS2                                  Spike   0.26
## 1434      PS3                                  Spike   0.02
## 1435      PSP                                  Spike   1.18
## 1436     X360                                  Spike   0.00
## 1437       PS                                    SPS   0.00
## 1438      NES                                 Square   0.11
## 1439       PS                                 Square   1.16
## 1440     SNES                                 Square   1.33
## 1441       PS                              Square EA   0.00
## 1442      3DS                            Square Enix   6.05
## 1443       DS                            Square Enix  12.89
## 1444      GBA                            Square Enix   0.71
## 1445       PC                            Square Enix   0.00
## 1446      PS2                            Square Enix  12.05
## 1447      PS3                            Square Enix   6.31
## 1448      PS4                            Square Enix   1.65
## 1449      PSP                            Square Enix   5.49
## 1450      PSV                            Square Enix   1.03
## 1451      Wii                            Square Enix   2.52
## 1452     WiiU                            Square Enix   0.41
## 1453     X360                            Square Enix   0.75
## 1454     XOne                            Square Enix   0.02
## 1455       GB                             SquareSoft   2.24
## 1456      GBA                             SquareSoft   0.89
## 1457      NES                             SquareSoft   2.67
## 1458       PS                             SquareSoft  17.77
## 1459      PS2                             SquareSoft   0.86
## 1460     SNES                             SquareSoft  14.94
## 1461       WS                             SquareSoft   0.76
## 1462       PS                                    SSI   0.00
## 1463     XOne                        Stainless Games   0.00
## 1464       DS                               Starfish   0.02
## 1465      GBA                               Starfish   0.00
## 1466       PS                               Starfish   0.00
## 1467      PSP                               Starfish   0.08
## 1468      Wii                               Starfish   0.00
## 1469     2600                         Starpath Corp.   0.00
## 1470       DS                                  Sting   0.03
## 1471      GBA                                  Sting   0.03
## 1472      PS2                                  Sting   0.02
## 1473      PSP                                  Sting   0.07
## 1474      Wii                                  Sting   0.00
## 1475       DS                       Storm City Games   0.00
## 1476      Wii                       Storm City Games   0.00
## 1477       PC                         Strategy First   0.00
## 1478      3DS                                Success   0.08
## 1479       DS                                Success   0.08
## 1480       PS                                Success   0.00
## 1481      PS2                                Success   0.05
## 1482      PSP                                Success   0.01
## 1483     X360                                Success   0.00
## 1484      GBA                             Summitsoft   0.00
## 1485       PC                             Sunflowers   0.00
## 1486      PS2                    Sunrise Interactive   0.17
## 1487      3DS                                Sunsoft   0.02
## 1488      N64                                Sunsoft   0.00
## 1489       PS                                Sunsoft   0.00
## 1490      SAT                                Sunsoft   0.10
## 1491     SNES                                Sunsoft   0.05
## 1492      PS2                                 Sweets   0.05
## 1493      GBA                   Swing! Entertainment   0.00
## 1494       PS                   Swing! Entertainment   0.00
## 1495      PS2                   Swing! Entertainment   0.00
## 1496       XB                   Swing! Entertainment   0.00
## 1497       PS                                 Syscom   0.15
## 1498      PS3                               System 3   0.00
## 1499      PS4                               System 3   0.00
## 1500      PSV                               System 3   0.00
## 1501       DS               System 3 Arcade Software   0.00
## 1502      PS2               System 3 Arcade Software   0.00
## 1503      PS3               System 3 Arcade Software   0.00
## 1504      PSP               System 3 Arcade Software   0.00
## 1505      Wii               System 3 Arcade Software   0.00
## 1506      PSP                            System Soft   0.05
## 1507     SNES                               T&E Soft   0.12
## 1508     2600                                  Taito   0.00
## 1509       DS                                  Taito   0.06
## 1510      GBA                                  Taito   0.00
## 1511       GC                                  Taito   0.00
## 1512      N64                                  Taito   0.05
## 1513       PS                                  Taito   1.40
## 1514      PS2                                  Taito   0.09
## 1515      SAT                                  Taito   0.03
## 1516     SNES                                  Taito   0.49
## 1517      Wii                                  Taito   0.02
## 1518      GBA                                 Takara   0.00
## 1519      N64                                 Takara   0.05
## 1520       PS                                 Takara   1.12
## 1521      PS2                                 Takara   0.12
## 1522     SNES                                 Takara   1.85
## 1523      3DS                            Takara Tomy   0.27
## 1524       DS                            Takara Tomy   1.14
## 1525      PSP                            Takara Tomy   0.08
## 1526      Wii                            Takara Tomy   0.36
## 1527     X360                            Takara Tomy   0.00
## 1528      3DS                   Take-Two Interactive   0.00
## 1529       DS                   Take-Two Interactive   0.07
## 1530      GBA                   Take-Two Interactive   0.00
## 1531       GC                   Take-Two Interactive   0.00
## 1532      N64                   Take-Two Interactive   0.00
## 1533       PC                   Take-Two Interactive   0.00
## 1534       PS                   Take-Two Interactive   0.06
## 1535      PS2                   Take-Two Interactive   1.39
## 1536      PS3                   Take-Two Interactive   2.54
## 1537      PS4                   Take-Two Interactive   0.51
## 1538      PSP                   Take-Two Interactive   0.43
## 1539      PSV                   Take-Two Interactive   0.03
## 1540      Wii                   Take-Two Interactive   0.05
## 1541     WiiU                   Take-Two Interactive   0.00
## 1542     X360                   Take-Two Interactive   0.75
## 1543       XB                   Take-Two Interactive   0.00
## 1544     XOne                   Take-Two Interactive   0.00
## 1545      PSP                                 Takuyo   0.01
## 1546       PS                              TalonSoft   0.00
## 1547       DS                               TDK Core   0.25
## 1548      GBA                               TDK Core   0.00
## 1549       PS                               TDK Core   0.00
## 1550      GBA                         TDK Mediactive   0.00
## 1551       GC                         TDK Mediactive   0.00
## 1552       PS                         TDK Mediactive   0.00
## 1553      PS2                         TDK Mediactive   0.00
## 1554       XB                         TDK Mediactive   0.00
## 1555       PC                        Team17 Software   0.00
## 1556       NG              Technos Japan Corporation   0.02
## 1557       PS                             TechnoSoft   0.00
## 1558      3DS                             Tecmo Koei   0.48
## 1559       DS                             Tecmo Koei   1.07
## 1560      GBA                             Tecmo Koei   0.00
## 1561       GC                             Tecmo Koei   0.04
## 1562       PS                             Tecmo Koei   2.23
## 1563      PS2                             Tecmo Koei  10.30
## 1564      PS3                             Tecmo Koei   6.24
## 1565      PS4                             Tecmo Koei   1.03
## 1566      PSP                             Tecmo Koei   2.12
## 1567      PSV                             Tecmo Koei   1.91
## 1568      SAT                             Tecmo Koei   0.41
## 1569     SNES                             Tecmo Koei   2.67
## 1570      Wii                             Tecmo Koei   0.08
## 1571     WiiU                             Tecmo Koei   0.06
## 1572     X360                             Tecmo Koei   0.44
## 1573       XB                             Tecmo Koei   0.12
## 1574     XOne                             Tecmo Koei   0.01
## 1575       DS                              Telegames   0.00
## 1576      GBA                              Telegames   0.00
## 1577       PS                              Telegames   0.00
## 1578      PS3                         Telltale Games   0.00
## 1579      PS4                         Telltale Games   0.02
## 1580      PSV                         Telltale Games   0.01
## 1581      Wii                         Telltale Games   0.00
## 1582     X360                         Telltale Games   0.00
## 1583     XOne                         Telltale Games   0.00
## 1584       PS                                Telstar   0.00
## 1585      3DS                          Tetris Online   0.06
## 1586      PSP                                    TGL   0.01
## 1587      PSV                                    TGL   0.09
## 1588       DS                  The Adventure Company   0.00
## 1589      Wii                  The Adventure Company   0.00
## 1590       PS                   The Learning Company   0.00
## 1591      3DS                                    THQ   0.00
## 1592       DS                                    THQ   0.01
## 1593      GBA                                    THQ   0.19
## 1594       GC                                    THQ   0.00
## 1595      N64                                    THQ   0.10
## 1596       PC                                    THQ   0.00
## 1597       PS                                    THQ   1.41
## 1598      PS2                                    THQ   2.05
## 1599      PS3                                    THQ   0.55
## 1600      PSP                                    THQ   0.00
## 1601     SNES                                    THQ   0.49
## 1602      Wii                                    THQ   0.00
## 1603     WiiU                                    THQ   0.00
## 1604     X360                                    THQ   0.21
## 1605       XB                                    THQ   0.00
## 1606     2600                            Tigervision   0.00
## 1607       PS                Time Warner Interactive   0.00
## 1608      GBA                                  Titus   0.00
## 1609       GC                                  Titus   0.00
## 1610      N64                                  Titus   0.00
## 1611       PS                                  Titus   0.00
## 1612      PS2                                  Titus   0.00
## 1613     SNES                                  Titus   0.07
## 1614       XB                                  Titus   0.00
## 1615       DS                                 Tivola   0.00
## 1616     SNES                                   TOHO   0.11
## 1617       DS                                  Tommo   0.00
## 1618      Wii                                  Tommo   0.00
## 1619       DS                       Tomy Corporation   0.39
## 1620      GBA                       Tomy Corporation   0.00
## 1621       GC                       Tomy Corporation   0.96
## 1622       PS                       Tomy Corporation   0.77
## 1623      Wii                       Tomy Corporation   0.00
## 1624       PC                    TopWare Interactive   0.00
## 1625      PS3                    TopWare Interactive   0.00
## 1626      PS4                    TopWare Interactive   0.00
## 1627     X360                    TopWare Interactive   0.00
## 1628       DS                             Touchstone   0.00
## 1629       PC                             Touchstone   0.00
## 1630      PS3                             Touchstone   0.01
## 1631     X360                             Touchstone   0.01
## 1632      PS3                              Tradewest   0.00
## 1633      Wii                              Tradewest   0.00
## 1634     X360                              Tradewest   0.00
## 1635       PC                           Trion Worlds   0.00
## 1636      PS3                           Trion Worlds   0.00
## 1637     X360                           Trion Worlds   0.00
## 1638       PC                   Tripwire Interactive   0.00
## 1639      PS3                  Tru Blu Entertainment   0.00
## 1640      PS4                  Tru Blu Entertainment   0.00
## 1641     X360                  Tru Blu Entertainment   0.00
## 1642     XOne                  Tru Blu Entertainment   0.00
## 1643      PS2                               Tryfirst   0.03
## 1644       PS                                    TYO   0.00
## 1645      PSV                              Type-Moon   0.10
## 1646       PS                              U.S. Gold   0.00
## 1647      3DS                                Ubisoft   0.17
## 1648       DC                                Ubisoft   0.20
## 1649       DS                                Ubisoft   0.28
## 1650       GB                                Ubisoft   0.12
## 1651      GBA                                Ubisoft   0.25
## 1652       GC                                Ubisoft   0.00
## 1653      N64                                Ubisoft   0.00
## 1654       PC                                Ubisoft   0.00
## 1655       PS                                Ubisoft   0.12
## 1656      PS2                                Ubisoft   1.55
## 1657      PS3                                Ubisoft   2.16
## 1658      PS4                                Ubisoft   0.85
## 1659      PSP                                Ubisoft   0.59
## 1660      PSV                                Ubisoft   0.10
## 1661      Wii                                Ubisoft   0.27
## 1662     WiiU                                Ubisoft   0.08
## 1663     X360                                Ubisoft   0.72
## 1664       XB                                Ubisoft   0.03
## 1665     XOne                                Ubisoft   0.01
## 1666      3DS                         Ubisoft Annecy   0.17
## 1667      PS3                         Ubisoft Annecy   1.37
## 1668      PSP                         Ubisoft Annecy   0.62
## 1669     X360                         Ubisoft Annecy   0.12
## 1670       PS                            UEP Systems   0.20
## 1671      3DS                        UFO Interactive   0.00
## 1672       DS                        UFO Interactive   0.00
## 1673      Wii                        UFO Interactive   0.00
## 1674      PS4                      UIG Entertainment   0.00
## 1675     2600                            Ultravision   0.00
## 1676     2600                        Universal Gamex   0.00
## 1677      GBA                  Universal Interactive   0.00
## 1678       GC                  Universal Interactive   0.00
## 1679      PS2                  Universal Interactive   0.24
## 1680       XB                  Universal Interactive   0.00
## 1681     2600                                Unknown   0.00
## 1682      3DS                                Unknown   0.18
## 1683       DS                                Unknown   0.37
## 1684      GBA                                Unknown   0.56
## 1685       GC                                Unknown   0.26
## 1686      N64                                Unknown   0.00
## 1687       PC                                Unknown   0.00
## 1688       PS                                Unknown   0.00
## 1689      PS2                                Unknown   1.18
## 1690      PS3                                Unknown   0.33
## 1691      PS4                                Unknown   0.00
## 1692      PSP                                Unknown   2.18
## 1693      PSV                                Unknown   0.10
## 1694      Wii                                Unknown   0.81
## 1695     X360                                Unknown   0.09
## 1696       XB                                Unknown   0.00
## 1697     XOne                                Unknown   0.00
## 1698       DS                           Valcon Games   0.00
## 1699      PS2                           Valcon Games   0.00
## 1700      Wii                           Valcon Games   0.00
## 1701     X360                           Valcon Games   0.00
## 1702       DS                               ValuSoft   0.00
## 1703       PC                               ValuSoft   0.00
## 1704      PS2                               ValuSoft   0.00
## 1705      PS3                                  Valve   0.02
## 1706       PC                         Valve Software   0.00
## 1707     X360                         Valve Software   0.01
## 1708     SNES                                    Vap   0.05
## 1709      N64                  Vatical Entertainment   0.00
## 1710       PS                  Vatical Entertainment   0.00
## 1711      N64                              Vic Tokai   0.00
## 1712       PS                              Vic Tokai   0.00
## 1713       GB                     Victor Interactive   0.23
## 1714      GBA                     Victor Interactive   0.00
## 1715       PS                     Victor Interactive   0.22
## 1716      PS2                     Victor Interactive   0.10
## 1717      SAT                     Victor Interactive   0.02
## 1718     SNES                     Victor Interactive   0.11
## 1719      N64                           Video System   0.09
## 1720       PS                           Video System   0.00
## 1721     SNES                           Video System   0.28
## 1722      PS3                                  Views   0.01
## 1723      PSP                                  Views   0.02
## 1724       DS                          Vir2L Studios   0.00
## 1725      Wii                          Vir2L Studios   0.00
## 1726       DC                     Virgin Interactive   0.36
## 1727       GC                     Virgin Interactive   0.00
## 1728      GEN                     Virgin Interactive   0.03
## 1729      N64                     Virgin Interactive   0.07
## 1730       PC                     Virgin Interactive   0.00
## 1731       PS                     Virgin Interactive   6.40
## 1732      PS2                     Virgin Interactive   1.34
## 1733      SAT                     Virgin Interactive   0.66
## 1734     SNES                     Virgin Interactive   0.08
## 1735       XB                     Virgin Interactive   0.00
## 1736      Wii                     Virtual Play Games   0.00
## 1737       PC                                  Visco   0.00
## 1738       DS                          Vivendi Games   0.00
## 1739      GBA                          Vivendi Games   0.00
## 1740       GC                          Vivendi Games   0.06
## 1741       PC                          Vivendi Games   0.17
## 1742       PS                          Vivendi Games   0.00
## 1743      PS2                          Vivendi Games   0.00
## 1744      PS3                          Vivendi Games   0.00
## 1745      PSP                          Vivendi Games   0.00
## 1746      Wii                          Vivendi Games   0.00
## 1747     X360                          Vivendi Games   0.00
## 1748       XB                          Vivendi Games   0.00
## 1749      GBA                                Wanadoo   0.00
## 1750       GC                                Wanadoo   0.00
## 1751      PS2                                Wanadoo   0.06
## 1752       XB                                Wanadoo   0.00
## 1753       DC                                Warashi   0.02
## 1754       PC                          Wargaming.net   0.00
## 1755      3DS Warner Bros. Interactive Entertainment   0.17
## 1756       DS Warner Bros. Interactive Entertainment   0.02
## 1757       GC Warner Bros. Interactive Entertainment   0.00
## 1758       PC Warner Bros. Interactive Entertainment   0.00
## 1759      PS2 Warner Bros. Interactive Entertainment   0.00
## 1760      PS3 Warner Bros. Interactive Entertainment   0.36
## 1761      PS4 Warner Bros. Interactive Entertainment   0.33
## 1762      PSP Warner Bros. Interactive Entertainment   0.00
## 1763      PSV Warner Bros. Interactive Entertainment   0.00
## 1764      Wii Warner Bros. Interactive Entertainment   0.00
## 1765     WiiU Warner Bros. Interactive Entertainment   0.07
## 1766     X360 Warner Bros. Interactive Entertainment   0.07
## 1767     XOne Warner Bros. Interactive Entertainment   0.02
## 1768      SAT                                   Warp   0.07
## 1769      3DS                WayForward Technologies   0.00
## 1770       PC                       Westwood Studios   0.00
## 1771       DS                White Park Bay Software   0.00
## 1772     2600                     Wizard Video Games   0.00
## 1773      PS2                      Xicat Interactive   0.00
## 1774       XB                      Xicat Interactive   0.00
## 1775       PS                     Xing Entertainment   0.16
## 1776      PS2                                Xplosiv   0.00
## 1777      PSP                                Xplosiv   0.00
## 1778      Wii                                Xplosiv   0.00
## 1779      GBA                               XS Games   0.00
## 1780       PS                               XS Games   0.00
## 1781      PS2                               XS Games   0.00
## 1782      Wii                               XS Games   0.00
## 1783     X360                               XS Games   0.00
## 1784       XB                               XS Games   0.00
## 1785      3DS                            Xseed Games   0.21
## 1786      PS4                            Xseed Games   0.00
## 1787      PSV                            Xseed Games   0.16
## 1788      3DS                       Yacht Club Games   0.01
## 1789      PS4                       Yacht Club Games   0.00
## 1790     WiiU                       Yacht Club Games   0.00
## 1791      PS2                   Yamasa Entertainment   0.02
## 1792      PSP                   Yamasa Entertainment   0.02
## 1793      PS2                                   Yeti   0.09
## 1794      PS4                                   Yeti   0.02
## 1795      PSP                                   Yeti   0.12
## 1796     X360                                   Yeti   0.01
## 1797      PS2                                 Yuke's   0.05
## 1798      SAT                                Yumedia   0.06
## 1799      PSP                                 Zenrin   0.06
## 1800       DS                 Zoo Digital Publishing   0.00
## 1801      GBA                 Zoo Digital Publishing   0.00
## 1802       GC                 Zoo Digital Publishing   0.00
## 1803      PS2                 Zoo Digital Publishing   0.14
## 1804      Wii                 Zoo Digital Publishing   0.00
## 1805       XB                 Zoo Digital Publishing   0.00
## 1806       DS                              Zoo Games   0.00
## 1807      Wii                              Zoo Games   0.00
## 1808     X360                              Zoo Games   0.00
## 1809       DS                            Zushi Games   0.00
## 1810      PSP                            Zushi Games   0.01
## 1811      Wii                            Zushi Games   0.00
## 1812     X360                            Zushi Games   0.00
aggregate(JP_Sales,by=list(Year = Year,Genre = Genre),sum)
##     Year        Genre     x
## 1   1980       Action  0.00
## 2   1981       Action  0.00
## 3   1982       Action  0.00
## 4   1983       Action  0.00
## 5   1984       Action  0.83
## 6   1985       Action  1.44
## 7   1986       Action  5.31
## 8   1987       Action  0.00
## 9   1988       Action  0.42
## 10  1989       Action  0.31
## 11  1990       Action  1.01
## 12  1991       Action  2.06
## 13  1992       Action  0.54
## 14  1993       Action  0.92
## 15  1994       Action  0.84
## 16  1995       Action  1.26
## 17  1996       Action  2.62
## 18  1997       Action  1.90
## 19  1998       Action  5.55
## 20  1999       Action  2.90
## 21  2000       Action  3.74
## 22  2001       Action  5.99
## 23  2002       Action  5.10
## 24  2003       Action  4.19
## 25  2004       Action  4.82
## 26  2005       Action  6.32
## 27  2006       Action  5.77
## 28  2007       Action  6.13
## 29  2008       Action  6.00
## 30  2009       Action 11.96
## 31  2010       Action  8.58
## 32  2011       Action 10.82
## 33  2012       Action 12.30
## 34  2013       Action 10.88
## 35  2014       Action  6.50
## 36  2015       Action 15.85
## 37  2016       Action  5.79
## 38  2017       Action  0.01
## 39   N/A       Action  1.29
## 40  1983    Adventure  0.00
## 41  1987    Adventure  1.61
## 42  1991    Adventure  1.04
## 43  1992    Adventure  2.97
## 44  1993    Adventure  0.07
## 45  1994    Adventure  0.87
## 46  1995    Adventure  0.67
## 47  1996    Adventure  2.60
## 48  1997    Adventure  1.05
## 49  1998    Adventure  2.91
## 50  1999    Adventure  1.11
## 51  2000    Adventure  1.11
## 52  2001    Adventure  1.07
## 53  2002    Adventure  3.23
## 54  2003    Adventure  0.43
## 55  2004    Adventure  1.23
## 56  2005    Adventure  0.74
## 57  2006    Adventure  2.62
## 58  2007    Adventure  3.55
## 59  2008    Adventure  4.34
## 60  2009    Adventure  3.35
## 61  2010    Adventure  3.60
## 62  2011    Adventure  3.83
## 63  2012    Adventure  2.42
## 64  2013    Adventure  2.22
## 65  2014    Adventure  1.36
## 66  2015    Adventure  1.04
## 67  2016    Adventure  0.97
## 68   N/A    Adventure  0.06
## 69  1980     Fighting  0.00
## 70  1985     Fighting  1.05
## 71  1987     Fighting  1.87
## 72  1991     Fighting  0.39
## 73  1992     Fighting  5.75
## 74  1993     Fighting  6.11
## 75  1994     Fighting  4.44
## 76  1995     Fighting  7.05
## 77  1996     Fighting  6.12
## 78  1997     Fighting  2.60
## 79  1998     Fighting  4.18
## 80  1999     Fighting  2.83
## 81  2000     Fighting  3.05
## 82  2001     Fighting  2.73
## 83  2002     Fighting  3.14
## 84  2003     Fighting  2.95
## 85  2004     Fighting  1.34
## 86  2005     Fighting  3.07
## 87  2006     Fighting  2.82
## 88  2007     Fighting  2.73
## 89  2008     Fighting  6.15
## 90  2009     Fighting  3.02
## 91  2010     Fighting  1.52
## 92  2011     Fighting  2.94
## 93  2012     Fighting  1.79
## 94  2013     Fighting  1.28
## 95  2014     Fighting  4.80
## 96  2015     Fighting  0.79
## 97  2016     Fighting  0.64
## 98   N/A     Fighting  0.20
## 99  1980         Misc  0.00
## 100 1982         Misc  0.00
## 101 1983         Misc  2.13
## 102 1984         Misc  1.45
## 103 1989         Misc  1.28
## 104 1991         Misc  0.08
## 105 1992         Misc  1.81
## 106 1993         Misc  0.30
## 107 1994         Misc  0.46
## 108 1995         Misc  2.43
## 109 1996         Misc  3.47
## 110 1997         Misc  0.98
## 111 1998         Misc  2.88
## 112 1999         Misc  4.32
## 113 2000         Misc  2.77
## 114 2001         Misc  1.26
## 115 2002         Misc  2.90
## 116 2003         Misc  3.58
## 117 2004         Misc  2.43
## 118 2005         Misc  7.96
## 119 2006         Misc 15.74
## 120 2007         Misc 11.46
## 121 2008         Misc  7.24
## 122 2009         Misc  5.80
## 123 2010         Misc  6.69
## 124 2011         Misc  4.74
## 125 2012         Misc  3.66
## 126 2013         Misc  3.58
## 127 2014         Misc  2.36
## 128 2015         Misc  2.10
## 129 2016         Misc  0.81
## 130  N/A         Misc  1.09
## 131 1981     Platform  0.00
## 132 1982     Platform  0.00
## 133 1983     Platform  3.62
## 134 1984     Platform  0.69
## 135 1985     Platform  8.67
## 136 1986     Platform  8.11
## 137 1987     Platform  0.69
## 138 1988     Platform  5.70
## 139 1989     Platform  4.97
## 140 1990     Platform  4.28
## 141 1991     Platform  1.91
## 142 1992     Platform  2.79
## 143 1993     Platform  5.21
## 144 1994     Platform  7.02
## 145 1995     Platform  6.36
## 146 1996     Platform  6.76
## 147 1997     Platform  3.71
## 148 1998     Platform  3.29
## 149 1999     Platform  1.66
## 150 2000     Platform  2.56
## 151 2001     Platform  3.54
## 152 2002     Platform  4.52
## 153 2003     Platform  2.22
## 154 2004     Platform  6.11
## 155 2005     Platform  1.12
## 156 2006     Platform  9.21
## 157 2007     Platform  2.98
## 158 2008     Platform  2.36
## 159 2009     Platform  4.84
## 160 2010     Platform  3.68
## 161 2011     Platform  3.49
## 162 2012     Platform  3.84
## 163 2013     Platform  2.08
## 164 2014     Platform  1.26
## 165 2015     Platform  1.29
## 166 2016     Platform  0.11
## 167  N/A     Platform  0.12
## 168 1981       Puzzle  0.00
## 169 1982       Puzzle  0.00
## 170 1983       Puzzle  0.00
## 171 1984       Puzzle  2.23
## 172 1985       Puzzle  1.66
## 173 1988       Puzzle  1.81
## 174 1989       Puzzle  6.77
## 175 1990       Puzzle  1.93
## 176 1991       Puzzle  2.11
## 177 1992       Puzzle  2.68
## 178 1993       Puzzle  2.39
## 179 1994       Puzzle  1.53
## 180 1995       Puzzle  2.34
## 181 1996       Puzzle  1.36
## 182 1997       Puzzle  3.83
## 183 1998       Puzzle  1.84
## 184 1999       Puzzle  0.02
## 185 2000       Puzzle  0.98
## 186 2001       Puzzle  0.70
## 187 2002       Puzzle  0.17
## 188 2003       Puzzle  1.14
## 189 2004       Puzzle  2.55
## 190 2005       Puzzle  6.21
## 191 2006       Puzzle  3.40
## 192 2007       Puzzle  3.06
## 193 2008       Puzzle  0.92
## 194 2009       Puzzle  1.65
## 195 2010       Puzzle  0.49
## 196 2011       Puzzle  0.77
## 197 2012       Puzzle  0.96
## 198 2013       Puzzle  0.25
## 199 2014       Puzzle  0.41
## 200 2015       Puzzle  0.52
## 201  N/A       Puzzle  0.63
## 202 1981       Racing  0.00
## 203 1982       Racing  0.00
## 204 1984       Racing  3.09
## 205 1986       Racing  0.41
## 206 1988       Racing  0.19
## 207 1990       Racing  1.48
## 208 1991       Racing  0.15
## 209 1992       Racing  4.09
## 210 1993       Racing  0.36
## 211 1994       Racing  2.13
## 212 1995       Racing  1.95
## 213 1996       Racing  5.30
## 214 1997       Racing  4.09
## 215 1998       Racing  2.30
## 216 1999       Racing  3.35
## 217 2000       Racing  1.15
## 218 2001       Racing  4.00
## 219 2002       Racing  0.20
## 220 2003       Racing  2.83
## 221 2004       Racing  1.99
## 222 2005       Racing  4.38
## 223 2006       Racing  0.87
## 224 2007       Racing  0.94
## 225 2008       Racing  4.21
## 226 2009       Racing  0.50
## 227 2010       Racing  1.04
## 228 2011       Racing  3.12
## 229 2012       Racing  0.20
## 230 2013       Racing  0.54
## 231 2014       Racing  1.46
## 232 2015       Racing  0.28
## 233 2016       Racing  0.01
## 234  N/A       Racing  0.08
## 235 1986 Role-Playing  0.52
## 236 1987 Role-Playing  4.18
## 237 1988 Role-Playing  5.78
## 238 1989 Role-Playing  2.20
## 239 1990 Role-Playing  4.42
## 240 1991 Role-Playing  2.81
## 241 1992 Role-Playing  6.83
## 242 1993 Role-Playing  5.25
## 243 1994 Role-Playing  6.23
## 244 1995 Role-Playing 13.09
## 245 1996 Role-Playing 18.78
## 246 1997 Role-Playing 11.56
## 247 1998 Role-Playing 11.33
## 248 1999 Role-Playing 18.70
## 249 2000 Role-Playing 15.80
## 250 2001 Role-Playing  9.55
## 251 2002 Role-Playing 13.64
## 252 2003 Role-Playing  9.63
## 253 2004 Role-Playing 13.49
## 254 2005 Role-Playing  9.22
## 255 2006 Role-Playing 19.83
## 256 2007 Role-Playing 12.43
## 257 2008 Role-Playing 17.51
## 258 2009 Role-Playing 17.07
## 259 2010 Role-Playing 23.67
## 260 2011 Role-Playing 14.43
## 261 2012 Role-Playing 14.39
## 262 2013 Role-Playing 19.86
## 263 2014 Role-Playing 17.71
## 264 2015 Role-Playing  6.71
## 265 2016 Role-Playing  3.63
## 266 2017 Role-Playing  0.04
## 267  N/A Role-Playing  2.02
## 268 1980      Shooter  0.00
## 269 1981      Shooter  0.00
## 270 1982      Shooter  0.00
## 271 1983      Shooter  0.00
## 272 1984      Shooter  1.96
## 273 1985      Shooter  0.21
## 274 1986      Shooter  2.77
## 275 1987      Shooter  0.00
## 276 1988      Shooter  0.00
## 277 1989      Shooter  0.36
## 278 1991      Shooter  0.50
## 279 1992      Shooter  0.26
## 280 1993      Shooter  0.89
## 281 1994      Shooter  1.67
## 282 1995      Shooter  2.85
## 283 1996      Shooter  1.11
## 284 1997      Shooter  2.17
## 285 1998      Shooter  0.36
## 286 1999      Shooter  0.29
## 287 2000      Shooter  0.20
## 288 2001      Shooter  0.53
## 289 2002      Shooter  1.02
## 290 2003      Shooter  0.21
## 291 2004      Shooter  0.65
## 292 2005      Shooter  1.32
## 293 2006      Shooter  1.89
## 294 2007      Shooter  1.53
## 295 2008      Shooter  0.77
## 296 2009      Shooter  1.12
## 297 2010      Shooter  2.12
## 298 2011      Shooter  2.69
## 299 2012      Shooter  2.62
## 300 2013      Shooter  1.73
## 301 2014      Shooter  1.08
## 302 2015      Shooter  2.69
## 303 2016      Shooter  0.61
## 304  N/A      Shooter  0.10
## 305 1981   Simulation  0.00
## 306 1985   Simulation  0.00
## 307 1988   Simulation  0.00
## 308 1990   Simulation  0.48
## 309 1991   Simulation  0.91
## 310 1992   Simulation  0.00
## 311 1993   Simulation  0.19
## 312 1994   Simulation  2.10
## 313 1995   Simulation  2.03
## 314 1996   Simulation  2.38
## 315 1997   Simulation  5.91
## 316 1998   Simulation  3.36
## 317 1999   Simulation  6.12
## 318 2000   Simulation  1.27
## 319 2001   Simulation  3.77
## 320 2002   Simulation  0.75
## 321 2003   Simulation  1.46
## 322 2004   Simulation  0.58
## 323 2005   Simulation  9.02
## 324 2006   Simulation  2.38
## 325 2007   Simulation  3.02
## 326 2008   Simulation  3.66
## 327 2009   Simulation  0.95
## 328 2010   Simulation  1.66
## 329 2011   Simulation  1.23
## 330 2012   Simulation  5.86
## 331 2013   Simulation  2.20
## 332 2014   Simulation  0.37
## 333 2015   Simulation  1.58
## 334 2016   Simulation  0.30
## 335 2020   Simulation  0.00
## 336  N/A   Simulation  0.16
## 337 1980       Sports  0.00
## 338 1981       Sports  0.00
## 339 1982       Sports  0.00
## 340 1983       Sports  2.35
## 341 1984       Sports  4.02
## 342 1985       Sports  1.53
## 343 1986       Sports  2.69
## 344 1987       Sports  3.28
## 345 1988       Sports  1.86
## 346 1989       Sports  2.47
## 347 1990       Sports  1.28
## 348 1991       Sports  1.88
## 349 1992       Sports  0.90
## 350 1993       Sports  3.13
## 351 1994       Sports  5.23
## 352 1995       Sports  3.87
## 353 1996       Sports  5.08
## 354 1997       Sports  7.59
## 355 1998       Sports  5.06
## 356 1999       Sports  6.83
## 357 2000       Sports  6.36
## 358 2001       Sports  3.90
## 359 2002       Sports  4.69
## 360 2003       Sports  4.00
## 361 2004       Sports  4.42
## 362 2005       Sports  3.54
## 363 2006       Sports  8.69
## 364 2007       Sports  9.59
## 365 2008       Sports  5.37
## 366 2009       Sports  9.81
## 367 2010       Sports  4.42
## 368 2011       Sports  3.08
## 369 2012       Sports  2.59
## 370 2013       Sports  2.15
## 371 2014       Sports  1.60
## 372 2015       Sports  0.72
## 373 2016       Sports  0.78
## 374  N/A       Sports  0.61
## 375 1991     Strategy  0.94
## 376 1992     Strategy  0.29
## 377 1993     Strategy  0.51
## 378 1994     Strategy  1.47
## 379 1995     Strategy  1.85
## 380 1996     Strategy  1.86
## 381 1997     Strategy  3.48
## 382 1998     Strategy  6.98
## 383 1999     Strategy  4.21
## 384 2000     Strategy  3.78
## 385 2001     Strategy  2.82
## 386 2002     Strategy  2.40
## 387 2003     Strategy  1.56
## 388 2004     Strategy  2.04
## 389 2005     Strategy  1.38
## 390 2006     Strategy  0.51
## 391 2007     Strategy  2.87
## 392 2008     Strategy  1.73
## 393 2009     Strategy  1.82
## 394 2010     Strategy  2.02
## 395 2011     Strategy  1.90
## 396 2012     Strategy  1.11
## 397 2013     Strategy  0.82
## 398 2014     Strategy  0.55
## 399 2015     Strategy  0.15
## 400 2016     Strategy  0.05
## 401  N/A     Strategy  0.36
aggregate(JP_Sales,by=list(Year = Year,Publisher = Publisher),sum)
##      Year                              Publisher     x
## 1    2006                        10TACLE Studios  0.00
## 2    2007                        10TACLE Studios  0.00
## 3    2009                             1C Company  0.00
## 4    2011                             1C Company  0.00
## 5    1981           20th Century Fox Video Games  0.00
## 6    1982           20th Century Fox Video Games  0.00
## 7    2008                                 2D Boy  0.00
## 8    1998                                    3DO  0.00
## 9    1999                                    3DO  0.00
## 10   2000                                    3DO  0.00
## 11   2001                                    3DO  0.00
## 12   2002                                    3DO  0.00
## 13   2003                                    3DO  0.00
## 14   2009                                49Games  0.00
## 15   2002                              505 Games  0.25
## 16   2003                              505 Games  0.00
## 17   2004                              505 Games  0.00
## 18   2005                              505 Games  0.08
## 19   2006                              505 Games  0.55
## 20   2007                              505 Games  0.49
## 21   2008                              505 Games  0.18
## 22   2009                              505 Games  0.21
## 23   2010                              505 Games  0.01
## 24   2011                              505 Games  0.06
## 25   2012                              505 Games  0.08
## 26   2013                              505 Games  0.09
## 27   2014                              505 Games  0.01
## 28   2015                              505 Games  0.00
## 29   2016                              505 Games  0.04
## 30   2008                                    5pb  0.10
## 31   2009                                    5pb  0.18
## 32   2010                                    5pb  0.29
## 33   2011                                    5pb  0.25
## 34   2012                                    5pb  0.26
## 35   2013                                    5pb  0.14
## 36   2014                                    5pb  0.13
## 37   2015                                    5pb  0.22
## 38   2016                                    5pb  0.04
## 39   2010                               7G//AMES  0.00
## 40   2011                               7G//AMES  0.00
## 41   1999                             989 Sports  0.00
## 42   1997                            989 Studios  0.00
## 43   1998                            989 Studios  0.10
## 44   1999                            989 Studios  0.00
## 45   2010                               Abylight  0.00
## 46   1993                  Acclaim Entertainment  0.00
## 47   1994                  Acclaim Entertainment  0.25
## 48   1995                  Acclaim Entertainment  0.41
## 49   1996                  Acclaim Entertainment  0.17
## 50   1997                  Acclaim Entertainment  0.09
## 51   1998                  Acclaim Entertainment  0.00
## 52   1999                  Acclaim Entertainment  0.00
## 53   2000                  Acclaim Entertainment  0.14
## 54   2001                  Acclaim Entertainment  0.08
## 55   2002                  Acclaim Entertainment  0.00
## 56   2003                  Acclaim Entertainment  0.00
## 57   2004                  Acclaim Entertainment  0.00
## 58   1996                               Accolade  0.00
## 59   1997                               Accolade  0.00
## 60   1999                               Accolade  0.00
## 61   2009                            Ackkstudios  0.00
## 62   2010                            Ackkstudios  0.00
## 63   2011                            Ackkstudios  0.41
## 64   2012                            Ackkstudios  0.25
## 65   2006                                Acquire  0.05
## 66   2008                                Acquire  0.08
## 67   2009                                Acquire  0.08
## 68   2010                                Acquire  0.22
## 69   2011                                Acquire  0.30
## 70   2012                                Acquire  0.17
## 71   2014                                Acquire  0.01
## 72   1980                             Activision  0.00
## 73   1981                             Activision  0.00
## 74   1982                             Activision  0.00
## 75   1983                             Activision  0.00
## 76   1984                             Activision  0.00
## 77   1985                             Activision  0.00
## 78   1987                             Activision  0.00
## 79   1988                             Activision  0.00
## 80   1989                             Activision  0.00
## 81   1994                             Activision  0.00
## 82   1995                             Activision  0.00
## 83   1996                             Activision  0.00
## 84   1997                             Activision  0.32
## 85   1998                             Activision  0.00
## 86   1999                             Activision  0.12
## 87   2000                             Activision  0.05
## 88   2001                             Activision  0.17
## 89   2002                             Activision  0.12
## 90   2003                             Activision  0.28
## 91   2004                             Activision  0.11
## 92   2005                             Activision  0.11
## 93   2006                             Activision  0.06
## 94   2007                             Activision  0.50
## 95   2008                             Activision  0.05
## 96   2009                             Activision  0.46
## 97   2010                             Activision  0.78
## 98   2011                             Activision  0.62
## 99   2012                             Activision  0.79
## 100  2013                             Activision  0.63
## 101  2014                             Activision  0.74
## 102  2015                             Activision  0.49
## 103  2016                             Activision  0.14
## 104   N/A                             Activision  0.00
## 105  2014                    Activision Blizzard  0.00
## 106  2001                       Activision Value  0.00
## 107  2002                       Activision Value  0.00
## 108  2003                       Activision Value  0.00
## 109  2004                       Activision Value  0.00
## 110  2005                       Activision Value  0.00
## 111  2006                       Activision Value  0.00
## 112  2007                       Activision Value  0.00
## 113  2008                       Activision Value  0.00
## 114  2009                       Activision Value  0.00
## 115  1996                       Adeline Software  0.00
## 116  2010                               Aerosoft  0.00
## 117  2013                               Aerosoft  0.00
## 118  2004                 Agatsuma Entertainment  0.00
## 119  2012                 Agatsuma Entertainment  0.03
## 120  2013                 Agatsuma Entertainment  0.03
## 121  1997                                 Agetec  0.00
## 122  1998                                 Agetec  0.07
## 123  2002                                 Agetec  0.15
## 124  2003                                 Agetec  0.16
## 125  2009                                 Agetec  0.00
## 126  2008                            Aksys Games  0.00
## 127  2014                            Aksys Games  0.04
## 128  2015                            Aksys Games  0.11
## 129  2016                            Aksys Games  0.03
## 130  2009                   Alawar Entertainment  0.00
## 131  2015                   Alawar Entertainment  0.00
## 132  2006                              Alchemist  0.03
## 133  2007                              Alchemist  0.19
## 134  2008                              Alchemist  0.30
## 135  2009                              Alchemist  0.08
## 136  2010                              Alchemist  0.26
## 137  2011                              Alchemist  0.22
## 138  2012                              Alchemist  0.13
## 139  2013                              Alchemist  0.13
## 140  2015                              Alchemist  0.08
## 141  2010                   Alternative Software  0.00
## 142  2015                   Alternative Software  0.00
## 143  2016                   Alternative Software  0.00
## 144  2001                                 Altron  0.00
## 145  2009                                 Alvion  0.02
## 146  2010                                 Alvion  0.02
## 147  1996                     American Softworks  0.00
## 148  1991                          Angel Studios  0.29
## 149  1994                          Angel Studios  0.12
## 150  1995                          Angel Studios  0.03
## 151  1982                        Answer Software  0.00
## 152  2007                         AQ Interactive  0.04
## 153  2008                         AQ Interactive  0.00
## 154  2009                         AQ Interactive  0.07
## 155  1999                              Aqua Plus  0.13
## 156  2006                              Aqua Plus  0.11
## 157  2007                              Aqua Plus  0.01
## 158  2008                              Aqua Plus  0.08
## 159  2009                              Aqua Plus  0.11
## 160  2010                              Aqua Plus  0.06
## 161  2011                              Aqua Plus  0.17
## 162  2012                              Aqua Plus  0.09
## 163  2013                              Aqua Plus  0.10
## 164  2015                              Aqua Plus  0.23
## 165  2016                              Aqua Plus  0.10
## 166  1997                                  Aques  0.15
## 167  2008                       Arc System Works  0.06
## 168  2009                       Arc System Works  0.02
## 169  2010                       Arc System Works  0.05
## 170  2012                       Arc System Works  0.03
## 171  2013                       Arc System Works  0.21
## 172  2014                       Arc System Works  0.16
## 173  2015                       Arc System Works  0.04
## 174  1992                    Arena Entertainment  0.00
## 175  2006                                   Aria  0.07
## 176  2002                                  Arika  0.00
## 177  2004                                  Arika  0.00
## 178  2008                                  Arika  0.02
## 179  1994                                ArtDink  0.24
## 180  1996                                ArtDink  0.09
## 181  1998                                ArtDink  0.09
## 182  2001                                ArtDink  0.05
## 183  2009                                ArtDink  0.04
## 184  2010                                ArtDink  0.02
## 185  2014                                ArtDink  0.06
## 186  1999                             Aruze Corp  0.50
## 187  2000                             Aruze Corp  0.59
## 188  1996                              ASC Games  0.00
## 189  1998                              ASC Games  0.00
## 190  1999                              ASC Games  0.00
## 191  2012                  Ascaron Entertainment  0.00
## 192  2004             Ascaron Entertainment GmbH  0.00
## 193  2008             Ascaron Entertainment GmbH  0.00
## 194  1994                    ASCII Entertainment  0.87
## 195  1995                    ASCII Entertainment  1.25
## 196  1996                    ASCII Entertainment  2.71
## 197  1997                    ASCII Entertainment  2.79
## 198  1998                    ASCII Entertainment  0.08
## 199  1999                    ASCII Entertainment  1.38
## 200  2001                    ASCII Entertainment  0.32
## 201  2008                      ASCII Media Works  0.06
## 202  2009                      ASCII Media Works  0.07
## 203  2010                      ASCII Media Works  0.12
## 204  2011                      ASCII Media Works  0.01
## 205  2014                      ASCII Media Works  0.01
## 206  2010                                 Asgard  0.14
## 207  2011                                 Asgard  0.03
## 208  2012                                 Asgard  0.01
## 209  2013                                 Asgard  0.05
## 210  2015                                 Asgard  0.02
## 211  1996                                    ASK  0.03
## 212  1996                Asmik Ace Entertainment  0.09
## 213  2000                Asmik Ace Entertainment  0.09
## 214  2006                Asmik Ace Entertainment  0.04
## 215  1994                             Asmik Corp  0.07
## 216  1995                             Asmik Corp  0.10
## 217  2003                                  Aspyr  0.00
## 218  2007                                  Aspyr  0.00
## 219  2008                                  Aspyr  0.00
## 220  2009                                  Aspyr  0.00
## 221  2009                               Astragon  0.00
## 222  2010                               Astragon  0.00
## 223  2011                               Astragon  0.00
## 224  2016                               Astragon  0.00
## 225  2010                   Asylum Entertainment  0.00
## 226  2011                   Asylum Entertainment  0.00
## 227  1980                                  Atari  0.00
## 228  1981                                  Atari  0.00
## 229  1982                                  Atari  0.00
## 230  1983                                  Atari  0.00
## 231  1986                                  Atari  0.00
## 232  1987                                  Atari  0.00
## 233  1989                                  Atari  0.00
## 234  1998                                  Atari  0.00
## 235  1999                                  Atari  0.00
## 236  2000                                  Atari  0.02
## 237  2001                                  Atari  1.49
## 238  2002                                  Atari  1.90
## 239  2003                                  Atari  0.95
## 240  2004                                  Atari  0.65
## 241  2005                                  Atari  2.34
## 242  2006                                  Atari  0.46
## 243  2007                                  Atari  1.90
## 244  2008                                  Atari  0.99
## 245  2009                                  Atari  0.00
## 246  2010                                  Atari  0.00
## 247  2011                                  Atari  0.00
## 248  2012                                  Atari  0.00
## 249  2016                                  Atari  0.00
## 250   N/A                                  Atari  0.01
## 251  1999                                 Athena  0.00
## 252  2001                                 Athena  0.07
## 253  1994                                  Atlus  0.45
## 254  1995                                  Atlus  1.08
## 255  1996                                  Atlus  0.05
## 256  1997                                  Atlus  0.31
## 257  1998                                  Atlus  0.00
## 258  1999                                  Atlus  0.14
## 259  2000                                  Atlus  0.28
## 260  2001                                  Atlus  0.09
## 261  2002                                  Atlus  0.05
## 262  2003                                  Atlus  0.00
## 263  2004                                  Atlus  0.00
## 264  2006                                  Atlus  0.05
## 265  2007                                  Atlus  0.05
## 266  2008                                  Atlus  0.69
## 267  2009                                  Atlus  0.49
## 268  2010                                  Atlus  0.36
## 269  2011                                  Atlus  0.29
## 270  2012                                  Atlus  1.04
## 271  2013                                  Atlus  0.41
## 272  2014                                  Atlus  0.28
## 273  2015                                  Atlus  0.16
## 274  2016                                  Atlus  0.46
## 275  1982                     Avalon Interactive  0.00
## 276  1999                     Avalon Interactive  0.00
## 277  2002                     Avalon Interactive  0.00
## 278  2003                     Avalon Interactive  0.00
## 279  2004                     Avalon Interactive  0.00
## 280  2007                              Avanquest  0.00
## 281  2008                              Avanquest  0.00
## 282  2009                              Avanquest  0.00
## 283  2010                              Avanquest  0.00
## 284  2011                              Avanquest  0.00
## 285  2016                              Avanquest  0.00
## 286   N/A                              Avanquest  0.00
## 287  2012                     Avanquest Software  0.03
## 288  2013                     Avanquest Software  0.00
## 289  2015                     Avanquest Software  0.00
## 290  1998                                  Axela  0.24
## 291  2000                     BAM! Entertainment  0.00
## 292  2001                     BAM! Entertainment  0.00
## 293  2002                     BAM! Entertainment  0.03
## 294  2003                     BAM! Entertainment  0.00
## 295  2004                     BAM! Entertainment  0.00
## 296  1991                              Banpresto  0.51
## 297  1992                              Banpresto  0.16
## 298  1993                              Banpresto  1.69
## 299  1994                              Banpresto  0.62
## 300  1995                              Banpresto  0.75
## 301  1996                              Banpresto  1.00
## 302  1997                              Banpresto  0.85
## 303  1998                              Banpresto  0.66
## 304  1999                              Banpresto  0.70
## 305  2000                              Banpresto  0.75
## 306  2001                              Banpresto  1.32
## 307  2002                              Banpresto  0.93
## 308  2003                              Banpresto  1.26
## 309  2004                              Banpresto  0.76
## 310  2005                              Banpresto  1.32
## 311  2006                              Banpresto  0.61
## 312  2007                              Banpresto  1.51
## 313  2008                              Banpresto  0.33
## 314  2009                              Banpresto  0.09
## 315  2011                              Banpresto  0.62
## 316  2007                                Benesse  0.18
## 317  2008                                Benesse  0.14
## 318  2001                               Berkeley  0.00
## 319  2002                     Bethesda Softworks  0.00
## 320  2003                     Bethesda Softworks  0.00
## 321  2004                     Bethesda Softworks  0.00
## 322  2005                     Bethesda Softworks  0.00
## 323  2006                     Bethesda Softworks  0.00
## 324  2007                     Bethesda Softworks  0.00
## 325  2008                     Bethesda Softworks  0.16
## 326  2009                     Bethesda Softworks  0.01
## 327  2010                     Bethesda Softworks  0.14
## 328  2011                     Bethesda Softworks  0.48
## 329  2012                     Bethesda Softworks  0.05
## 330  2014                     Bethesda Softworks  0.29
## 331  2015                     Bethesda Softworks  0.29
## 332  2016                     Bethesda Softworks  0.02
## 333   N/A                     Bethesda Softworks  0.01
## 334  2002                    Big Ben Interactive  0.00
## 335  2004                    Big Ben Interactive  0.00
## 336  2008                    Big Ben Interactive  0.00
## 337  2009                    Big Ben Interactive  0.00
## 338  2011                    Big Ben Interactive  0.00
## 339  2013                    Big Ben Interactive  0.00
## 340  2008                         Big Fish Games  0.00
## 341  2014                         Big Fish Games  0.00
## 342  2015                     Bigben Interactive  0.00
## 343  2009                      bitComposer Games  0.00
## 344  2011                      bitComposer Games  0.00
## 345  2005                       Black Bean Games  0.00
## 346  2007                       Black Bean Games  0.00
## 347  2008                       Black Bean Games  0.00
## 348  2009                       Black Bean Games  0.00
## 349  2010                       Black Bean Games  0.00
## 350  2011                       Black Bean Games  0.00
## 351   N/A                       Black Bean Games  0.01
## 352  2002                      Black Label Games  0.00
## 353  2007               Blast! Entertainment Ltd  0.00
## 354  2008               Blast! Entertainment Ltd  0.00
## 355  2009               Blast! Entertainment Ltd  0.00
## 356  2001                              Blue Byte  0.00
## 357  1996          BMG Interactive Entertainment  0.00
## 358  1997          BMG Interactive Entertainment  0.00
## 359  1998          BMG Interactive Entertainment  0.00
## 360  2013                    Bohemia Interactive  0.00
## 361  1982                                   Bomb  0.00
## 362  2013                               Boost On  0.01
## 363  1991                                    BPS  0.32
## 364  1994                                    BPS  0.20
## 365  2007                    Brash Entertainment  0.00
## 366  2008                    Brash Entertainment  0.00
## 367  2006                               Broccoli  0.03
## 368  2007                               Broccoli  0.07
## 369  2008                               Broccoli  0.03
## 370  2009                               Broccoli  0.04
## 371  2010                               Broccoli  0.02
## 372  2011                               Broccoli  0.25
## 373  2012                               Broccoli  0.10
## 374  2013                               Broccoli  0.26
## 375  2015                               Broccoli  0.10
## 376  2016                               Broccoli  0.06
## 377  2012                              BushiRoad  0.03
## 378  1985                                 Capcom  0.21
## 379  1986                                 Capcom  1.38
## 380  1987                                 Capcom  0.27
## 381  1988                                 Capcom  0.77
## 382  1989                                 Capcom  0.42
## 383  1990                                 Capcom  1.43
## 384  1991                                 Capcom  0.96
## 385  1992                                 Capcom  5.64
## 386  1993                                 Capcom  1.71
## 387  1994                                 Capcom  0.16
## 388  1996                                 Capcom  0.55
## 389  1997                                 Capcom  1.63
## 390  1998                                 Capcom  1.59
## 391  1999                                 Capcom  0.10
## 392  2000                                 Capcom  0.76
## 393  2001                                 Capcom  1.90
## 394  2002                                 Capcom  3.48
## 395  2003                                 Capcom  2.63
## 396  2004                                 Capcom  1.31
## 397  2005                                 Capcom  3.57
## 398  2006                                 Capcom  2.36
## 399  2007                                 Capcom  4.03
## 400  2008                                 Capcom  5.42
## 401  2009                                 Capcom  3.06
## 402  2010                                 Capcom  7.28
## 403  2011                                 Capcom  2.52
## 404  2012                                 Capcom  3.17
## 405  2013                                 Capcom  4.46
## 406  2014                                 Capcom  0.32
## 407  2015                                 Capcom  3.76
## 408  2016                                 Capcom  0.53
## 409   N/A                                 Capcom  0.70
## 410  2008                                   Cave  0.00
## 411  2009                                   Cave  0.03
## 412  2010                                   Cave  0.07
## 413  2011                                   Cave  0.05
## 414  2012                                   Cave  0.02
## 415  2013                                   Cave  0.01
## 416  1982                        CBS Electronics  0.00
## 417  2003                                    CCP  0.00
## 418  2005             CDV Software Entertainment  0.00
## 419  2008             CDV Software Entertainment  0.00
## 420  2009             CDV Software Entertainment  0.00
## 421  2011             CDV Software Entertainment  0.00
## 422  1992                               ChunSoft  0.16
## 423  1993                               ChunSoft  0.78
## 424  1994                               ChunSoft  0.81
## 425  1995                               ChunSoft  0.40
## 426  1996                               ChunSoft  0.27
## 427  1998                               ChunSoft  0.09
## 428  1999                               ChunSoft  0.16
## 429  2000                               ChunSoft  0.32
## 430  2002                               ChunSoft  0.36
## 431  2006                               ChunSoft  0.03
## 432  2009                               ChunSoft  0.03
## 433  2010                               ChunSoft  0.04
## 434  2011                               ChunSoft  0.10
## 435  2012                               ChunSoft  0.06
## 436  2008                       City Interactive  0.00
## 437  2009                       City Interactive  0.00
## 438  2010                       City Interactive  0.00
## 439  2011                       City Interactive  0.04
## 440  2013                       City Interactive  0.03
## 441  2014                       City Interactive  0.00
## 442   N/A                       City Interactive  0.00
## 443  2012       Cloud Imperium Games Corporation  0.00
## 444  1993                         Coconuts Japan  0.05
## 445  1996                         Coconuts Japan  0.00
## 446  1997                            Codemasters  0.02
## 447  1998                            Codemasters  0.15
## 448  1999                            Codemasters  0.00
## 449  2000                            Codemasters  0.02
## 450  2001                            Codemasters  0.00
## 451  2002                            Codemasters  0.02
## 452  2003                            Codemasters  0.01
## 453  2004                            Codemasters  0.00
## 454  2005                            Codemasters  0.01
## 455  2006                            Codemasters  0.00
## 456  2007                            Codemasters  0.01
## 457  2008                            Codemasters  0.04
## 458  2009                            Codemasters  0.07
## 459  2010                            Codemasters  0.09
## 460  2011                            Codemasters  0.23
## 461  2012                            Codemasters  0.05
## 462  2013                            Codemasters  0.04
## 463  2014                            Codemasters  0.03
## 464  2015                            Codemasters  0.03
## 465  2016                            Codemasters  0.01
## 466   N/A                            Codemasters  0.00
## 467  2008                     Codemasters Online  0.00
## 468  2007                      CokeM Interactive  0.00
## 469  1981                                 Coleco  0.00
## 470  1982                                 Coleco  0.00
## 471  2010                                Comfort  0.03
## 472  2011                                Comfort  0.08
## 473  2012                                Comfort  0.02
## 474  2013                                Comfort  0.02
## 475  2008                               Commseed  0.01
## 476  1995                                Compile  0.47
## 477  1996                                Compile  0.02
## 478  1997                                Compile  1.83
## 479  1998                                Compile  0.03
## 480  2008                          Compile Heart  0.01
## 481  2009                          Compile Heart  0.01
## 482  2010                          Compile Heart  0.06
## 483  2011                          Compile Heart  0.09
## 484  2012                          Compile Heart  0.13
## 485  2013                          Compile Heart  0.11
## 486  2014                          Compile Heart  0.23
## 487  2015                          Compile Heart  0.11
## 488  2016                          Compile Heart  0.02
## 489  2001               Conspiracy Entertainment  0.00
## 490  2002               Conspiracy Entertainment  0.00
## 491  2007               Conspiracy Entertainment  0.00
## 492  2008               Conspiracy Entertainment  0.00
## 493  2009               Conspiracy Entertainment  0.00
## 494  2010               Conspiracy Entertainment  0.00
## 495  1994                       Core Design Ltd.  0.00
## 496  1995                       Core Design Ltd.  0.00
## 497  1982                           CPG Products  0.00
## 498  1998                    Crave Entertainment  0.00
## 499  1999                    Crave Entertainment  0.00
## 500  2000                    Crave Entertainment  0.45
## 501  2002                    Crave Entertainment  0.00
## 502  2003                    Crave Entertainment  0.00
## 503  2004                    Crave Entertainment  0.00
## 504  2005                    Crave Entertainment  0.00
## 505  2006                    Crave Entertainment  0.00
## 506  2007                    Crave Entertainment  0.00
## 507  2008                    Crave Entertainment  0.00
## 508  2009                    Crave Entertainment  0.00
## 509  2010                    Crave Entertainment  0.00
## 510  2011                    Crave Entertainment  0.00
## 511  2008                          Creative Core  0.07
## 512  2009                          Creative Core  0.03
## 513  2008                            Crimson Cow  0.00
## 514  2011                            Crimson Cow  0.00
## 515  1995                       Crystal Dynamics  0.00
## 516  1996                       Crystal Dynamics  0.00
## 517  1996                                CTO SpA  0.00
## 518  1997                                CTO SpA  0.00
## 519  1991                          Culture Brain  0.20
## 520  1994                          Culture Brain  0.03
## 521  2008                          Culture Brain  0.02
## 522  2010                          Culture Brain  0.02
## 523  1998                     Culture Publishers  0.00
## 524  2007                             CyberFront  0.02
## 525  2008                             CyberFront  0.04
## 526  2009                             CyberFront  0.02
## 527  2010                             CyberFront  0.10
## 528  2011                             CyberFront  0.02
## 529  2012                             CyberFront  0.03
## 530  2013                             CyberFront  0.03
## 531  2015                                Cygames  0.03
## 532  1998                            D3Publisher  0.99
## 533  2000                            D3Publisher  0.00
## 534  2001                            D3Publisher  0.00
## 535  2005                            D3Publisher  0.13
## 536  2006                            D3Publisher  0.44
## 537  2007                            D3Publisher  0.41
## 538  2008                            D3Publisher  0.46
## 539  2009                            D3Publisher  0.33
## 540  2010                            D3Publisher  0.44
## 541  2011                            D3Publisher  0.43
## 542  2012                            D3Publisher  0.24
## 543  2013                            D3Publisher  0.41
## 544  2014                            D3Publisher  0.08
## 545  2015                            D3Publisher  0.21
## 546  2016                            D3Publisher  0.08
## 547   N/A                            D3Publisher  0.00
## 548  2009                               Daedalic  0.00
## 549  2010                               Daedalic  0.00
## 550  2012                               Daedalic  0.00
## 551  2012                 Daedalic Entertainment  0.00
## 552  2013                 Daedalic Entertainment  0.00
## 553  2006                                  Daito  0.23
## 554  1981                               Data Age  0.00
## 555  1982                               Data Age  0.00
## 556  2007                Data Design Interactive  0.00
## 557  2008                Data Design Interactive  0.00
## 558  2009                Data Design Interactive  0.00
## 559  1995                              Data East  0.04
## 560  1998                              Data East  0.11
## 561  2002                         Datam Polystar  0.02
## 562  2007                         Datam Polystar  0.01
## 563  2004                            Deep Silver  0.00
## 564  2005                            Deep Silver  0.00
## 565  2006                            Deep Silver  0.00
## 566  2007                            Deep Silver  0.00
## 567  2008                            Deep Silver  0.00
## 568  2009                            Deep Silver  0.12
## 569  2010                            Deep Silver  0.00
## 570  2011                            Deep Silver  0.38
## 571  2012                            Deep Silver  0.01
## 572  2013                            Deep Silver  0.27
## 573  2014                            Deep Silver  0.06
## 574  2015                            Deep Silver  0.04
## 575  2016                            Deep Silver  0.21
## 576   N/A                            Deep Silver  0.00
## 577  2001              Destination Software, Inc  0.00
## 578  2002              Destination Software, Inc  0.00
## 579  2003              Destination Software, Inc  0.00
## 580  2004              Destination Software, Inc  0.00
## 581  2005              Destination Software, Inc  0.00
## 582  2006              Destination Software, Inc  0.00
## 583  2007              Destination Software, Inc  0.00
## 584  2008              Destination Software, Inc  0.00
## 585  2007                              Destineer  0.00
## 586  2008                              Destineer  0.00
## 587  2009                              Destineer  0.00
## 588  2010                              Destineer  0.00
## 589  2011                              Destineer  0.00
## 590  2007                            Detn8 Games  0.00
## 591  2010                       Devolver Digital  0.00
## 592  2015                       Devolver Digital  0.00
## 593  2007                        DHM Interactive  0.00
## 594  2009                        DHM Interactive  0.00
## 595  2002                               DigiCube  0.06
## 596  1999             Disney Interactive Studios  0.00
## 597  2002             Disney Interactive Studios  0.00
## 598  2003             Disney Interactive Studios  0.00
## 599  2004             Disney Interactive Studios  0.00
## 600  2005             Disney Interactive Studios  0.00
## 601  2006             Disney Interactive Studios  0.00
## 602  2007             Disney Interactive Studios  0.02
## 603  2008             Disney Interactive Studios  0.02
## 604  2009             Disney Interactive Studios  0.18
## 605  2010             Disney Interactive Studios  0.23
## 606  2011             Disney Interactive Studios  0.06
## 607  2012             Disney Interactive Studios  0.05
## 608  2013             Disney Interactive Studios  0.00
## 609  2014             Disney Interactive Studios  0.00
## 610  2015             Disney Interactive Studios  0.00
## 611   N/A             Disney Interactive Studios  0.00
## 612  2008                                 Dorart  0.02
## 613  2010                                 Dorart  0.01
## 614  2015                        dramatic create  0.08
## 615  2016                        dramatic create  0.03
## 616  2001               DreamCatcher Interactive  0.00
## 617  2003               DreamCatcher Interactive  0.00
## 618  2004               DreamCatcher Interactive  0.00
## 619  2005               DreamCatcher Interactive  0.00
## 620  2006               DreamCatcher Interactive  0.00
## 621  2008               DreamCatcher Interactive  0.00
## 622  2009               DreamCatcher Interactive  0.00
## 623  2010               DreamCatcher Interactive  0.00
## 624  1998                 DreamWorks Interactive  0.00
## 625  2005                              DSI Games  0.00
## 626  2006                              DSI Games  0.00
## 627  2007                              DSI Games  0.00
## 628  2008                              DSI Games  0.00
## 629  2005                      DTP Entertainment  0.00
## 630  2007                      DTP Entertainment  0.00
## 631  2008                      DTP Entertainment  0.00
## 632  2009                      DTP Entertainment  0.01
## 633  2010                      DTP Entertainment  0.00
## 634  2011                      DTP Entertainment  0.01
## 635  2012                      DTP Entertainment  0.00
## 636   N/A                      DTP Entertainment  0.00
## 637  2016               Dusenberry Martin Racing  0.00
## 638  2012                               EA Games  0.00
## 639  2012                       Easy Interactive  0.00
## 640  2009                                  Ecole  0.06
## 641  2006                                   Edia  0.07
## 642  2009                                   Edia  0.02
## 643  1996                      Eidos Interactive  0.13
## 644  1997                      Eidos Interactive  0.32
## 645  1998                      Eidos Interactive  2.54
## 646  1999                      Eidos Interactive  1.54
## 647  2000                      Eidos Interactive  0.76
## 648  2001                      Eidos Interactive  0.17
## 649  2002                      Eidos Interactive  0.31
## 650  2003                      Eidos Interactive  0.00
## 651  2004                      Eidos Interactive  0.00
## 652  2005                      Eidos Interactive  0.01
## 653  2006                      Eidos Interactive  0.06
## 654  2007                      Eidos Interactive  0.11
## 655  2008                      Eidos Interactive  0.06
## 656  2009                      Eidos Interactive  0.10
## 657   N/A                      Eidos Interactive  0.00
## 658  1992                        Electronic Arts  0.00
## 659  1994                        Electronic Arts  0.21
## 660  1995                        Electronic Arts  0.00
## 661  1996                        Electronic Arts  0.25
## 662  1997                        Electronic Arts  0.53
## 663  1998                        Electronic Arts  0.07
## 664  1999                        Electronic Arts  0.00
## 665  2000                        Electronic Arts  1.23
## 666  2001                        Electronic Arts  0.47
## 667  2002                        Electronic Arts  0.93
## 668  2003                        Electronic Arts  2.38
## 669  2004                        Electronic Arts  1.31
## 670  2005                        Electronic Arts  0.36
## 671  2006                        Electronic Arts  0.34
## 672  2007                        Electronic Arts  0.65
## 673  2008                        Electronic Arts  0.78
## 674  2009                        Electronic Arts  0.45
## 675  2010                        Electronic Arts  0.62
## 676  2011                        Electronic Arts  0.95
## 677  2012                        Electronic Arts  0.58
## 678  2013                        Electronic Arts  0.80
## 679  2014                        Electronic Arts  0.36
## 680  2015                        Electronic Arts  0.62
## 681  2016                        Electronic Arts  0.09
## 682   N/A                        Electronic Arts  0.06
## 683  1996                 Electronic Arts Victor  0.00
## 684  1996                                    Elf  0.36
## 685  1997                                    Elf  0.28
## 686  1996                                  Elite  0.00
## 687  1996                     Empire Interactive  0.00
## 688  1998                     Empire Interactive  0.00
## 689  1999                     Empire Interactive  0.00
## 690  2000                     Empire Interactive  0.38
## 691  2001                     Empire Interactive  0.00
## 692  2002                     Empire Interactive  0.00
## 693  2003                     Empire Interactive  0.00
## 694  2004                     Empire Interactive  0.00
## 695  2005                     Empire Interactive  0.04
## 696  2006                     Empire Interactive  0.00
## 697  2007                     Empire Interactive  0.00
## 698  2008                     Empire Interactive  0.00
## 699   N/A                     Empire Interactive  0.00
## 700  2001                                 Encore  0.00
## 701  2003                                 Encore  0.00
## 702  2005                                 Encore  0.00
## 703  1987                       Enix Corporation  2.41
## 704  1988                       Enix Corporation  3.77
## 705  1990                       Enix Corporation  3.03
## 706  1992                       Enix Corporation  2.78
## 707  1993                       Enix Corporation  1.15
## 708  1994                       Enix Corporation  0.72
## 709  1995                       Enix Corporation  3.32
## 710  1996                       Enix Corporation  1.75
## 711  1999                       Enix Corporation  2.16
## 712  2000                       Enix Corporation  4.99
## 713  2001                       Enix Corporation  2.90
## 714  2002                       Enix Corporation  1.13
## 715  2003                       Enix Corporation  0.64
## 716  2004                       Enix Corporation  1.65
## 717  2009                      Enjoy Gaming ltd.  0.00
## 718  2001                             Enterbrain  0.41
## 719  2002                             Enterbrain  0.12
## 720  2004                             Enterbrain  0.55
## 721  2006                             Enterbrain  0.16
## 722  2007                             Enterbrain  0.01
## 723  2008                             Enterbrain  0.38
## 724  2009                             Enterbrain  0.13
## 725  2010                             Enterbrain  0.18
## 726  1999              EON Digital Entertainment  0.00
## 727  2016                             Epic Games  0.00
## 728  1991                                  Epoch  0.08
## 729  1992                                  Epoch  0.07
## 730  1993                                  Epoch  0.05
## 731  1995                                  Epoch  0.51
## 732  1996                                  Epoch  0.19
## 733  2000                                  Epoch  0.09
## 734  2007                                 Ertain  0.00
## 735  1997                                    ESP  0.42
## 736  1998                                    ESP  0.09
## 737  2002                                    ESP  0.03
## 738  2005                        Essential Games  0.17
## 739  2006                        Essential Games  0.05
## 740  1998                        Evolution Games  0.06
## 741  2004                          Evolved Games  0.00
## 742  2009                          Evolved Games  0.00
## 743  2011                          Evolved Games  0.00
## 744  2011                   Excalibur Publishing  0.00
## 745  2012                   Excalibur Publishing  0.00
## 746  2014                        Experience Inc.  0.01
## 747  2015                        Experience Inc.  0.04
## 748  2016                        Experience Inc.  0.01
## 749  2015            Extreme Entertainment Group  0.01
## 750  2007                     Falcom Corporation  0.07
## 751  2008                     Falcom Corporation  0.11
## 752  2009                     Falcom Corporation  0.13
## 753  2010                     Falcom Corporation  0.26
## 754  2011                     Falcom Corporation  0.20
## 755  2012                     Falcom Corporation  0.11
## 756  2013                     Falcom Corporation  0.03
## 757  2012                                 Fields  0.03
## 758  2005                       Flashpoint Games  0.00
## 759  2010                       Flashpoint Games  0.00
## 760  2007                            Flight-Plan  0.08
## 761  2009                            Flight-Plan  0.04
## 762  2006                 Focus Home Interactive  0.00
## 763  2007                 Focus Home Interactive  0.00
## 764  2008                 Focus Home Interactive  0.00
## 765  2009                 Focus Home Interactive  0.00
## 766  2010                 Focus Home Interactive  0.00
## 767  2011                 Focus Home Interactive  0.00
## 768  2012                 Focus Home Interactive  0.00
## 769  2013                 Focus Home Interactive  0.02
## 770  2014                 Focus Home Interactive  0.00
## 771  2015                 Focus Home Interactive  0.02
## 772  2016                 Focus Home Interactive  0.00
## 773   N/A                 Focus Home Interactive  0.00
## 774  2012                       Focus Multimedia  0.00
## 775  2015                       Focus Multimedia  0.00
## 776  2008                                 fonfun  0.02
## 777  2010                    Foreign Media Games  0.00
## 778  1998                              Fortyfive  0.06
## 779  1996                        Fox Interactive  0.00
## 780  1997                        Fox Interactive  0.00
## 781  1998                        Fox Interactive  0.00
## 782  1999                        Fox Interactive  0.00
## 783  2000                        Fox Interactive  0.00
## 784  1994                          From Software  0.08
## 785  1996                          From Software  0.11
## 786  1997                          From Software  0.15
## 787  1998                          From Software  0.14
## 788  1999                          From Software  0.13
## 789  2001                          From Software  0.04
## 790  2002                          From Software  0.06
## 791  2006                          From Software  0.01
## 792  2009                          From Software  0.12
## 793  2010                          From Software  0.03
## 794  2013                          From Software  0.12
## 795  1995                                   Fuji  0.03
## 796  2011                           Funbox Media  0.00
## 797  2012                           Funbox Media  0.00
## 798  2015                           Funbox Media  0.00
## 799  2010                                 Funcom  0.00
## 800  2012                                 Funcom  0.00
## 801  1996                                FunSoft  0.00
## 802  2006                                 Funsta  0.00
## 803  2007                                 Funsta  0.00
## 804   N/A                                 Funsta  0.00
## 805  2010                                  FuRyu  0.01
## 806  2011                                  FuRyu  0.15
## 807  2012                                  FuRyu  0.13
## 808  2013                                  FuRyu  0.22
## 809  2014                                  FuRyu  0.16
## 810  2015                                  FuRyu  0.37
## 811  2016                                  FuRyu  0.13
## 812  2015                      FuRyu Corporation  0.00
## 813  2009                                  G.Rev  0.01
## 814  2010                                  G.Rev  0.03
## 815  1996                                   Gaga  0.02
## 816  1998                 Gainax Network Systems  0.16
## 817  2007                                 Gakken  0.04
## 818  1994                              Game Arts  0.14
## 819  2003                           Game Factory  0.00
## 820  2004                           Game Factory  0.00
## 821  2005                           Game Factory  0.00
## 822  2006                           Game Factory  0.00
## 823  2007                           Game Factory  0.00
## 824  2008                           Game Factory  0.00
## 825  2010                           Game Factory  0.00
## 826  2007                              Game Life  0.00
## 827  2009                              Game Life  0.00
## 828  2008                             Gamebridge  0.22
## 829  2009                             Gamebridge  0.02
## 830  2008                               Gamecock  0.00
## 831  2007                               Gameloft  0.00
## 832  2010                 GameMill Entertainment  0.00
## 833  2011                 GameMill Entertainment  0.00
## 834  2012                 GameMill Entertainment  0.00
## 835  1998                                GameTek  0.00
## 836  2001                Gathering of Developers  0.00
## 837  2003                Gathering of Developers  0.00
## 838  2004                Gathering of Developers  0.00
## 839  1998                  General Entertainment  0.13
## 840  1999                                  Genki  0.17
## 841  2001                                  Genki  0.00
## 842  2003                                  Genki  0.21
## 843  2007                                  Genki  0.09
## 844  2012                                  Genki  0.05
## 845  2009                            Genterprise  0.01
## 846  2003                             Ghostlight  0.25
## 847  2004                             Ghostlight  0.00
## 848  2005                             Ghostlight  0.00
## 849  2006                             Ghostlight  0.06
## 850  2007                             Ghostlight  0.03
## 851  2008                             Ghostlight  0.00
## 852  2009                             Ghostlight  0.34
## 853  2010                             Ghostlight  0.00
## 854  2011                             Ghostlight  0.18
## 855   N/A                             Ghostlight  0.03
## 856  2014                                   Giga  0.02
## 857  2012                                 Giza10  0.02
## 858  1995                                  Glams  0.08
## 859  2006                 Global A Entertainment  0.00
## 860  2007                 Global A Entertainment  0.00
## 861  2008                 Global A Entertainment  0.01
## 862  2004                            Global Star  0.00
## 863  2005                            Global Star  0.00
## 864  2006                            Global Star  0.00
## 865  2006                            GN Software  0.01
## 866  2008                            GN Software  0.03
## 867  2010                            GN Software  0.01
## 868  2008                                    GOA  0.00
## 869  2002                           Gotham Games  0.00
## 870  2003                           Gotham Games  0.00
## 871  2004                           Gotham Games  0.00
## 872  2008                               Graffiti  0.00
## 873  2009                               Graffiti  0.00
## 874  2010                               Graffiti  0.00
## 875  2007                       Grand Prix Games  0.06
## 876  2005                 Graphsim Entertainment  0.00
## 877  1996                Gremlin Interactive Ltd  0.00
## 878  1997                Gremlin Interactive Ltd  0.00
## 879  1998                Gremlin Interactive Ltd  0.00
## 880  2010                  Griffin International  0.00
## 881  2005                           Groove Games  0.00
## 882  2006                           Groove Games  0.00
## 883  2008                                    GSP  0.00
## 884  2009                                    GSP  0.00
## 885  2010                                    GSP  0.00
## 886  2011                                    GSP  0.00
## 887  1995                         GT Interactive  0.00
## 888  1996                         GT Interactive  0.00
## 889  1997                         GT Interactive  0.00
## 890  1998                         GT Interactive  0.00
## 891  1999                         GT Interactive  0.02
## 892  2008                                 GungHo  0.17
## 893  2009                                 GungHo  0.04
## 894  2011                                 GungHo  0.05
## 895  2012                                 GungHo  0.17
## 896  2013                                 GungHo  1.55
## 897  2014                                 GungHo  0.00
## 898  2016                                 GungHo  0.20
## 899  1996                                   Gust  0.01
## 900  1997                                   Gust  0.23
## 901  2001                                   Gust  0.09
## 902  2002                                   Gust  0.07
## 903  2007                                   Gust  0.04
## 904  2008                                   Gust  0.05
## 905  2009                                   Gust  0.05
## 906  2010                                   Gust  0.03
## 907  2011                                   Gust  0.02
## 908  2012                                   Gust  0.19
## 909  2013                                   Gust  0.06
## 910  2007                              Hackberry  0.22
## 911  2008                              Hackberry  0.08
## 912  2010                              Hackberry  0.01
## 913  1989                         HAL Laboratory  0.00
## 914  2002                    Hamster Corporation  0.00
## 915  2006                    Hamster Corporation  0.02
## 916  2014                               Happinet  0.11
## 917  2015                               Happinet  0.03
## 918  2016                               Happinet  0.04
## 919  2015                 Harmonix Music Systems  0.00
## 920  1994                     Hasbro Interactive  0.00
## 921  1997                     Hasbro Interactive  0.00
## 922  1998                     Hasbro Interactive  0.00
## 923  1999                     Hasbro Interactive  0.00
## 924  2000                     Hasbro Interactive  0.00
## 925  2001                     Hasbro Interactive  0.00
## 926  2006                     Hasbro Interactive  0.00
## 927  2000                      Havas Interactive  0.00
## 928  2013                           Headup Games  0.00
## 929  1996                           Hearty Robin  0.08
## 930  1993                                   Hect  0.19
## 931  1994                                   Hect  0.27
## 932  1995                                   Hect  0.04
## 933  2016                            Hello Games  0.02
## 934  2011                        Her Interactive  0.00
## 935  2004                        Hip Interactive  0.00
## 936  2005                        Hip Interactive  0.00
## 937  2008                        HMH Interactive  0.00
## 938  2009                        HMH Interactive  0.00
## 939  2010           Home Entertainment Suppliers  0.00
## 940  2011           Home Entertainment Suppliers  0.00
## 941   N/A           Home Entertainment Suppliers  0.00
## 942  1997                   Hudson Entertainment  0.74
## 943  1998                   Hudson Entertainment  0.00
## 944  1999                   Hudson Entertainment  0.44
## 945  2001                   Hudson Entertainment  0.00
## 946  2003                   Hudson Entertainment  0.00
## 947  2006                   Hudson Entertainment  0.02
## 948  2007                   Hudson Entertainment  0.00
## 949  2008                   Hudson Entertainment  0.01
## 950  2009                   Hudson Entertainment  0.00
## 951  1984                            Hudson Soft  1.10
## 952  1985                            Hudson Soft  0.85
## 953  1986                            Hudson Soft  4.27
## 954  1991                            Hudson Soft  0.15
## 955  1992                            Hudson Soft  0.79
## 956  1993                            Hudson Soft  1.02
## 957  1994                            Hudson Soft  3.05
## 958  1995                            Hudson Soft  0.82
## 959  1996                            Hudson Soft  1.10
## 960  1997                            Hudson Soft  1.08
## 961  1998                            Hudson Soft  0.00
## 962  1999                            Hudson Soft  0.11
## 963  2000                            Hudson Soft  0.15
## 964  2001                            Hudson Soft  0.49
## 965  2002                            Hudson Soft  0.56
## 966  2003                            Hudson Soft  0.52
## 967  2004                            Hudson Soft  0.08
## 968  2005                            Hudson Soft  0.22
## 969  2006                            Hudson Soft  0.23
## 970  2007                            Hudson Soft  0.51
## 971  2008                            Hudson Soft  0.63
## 972  2009                            Hudson Soft  0.83
## 973  2010                            Hudson Soft  0.59
## 974  2011                            Hudson Soft  0.06
## 975  1991                    Human Entertainment  0.39
## 976  1994                    Human Entertainment  0.73
## 977  1995                    Human Entertainment  0.38
## 978  1996                    Human Entertainment  0.12
## 979  1997                    Human Entertainment  0.42
## 980  1998                    Human Entertainment  0.48
## 981  1999                    Human Entertainment  0.30
## 982  2015                                  HuneX  0.03
## 983  2011                    Iceberg Interactive  0.00
## 984  2012                    Iceberg Interactive  0.00
## 985  1992                            id Software  0.00
## 986  2002                           Idea Factory  0.05
## 987  2005                           Idea Factory  0.00
## 988  2006                           Idea Factory  0.06
## 989  2007                           Idea Factory  0.05
## 990  2008                           Idea Factory  0.17
## 991  2009                           Idea Factory  0.18
## 992  2010                           Idea Factory  0.63
## 993  2011                           Idea Factory  0.56
## 994  2012                           Idea Factory  0.55
## 995  2013                           Idea Factory  0.31
## 996  2014                           Idea Factory  0.35
## 997  2015                           Idea Factory  0.27
## 998  2016                           Idea Factory  0.12
## 999  2017                           Idea Factory  0.01
## 1000  N/A                           Idea Factory  0.01
## 1001 2014             Idea Factory International  0.06
## 1002 2015             Idea Factory International  0.14
## 1003 2006                           IE Institute  0.73
## 1004 2007                           IE Institute  0.17
## 1005 2008                           IE Institute  0.04
## 1006 2012                           IE Institute  0.02
## 1007 2002                 Ignition Entertainment  0.00
## 1008 2003                 Ignition Entertainment  0.00
## 1009 2004                 Ignition Entertainment  0.18
## 1010 2005                 Ignition Entertainment  0.08
## 1011 2006                 Ignition Entertainment  0.12
## 1012 2007                 Ignition Entertainment  0.04
## 1013 2008                 Ignition Entertainment  0.11
## 1014 2009                 Ignition Entertainment  0.04
## 1015 2011                 Ignition Entertainment  0.11
## 1016  N/A                 Ignition Entertainment  0.00
## 1017 2004                     Illusion Softworks  0.00
## 1018 1997                                 Imadio  0.14
## 1019 2012                            Image Epoch  0.10
## 1020 2014                        imageepoch Inc.  0.04
## 1021 1995                             Imageworks  0.02
## 1022 1981                                 Imagic  0.00
## 1023 1991                              Imagineer  0.38
## 1024 1996                              Imagineer  0.45
## 1025 1997                              Imagineer  0.61
## 1026 1998                              Imagineer  0.16
## 1027 1999                              Imagineer  0.54
## 1028 2000                              Imagineer  0.27
## 1029 2001                              Imagineer  0.12
## 1030 1993                                   Imax  0.06
## 1031 2004                            Indie Games  0.14
## 1032 1994                             Infogrames  0.00
## 1033 1996                             Infogrames  0.00
## 1034 1997                             Infogrames  0.09
## 1035 1998                             Infogrames  0.06
## 1036 1999                             Infogrames  0.00
## 1037 2000                             Infogrames  0.00
## 1038 2001                             Infogrames  0.02
## 1039 2002                             Infogrames  0.21
## 1040 2003                             Infogrames  0.00
## 1041  N/A                             Infogrames  0.00
## 1042 2016                        Insomniac Games  0.00
## 1043 2006                           Interchannel  0.08
## 1044 2008                           Interchannel  0.02
## 1045 2007                     Interchannel-Holon  0.01
## 1046 2015                              Intergrow  0.03
## 1047 1993                              Interplay  0.01
## 1048 1995                              Interplay  0.00
## 1049 1996                              Interplay  0.00
## 1050 1997                              Interplay  0.00
## 1051 1998                              Interplay  0.00
## 1052 1999                              Interplay  0.00
## 1053 2000                              Interplay  0.00
## 1054 2001                              Interplay  0.00
## 1055 2002                              Interplay  0.00
## 1056 2003                              Interplay  0.00
## 1057 2004                              Interplay  0.00
## 1058 1997                  Interplay Productions  0.00
## 1059 2012             Interworks Unlimited, Inc.  0.00
## 1060 2016                           Inti Creates  0.01
## 1061 2016                  Introversion Software  0.00
## 1062 2015                   inXile Entertainment  0.00
## 1063 1998              Irem Software Engineering  0.00
## 1064 2006              Irem Software Engineering  0.06
## 1065 2007              Irem Software Engineering  0.05
## 1066 2008              Irem Software Engineering  0.03
## 1067 2009              Irem Software Engineering  0.07
## 1068 2010              Irem Software Engineering  0.05
## 1069 2011              Irem Software Engineering  0.03
## 1070 2012              Irem Software Engineering  0.02
## 1071 1982                       ITT Family Games  0.00
## 1072 2008                              Ivolgamus  0.00
## 1073 2011                                   iWin  0.00
## 1074 2005                      Jack of All Games  0.00
## 1075 2011                      Jack of All Games  0.00
## 1076 1995                                 Jaleco  0.10
## 1077 1996                                 Jaleco  0.21
## 1078 1998                                 Jaleco  0.09
## 1079 1999                                 Jaleco  0.00
## 1080 2002                                 Jaleco  0.00
## 1081 2003                                 Jaleco  0.00
## 1082 2004                                 Jaleco  0.00
## 1083 2007                                 Jaleco  0.19
## 1084 2008                                 Jaleco  0.05
## 1085 2002                     Jester Interactive  0.00
## 1086 2003                     Jester Interactive  0.00
## 1087 2005                     Jester Interactive  0.00
## 1088 1999                                Jorudan  0.30
## 1089 2002                                Jorudan  0.35
## 1090 2003                                Jorudan  0.28
## 1091 2002                     JoWood Productions  0.00
## 1092 2004                     JoWood Productions  0.00
## 1093 2005                     JoWood Productions  0.00
## 1094 2006                     JoWood Productions  0.00
## 1095 2007                     JoWood Productions  0.00
## 1096 2008                     JoWood Productions  0.00
## 1097 2009                     JoWood Productions  0.00
## 1098 2010                     JoWood Productions  0.01
## 1099 2010                            Just Flight  0.00
## 1100 1994                                    JVC  0.12
## 1101 1996                                    JVC  0.00
## 1102 1997                                    JVC  0.00
## 1103 1998                                    JVC  0.00
## 1104 1999                                    JVC  0.00
## 1105 2000                                    JVC  0.00
## 1106 2012                         Kadokawa Games  0.02
## 1107 2013                         Kadokawa Games  0.05
## 1108 2014                         Kadokawa Games  0.20
## 1109 2015                         Kadokawa Games  0.09
## 1110 2016                         Kadokawa Games  0.22
## 1111 1996                        Kadokawa Shoten  0.23
## 1112 1997                        Kadokawa Shoten  0.21
## 1113 1998                        Kadokawa Shoten  0.34
## 1114 1999                        Kadokawa Shoten  0.00
## 1115 2004                        Kadokawa Shoten  0.02
## 1116 2005                        Kadokawa Shoten  0.04
## 1117 2006                        Kadokawa Shoten  0.02
## 1118 2007                        Kadokawa Shoten  0.26
## 1119 2008                        Kadokawa Shoten  0.22
## 1120 2009                        Kadokawa Shoten  0.09
## 1121 2010                        Kadokawa Shoten  0.19
## 1122 2011                        Kadokawa Shoten  0.68
## 1123 2012                        Kadokawa Shoten  0.22
## 1124 2013                        Kadokawa Shoten  0.20
## 1125 2014                        Kadokawa Shoten  0.14
## 1126 2015                        Kadokawa Shoten  0.07
## 1127 2013                            Kaga Create  0.01
## 1128 2015                            Kaga Create  0.13
## 1129 2007                          Kalypso Media  0.00
## 1130 2008                          Kalypso Media  0.00
## 1131 2009                          Kalypso Media  0.03
## 1132 2010                          Kalypso Media  0.00
## 1133 2011                          Kalypso Media  0.00
## 1134 2012                          Kalypso Media  0.00
## 1135 2014                          Kalypso Media  0.00
## 1136 2015                          Kalypso Media  0.06
## 1137  N/A                          Kalypso Media  0.00
## 1138 2010                                  Kamui  0.03
## 1139 2006                            Kando Games  0.00
## 1140 2010                    Karin Entertainment  0.02
## 1141 1991                                  Kemco  0.05
## 1142 1997                                  Kemco  0.00
## 1143 1998                                  Kemco  0.00
## 1144 1999                                  Kemco  0.00
## 1145 2001                                  Kemco  0.00
## 1146 2002                                  Kemco  0.00
## 1147 2003                                  Kemco  0.00
## 1148 2005                                  Kemco  0.00
## 1149 1998                                    KID  0.03
## 1150 2006                                    KID  0.05
## 1151 2007                           Kids Station  0.03
## 1152 2002                           King Records  0.02
## 1153 2003                    Knowledge Adventure  0.00
## 1154 2009                    Knowledge Adventure  0.00
## 1155 2008                             Koch Media  0.00
## 1156 2011                             Koch Media  0.00
## 1157 2013                             Koch Media  0.00
## 1158 2015                             Koch Media  0.00
## 1159 2016                             Koch Media  0.00
## 1160 1995               Kokopeli Digital Studios  0.00
## 1161 1986           Konami Digital Entertainment  4.02
## 1162 1987           Konami Digital Entertainment  0.42
## 1163 1989           Konami Digital Entertainment  0.37
## 1164 1990           Konami Digital Entertainment  0.21
## 1165 1991           Konami Digital Entertainment  0.94
## 1166 1992           Konami Digital Entertainment  0.21
## 1167 1993           Konami Digital Entertainment  0.46
## 1168 1994           Konami Digital Entertainment  1.69
## 1169 1995           Konami Digital Entertainment  2.03
## 1170 1996           Konami Digital Entertainment  2.26
## 1171 1997           Konami Digital Entertainment  2.01
## 1172 1998           Konami Digital Entertainment  8.15
## 1173 1999           Konami Digital Entertainment  7.72
## 1174 2000           Konami Digital Entertainment  6.64
## 1175 2001           Konami Digital Entertainment  3.84
## 1176 2002           Konami Digital Entertainment  3.53
## 1177 2003           Konami Digital Entertainment  2.59
## 1178 2004           Konami Digital Entertainment  4.17
## 1179 2005           Konami Digital Entertainment  3.21
## 1180 2006           Konami Digital Entertainment  4.71
## 1181 2007           Konami Digital Entertainment  4.36
## 1182 2008           Konami Digital Entertainment  5.91
## 1183 2009           Konami Digital Entertainment  3.45
## 1184 2010           Konami Digital Entertainment  5.92
## 1185 2011           Konami Digital Entertainment  3.64
## 1186 2012           Konami Digital Entertainment  2.74
## 1187 2013           Konami Digital Entertainment  2.41
## 1188 2014           Konami Digital Entertainment  1.42
## 1189 2015           Konami Digital Entertainment  1.27
## 1190 2016           Konami Digital Entertainment  0.63
## 1191  N/A           Konami Digital Entertainment  0.37
## 1192 2003                              Kool Kizz  0.00
## 1193 1996                                    KSS  0.03
## 1194 1993                                 Laguna  0.45
## 1195 1994                                 Laguna  0.36
## 1196 1995                                 Laguna  0.53
## 1197 2008                     Legacy Interactive  0.00
## 1198 1999                             LEGO Media  0.00
## 1199 2001                             LEGO Media  0.00
## 1200 2002                             LEGO Media  0.00
## 1201 2009                                Level 5  0.35
## 1202 2010                                Level 5  1.94
## 1203 2011                                Level 5  0.80
## 1204 2012                                Level 5  1.26
## 1205 2013                                Level 5  0.49
## 1206 2014                                Level 5  2.68
## 1207 2015                                Level 5  2.31
## 1208 2016                                Level 5  1.82
## 1209 2007                  Lexicon Entertainment  0.00
## 1210 2008                  Lexicon Entertainment  0.00
## 1211 2012                            Licensed 4U  0.00
## 1212 2007                 Lighthouse Interactive  0.00
## 1213 2002                           Liquid Games  0.00
## 1214 2006                           Liquid Games  0.00
## 1215 2010                           Little Orbit  0.00
## 1216 2013                           Little Orbit  0.00
## 1217 2014                           Little Orbit  0.00
## 1218 2015                           Little Orbit  0.00
## 1219 1998                                  Locus  0.07
## 1220 2002                              LSP Games  0.00
## 1221 2003                              LSP Games  0.00
## 1222 1994                              LucasArts  0.00
## 1223 1996                              LucasArts  0.00
## 1224 1997                              LucasArts  0.00
## 1225 1999                              LucasArts  0.05
## 1226 2000                              LucasArts  0.00
## 1227 2001                              LucasArts  0.03
## 1228 2002                              LucasArts  0.00
## 1229 2003                              LucasArts  0.00
## 1230 2004                              LucasArts  0.03
## 1231 2005                              LucasArts  0.07
## 1232 2006                              LucasArts  0.01
## 1233 2007                              LucasArts  0.00
## 1234 2008                              LucasArts  0.01
## 1235 2009                              LucasArts  0.00
## 1236 2010                              LucasArts  0.00
## 1237 2011                              LucasArts  0.00
## 1238  N/A                              LucasArts  0.00
## 1239 2004                               Mad Catz  0.00
## 1240 2006                               Mad Catz  0.00
## 1241 2012                               Mad Catz  0.00
## 1242 1998                        Magical Company  0.12
## 1243 2001                                  Magix  0.00
## 1244 2009                                  Magix  0.00
## 1245 2001                  Majesco Entertainment  0.00
## 1246 2002                  Majesco Entertainment  0.00
## 1247 2003                  Majesco Entertainment  0.00
## 1248 2004                  Majesco Entertainment  0.00
## 1249 2005                  Majesco Entertainment  0.00
## 1250 2006                  Majesco Entertainment  0.02
## 1251 2007                  Majesco Entertainment  0.00
## 1252 2008                  Majesco Entertainment  0.00
## 1253 2009                  Majesco Entertainment  0.00
## 1254 2010                  Majesco Entertainment  0.00
## 1255 2011                  Majesco Entertainment  0.00
## 1256 2013                  Majesco Entertainment  0.00
## 1257  N/A                  Majesco Entertainment  0.00
## 1258 2008                            Mamba Games  0.00
## 1259 2010                            Mamba Games  0.00
## 1260 2015                   Marvel Entertainment  0.05
## 1261 2012                Marvelous Entertainment  0.43
## 1262 2013                Marvelous Entertainment  0.38
## 1263 2014                Marvelous Entertainment  0.18
## 1264 2015                Marvelous Entertainment  0.17
## 1265 2016                Marvelous Entertainment  0.01
## 1266 2015                        Marvelous Games  0.02
## 1267 2002                  Marvelous Interactive  0.00
## 1268 2003                  Marvelous Interactive  0.00
## 1269 2004                  Marvelous Interactive  0.00
## 1270 2005                  Marvelous Interactive  0.10
## 1271 2006                  Marvelous Interactive  0.06
## 1272 2007                  Marvelous Interactive  0.21
## 1273 2008                  Marvelous Interactive  0.31
## 1274 2009                  Marvelous Interactive  0.21
## 1275 2010                  Marvelous Interactive  0.29
## 1276 2011                  Marvelous Interactive  0.57
## 1277 2014                  Marvelous Interactive  0.09
## 1278 2015                  Marvelous Interactive  0.19
## 1279 2016                  Marvelous Interactive  0.19
## 1280 2011                      Masque Publishing  0.00
## 1281 2006                           Mastertronic  0.00
## 1282 2009                           Mastertronic  0.00
## 1283 2010                           Mastertronic  0.00
## 1284 2011                           Mastertronic  0.00
## 1285 2012                           Mastertronic  0.00
## 1286 2004                                Mastiff  0.00
## 1287 2005                                Mastiff  0.00
## 1288 2009                                Mastiff  0.00
## 1289 2010                                Mastiff  0.00
## 1290 2011                                Mastiff  0.00
## 1291 1981                     Mattel Interactive  0.00
## 1292 1982                     Mattel Interactive  0.00
## 1293 1999                     Mattel Interactive  0.00
## 1294 2000                     Mattel Interactive  0.00
## 1295 2001                               Max Five  0.00
## 1296 2012                   Maximum Family Games  0.00
## 1297 1988                                  Maxis  0.00
## 1298 1992                                  Maxis  0.00
## 1299 1996                                  Maxis  0.00
## 1300 2004                      MC2 Entertainment  0.00
## 1301 2005                      MC2 Entertainment  0.00
## 1302 2002                    Media Entertainment  0.01
## 1303 2000                          Media Factory  0.14
## 1304 2001                          Media Factory  0.15
## 1305 1994                            Media Rings  0.36
## 1306 1995                            Media Rings  0.10
## 1307 2002                            Media Rings  0.00
## 1308 1996                            Media Works  0.04
## 1309 1998                            Media Works  0.09
## 1310 2006                            Media Works  0.03
## 1311 2007                            Media Works  0.02
## 1312 1995                             MediaQuest  0.00
## 1313 1981                           Men-A-Vision  0.00
## 1314 2009                     Mentor Interactive  0.00
## 1315 2010                     Mentor Interactive  0.00
## 1316 2011                     Mentor Interactive  0.00
## 1317 2007                          Mercury Games  0.02
## 1318 2008                          Mercury Games  0.00
## 1319 2009                            Merscom LLC  0.00
## 1320 2001                               Metro 3D  0.19
## 1321 2002                               Metro 3D  0.23
## 1322 2003                               Metro 3D  0.00
## 1323 2007                               Metro 3D  0.00
## 1324 2008                               Metro 3D  0.00
## 1325 2006                            Michaelsoft  0.01
## 1326 1994                            Micro Cabin  0.02
## 1327 1995                            Micro Cabin  0.08
## 1328 1996                            Micro Cabin  0.10
## 1329 2002                               Microids  0.00
## 1330 2003                               Microids  0.00
## 1331 2004                               Microids  0.00
## 1332 2005                               Microids  0.00
## 1333 2016                               Microids  0.00
## 1334 1995                             Microprose  0.00
## 1335 1996                             Microprose  0.00
## 1336 1997                             Microprose  0.00
## 1337 1999                             Microprose  0.00
## 1338  N/A                             Microprose  0.00
## 1339 1996                 Microsoft Game Studios  0.00
## 1340 1999                 Microsoft Game Studios  0.00
## 1341 2000                 Microsoft Game Studios  0.00
## 1342 2001                 Microsoft Game Studios  0.37
## 1343 2002                 Microsoft Game Studios  0.07
## 1344 2003                 Microsoft Game Studios  0.22
## 1345 2004                 Microsoft Game Studios  0.12
## 1346 2005                 Microsoft Game Studios  0.06
## 1347 2006                 Microsoft Game Studios  0.39
## 1348 2007                 Microsoft Game Studios  0.40
## 1349 2008                 Microsoft Game Studios  0.21
## 1350 2009                 Microsoft Game Studios  0.22
## 1351 2010                 Microsoft Game Studios  0.51
## 1352 2011                 Microsoft Game Studios  0.22
## 1353 2012                 Microsoft Game Studios  0.11
## 1354 2013                 Microsoft Game Studios  0.07
## 1355 2014                 Microsoft Game Studios  0.07
## 1356 2015                 Microsoft Game Studios  0.07
## 1357 2016                 Microsoft Game Studios  0.15
## 1358 1997        Midas Interactive Entertainment  0.00
## 1359 1998        Midas Interactive Entertainment  0.00
## 1360 1999        Midas Interactive Entertainment  0.00
## 1361 2000        Midas Interactive Entertainment  0.06
## 1362 2001        Midas Interactive Entertainment  0.04
## 1363 2002        Midas Interactive Entertainment  0.05
## 1364 2005        Midas Interactive Entertainment  0.00
## 1365 2006        Midas Interactive Entertainment  0.00
## 1366 2007        Midas Interactive Entertainment  0.00
## 1367 2008        Midas Interactive Entertainment  0.00
## 1368 2009        Midas Interactive Entertainment  0.00
## 1369 1996                           Midway Games  0.00
## 1370 1997                           Midway Games  0.00
## 1371 1998                           Midway Games  0.00
## 1372 1999                           Midway Games  0.00
## 1373 2000                           Midway Games  0.00
## 1374 2001                           Midway Games  0.10
## 1375 2002                           Midway Games  0.00
## 1376 2003                           Midway Games  0.00
## 1377 2004                           Midway Games  0.00
## 1378 2005                           Midway Games  0.00
## 1379 2006                           Midway Games  0.00
## 1380 2007                           Midway Games  0.01
## 1381 2008                           Midway Games  0.01
## 1382  N/A                           Midway Games  0.00
## 1383 2008                              Milestone  0.00
## 1384 2016                        Milestone S.r.l  0.00
## 1385 2014                       Milestone S.r.l.  0.00
## 1386 2015                       Milestone S.r.l.  0.10
## 1387 2016                       Milestone S.r.l.  0.00
## 1388 2008                         Minato Station  0.02
## 1389 2012                         Minato Station  0.02
## 1390 2015                         Minato Station  0.01
## 1391 1995                              Mindscape  0.00
## 1392 1996                              Mindscape  0.00
## 1393 1997                              Mindscape  0.00
## 1394 1998                              Mindscape  0.00
## 1395 1999                              Mindscape  0.00
## 1396 2000                              Mindscape  0.00
## 1397 2003                              Mindscape  0.00
## 1398 2007                              Mindscape  0.00
## 1399 2008                              Mindscape  0.00
## 1400 2009                              Mindscape  0.00
## 1401 2010                              Mindscape  0.00
## 1402 2008                          Mirai Shounen  0.02
## 1403 1993                                 Misawa  0.05
## 1404 1994                                 Misawa  0.02
## 1405 1998                                 Mitsui  0.00
## 1406 2015                              mixi, Inc  0.86
## 1407 2016                                MLB.com  0.00
## 1408 2015                                 Mojang  0.00
## 1409 2007               Monte Christo Multimedia  0.00
## 1410 2008                                   Moss  0.01
## 1411 2013                                   Moss  0.01
## 1412 1998                                    MTO  0.09
## 1413 2006                                    MTO  0.16
## 1414 2007                                    MTO  0.11
## 1415 2008                                    MTO  0.01
## 1416 2010                                    MTO  0.02
## 1417 2008                              MTV Games  0.00
## 1418 2009                              MTV Games  0.00
## 1419 2010                              MTV Games  0.01
## 1420 2011                              MTV Games  0.00
## 1421  N/A                              MTV Games  0.00
## 1422 2003                   Mud Duck Productions  0.00
## 1423 2004                   Mud Duck Productions  0.00
## 1424 2006                            Mumbo Jumbo  0.00
## 1425 2007                            Mumbo Jumbo  0.00
## 1426 2008                            Mumbo Jumbo  0.00
## 1427 1985                                  Mycom  0.02
## 1428 2006                           Myelin Media  0.00
## 1429 1981                               Mystique  0.00
## 1430 2004                                    N/A  0.00
## 1431 2005                                    N/A  0.00
## 1432 2007                                    N/A  0.00
## 1433 2010                                    N/A  0.00
## 1434 2011                                    N/A  0.00
## 1435 2012                                    N/A  0.00
## 1436 2014                                    N/A  0.00
## 1437 2016                                    N/A  0.03
## 1438  N/A                                    N/A  0.90
## 1439 1984                     Namco Bandai Games  2.81
## 1440 1985                     Namco Bandai Games  1.46
## 1441 1986                     Namco Bandai Games  2.69
## 1442 1987                     Namco Bandai Games  2.55
## 1443 1988                     Namco Bandai Games  2.33
## 1444 1989                     Namco Bandai Games  1.10
## 1445 1990                     Namco Bandai Games  0.63
## 1446 1991                     Namco Bandai Games  1.03
## 1447 1992                     Namco Bandai Games  1.04
## 1448 1993                     Namco Bandai Games  5.38
## 1449 1994                     Namco Bandai Games  1.72
## 1450 1995                     Namco Bandai Games  2.49
## 1451 1996                     Namco Bandai Games  3.42
## 1452 1997                     Namco Bandai Games  4.45
## 1453 1998                     Namco Bandai Games  2.77
## 1454 1999                     Namco Bandai Games  2.19
## 1455 2000                     Namco Bandai Games  3.89
## 1456 2001                     Namco Bandai Games  1.04
## 1457 2002                     Namco Bandai Games  5.56
## 1458 2003                     Namco Bandai Games  3.71
## 1459 2004                     Namco Bandai Games  1.80
## 1460 2005                     Namco Bandai Games  2.98
## 1461 2006                     Namco Bandai Games  5.97
## 1462 2007                     Namco Bandai Games  5.59
## 1463 2008                     Namco Bandai Games  6.74
## 1464 2009                     Namco Bandai Games  6.79
## 1465 2010                     Namco Bandai Games  6.71
## 1466 2011                     Namco Bandai Games  9.70
## 1467 2012                     Namco Bandai Games  9.44
## 1468 2013                     Namco Bandai Games  6.32
## 1469 2014                     Namco Bandai Games  5.17
## 1470 2015                     Namco Bandai Games  5.03
## 1471 2016                     Namco Bandai Games  2.34
## 1472  N/A                     Namco Bandai Games  0.23
## 1473 1996                                Natsume  0.10
## 1474 1997                                Natsume  0.00
## 1475 2000                                Natsume  0.00
## 1476 2001                                Natsume  0.00
## 1477 2002                                Natsume  0.00
## 1478 2003                                Natsume  0.00
## 1479 2006                                Natsume  0.00
## 1480 2007                                Natsume  0.00
## 1481 2009                                Natsume  0.00
## 1482 2010                                Natsume  0.22
## 1483 2014                                Natsume  0.00
## 1484 2008                           Navarre Corp  0.00
## 1485 2008                             Naxat Soft  0.01
## 1486 1996                                    NCS  0.20
## 1487 1997                                    NCS  0.11
## 1488 1998                                    NCS  0.09
## 1489 2005                                 NCSoft  0.00
## 1490 2006                                 NCSoft  0.00
## 1491 2012                                 NCSoft  0.00
## 1492 2014                                 NCSoft  0.00
## 1493 2002                        NDA Productions  0.00
## 1494 1995                                    NEC  0.14
## 1495 1996                                    NEC  0.29
## 1496 1996                       NEC Interchannel  0.06
## 1497 1997                       NEC Interchannel  0.21
## 1498 1998                       NEC Interchannel  0.33
## 1499 2000                       NEC Interchannel  0.14
## 1500 2008                       NEC Interchannel  0.04
## 1501 2007                     Neko Entertainment  0.00
## 1502 2008                     Neko Entertainment  0.00
## 1503 2009                     Neko Entertainment  0.00
## 1504 2010                     Neko Entertainment  0.00
## 1505 2010                                NetRevo  0.02
## 1506 2012                                NetRevo  0.01
## 1507 1995                                    New  0.33
## 1508 1992                    New World Computing  0.00
## 1509 1998                               NewKidCo  0.00
## 1510 1999                               NewKidCo  0.00
## 1511 2001                               NewKidCo  0.00
## 1512 2002                               NewKidCo  0.00
## 1513 2003                               NewKidCo  0.00
## 1514 2010                                  Nexon  0.03
## 1515 1995                             Nichibutsu  0.28
## 1516 2012               Nihon Falcom Corporation  0.24
## 1517 2014               Nihon Falcom Corporation  0.06
## 1518 2015               Nihon Falcom Corporation  0.15
## 1519 2016               Nihon Falcom Corporation  0.13
## 1520 1983                               Nintendo  8.10
## 1521 1984                               Nintendo 10.36
## 1522 1985                               Nintendo 12.02
## 1523 1986                               Nintendo  7.45
## 1524 1987                               Nintendo  5.46
## 1525 1988                               Nintendo  8.13
## 1526 1989                               Nintendo 15.06
## 1527 1990                               Nintendo  8.08
## 1528 1991                               Nintendo  6.22
## 1529 1992                               Nintendo 12.66
## 1530 1993                               Nintendo  6.99
## 1531 1994                               Nintendo  9.00
## 1532 1995                               Nintendo  7.45
## 1533 1996                               Nintendo 21.14
## 1534 1997                               Nintendo  4.23
## 1535 1998                               Nintendo 11.32
## 1536 1999                               Nintendo 15.88
## 1537 2000                               Nintendo 10.53
## 1538 2001                               Nintendo 11.15
## 1539 2002                               Nintendo 11.90
## 1540 2003                               Nintendo  9.85
## 1541 2004                               Nintendo 17.47
## 1542 2005                               Nintendo 29.50
## 1543 2006                               Nintendo 36.74
## 1544 2007                               Nintendo 19.98
## 1545 2008                               Nintendo 19.96
## 1546 2009                               Nintendo 29.82
## 1547 2010                               Nintendo 16.30
## 1548 2011                               Nintendo 13.43
## 1549 2012                               Nintendo 18.56
## 1550 2013                               Nintendo 14.39
## 1551 2014                               Nintendo 16.12
## 1552 2015                               Nintendo  8.57
## 1553 2016                               Nintendo  1.17
## 1554  N/A                               Nintendo  0.43
## 1555 2002                           Nippon Amuse  0.09
## 1556 2012                        Nippon Columbia  0.28
## 1557 2013                        Nippon Columbia  0.23
## 1558 2014                        Nippon Columbia  0.24
## 1559 2015                        Nippon Columbia  0.14
## 1560 2016                        Nippon Columbia  0.06
## 1561 1998                   Nippon Ichi Software  0.00
## 1562 2007                   Nippon Ichi Software  0.33
## 1563 2008                   Nippon Ichi Software  0.27
## 1564 2009                   Nippon Ichi Software  0.37
## 1565 2010                   Nippon Ichi Software  0.50
## 1566 2011                   Nippon Ichi Software  0.68
## 1567 2012                   Nippon Ichi Software  0.24
## 1568 2013                   Nippon Ichi Software  1.48
## 1569 2014                   Nippon Ichi Software  1.08
## 1570 2015                   Nippon Ichi Software  0.55
## 1571 2016                   Nippon Ichi Software  0.30
## 1572  N/A                   Nippon Ichi Software  0.07
## 1573 1996                         Nippon Telenet  0.26
## 1574 2014                              Nitroplus  0.01
## 1575 2015                              Nitroplus  0.01
## 1576 2007                                Nobilis  0.01
## 1577 2008                                Nobilis  0.01
## 1578 2009                                Nobilis  0.00
## 1579 2010                                Nobilis  0.00
## 1580 2007                            Nordcurrent  0.00
## 1581 2008                            Nordcurrent  0.00
## 1582 2009                            Nordcurrent  0.00
## 1583 2010                            Nordcurrent  0.00
## 1584 2008                           Nordic Games  0.00
## 1585 2009                           Nordic Games  0.00
## 1586 2010                           Nordic Games  0.00
## 1587 2011                           Nordic Games  0.00
## 1588 2012                           Nordic Games  0.00
## 1589 2013                           Nordic Games  0.00
## 1590 2014                           Nordic Games  0.00
## 1591 2015                           Nordic Games  0.00
## 1592 2016                           Nordic Games  0.00
## 1593 2005                              NovaLogic  0.00
## 1594 2009                              NovaLogic  0.00
## 1595 2009                            Number None  0.00
## 1596 2009                                O-Games  0.00
## 1597 2010                                O-Games  0.00
## 1598 2011                                O-Games  0.00
## 1599 2004                       O3 Entertainment  0.00
## 1600 2006                       O3 Entertainment  0.00
## 1601 2007                       O3 Entertainment  0.00
## 1602 1992                                  Ocean  0.28
## 1603 1993                                  Ocean  0.00
## 1604 1995                                  Ocean  0.12
## 1605 1996                                  Ocean  0.00
## 1606 1997                                  Ocean  0.02
## 1607 1998                                  Ocean  0.00
## 1608 2013                          Office Create  0.03
## 1609 2014                          Office Create  0.03
## 1610 1997                              On Demand  0.00
## 1611 2006                              Ongakukan  0.01
## 1612 1997                         Origin Systems  0.00
## 1613 2013                                Otomate  0.01
## 1614 2005                     Oxygen Interactive  0.00
## 1615 2006                     Oxygen Interactive  0.00
## 1616 2007                     Oxygen Interactive  0.00
## 1617 2008                     Oxygen Interactive  0.00
## 1618 2009                     Oxygen Interactive  0.00
## 1619  N/A                     Oxygen Interactive  0.00
## 1620 2009                               P2 Games  0.00
## 1621 2011                               P2 Games  0.00
## 1622 2002            Pacific Century Cyber Works  0.03
## 1623 1995                          Pack-In-Video  0.11
## 1624 1999                           Pack In Soft  0.11
## 1625 1989                                 Palcom  0.31
## 1626 1995                       Panther Software  0.12
## 1627 2007                                   Paon  0.14
## 1628 2008                                   Paon  0.07
## 1629 2010                                   Paon  0.02
## 1630 2011                                   Paon  0.02
## 1631 2013                       Paon Corporation  0.03
## 1632 2016                    Paradox Development  0.00
## 1633 2007                    Paradox Interactive  0.00
## 1634 2008                    Paradox Interactive  0.00
## 1635 2009                    Paradox Interactive  0.00
## 1636 2010                    Paradox Interactive  0.00
## 1637 2011                    Paradox Interactive  0.00
## 1638 2012                    Paradox Interactive  0.00
## 1639 2014                    Paradox Interactive  0.00
## 1640 2015                    Paradox Interactive  0.00
## 1641 2016                    Paradox Interactive  0.00
## 1642 1981                           Parker Bros.  0.00
## 1643 1982                           Parker Bros.  0.00
## 1644 1983                           Parker Bros.  0.00
## 1645 2009          Performance Designed Products  0.00
## 1646 2002                             Phantagram  0.01
## 1647 2009                            Phantom EFX  0.00
## 1648 2007                             Phenomedia  0.00
## 1649 2008                             Phenomedia  0.00
## 1650 2009                             Phenomedia  0.00
## 1651 2007                          Phoenix Games  0.00
## 1652 2010                                 Piacci  0.01
## 1653 2008                               Pinnacle  0.00
## 1654 2009                               Pinnacle  0.00
## 1655 1996                            Pioneer LDC  0.20
## 1656 1998                            Pioneer LDC  0.07
## 1657 2001                            Pioneer LDC  0.05
## 1658 2002                                Play It  0.00
## 1659 2003                                Play It  0.00
## 1660 2004                                Play It  0.00
## 1661 2005                                Play It  0.00
## 1662 2005                 Playlogic Game Factory  0.00
## 1663 2008                 Playlogic Game Factory  0.00
## 1664 2009                 Playlogic Game Factory  0.00
## 1665 1997                              Playmates  0.00
## 1666 2002                               Playmore  0.04
## 1667 2009                                  PlayV  0.00
## 1668 2010                                  PlayV  0.00
## 1669 2011                                 Plenty  0.02
## 1670 2009                             PM Studios  0.00
## 1671 2000                            Pony Canyon  0.00
## 1672 2006                           PopCap Games  0.00
## 1673 2007                           PopCap Games  0.00
## 1674 2008                           PopCap Games  0.00
## 1675 2009                           PopCap Games  0.00
## 1676 2010                           PopCap Games  0.00
## 1677 2011                           PopCap Games  0.00
## 1678 2007                         Popcorn Arcade  0.00
## 1679 2008                         Popcorn Arcade  0.00
## 1680 1999                        PopTop Software  0.00
## 1681 1995                                    Pow  0.05
## 1682 2007                                  PQube  0.05
## 1683 2008                                  PQube  0.04
## 1684 2009                                  PQube  0.10
## 1685 2010                                  PQube  0.19
## 1686 2011                                  PQube  0.34
## 1687 2012                                  PQube  0.02
## 1688 2013                                  PQube  0.00
## 1689 2015                                  PQube  0.24
## 1690 2016                                  PQube  0.07
## 1691 2002                          Princess Soft  0.02
## 1692 2006                          Princess Soft  0.03
## 1693 2008                          Princess Soft  0.02
## 1694 2007                              Prototype  0.09
## 1695 2008                              Prototype  0.08
## 1696 2009                              Prototype  0.13
## 1697 2010                              Prototype  0.11
## 1698 2011                              Prototype  0.04
## 1699 2012                              Prototype  0.07
## 1700 2013                              Prototype  0.01
## 1701 2014                              Prototype  0.05
## 1702 2015                              Prototype  0.02
## 1703 2016                              Prototype  0.01
## 1704 1994                              Psygnosis  0.00
## 1705 1995                              Psygnosis  0.07
## 1706 1996                              Psygnosis  0.42
## 1707 1997                              Psygnosis  0.23
## 1708 1998                              Psygnosis  0.00
## 1709 1999                              Psygnosis  0.00
## 1710 2000                              Psygnosis  0.00
## 1711 1982                                 Quelle  0.00
## 1712 1995                                  Quest  0.71
## 1713 2011                               Quinrose  0.12
## 1714 2012                               Quinrose  0.06
## 1715 2013                               Quinrose  0.02
## 1716 2014                               Quinrose  0.02
## 1717 1998                                Quintet  0.02
## 1718 2001                          Rage Software  0.00
## 1719 2002                          Rage Software  0.00
## 1720 2015                             Rain Games  0.00
## 1721 2001                              Rebellion  0.00
## 1722 2002                              Rebellion  0.00
## 1723 2015                 Rebellion Developments  0.00
## 1724 2010                      RED Entertainment  0.02
## 1725 1994                                Red Orb  0.00
## 1726 1997                                Red Orb  0.00
## 1727 1999                Red Storm Entertainment  0.00
## 1728 2001                Red Storm Entertainment  0.00
## 1729 2005                              RedOctane  0.03
## 1730 2006                              RedOctane  0.00
## 1731 2007                              RedOctane  0.00
## 1732 2009                     Reef Entertainment  0.00
## 1733 2010                     Reef Entertainment  0.00
## 1734 2012                     Reef Entertainment  0.00
## 1735 2004                           responDESIGN  0.00
## 1736 2005                           responDESIGN  0.00
## 1737 2009                     Revolution (Japan)  0.02
## 1738 2015                    Revolution Software  0.00
## 1739 2005                      Rising Star Games  0.13
## 1740 2006                      Rising Star Games  0.36
## 1741 2007                      Rising Star Games  0.56
## 1742 2008                      Rising Star Games  0.80
## 1743 2009                      Rising Star Games  0.48
## 1744 2010                      Rising Star Games  0.04
## 1745 2011                      Rising Star Games  0.05
## 1746 2012                      Rising Star Games  0.00
## 1747 2013                      Rising Star Games  0.07
## 1748 2016                      Rising Star Games  0.00
## 1749  N/A                      Rising Star Games  0.04
## 1750 1995                          Riverhillsoft  0.04
## 1751 2006                         Rocket Company  0.69
## 1752 2007                         Rocket Company  0.44
## 1753 2008                         Rocket Company  0.01
## 1754 2009                         Rocket Company  0.06
## 1755 2010                         Rocket Company  0.15
## 1756 2011                         Rocket Company  0.07
## 1757 2012                         Rocket Company  0.13
## 1758 2013                         Rocket Company  0.08
## 1759 2014                         Rocket Company  0.07
## 1760 2015                         Rocket Company  0.09
## 1761 2016                         Rocket Company  0.03
## 1762 2008                             Rondomedia  0.00
## 1763 2009                             Rondomedia  0.00
## 1764 2010                             Rondomedia  0.00
## 1765 2011                             Rondomedia  0.00
## 1766 2015                             Rondomedia  0.00
## 1767 2007                                    RTL  0.00
## 1768 2008                                    RTL  0.00
## 1769 2009                                    RTL  0.00
## 1770 2007                                 Russel  0.00
## 1771 2008                                 Russel  0.01
## 1772 2009                                 Russel  0.03
## 1773 2010                                 Russel  0.05
## 1774 1993                      Sammy Corporation  0.19
## 1775 2001                      Sammy Corporation  0.00
## 1776 2002                      Sammy Corporation  0.64
## 1777 2003                      Sammy Corporation  0.00
## 1778 2004                      Sammy Corporation  1.00
## 1779 2006                      Sammy Corporation  0.08
## 1780 1998                                 Saurus  0.00
## 1781 2007                        Scholastic Inc.  0.00
## 1782 2008                        Scholastic Inc.  0.00
## 1783 2010                        Scholastic Inc.  0.00
## 1784 2011                        Scholastic Inc.  0.00
## 1785 2002                                    SCi  0.00
## 1786 2003                                    SCi  0.00
## 1787 2004                                    SCi  0.00
## 1788 2005                                    SCi  0.00
## 1789 2013                             Screenlife  0.57
## 1790 2015                             Screenlife  0.07
## 1791 2016                             Screenlife  0.02
## 1792 2012                           SCS Software  0.00
## 1793  N/A                                  Sears  0.00
## 1794 1982                                   Sega  0.00
## 1795 1990                                   Sega  0.11
## 1796 1991                                   Sega  0.26
## 1797 1992                                   Sega  0.76
## 1798 1993                                   Sega  0.52
## 1799 1994                                   Sega  3.87
## 1800 1995                                   Sega  6.91
## 1801 1996                                   Sega  4.29
## 1802 1997                                   Sega  2.14
## 1803 1998                                   Sega  2.63
## 1804 1999                                   Sega  2.36
## 1805 2000                                   Sega  1.10
## 1806 2001                                   Sega  1.29
## 1807 2002                                   Sega  1.80
## 1808 2003                                   Sega  1.45
## 1809 2004                                   Sega  0.46
## 1810 2005                                   Sega  2.45
## 1811 2006                                   Sega  4.40
## 1812 2007                                   Sega  2.21
## 1813 2008                                   Sega  3.44
## 1814 2009                                   Sega  3.34
## 1815 2010                                   Sega  1.97
## 1816 2011                                   Sega  2.21
## 1817 2012                                   Sega  2.28
## 1818 2013                                   Sega  1.13
## 1819 2014                                   Sega  1.56
## 1820 2015                                   Sega  0.76
## 1821 2016                                   Sega  0.45
## 1822 2017                                   Sega  0.04
## 1823  N/A                                   Sega  0.84
## 1824 1995                       Seta Corporation  0.33
## 1825 1996                       Seta Corporation  0.26
## 1826 2013                          Seventh Chord  0.08
## 1827 1995                             Shogakukan  0.11
## 1828 2006                             Shogakukan  0.20
## 1829 2007                             Shogakukan  0.10
## 1830 2015                             Shogakukan  0.03
## 1831 2002           Simon & Schuster Interactive  0.00
## 1832 2015                   Slightly Mad Studios  0.02
## 1833 2009                    Slitherine Software  0.00
## 1834 2010                    Slitherine Software  0.00
## 1835  N/A                    Slitherine Software  0.00
## 1836 1993                                    SNK  0.21
## 1837 1994                                    SNK  0.80
## 1838 1995                                    SNK  0.28
## 1839 1996                                    SNK  0.46
## 1840 1997                                    SNK  0.07
## 1841 1998                                    SNK  0.38
## 1842 1999                                    SNK  0.10
## 1843 2000                                    SNK  0.18
## 1844 2005                                    SNK  0.00
## 1845 1995                           SNK Playmore  0.28
## 1846 1998                           SNK Playmore  0.04
## 1847 1999                           SNK Playmore  0.00
## 1848 2005                           SNK Playmore  0.00
## 1849 2006                           SNK Playmore  0.00
## 1850 2007                           SNK Playmore  0.10
## 1851 2008                           SNK Playmore  0.04
## 1852 2009                           SNK Playmore  0.06
## 1853 2010                           SNK Playmore  0.04
## 1854 1996                                Societa  0.04
## 1855 2016                               Sold Out  0.00
## 1856 1995                                 Sonnet  0.04
## 1857 1996                                 Sonnet  0.02
## 1858 1994            Sony Computer Entertainment  1.80
## 1859 1995            Sony Computer Entertainment  5.81
## 1860 1996            Sony Computer Entertainment  9.15
## 1861 1997            Sony Computer Entertainment 12.65
## 1862 1998            Sony Computer Entertainment  6.32
## 1863 1999            Sony Computer Entertainment  6.73
## 1864 2000            Sony Computer Entertainment  1.56
## 1865 2001            Sony Computer Entertainment  6.48
## 1866 2002            Sony Computer Entertainment  3.63
## 1867 2003            Sony Computer Entertainment  1.53
## 1868 2004            Sony Computer Entertainment  2.61
## 1869 2005            Sony Computer Entertainment  1.48
## 1870 2006            Sony Computer Entertainment  2.14
## 1871 2007            Sony Computer Entertainment  2.51
## 1872 2008            Sony Computer Entertainment  1.24
## 1873 2009            Sony Computer Entertainment  1.38
## 1874 2010            Sony Computer Entertainment  2.28
## 1875 2011            Sony Computer Entertainment  1.69
## 1876 2012            Sony Computer Entertainment  0.82
## 1877 2013            Sony Computer Entertainment  0.84
## 1878 2014            Sony Computer Entertainment  0.78
## 1879 2015            Sony Computer Entertainment  0.45
## 1880 2016            Sony Computer Entertainment  0.22
## 1881  N/A            Sony Computer Entertainment  0.00
## 1882 2014    Sony Computer Entertainment America  0.00
## 1883 2001     Sony Computer Entertainment Europe  0.38
## 1884 2004     Sony Computer Entertainment Europe  0.32
## 1885 2012     Sony Computer Entertainment Europe  0.00
## 1886 2013     Sony Computer Entertainment Europe  0.76
## 1887 2014     Sony Computer Entertainment Europe  0.99
## 1888 2015     Sony Computer Entertainment Europe  0.05
## 1889 2001               Sony Music Entertainment  0.14
## 1890 2003              Sony Online Entertainment  0.00
## 1891 2004              Sony Online Entertainment  0.00
## 1892 2005              Sony Online Entertainment  0.00
## 1893 2006              Sony Online Entertainment  0.00
## 1894 2011              Sony Online Entertainment  0.00
## 1895 1999                        SouthPeak Games  0.00
## 1896 2004                        SouthPeak Games  0.00
## 1897 2005                        SouthPeak Games  0.00
## 1898 2006                        SouthPeak Games  0.00
## 1899 2007                        SouthPeak Games  0.00
## 1900 2008                        SouthPeak Games  0.00
## 1901 2009                        SouthPeak Games  0.07
## 1902 2010                        SouthPeak Games  0.00
## 1903 2001                                  Spike  0.00
## 1904 2002                                  Spike  0.12
## 1905 2004                                  Spike  0.08
## 1906 2006                                  Spike  0.33
## 1907 2007                                  Spike  0.19
## 1908 2008                                  Spike  0.32
## 1909 2009                                  Spike  0.11
## 1910 2010                                  Spike  0.37
## 1911 2011                                  Spike  0.19
## 1912 2012                                  Spike  0.41
## 1913 1996                                    SPS  0.00
## 1914 1991                                 Square  1.33
## 1915 1994                                 Square  0.11
## 1916 1997                                 Square  0.59
## 1917 1999                                 Square  0.57
## 1918 2001                                 Square  0.00
## 1919 1999                              Square EA  0.00
## 1920 2003                            Square Enix  1.43
## 1921 2004                            Square Enix  4.52
## 1922 2005                            Square Enix  2.90
## 1923 2006                            Square Enix  6.77
## 1924 2007                            Square Enix  6.31
## 1925 2008                            Square Enix  3.95
## 1926 2009                            Square Enix  3.66
## 1927 2010                            Square Enix  4.08
## 1928 2011                            Square Enix  3.49
## 1929 2012                            Square Enix  2.69
## 1930 2013                            Square Enix  3.63
## 1931 2014                            Square Enix  1.88
## 1932 2015                            Square Enix  2.25
## 1933 2016                            Square Enix  2.23
## 1934  N/A                            Square Enix  0.09
## 1935 1987                             SquareSoft  0.52
## 1936 1988                             SquareSoft  0.76
## 1937 1989                             SquareSoft  1.10
## 1938 1990                             SquareSoft  1.39
## 1939 1991                             SquareSoft  1.14
## 1940 1992                             SquareSoft  3.40
## 1941 1993                             SquareSoft  2.66
## 1942 1994                             SquareSoft  2.87
## 1943 1995                             SquareSoft  4.80
## 1944 1996                             SquareSoft  1.21
## 1945 1997                             SquareSoft  4.94
## 1946 1998                             SquareSoft  3.68
## 1947 1999                             SquareSoft  6.37
## 1948 2000                             SquareSoft  4.03
## 1949 2001                             SquareSoft  0.25
## 1950 2002                             SquareSoft  0.12
## 1951 2003                             SquareSoft  0.89
## 1952 1996                                    SSI  0.00
## 1953 2016                        Stainless Games  0.00
## 1954 1997                               Starfish  0.00
## 1955 1999                               Starfish  0.00
## 1956 2001                               Starfish  0.00
## 1957 2007                               Starfish  0.00
## 1958 2009                               Starfish  0.02
## 1959 2010                               Starfish  0.02
## 1960 2011                               Starfish  0.04
## 1961 2012                               Starfish  0.02
## 1962 1981                         Starpath Corp.  0.00
## 1963 2004                                  Sting  0.00
## 1964 2006                                  Sting  0.03
## 1965 2007                                  Sting  0.02
## 1966 2008                                  Sting  0.07
## 1967 2010                                  Sting  0.03
## 1968 2009                       Storm City Games  0.00
## 1969 2010                       Storm City Games  0.00
## 1970 2011                       Storm City Games  0.00
## 1971 2001                         Strategy First  0.00
## 1972 1998                                Success  0.00
## 1973 1999                                Success  0.00
## 1974 2000                                Success  0.00
## 1975 2001                                Success  0.00
## 1976 2002                                Success  0.03
## 1977 2005                                Success  0.04
## 1978 2006                                Success  0.03
## 1979 2007                                Success  0.01
## 1980 2008                                Success  0.02
## 1981 2009                                Success  0.01
## 1982 2013                                Success  0.07
## 1983 2014                                Success  0.01
## 1984 2004                             Summitsoft  0.00
## 1985 2004                             Sunflowers  0.00
## 1986 2000                    Sunrise Interactive  0.13
## 1987 2006                    Sunrise Interactive  0.02
## 1988 2007                    Sunrise Interactive  0.02
## 1989 1994                                Sunsoft  0.12
## 1990 1995                                Sunsoft  0.03
## 1991 1996                                Sunsoft  0.00
## 1992 1997                                Sunsoft  0.00
## 1993 1998                                Sunsoft  0.00
## 1994 1999                                Sunsoft  0.00
## 1995 2000                                Sunsoft  0.00
## 1996 2011                                Sunsoft  0.02
## 1997 2006                                 Sweets  0.02
## 1998 2009                                 Sweets  0.03
## 1999 1998                   Swing! Entertainment  0.00
## 2000 2000                   Swing! Entertainment  0.00
## 2001 2001                   Swing! Entertainment  0.00
## 2002 2002                   Swing! Entertainment  0.00
## 2003 1998                                 Syscom  0.15
## 2004 1999                                 Syscom  0.00
## 2005 2013                               System 3  0.00
## 2006 2006               System 3 Arcade Software  0.00
## 2007 2007               System 3 Arcade Software  0.00
## 2008 2008               System 3 Arcade Software  0.00
## 2009 2009               System 3 Arcade Software  0.00
## 2010  N/A               System 3 Arcade Software  0.00
## 2011 2008                            System Soft  0.02
## 2012 2010                            System Soft  0.02
## 2013 2011                            System Soft  0.01
## 2014 1993                               T&E Soft  0.12
## 2015 1981                                  Taito  0.00
## 2016 1994                                  Taito  0.46
## 2017 1995                                  Taito  0.06
## 2018 1997                                  Taito  1.02
## 2019 1999                                  Taito  0.43
## 2020 2001                                  Taito  0.06
## 2021 2002                                  Taito  0.00
## 2022 2003                                  Taito  0.00
## 2023 2006                                  Taito  0.06
## 2024 2007                                  Taito  0.03
## 2025 2010                                  Taito  0.02
## 2026 1992                                 Takara  0.39
## 2027 1993                                 Takara  0.45
## 2028 1994                                 Takara  0.96
## 2029 1995                                 Takara  0.05
## 2030 1996                                 Takara  0.27
## 2031 1997                                 Takara  0.54
## 2032 1998                                 Takara  0.29
## 2033 1999                                 Takara  0.05
## 2034 2001                                 Takara  0.06
## 2035 2002                                 Takara  0.04
## 2036 2003                                 Takara  0.04
## 2037 2006                            Takara Tomy  0.11
## 2038 2007                            Takara Tomy  0.41
## 2039 2008                            Takara Tomy  0.65
## 2040 2009                            Takara Tomy  0.20
## 2041 2010                            Takara Tomy  0.19
## 2042 2011                            Takara Tomy  0.02
## 2043 2013                            Takara Tomy  0.16
## 2044 2015                            Takara Tomy  0.11
## 2045 1997                   Take-Two Interactive  0.04
## 2046 1998                   Take-Two Interactive  0.00
## 2047 1999                   Take-Two Interactive  0.00
## 2048 2000                   Take-Two Interactive  0.02
## 2049 2001                   Take-Two Interactive  0.35
## 2050 2002                   Take-Two Interactive  0.49
## 2051 2003                   Take-Two Interactive  0.00
## 2052 2004                   Take-Two Interactive  0.41
## 2053 2005                   Take-Two Interactive  0.24
## 2054 2006                   Take-Two Interactive  0.40
## 2055 2007                   Take-Two Interactive  0.14
## 2056 2008                   Take-Two Interactive  0.71
## 2057 2009                   Take-Two Interactive  0.15
## 2058 2010                   Take-Two Interactive  0.59
## 2059 2011                   Take-Two Interactive  0.20
## 2060 2012                   Take-Two Interactive  0.31
## 2061 2013                   Take-Two Interactive  1.14
## 2062 2014                   Take-Two Interactive  0.46
## 2063 2015                   Take-Two Interactive  0.16
## 2064 2016                   Take-Two Interactive  0.02
## 2065  N/A                   Take-Two Interactive  0.00
## 2066 2011                                 Takuyo  0.01
## 2067 2001                              TalonSoft  0.00
## 2068 2000                               TDK Core  0.00
## 2069 2002                               TDK Core  0.00
## 2070 2006                               TDK Core  0.22
## 2071 2007                               TDK Core  0.03
## 2072 2001                         TDK Mediactive  0.00
## 2073 2002                         TDK Mediactive  0.00
## 2074 2003                         TDK Mediactive  0.00
## 2075 2004                         TDK Mediactive  0.00
## 2076 2010                        Team17 Software  0.00
## 2077 1995              Technos Japan Corporation  0.02
## 2078 1998                             TechnoSoft  0.00
## 2079 1991                             Tecmo Koei  0.53
## 2080 1992                             Tecmo Koei  0.29
## 2081 1993                             Tecmo Koei  0.85
## 2082 1994                             Tecmo Koei  0.53
## 2083 1995                             Tecmo Koei  0.45
## 2084 1996                             Tecmo Koei  0.45
## 2085 1997                             Tecmo Koei  1.28
## 2086 1998                             Tecmo Koei  0.31
## 2087 1999                             Tecmo Koei  0.51
## 2088 2000                             Tecmo Koei  0.94
## 2089 2001                             Tecmo Koei  0.33
## 2090 2002                             Tecmo Koei  1.30
## 2091 2003                             Tecmo Koei  1.92
## 2092 2004                             Tecmo Koei  1.23
## 2093 2005                             Tecmo Koei  1.59
## 2094 2006                             Tecmo Koei  1.63
## 2095 2007                             Tecmo Koei  2.91
## 2096 2008                             Tecmo Koei  1.73
## 2097 2009                             Tecmo Koei  1.06
## 2098 2010                             Tecmo Koei  1.31
## 2099 2011                             Tecmo Koei  1.59
## 2100 2012                             Tecmo Koei  0.97
## 2101 2013                             Tecmo Koei  1.77
## 2102 2014                             Tecmo Koei  1.58
## 2103 2015                             Tecmo Koei  1.37
## 2104 2016                             Tecmo Koei  0.78
## 2105 1999                              Telegames  0.00
## 2106 2003                              Telegames  0.00
## 2107 2005                              Telegames  0.00
## 2108 2007                              Telegames  0.00
## 2109 2008                              Telegames  0.00
## 2110 2010                              Telegames  0.00
## 2111 2011                         Telltale Games  0.00
## 2112 2014                         Telltale Games  0.03
## 2113 2015                         Telltale Games  0.00
## 2114 2016                         Telltale Games  0.00
## 2115 1995                                Telstar  0.00
## 2116 1998                                Telstar  0.00
## 2117 2011                          Tetris Online  0.06
## 2118 2009                                    TGL  0.01
## 2119 2015                                    TGL  0.09
## 2120 2008                  The Adventure Company  0.00
## 2121 2009                  The Adventure Company  0.00
## 2122 2000                   The Learning Company  0.00
## 2123 1995                                    THQ  0.56
## 2124 1997                                    THQ  0.03
## 2125 1998                                    THQ  1.24
## 2126 1999                                    THQ  0.02
## 2127 2000                                    THQ  0.49
## 2128 2001                                    THQ  1.34
## 2129 2002                                    THQ  0.18
## 2130 2003                                    THQ  0.13
## 2131 2004                                    THQ  0.16
## 2132 2005                                    THQ  0.05
## 2133 2006                                    THQ  0.05
## 2134 2007                                    THQ  0.04
## 2135 2008                                    THQ  0.06
## 2136 2009                                    THQ  0.07
## 2137 2010                                    THQ  0.07
## 2138 2011                                    THQ  0.48
## 2139 2012                                    THQ  0.04
## 2140 2013                                    THQ  0.00
## 2141  N/A                                    THQ  0.00
## 2142 1981                            Tigervision  0.00
## 2143 1982                            Tigervision  0.00
## 2144 1994                Time Warner Interactive  0.00
## 2145 1995                Time Warner Interactive  0.00
## 2146 1996                Time Warner Interactive  0.00
## 2147 1993                                  Titus  0.07
## 2148 1997                                  Titus  0.00
## 2149 1998                                  Titus  0.00
## 2150 1999                                  Titus  0.00
## 2151 2000                                  Titus  0.00
## 2152 2001                                  Titus  0.00
## 2153 2002                                  Titus  0.00
## 2154 2003                                  Titus  0.00
## 2155 2008                                 Tivola  0.00
## 2156 2009                                 Tivola  0.00
## 2157 1993                                   TOHO  0.11
## 2158 2007                                  Tommo  0.00
## 2159 2009                                  Tommo  0.00
## 2160 2011                                  Tommo  0.00
## 2161 1995                       Tomy Corporation  0.30
## 2162 1996                       Tomy Corporation  0.26
## 2163 1998                       Tomy Corporation  0.21
## 2164 2003                       Tomy Corporation  0.21
## 2165 2004                       Tomy Corporation  0.43
## 2166 2005                       Tomy Corporation  0.69
## 2167 2006                       Tomy Corporation  0.02
## 2168 2007                       Tomy Corporation  0.00
## 2169 2008                       Tomy Corporation  0.00
## 2170 2009                       Tomy Corporation  0.00
## 2171 2010                       Tomy Corporation  0.00
## 2172 2011                    TopWare Interactive  0.00
## 2173 2015                    TopWare Interactive  0.00
## 2174  N/A                    TopWare Interactive  0.00
## 2175 2007                             Touchstone  0.00
## 2176 2008                             Touchstone  0.02
## 2177 2010                              Tradewest  0.00
## 2178 2012                           Trion Worlds  0.00
## 2179 2013                           Trion Worlds  0.00
## 2180 2011                   Tripwire Interactive  0.00
## 2181 2014                  Tru Blu Entertainment  0.00
## 2182 2015                  Tru Blu Entertainment  0.00
## 2183 2008                               Tryfirst  0.03
## 2184 1998                                    TYO  0.00
## 2185 2014                              Type-Moon  0.10
## 2186 1995                              U.S. Gold  0.00
## 2187 1996                              U.S. Gold  0.00
## 2188 1995                                Ubisoft  0.00
## 2189 1996                                Ubisoft  0.00
## 2190 1997                                Ubisoft  0.00
## 2191 1998                                Ubisoft  0.00
## 2192 1999                                Ubisoft  0.24
## 2193 2000                                Ubisoft  0.74
## 2194 2001                                Ubisoft  0.14
## 2195 2002                                Ubisoft  0.32
## 2196 2003                                Ubisoft  0.66
## 2197 2004                                Ubisoft  0.00
## 2198 2005                                Ubisoft  0.28
## 2199 2006                                Ubisoft  0.62
## 2200 2007                                Ubisoft  0.49
## 2201 2008                                Ubisoft  0.68
## 2202 2009                                Ubisoft  0.47
## 2203 2010                                Ubisoft  0.29
## 2204 2011                                Ubisoft  0.43
## 2205 2012                                Ubisoft  0.54
## 2206 2013                                Ubisoft  0.35
## 2207 2014                                Ubisoft  0.65
## 2208 2015                                Ubisoft  0.19
## 2209 2016                                Ubisoft  0.24
## 2210 2020                                Ubisoft  0.00
## 2211  N/A                                Ubisoft  0.17
## 2212 2009                         Ubisoft Annecy  0.52
## 2213 2010                         Ubisoft Annecy  0.71
## 2214 2011                         Ubisoft Annecy  0.67
## 2215 2012                         Ubisoft Annecy  0.38
## 2216 1997                            UEP Systems  0.20
## 2217 2007                        UFO Interactive  0.00
## 2218 2008                        UFO Interactive  0.00
## 2219 2009                        UFO Interactive  0.00
## 2220 2010                        UFO Interactive  0.00
## 2221 2011                        UFO Interactive  0.00
## 2222 2012                        UFO Interactive  0.00
## 2223 2016                      UIG Entertainment  0.00
## 2224  N/A                            Ultravision  0.00
## 2225 1982                        Universal Gamex  0.00
## 2226 2001                  Universal Interactive  0.24
## 2227 2002                  Universal Interactive  0.00
## 2228 2003                  Universal Interactive  0.00
## 2229  N/A                  Universal Interactive  0.00
## 2230 1981                                Unknown  0.00
## 2231 1998                                Unknown  0.00
## 2232 2001                                Unknown  0.42
## 2233 2002                                Unknown  0.06
## 2234 2003                                Unknown  0.00
## 2235 2004                                Unknown  0.00
## 2236 2005                                Unknown  0.00
## 2237 2006                                Unknown  0.02
## 2238 2007                                Unknown  0.23
## 2239 2008                                Unknown  0.08
## 2240 2009                                Unknown  0.00
## 2241 2010                                Unknown  0.77
## 2242 2011                                Unknown  1.32
## 2243 2012                                Unknown  0.22
## 2244 2013                                Unknown  0.00
## 2245 2014                                Unknown  0.00
## 2246 2015                                Unknown  0.04
## 2247 2016                                Unknown  0.16
## 2248  N/A                                Unknown  2.74
## 2249 2005                           Valcon Games  0.00
## 2250 2006                           Valcon Games  0.00
## 2251 2008                           Valcon Games  0.00
## 2252 2009                           Valcon Games  0.00
## 2253 2010                           Valcon Games  0.00
## 2254 2005                               ValuSoft  0.00
## 2255 2008                               ValuSoft  0.00
## 2256 2009                               ValuSoft  0.00
## 2257 2011                               ValuSoft  0.00
## 2258 2011                                  Valve  0.02
## 2259 2009                         Valve Software  0.00
## 2260 2011                         Valve Software  0.01
## 2261 1994                                    Vap  0.05
## 2262 2000                  Vatical Entertainment  0.00
## 2263 1996                              Vic Tokai  0.00
## 2264 1997                              Vic Tokai  0.00
## 2265 1993                     Victor Interactive  0.11
## 2266 1995                     Victor Interactive  0.09
## 2267 1997                     Victor Interactive  0.23
## 2268 1998                     Victor Interactive  0.15
## 2269 2000                     Victor Interactive  0.00
## 2270 2001                     Victor Interactive  0.08
## 2271 2002                     Victor Interactive  0.02
## 2272 1992                           Video System  0.28
## 2273 1997                           Video System  0.00
## 2274 1998                           Video System  0.09
## 2275 2000                           Video System  0.00
## 2276 2012                                  Views  0.02
## 2277 2014                                  Views  0.01
## 2278 2008                          Vir2L Studios  0.00
## 2279 2009                          Vir2L Studios  0.00
## 2280 1992                     Virgin Interactive  0.00
## 2281 1994                     Virgin Interactive  0.11
## 2282 1995                     Virgin Interactive  1.09
## 2283 1996                     Virgin Interactive  2.52
## 2284 1997                     Virgin Interactive  0.35
## 2285 1998                     Virgin Interactive  2.82
## 2286 1999                     Virgin Interactive  0.07
## 2287 2000                     Virgin Interactive  0.84
## 2288 2001                     Virgin Interactive  1.14
## 2289 2002                     Virgin Interactive  0.00
## 2290 2010                     Virtual Play Games  0.00
## 2291 2011                                  Visco  0.00
## 2292 1995                          Vivendi Games  0.00
## 2293 1997                          Vivendi Games  0.09
## 2294 1998                          Vivendi Games  0.00
## 2295 1999                          Vivendi Games  0.00
## 2296 2000                          Vivendi Games  0.00
## 2297 2001                          Vivendi Games  0.00
## 2298 2002                          Vivendi Games  0.06
## 2299 2003                          Vivendi Games  0.00
## 2300 2004                          Vivendi Games  0.08
## 2301 2005                          Vivendi Games  0.00
## 2302 2006                          Vivendi Games  0.00
## 2303 2007                          Vivendi Games  0.00
## 2304 2008                          Vivendi Games  0.00
## 2305 2009                          Vivendi Games  0.00
## 2306  N/A                          Vivendi Games  0.00
## 2307 2001                                Wanadoo  0.00
## 2308 2002                                Wanadoo  0.06
## 2309 2003                                Wanadoo  0.00
## 2310 2005                                Wanadoo  0.00
## 2311 2007                                Warashi  0.02
## 2312 2011                          Wargaming.net  0.00
## 2313 2003 Warner Bros. Interactive Entertainment  0.00
## 2314 2005 Warner Bros. Interactive Entertainment  0.00
## 2315 2006 Warner Bros. Interactive Entertainment  0.00
## 2316 2007 Warner Bros. Interactive Entertainment  0.00
## 2317 2008 Warner Bros. Interactive Entertainment  0.00
## 2318 2009 Warner Bros. Interactive Entertainment  0.05
## 2319 2010 Warner Bros. Interactive Entertainment  0.00
## 2320 2011 Warner Bros. Interactive Entertainment  0.17
## 2321 2012 Warner Bros. Interactive Entertainment  0.13
## 2322 2013 Warner Bros. Interactive Entertainment  0.13
## 2323 2014 Warner Bros. Interactive Entertainment  0.18
## 2324 2015 Warner Bros. Interactive Entertainment  0.36
## 2325 2016 Warner Bros. Interactive Entertainment  0.01
## 2326  N/A Warner Bros. Interactive Entertainment  0.01
## 2327 1997                                   Warp  0.07
## 2328 2015                WayForward Technologies  0.00
## 2329 1999                       Westwood Studios  0.00
## 2330 2007                White Park Bay Software  0.00
## 2331 1982                     Wizard Video Games  0.00
## 2332 2002                      Xicat Interactive  0.00
## 2333 2003                      Xicat Interactive  0.00
## 2334 1997                     Xing Entertainment  0.16
## 2335 2005                                Xplosiv  0.00
## 2336 2006                                Xplosiv  0.00
## 2337 2007                                Xplosiv  0.00
## 2338 2008                                Xplosiv  0.00
## 2339 2002                               XS Games  0.00
## 2340 2004                               XS Games  0.00
## 2341 2005                               XS Games  0.00
## 2342 2007                               XS Games  0.00
## 2343 2008                               XS Games  0.00
## 2344 2009                               XS Games  0.00
## 2345 2010                               XS Games  0.00
## 2346 2012                            Xseed Games  0.21
## 2347 2013                            Xseed Games  0.12
## 2348 2014                            Xseed Games  0.04
## 2349 2015                            Xseed Games  0.00
## 2350 2015                       Yacht Club Games  0.01
## 2351 2006                   Yamasa Entertainment  0.04
## 2352 2006                                   Yeti  0.01
## 2353 2007                                   Yeti  0.01
## 2354 2008                                   Yeti  0.05
## 2355 2009                                   Yeti  0.03
## 2356 2010                                   Yeti  0.11
## 2357 2012                                   Yeti  0.01
## 2358 2016                                   Yeti  0.02
## 2359 2005                                 Yuke's  0.00
## 2360 2006                                 Yuke's  0.03
## 2361 2007                                 Yuke's  0.02
## 2362 1995                                Yumedia  0.06
## 2363 2006                                 Zenrin  0.04
## 2364 2007                                 Zenrin  0.02
## 2365 2002                 Zoo Digital Publishing  0.14
## 2366 2003                 Zoo Digital Publishing  0.00
## 2367 2004                 Zoo Digital Publishing  0.00
## 2368 2005                 Zoo Digital Publishing  0.00
## 2369 2006                 Zoo Digital Publishing  0.00
## 2370 2007                 Zoo Digital Publishing  0.00
## 2371 2008                 Zoo Digital Publishing  0.00
## 2372 2009                 Zoo Digital Publishing  0.00
## 2373 2008                              Zoo Games  0.00
## 2374 2009                              Zoo Games  0.00
## 2375 2010                              Zoo Games  0.00
## 2376 2011                              Zoo Games  0.00
## 2377 2007                            Zushi Games  0.00
## 2378 2008                            Zushi Games  0.01
## 2379 2009                            Zushi Games  0.00
aggregate(JP_Sales,by=list(Genre = Genre,Publisher=Publisher),sum)
##             Genre                              Publisher      x
## 1       Adventure                        10TACLE Studios   0.00
## 2          Puzzle                        10TACLE Studios   0.00
## 3        Strategy                        10TACLE Studios   0.00
## 4          Racing                             1C Company   0.00
## 5    Role-Playing                             1C Company   0.00
## 6        Strategy                             1C Company   0.00
## 7          Action           20th Century Fox Video Games   0.00
## 8         Shooter           20th Century Fox Video Games   0.00
## 9          Puzzle                                 2D Boy   0.00
## 10         Action                                    3DO   0.00
## 11      Adventure                                    3DO   0.00
## 12       Fighting                                    3DO   0.00
## 13       Platform                                    3DO   0.00
## 14         Puzzle                                    3DO   0.00
## 15   Role-Playing                                    3DO   0.00
## 16        Shooter                                    3DO   0.00
## 17         Sports                                    3DO   0.00
## 18       Strategy                                    3DO   0.00
## 19         Sports                                49Games   0.00
## 20         Action                              505 Games   0.38
## 21      Adventure                              505 Games   0.33
## 22       Fighting                              505 Games   0.06
## 23           Misc                              505 Games   0.00
## 24       Platform                              505 Games   0.36
## 25         Puzzle                              505 Games   0.01
## 26         Racing                              505 Games   0.00
## 27   Role-Playing                              505 Games   0.31
## 28        Shooter                              505 Games   0.08
## 29     Simulation                              505 Games   0.52
## 30         Sports                              505 Games   0.00
## 31       Strategy                              505 Games   0.00
## 32         Action                                    5pb   0.13
## 33      Adventure                                    5pb   1.34
## 34       Fighting                                    5pb   0.02
## 35   Role-Playing                                    5pb   0.03
## 36        Shooter                                    5pb   0.05
## 37     Simulation                                    5pb   0.04
## 38           Misc                               7G//AMES   0.00
## 39         Puzzle                               7G//AMES   0.00
## 40     Simulation                               7G//AMES   0.00
## 41         Sports                             989 Sports   0.00
## 42         Action                            989 Studios   0.00
## 43         Racing                            989 Studios   0.00
## 44         Sports                            989 Studios   0.10
## 45         Action                               Abylight   0.00
## 46         Action                  Acclaim Entertainment   0.00
## 47      Adventure                  Acclaim Entertainment   0.10
## 48       Fighting                  Acclaim Entertainment   0.48
## 49           Misc                  Acclaim Entertainment   0.00
## 50       Platform                  Acclaim Entertainment   0.04
## 51         Puzzle                  Acclaim Entertainment   0.00
## 52         Racing                  Acclaim Entertainment   0.08
## 53   Role-Playing                  Acclaim Entertainment   0.00
## 54        Shooter                  Acclaim Entertainment   0.44
## 55         Sports                  Acclaim Entertainment   0.00
## 56       Strategy                  Acclaim Entertainment   0.00
## 57       Platform                               Accolade   0.00
## 58         Racing                               Accolade   0.00
## 59         Sports                               Accolade   0.00
## 60         Action                            Ackkstudios   0.51
## 61      Adventure                            Ackkstudios   0.00
## 62   Role-Playing                            Ackkstudios   0.03
## 63         Sports                            Ackkstudios   0.11
## 64       Strategy                            Ackkstudios   0.01
## 65         Action                                Acquire   0.06
## 66      Adventure                                Acquire   0.22
## 67   Role-Playing                                Acquire   0.55
## 68       Strategy                                Acquire   0.08
## 69         Action                             Activision   1.08
## 70      Adventure                             Activision   0.10
## 71       Fighting                             Activision   0.00
## 72           Misc                             Activision   0.05
## 73       Platform                             Activision   0.07
## 74         Puzzle                             Activision   0.15
## 75         Racing                             Activision   0.04
## 76   Role-Playing                             Activision   0.26
## 77        Shooter                             Activision   4.64
## 78     Simulation                             Activision   0.02
## 79         Sports                             Activision   0.13
## 80       Strategy                             Activision   0.00
## 81         Action                    Activision Blizzard   0.00
## 82         Action                       Activision Value   0.00
## 83           Misc                       Activision Value   0.00
## 84        Shooter                       Activision Value   0.00
## 85         Sports                       Activision Value   0.00
## 86       Strategy                       Activision Value   0.00
## 87         Action                       Adeline Software   0.00
## 88     Simulation                               Aerosoft   0.00
## 89         Action                 Agatsuma Entertainment   0.03
## 90           Misc                 Agatsuma Entertainment   0.00
## 91       Platform                 Agatsuma Entertainment   0.03
## 92         Action                                 Agetec   0.15
## 93       Fighting                                 Agetec   0.07
## 94           Misc                                 Agetec   0.00
## 95         Racing                                 Agetec   0.00
## 96     Simulation                                 Agetec   0.16
## 97         Sports                                 Agetec   0.00
## 98       Strategy                                 Agetec   0.00
## 99         Action                            Aksys Games   0.04
## 100     Adventure                            Aksys Games   0.03
## 101  Role-Playing                            Aksys Games   0.11
## 102        Action                   Alawar Entertainment   0.00
## 103      Strategy                   Alawar Entertainment   0.00
## 104        Action                              Alchemist   0.19
## 105     Adventure                              Alchemist   0.95
## 106          Misc                              Alchemist   0.18
## 107  Role-Playing                              Alchemist   0.02
## 108       Shooter                              Alchemist   0.08
## 109        Action                   Alternative Software   0.00
## 110        Sports                   Alternative Software   0.00
## 111       Shooter                                 Altron   0.00
## 112          Misc                                 Alvion   0.04
## 113        Action                     American Softworks   0.00
## 114      Fighting                          Angel Studios   0.12
## 115  Role-Playing                          Angel Studios   0.29
## 116      Strategy                          Angel Studios   0.03
## 117        Action                        Answer Software   0.00
## 118      Fighting                         AQ Interactive   0.07
## 119          Misc                         AQ Interactive   0.04
## 120     Adventure                              Aqua Plus   0.76
## 121      Fighting                              Aqua Plus   0.05
## 122          Misc                              Aqua Plus   0.15
## 123  Role-Playing                              Aqua Plus   0.11
## 124      Strategy                              Aqua Plus   0.12
## 125        Sports                                  Aques   0.15
## 126        Action                       Arc System Works   0.06
## 127     Adventure                       Arc System Works   0.10
## 128      Fighting                       Arc System Works   0.34
## 129          Misc                       Arc System Works   0.00
## 130  Role-Playing                       Arc System Works   0.01
## 131        Sports                       Arc System Works   0.06
## 132      Fighting                    Arena Entertainment   0.00
## 133        Sports                    Arena Entertainment   0.00
## 134     Adventure                                   Aria   0.07
## 135          Misc                                  Arika   0.00
## 136  Role-Playing                                  Arika   0.00
## 137       Shooter                                  Arika   0.02
## 138  Role-Playing                                ArtDink   0.11
## 139    Simulation                                ArtDink   0.13
## 140      Strategy                                ArtDink   0.35
## 141          Misc                             Aruze Corp   1.09
## 142        Action                              ASC Games   0.00
## 143        Racing                              ASC Games   0.00
## 144        Sports                              ASC Games   0.00
## 145      Strategy                  Ascaron Entertainment   0.00
## 146  Role-Playing             Ascaron Entertainment GmbH   0.00
## 147      Strategy             Ascaron Entertainment GmbH   0.00
## 148     Adventure                    ASCII Entertainment   0.55
## 149          Misc                    ASCII Entertainment   0.08
## 150        Racing                    ASCII Entertainment   0.90
## 151  Role-Playing                    ASCII Entertainment   0.70
## 152    Simulation                    ASCII Entertainment   0.32
## 153        Sports                    ASCII Entertainment   6.48
## 154      Strategy                    ASCII Entertainment   0.37
## 155     Adventure                      ASCII Media Works   0.21
## 156  Role-Playing                      ASCII Media Works   0.06
## 157        Action                                 Asgard   0.03
## 158          Misc                                 Asgard   0.22
## 159          Misc                                    ASK   0.03
## 160     Adventure                Asmik Ace Entertainment   0.04
## 161      Fighting                Asmik Ace Entertainment   0.09
## 162    Simulation                Asmik Ace Entertainment   0.09
## 163        Sports                             Asmik Corp   0.17
## 164     Adventure                                  Aspyr   0.00
## 165          Misc                                  Aspyr   0.00
## 166  Role-Playing                                  Aspyr   0.00
## 167    Simulation                                  Aspyr   0.00
## 168        Sports                                  Aspyr   0.00
## 169        Action                               Astragon   0.00
## 170     Adventure                               Astragon   0.00
## 171        Puzzle                               Astragon   0.00
## 172    Simulation                               Astragon   0.00
## 173     Adventure                   Asylum Entertainment   0.00
## 174      Platform                   Asylum Entertainment   0.00
## 175    Simulation                   Asylum Entertainment   0.00
## 176        Action                                  Atari   0.14
## 177     Adventure                                  Atari   0.17
## 178      Fighting                                  Atari   5.47
## 179          Misc                                  Atari   0.07
## 180      Platform                                  Atari   0.00
## 181        Puzzle                                  Atari   0.21
## 182        Racing                                  Atari   0.07
## 183  Role-Playing                                  Atari   1.62
## 184       Shooter                                  Atari   0.09
## 185    Simulation                                  Atari   2.53
## 186        Sports                                  Atari   0.34
## 187      Strategy                                  Atari   0.00
## 188     Adventure                                 Athena   0.07
## 189        Sports                                 Athena   0.00
## 190        Action                                  Atlus   0.00
## 191     Adventure                                  Atlus   0.03
## 192      Fighting                                  Atlus   0.50
## 193          Misc                                  Atlus   0.02
## 194      Platform                                  Atlus   0.00
## 195        Racing                                  Atlus   0.12
## 196  Role-Playing                                  Atlus   5.93
## 197       Shooter                                  Atlus   0.11
## 198    Simulation                                  Atlus   0.00
## 199        Sports                                  Atlus   0.00
## 200      Strategy                                  Atlus   0.02
## 201        Action                     Avalon Interactive   0.00
## 202        Racing                     Avalon Interactive   0.00
## 203  Role-Playing                     Avalon Interactive   0.00
## 204       Shooter                     Avalon Interactive   0.00
## 205    Simulation                     Avalon Interactive   0.00
## 206        Action                              Avanquest   0.00
## 207     Adventure                              Avanquest   0.00
## 208          Misc                              Avanquest   0.00
## 209        Puzzle                              Avanquest   0.00
## 210    Simulation                              Avanquest   0.00
## 211        Sports                              Avanquest   0.00
## 212        Action                     Avanquest Software   0.00
## 213     Adventure                     Avanquest Software   0.03
## 214          Misc                     Avanquest Software   0.00
## 215        Sports                                  Axela   0.24
## 216        Action                     BAM! Entertainment   0.00
## 217     Adventure                     BAM! Entertainment   0.00
## 218      Fighting                     BAM! Entertainment   0.00
## 219          Misc                     BAM! Entertainment   0.00
## 220      Platform                     BAM! Entertainment   0.00
## 221        Racing                     BAM! Entertainment   0.03
## 222       Shooter                     BAM! Entertainment   0.00
## 223        Sports                     BAM! Entertainment   0.00
## 224        Action                              Banpresto   0.30
## 225     Adventure                              Banpresto   0.62
## 226      Fighting                              Banpresto   0.12
## 227          Misc                              Banpresto   0.01
## 228      Platform                              Banpresto   0.04
## 229        Puzzle                              Banpresto   1.96
## 230        Racing                              Banpresto   0.04
## 231  Role-Playing                              Banpresto   2.11
## 232       Shooter                              Banpresto   0.07
## 233    Simulation                              Banpresto   0.70
## 234        Sports                              Banpresto   0.49
## 235      Strategy                              Banpresto   9.98
## 236          Misc                                Benesse   0.32
## 237        Action                               Berkeley   0.00
## 238        Action                     Bethesda Softworks   0.35
## 239        Racing                     Bethesda Softworks   0.00
## 240  Role-Playing                     Bethesda Softworks   0.90
## 241       Shooter                     Bethesda Softworks   0.20
## 242    Simulation                     Bethesda Softworks   0.00
## 243        Sports                     Bethesda Softworks   0.00
## 244      Strategy                     Bethesda Softworks   0.00
## 245     Adventure                    Big Ben Interactive   0.00
## 246      Platform                    Big Ben Interactive   0.00
## 247        Racing                    Big Ben Interactive   0.00
## 248       Shooter                    Big Ben Interactive   0.00
## 249        Sports                    Big Ben Interactive   0.00
## 250        Action                         Big Fish Games   0.00
## 251     Adventure                         Big Fish Games   0.00
## 252        Sports                     Bigben Interactive   0.00
## 253        Racing                      bitComposer Games   0.00
## 254    Simulation                      bitComposer Games   0.00
## 255        Action                       Black Bean Games   0.00
## 256          Misc                       Black Bean Games   0.00
## 257        Racing                       Black Bean Games   0.01
## 258        Sports                       Black Bean Games   0.00
## 259      Strategy                       Black Bean Games   0.00
## 260        Action                      Black Label Games   0.00
## 261        Action               Blast! Entertainment Ltd   0.00
## 262     Adventure               Blast! Entertainment Ltd   0.00
## 263        Sports               Blast! Entertainment Ltd   0.00
## 264    Simulation                              Blue Byte   0.00
## 265      Strategy                              Blue Byte   0.00
## 266      Platform          BMG Interactive Entertainment   0.00
## 267        Racing          BMG Interactive Entertainment   0.00
## 268       Shooter          BMG Interactive Entertainment   0.00
## 269        Sports          BMG Interactive Entertainment   0.00
## 270       Shooter                    Bohemia Interactive   0.00
## 271        Action                                   Bomb   0.00
## 272     Adventure                               Boost On   0.01
## 273        Puzzle                                    BPS   0.32
## 274        Racing                                    BPS   0.20
## 275          Misc                    Brash Entertainment   0.00
## 276      Platform                    Brash Entertainment   0.00
## 277        Action                               Broccoli   0.28
## 278     Adventure                               Broccoli   0.43
## 279      Fighting                               Broccoli   0.03
## 280          Misc                               Broccoli   0.10
## 281  Role-Playing                               Broccoli   0.01
## 282    Simulation                               Broccoli   0.03
## 283      Strategy                               Broccoli   0.08
## 284     Adventure                              BushiRoad   0.03
## 285        Action                                 Capcom  22.23
## 286     Adventure                                 Capcom   4.61
## 287      Fighting                                 Capcom   9.37
## 288          Misc                                 Capcom   0.38
## 289      Platform                                 Capcom   5.72
## 290        Puzzle                                 Capcom   0.00
## 291        Racing                                 Capcom   0.06
## 292  Role-Playing                                 Capcom  23.45
## 293       Shooter                                 Capcom   2.10
## 294    Simulation                                 Capcom   0.00
## 295        Sports                                 Capcom   0.16
## 296      Strategy                                 Capcom   0.00
## 297        Action                                   Cave   0.02
## 298     Adventure                                   Cave   0.01
## 299          Misc                                   Cave   0.00
## 300       Shooter                                   Cave   0.15
## 301        Action                        CBS Electronics   0.00
## 302  Role-Playing                                    CCP   0.00
## 303     Adventure             CDV Software Entertainment   0.00
## 304        Puzzle             CDV Software Entertainment   0.00
## 305    Simulation             CDV Software Entertainment   0.00
## 306      Strategy             CDV Software Entertainment   0.00
## 307        Action                               ChunSoft   0.04
## 308     Adventure                               ChunSoft   1.75
## 309  Role-Playing                               ChunSoft   1.82
## 310        Action                       City Interactive   0.00
## 311     Adventure                       City Interactive   0.00
## 312          Misc                       City Interactive   0.00
## 313        Puzzle                       City Interactive   0.00
## 314       Shooter                       City Interactive   0.07
## 315    Simulation                       City Interactive   0.00
## 316      Fighting       Cloud Imperium Games Corporation   0.00
## 317     Adventure                         Coconuts Japan   0.00
## 318          Misc                         Coconuts Japan   0.05
## 319        Action                            Codemasters   0.00
## 320     Adventure                            Codemasters   0.00
## 321          Misc                            Codemasters   0.00
## 322        Puzzle                            Codemasters   0.00
## 323        Racing                            Codemasters   0.66
## 324  Role-Playing                            Codemasters   0.00
## 325       Shooter                            Codemasters   0.15
## 326    Simulation                            Codemasters   0.00
## 327        Sports                            Codemasters   0.01
## 328      Strategy                            Codemasters   0.01
## 329  Role-Playing                     Codemasters Online   0.00
## 330        Action                      CokeM Interactive   0.00
## 331        Action                                 Coleco   0.00
## 332      Platform                                 Coleco   0.00
## 333       Shooter                                 Coleco   0.00
## 334        Action                                Comfort   0.02
## 335     Adventure                                Comfort   0.13
## 336          Misc                               Commseed   0.01
## 337        Puzzle                                Compile   2.32
## 338  Role-Playing                                Compile   0.03
## 339        Action                          Compile Heart   0.06
## 340     Adventure                          Compile Heart   0.11
## 341  Role-Playing                          Compile Heart   0.60
## 342      Strategy                          Compile Heart   0.00
## 343        Action               Conspiracy Entertainment   0.00
## 344          Misc               Conspiracy Entertainment   0.00
## 345      Platform               Conspiracy Entertainment   0.00
## 346        Puzzle               Conspiracy Entertainment   0.00
## 347        Racing               Conspiracy Entertainment   0.00
## 348       Shooter               Conspiracy Entertainment   0.00
## 349    Simulation               Conspiracy Entertainment   0.00
## 350        Sports               Conspiracy Entertainment   0.00
## 351        Action                       Core Design Ltd.   0.00
## 352    Simulation                       Core Design Ltd.   0.00
## 353        Action                           CPG Products   0.00
## 354        Action                    Crave Entertainment   0.00
## 355     Adventure                    Crave Entertainment   0.00
## 356      Fighting                    Crave Entertainment   0.00
## 357          Misc                    Crave Entertainment   0.00
## 358      Platform                    Crave Entertainment   0.00
## 359        Puzzle                    Crave Entertainment   0.00
## 360        Racing                    Crave Entertainment   0.15
## 361  Role-Playing                    Crave Entertainment   0.30
## 362       Shooter                    Crave Entertainment   0.00
## 363    Simulation                    Crave Entertainment   0.00
## 364        Sports                    Crave Entertainment   0.00
## 365      Strategy                    Crave Entertainment   0.00
## 366     Adventure                          Creative Core   0.03
## 367          Misc                          Creative Core   0.01
## 368    Simulation                          Creative Core   0.06
## 369        Action                            Crimson Cow   0.00
## 370     Adventure                            Crimson Cow   0.00
## 371     Adventure                       Crystal Dynamics   0.00
## 372      Platform                       Crystal Dynamics   0.00
## 373        Racing                       Crystal Dynamics   0.00
## 374  Role-Playing                       Crystal Dynamics   0.00
## 375        Sports                       Crystal Dynamics   0.00
## 376       Shooter                                CTO SpA   0.00
## 377        Sports                                CTO SpA   0.00
## 378     Adventure                          Culture Brain   0.02
## 379          Misc                          Culture Brain   0.02
## 380  Role-Playing                          Culture Brain   0.03
## 381        Sports                          Culture Brain   0.20
## 382        Puzzle                     Culture Publishers   0.00
## 383        Action                             CyberFront   0.02
## 384     Adventure                             CyberFront   0.15
## 385          Misc                             CyberFront   0.03
## 386  Role-Playing                             CyberFront   0.03
## 387      Strategy                             CyberFront   0.03
## 388      Platform                                Cygames   0.03
## 389        Action                            D3Publisher   0.68
## 390     Adventure                            D3Publisher   0.72
## 391      Fighting                            D3Publisher   0.13
## 392          Misc                            D3Publisher   2.09
## 393      Platform                            D3Publisher   0.04
## 394        Puzzle                            D3Publisher   0.03
## 395        Racing                            D3Publisher   0.00
## 396  Role-Playing                            D3Publisher   0.14
## 397       Shooter                            D3Publisher   0.47
## 398    Simulation                            D3Publisher   0.31
## 399        Sports                            D3Publisher   0.00
## 400      Strategy                            D3Publisher   0.04
## 401     Adventure                               Daedalic   0.00
## 402     Adventure                 Daedalic Entertainment   0.00
## 403          Misc                                  Daito   0.23
## 404        Action                               Data Age   0.00
## 405          Misc                Data Design Interactive   0.00
## 406        Racing                Data Design Interactive   0.00
## 407        Sports                Data Design Interactive   0.00
## 408     Adventure                              Data East   0.11
## 409  Role-Playing                              Data East   0.04
## 410     Adventure                         Datam Polystar   0.03
## 411        Action                            Deep Silver   0.50
## 412     Adventure                            Deep Silver   0.23
## 413      Fighting                            Deep Silver   0.03
## 414          Misc                            Deep Silver   0.00
## 415      Platform                            Deep Silver   0.00
## 416        Puzzle                            Deep Silver   0.00
## 417        Racing                            Deep Silver   0.00
## 418  Role-Playing                            Deep Silver   0.30
## 419       Shooter                            Deep Silver   0.03
## 420    Simulation                            Deep Silver   0.00
## 421        Sports                            Deep Silver   0.00
## 422      Strategy                            Deep Silver   0.00
## 423        Action              Destination Software, Inc   0.00
## 424          Misc              Destination Software, Inc   0.00
## 425        Puzzle              Destination Software, Inc   0.00
## 426        Racing              Destination Software, Inc   0.00
## 427  Role-Playing              Destination Software, Inc   0.00
## 428    Simulation              Destination Software, Inc   0.00
## 429        Sports              Destination Software, Inc   0.00
## 430        Action                              Destineer   0.00
## 431     Adventure                              Destineer   0.00
## 432          Misc                              Destineer   0.00
## 433      Platform                              Destineer   0.00
## 434        Puzzle                              Destineer   0.00
## 435        Racing                              Destineer   0.00
## 436       Shooter                              Destineer   0.00
## 437    Simulation                              Destineer   0.00
## 438        Sports                              Destineer   0.00
## 439        Sports                            Detn8 Games   0.00
## 440        Puzzle                       Devolver Digital   0.00
## 441       Shooter                       Devolver Digital   0.00
## 442        Puzzle                        DHM Interactive   0.00
## 443       Shooter                        DHM Interactive   0.00
## 444    Simulation                        DHM Interactive   0.00
## 445        Sports                               DigiCube   0.06
## 446        Action             Disney Interactive Studios   0.09
## 447     Adventure             Disney Interactive Studios   0.03
## 448          Misc             Disney Interactive Studios   0.27
## 449      Platform             Disney Interactive Studios   0.12
## 450        Puzzle             Disney Interactive Studios   0.00
## 451        Racing             Disney Interactive Studios   0.05
## 452  Role-Playing             Disney Interactive Studios   0.00
## 453       Shooter             Disney Interactive Studios   0.00
## 454    Simulation             Disney Interactive Studios   0.00
## 455        Sports             Disney Interactive Studios   0.00
## 456          Misc                                 Dorart   0.03
## 457        Action                        dramatic create   0.01
## 458     Adventure                        dramatic create   0.10
## 459     Adventure               DreamCatcher Interactive   0.00
## 460          Misc               DreamCatcher Interactive   0.00
## 461      Platform               DreamCatcher Interactive   0.00
## 462        Puzzle               DreamCatcher Interactive   0.00
## 463       Shooter               DreamCatcher Interactive   0.00
## 464    Simulation               DreamCatcher Interactive   0.00
## 465        Sports               DreamCatcher Interactive   0.00
## 466      Platform                 DreamWorks Interactive   0.00
## 467        Action                              DSI Games   0.00
## 468     Adventure                              DSI Games   0.00
## 469          Misc                              DSI Games   0.00
## 470    Simulation                              DSI Games   0.00
## 471        Sports                              DSI Games   0.00
## 472        Action                      DTP Entertainment   0.01
## 473     Adventure                      DTP Entertainment   0.00
## 474          Misc                      DTP Entertainment   0.00
## 475        Puzzle                      DTP Entertainment   0.00
## 476  Role-Playing                      DTP Entertainment   0.00
## 477       Shooter                      DTP Entertainment   0.01
## 478    Simulation                      DTP Entertainment   0.00
## 479        Sports                      DTP Entertainment   0.00
## 480      Strategy                      DTP Entertainment   0.00
## 481        Racing               Dusenberry Martin Racing   0.00
## 482       Shooter                               EA Games   0.00
## 483        Puzzle                       Easy Interactive   0.00
## 484      Fighting                                  Ecole   0.06
## 485          Misc                                   Edia   0.09
## 486        Action                      Eidos Interactive   3.41
## 487     Adventure                      Eidos Interactive   0.00
## 488      Fighting                      Eidos Interactive   0.16
## 489          Misc                      Eidos Interactive   0.00
## 490      Platform                      Eidos Interactive   0.00
## 491        Puzzle                      Eidos Interactive   0.00
## 492        Racing                      Eidos Interactive   0.00
## 493  Role-Playing                      Eidos Interactive   2.34
## 494       Shooter                      Eidos Interactive   0.19
## 495    Simulation                      Eidos Interactive   0.00
## 496        Sports                      Eidos Interactive   0.00
## 497      Strategy                      Eidos Interactive   0.01
## 498        Action                        Electronic Arts   2.49
## 499     Adventure                        Electronic Arts   0.08
## 500      Fighting                        Electronic Arts   0.03
## 501          Misc                        Electronic Arts   0.01
## 502      Platform                        Electronic Arts   0.05
## 503        Puzzle                        Electronic Arts   0.00
## 504        Racing                        Electronic Arts   1.20
## 505  Role-Playing                        Electronic Arts   2.66
## 506       Shooter                        Electronic Arts   2.93
## 507    Simulation                        Electronic Arts   0.88
## 508        Sports                        Electronic Arts   3.27
## 509      Strategy                        Electronic Arts   0.44
## 510        Action                 Electronic Arts Victor   0.00
## 511        Sports                 Electronic Arts Victor   0.00
## 512     Adventure                                    Elf   0.36
## 513      Strategy                                    Elf   0.28
## 514    Simulation                                  Elite   0.00
## 515        Action                     Empire Interactive   0.00
## 516     Adventure                     Empire Interactive   0.00
## 517      Fighting                     Empire Interactive   0.38
## 518          Misc                     Empire Interactive   0.00
## 519        Puzzle                     Empire Interactive   0.00
## 520        Racing                     Empire Interactive   0.00
## 521  Role-Playing                     Empire Interactive   0.04
## 522       Shooter                     Empire Interactive   0.00
## 523    Simulation                     Empire Interactive   0.00
## 524        Sports                     Empire Interactive   0.00
## 525        Action                                 Encore   0.00
## 526        Racing                                 Encore   0.00
## 527  Role-Playing                                 Encore   0.00
## 528        Action                       Enix Corporation   0.00
## 529          Misc                       Enix Corporation   0.47
## 530  Role-Playing                       Enix Corporation  31.26
## 531    Simulation                       Enix Corporation   0.55
## 532        Sports                       Enix Corporation   0.12
## 533       Shooter                      Enjoy Gaming ltd.   0.00
## 534     Adventure                             Enterbrain   0.25
## 535      Fighting                             Enterbrain   0.00
## 536  Role-Playing                             Enterbrain   0.56
## 537    Simulation                             Enterbrain   0.04
## 538        Sports                             Enterbrain   1.09
## 539      Strategy              EON Digital Entertainment   0.00
## 540        Action                             Epic Games   0.00
## 541          Misc                                  Epoch   0.08
## 542      Platform                                  Epoch   0.15
## 543  Role-Playing                                  Epoch   0.12
## 544        Sports                                  Epoch   0.64
## 545    Simulation                                 Ertain   0.00
## 546      Fighting                                    ESP   0.03
## 547      Platform                                    ESP   0.00
## 548  Role-Playing                                    ESP   0.42
## 549       Shooter                                    ESP   0.03
## 550    Simulation                                    ESP   0.06
## 551        Action                        Essential Games   0.02
## 552       Shooter                        Essential Games   0.17
## 553      Strategy                        Essential Games   0.03
## 554        Action                        Evolution Games   0.06
## 555      Platform                          Evolved Games   0.00
## 556        Racing                          Evolved Games   0.00
## 557       Shooter                          Evolved Games   0.00
## 558        Action                   Excalibur Publishing   0.00
## 559    Simulation                   Excalibur Publishing   0.00
## 560  Role-Playing                        Experience Inc.   0.06
## 561  Role-Playing            Extreme Entertainment Group   0.01
## 562      Fighting                     Falcom Corporation   0.06
## 563  Role-Playing                     Falcom Corporation   0.85
## 564          Misc                                 Fields   0.03
## 565        Action                       Flashpoint Games   0.00
## 566      Platform                       Flashpoint Games   0.00
## 567  Role-Playing                            Flight-Plan   0.08
## 568      Strategy                            Flight-Plan   0.04
## 569        Action                 Focus Home Interactive   0.00
## 570     Adventure                 Focus Home Interactive   0.00
## 571          Misc                 Focus Home Interactive   0.00
## 572      Platform                 Focus Home Interactive   0.00
## 573        Puzzle                 Focus Home Interactive   0.00
## 574        Racing                 Focus Home Interactive   0.00
## 575  Role-Playing                 Focus Home Interactive   0.02
## 576    Simulation                 Focus Home Interactive   0.02
## 577        Sports                 Focus Home Interactive   0.00
## 578      Strategy                 Focus Home Interactive   0.00
## 579          Misc                       Focus Multimedia   0.00
## 580        Puzzle                       Focus Multimedia   0.00
## 581    Simulation                                 fonfun   0.02
## 582     Adventure                    Foreign Media Games   0.00
## 583          Misc                    Foreign Media Games   0.00
## 584        Puzzle                    Foreign Media Games   0.00
## 585    Simulation                    Foreign Media Games   0.00
## 586     Adventure                              Fortyfive   0.06
## 587        Action                        Fox Interactive   0.00
## 588      Platform                        Fox Interactive   0.00
## 589       Shooter                        Fox Interactive   0.00
## 590        Sports                        Fox Interactive   0.00
## 591        Action                          From Software   0.02
## 592     Adventure                          From Software   0.07
## 593  Role-Playing                          From Software   0.30
## 594       Shooter                          From Software   0.06
## 595    Simulation                          From Software   0.54
## 596     Adventure                                   Fuji   0.03
## 597        Action                           Funbox Media   0.00
## 598     Adventure                           Funbox Media   0.00
## 599          Misc                           Funbox Media   0.00
## 600      Strategy                           Funbox Media   0.00
## 601  Role-Playing                                 Funcom   0.00
## 602        Racing                                FunSoft   0.00
## 603        Puzzle                                 Funsta   0.00
## 604       Shooter                                 Funsta   0.00
## 605        Action                                  FuRyu   0.51
## 606     Adventure                                  FuRyu   0.06
## 607          Misc                                  FuRyu   0.24
## 608  Role-Playing                                  FuRyu   0.33
## 609    Simulation                                  FuRyu   0.03
## 610        Action                      FuRyu Corporation   0.00
## 611      Fighting                                  G.Rev   0.03
## 612       Shooter                                  G.Rev   0.01
## 613       Shooter                                   Gaga   0.02
## 614     Adventure                 Gainax Network Systems   0.11
## 615          Misc                 Gainax Network Systems   0.05
## 616          Misc                                 Gakken   0.04
## 617  Role-Playing                              Game Arts   0.14
## 618        Action                           Game Factory   0.00
## 619     Adventure                           Game Factory   0.00
## 620      Fighting                           Game Factory   0.00
## 621          Misc                           Game Factory   0.00
## 622      Platform                           Game Factory   0.00
## 623        Puzzle                           Game Factory   0.00
## 624        Racing                           Game Factory   0.00
## 625  Role-Playing                           Game Factory   0.00
## 626    Simulation                           Game Factory   0.00
## 627          Misc                              Game Life   0.00
## 628    Simulation                              Game Life   0.00
## 629        Action                             Gamebridge   0.24
## 630        Action                               Gamecock   0.00
## 631          Misc                               Gamecock   0.00
## 632      Strategy                               Gamecock   0.00
## 633          Misc                               Gameloft   0.00
## 634        Action                 GameMill Entertainment   0.00
## 635     Adventure                 GameMill Entertainment   0.00
## 636          Misc                 GameMill Entertainment   0.00
## 637        Sports                 GameMill Entertainment   0.00
## 638          Misc                                GameTek   0.00
## 639          Misc                Gathering of Developers   0.00
## 640        Racing                Gathering of Developers   0.00
## 641       Shooter                Gathering of Developers   0.00
## 642      Strategy                Gathering of Developers   0.00
## 643      Strategy                  General Entertainment   0.13
## 644        Action                                  Genki   0.05
## 645        Racing                                  Genki   0.43
## 646        Sports                                  Genki   0.04
## 647        Puzzle                            Genterprise   0.01
## 648  Role-Playing                             Ghostlight   0.86
## 649    Simulation                             Ghostlight   0.00
## 650        Sports                             Ghostlight   0.00
## 651      Strategy                             Ghostlight   0.03
## 652     Adventure                                   Giga   0.02
## 653        Action                                 Giza10   0.02
## 654      Strategy                                  Glams   0.08
## 655          Misc                 Global A Entertainment   0.01
## 656  Role-Playing                 Global A Entertainment   0.00
## 657        Action                            Global Star   0.00
## 658     Adventure                            Global Star   0.00
## 659      Fighting                            Global Star   0.00
## 660      Platform                            Global Star   0.00
## 661        Racing                            Global Star   0.00
## 662       Shooter                            Global Star   0.00
## 663    Simulation                            Global Star   0.00
## 664        Sports                            Global Star   0.00
## 665      Strategy                            Global Star   0.00
## 666     Adventure                            GN Software   0.05
## 667  Role-Playing                                    GOA   0.00
## 668      Fighting                           Gotham Games   0.00
## 669      Platform                           Gotham Games   0.00
## 670       Shooter                           Gotham Games   0.00
## 671        Sports                           Gotham Games   0.00
## 672          Misc                               Graffiti   0.00
## 673  Role-Playing                               Graffiti   0.00
## 674       Shooter                               Graffiti   0.00
## 675    Simulation                               Graffiti   0.00
## 676      Fighting                       Grand Prix Games   0.06
## 677    Simulation                 Graphsim Entertainment   0.00
## 678        Action                Gremlin Interactive Ltd   0.00
## 679      Platform                Gremlin Interactive Ltd   0.00
## 680        Racing                Gremlin Interactive Ltd   0.00
## 681       Shooter                Gremlin Interactive Ltd   0.00
## 682        Sports                Gremlin Interactive Ltd   0.00
## 683        Sports                  Griffin International   0.00
## 684       Shooter                           Groove Games   0.00
## 685     Adventure                                    GSP   0.00
## 686          Misc                                    GSP   0.00
## 687        Puzzle                                    GSP   0.00
## 688    Simulation                                    GSP   0.00
## 689        Action                         GT Interactive   0.02
## 690      Fighting                         GT Interactive   0.00
## 691          Misc                         GT Interactive   0.00
## 692      Platform                         GT Interactive   0.00
## 693        Racing                         GT Interactive   0.00
## 694       Shooter                         GT Interactive   0.00
## 695    Simulation                         GT Interactive   0.00
## 696        Sports                         GT Interactive   0.00
## 697        Action                                 GungHo   0.21
## 698     Adventure                                 GungHo   0.02
## 699          Misc                                 GungHo   0.04
## 700  Role-Playing                                 GungHo   1.91
## 701     Adventure                                   Gust   0.10
## 702  Role-Playing                                   Gust   0.73
## 703      Strategy                                   Gust   0.01
## 704          Misc                              Hackberry   0.31
## 705        Puzzle                         HAL Laboratory   0.00
## 706        Action                    Hamster Corporation   0.00
## 707    Simulation                    Hamster Corporation   0.02
## 708     Adventure                               Happinet   0.15
## 709          Misc                               Happinet   0.02
## 710    Simulation                               Happinet   0.01
## 711          Misc                 Harmonix Music Systems   0.00
## 712        Action                     Hasbro Interactive   0.00
## 713          Misc                     Hasbro Interactive   0.00
## 714      Platform                     Hasbro Interactive   0.00
## 715        Puzzle                     Hasbro Interactive   0.00
## 716        Racing                     Hasbro Interactive   0.00
## 717       Shooter                     Hasbro Interactive   0.00
## 718  Role-Playing                      Havas Interactive   0.00
## 719     Adventure                           Headup Games   0.00
## 720    Simulation                           Hearty Robin   0.08
## 721    Simulation                                   Hect   0.50
## 722        Action                            Hello Games   0.02
## 723     Adventure                        Her Interactive   0.00
## 724        Action                        Hip Interactive   0.00
## 725       Shooter                        Hip Interactive   0.00
## 726     Adventure                        HMH Interactive   0.00
## 727          Misc                        HMH Interactive   0.00
## 728        Sports           Home Entertainment Suppliers   0.00
## 729          Misc                   Hudson Entertainment   0.44
## 730      Platform                   Hudson Entertainment   0.00
## 731        Puzzle                   Hudson Entertainment   0.03
## 732  Role-Playing                   Hudson Entertainment   0.00
## 733       Shooter                   Hudson Entertainment   0.00
## 734    Simulation                   Hudson Entertainment   0.74
## 735        Sports                   Hudson Entertainment   0.00
## 736        Action                            Hudson Soft   1.42
## 737     Adventure                            Hudson Soft   0.12
## 738      Fighting                            Hudson Soft   0.08
## 739          Misc                            Hudson Soft   4.85
## 740      Platform                            Hudson Soft   2.77
## 741        Puzzle                            Hudson Soft   5.23
## 742  Role-Playing                            Hudson Soft   1.75
## 743       Shooter                            Hudson Soft   0.84
## 744    Simulation                            Hudson Soft   0.92
## 745        Sports                            Hudson Soft   1.23
## 746      Strategy                            Hudson Soft   0.00
## 747     Adventure                    Human Entertainment   0.24
## 748      Fighting                    Human Entertainment   1.45
## 749        Racing                    Human Entertainment   0.36
## 750    Simulation                    Human Entertainment   0.30
## 751        Sports                    Human Entertainment   0.47
## 752      Strategy                    Human Entertainment   0.00
## 753        Action                                  HuneX   0.01
## 754     Adventure                                  HuneX   0.02
## 755  Role-Playing                    Iceberg Interactive   0.00
## 756      Strategy                    Iceberg Interactive   0.00
## 757       Shooter                            id Software   0.00
## 758        Action                           Idea Factory   0.64
## 759     Adventure                           Idea Factory   2.19
## 760          Misc                           Idea Factory   0.15
## 761  Role-Playing                           Idea Factory   0.24
## 762      Strategy                           Idea Factory   0.10
## 763        Action             Idea Factory International   0.11
## 764  Role-Playing             Idea Factory International   0.09
## 765        Action                           IE Institute   0.02
## 766          Misc                           IE Institute   0.94
## 767        Action                 Ignition Entertainment   0.11
## 768     Adventure                 Ignition Entertainment   0.00
## 769      Fighting                 Ignition Entertainment   0.21
## 770          Misc                 Ignition Entertainment   0.01
## 771      Platform                 Ignition Entertainment   0.00
## 772        Puzzle                 Ignition Entertainment   0.18
## 773        Racing                 Ignition Entertainment   0.00
## 774  Role-Playing                 Ignition Entertainment   0.13
## 775       Shooter                 Ignition Entertainment   0.04
## 776        Sports                 Ignition Entertainment   0.00
## 777      Strategy                 Ignition Entertainment   0.00
## 778        Action                     Illusion Softworks   0.00
## 779     Adventure                                 Imadio   0.14
## 780  Role-Playing                            Image Epoch   0.10
## 781     Adventure                        imageepoch Inc.   0.01
## 782  Role-Playing                        imageepoch Inc.   0.03
## 783    Simulation                             Imageworks   0.02
## 784        Action                                 Imagic   0.00
## 785       Shooter                                 Imagic   0.00
## 786     Adventure                              Imagineer   0.40
## 787      Fighting                              Imagineer   0.00
## 788        Racing                              Imagineer   0.00
## 789  Role-Playing                              Imagineer   1.33
## 790    Simulation                              Imagineer   0.16
## 791        Sports                              Imagineer   0.64
## 792          Misc                                   Imax   0.06
## 793     Adventure                            Indie Games   0.00
## 794    Simulation                            Indie Games   0.14
## 795        Action                             Infogrames   0.00
## 796     Adventure                             Infogrames   0.00
## 797      Fighting                             Infogrames   0.00
## 798          Misc                             Infogrames   0.05
## 799      Platform                             Infogrames   0.00
## 800        Racing                             Infogrames   0.17
## 801  Role-Playing                             Infogrames   0.16
## 802       Shooter                             Infogrames   0.00
## 803    Simulation                             Infogrames   0.00
## 804        Sports                             Infogrames   0.00
## 805      Strategy                             Infogrames   0.00
## 806        Action                        Insomniac Games   0.00
## 807     Adventure                           Interchannel   0.10
## 808      Strategy                     Interchannel-Holon   0.01
## 809      Platform                              Intergrow   0.03
## 810        Action                              Interplay   0.00
## 811     Adventure                              Interplay   0.00
## 812      Fighting                              Interplay   0.00
## 813          Misc                              Interplay   0.00
## 814      Platform                              Interplay   0.00
## 815        Racing                              Interplay   0.01
## 816  Role-Playing                              Interplay   0.00
## 817       Shooter                              Interplay   0.00
## 818    Simulation                              Interplay   0.00
## 819        Sports                              Interplay   0.00
## 820       Shooter                  Interplay Productions   0.00
## 821        Sports             Interworks Unlimited, Inc.   0.00
## 822        Action                           Inti Creates   0.01
## 823        Action                  Introversion Software   0.00
## 824  Role-Playing                   inXile Entertainment   0.00
## 825        Action              Irem Software Engineering   0.09
## 826      Fighting              Irem Software Engineering   0.01
## 827          Misc              Irem Software Engineering   0.17
## 828  Role-Playing              Irem Software Engineering   0.01
## 829       Shooter              Irem Software Engineering   0.00
## 830      Strategy              Irem Software Engineering   0.03
## 831        Action                       ITT Family Games   0.00
## 832        Puzzle                              Ivolgamus   0.00
## 833        Puzzle                                   iWin   0.00
## 834      Platform                      Jack of All Games   0.00
## 835       Shooter                      Jack of All Games   0.00
## 836        Action                                 Jaleco   0.04
## 837      Fighting                                 Jaleco   0.00
## 838          Misc                                 Jaleco   0.11
## 839        Puzzle                                 Jaleco   0.00
## 840        Racing                                 Jaleco   0.29
## 841       Shooter                                 Jaleco   0.00
## 842        Sports                                 Jaleco   0.20
## 843      Strategy                                 Jaleco   0.00
## 844          Misc                     Jester Interactive   0.00
## 845        Racing                     Jester Interactive   0.00
## 846    Simulation                                Jorudan   0.93
## 847        Action                     JoWood Productions   0.00
## 848     Adventure                     JoWood Productions   0.00
## 849          Misc                     JoWood Productions   0.00
## 850      Platform                     JoWood Productions   0.00
## 851        Puzzle                     JoWood Productions   0.00
## 852  Role-Playing                     JoWood Productions   0.01
## 853    Simulation                     JoWood Productions   0.00
## 854        Sports                     JoWood Productions   0.00
## 855      Strategy                     JoWood Productions   0.00
## 856    Simulation                            Just Flight   0.00
## 857        Action                                    JVC   0.00
## 858      Fighting                                    JVC   0.12
## 859          Misc                                    JVC   0.00
## 860        Puzzle                                    JVC   0.00
## 861        Racing                                    JVC   0.00
## 862       Shooter                                    JVC   0.00
## 863        Action                         Kadokawa Games   0.27
## 864     Adventure                         Kadokawa Games   0.12
## 865          Misc                         Kadokawa Games   0.12
## 866  Role-Playing                         Kadokawa Games   0.05
## 867    Simulation                         Kadokawa Games   0.02
## 868        Action                        Kadokawa Shoten   0.09
## 869     Adventure                        Kadokawa Shoten   1.70
## 870          Misc                        Kadokawa Shoten   0.02
## 871  Role-Playing                        Kadokawa Shoten   0.94
## 872    Simulation                        Kadokawa Shoten   0.02
## 873        Sports                        Kadokawa Shoten   0.14
## 874      Strategy                        Kadokawa Shoten   0.02
## 875        Action                            Kaga Create   0.07
## 876     Adventure                            Kaga Create   0.02
## 877          Misc                            Kaga Create   0.05
## 878        Action                          Kalypso Media   0.00
## 879     Adventure                          Kalypso Media   0.00
## 880          Misc                          Kalypso Media   0.00
## 881    Simulation                          Kalypso Media   0.05
## 882      Strategy                          Kalypso Media   0.04
## 883          Misc                                  Kamui   0.03
## 884    Simulation                            Kando Games   0.00
## 885          Misc                    Karin Entertainment   0.02
## 886        Action                                  Kemco   0.00
## 887     Adventure                                  Kemco   0.00
## 888          Misc                                  Kemco   0.00
## 889      Platform                                  Kemco   0.00
## 890        Puzzle                                  Kemco   0.00
## 891        Racing                                  Kemco   0.00
## 892  Role-Playing                                  Kemco   0.05
## 893       Shooter                                  Kemco   0.00
## 894        Sports                                  Kemco   0.00
## 895     Adventure                                    KID   0.08
## 896     Adventure                           Kids Station   0.03
## 897  Role-Playing                           King Records   0.02
## 898        Action                    Knowledge Adventure   0.00
## 899     Adventure                    Knowledge Adventure   0.00
## 900          Misc                    Knowledge Adventure   0.00
## 901        Sports                    Knowledge Adventure   0.00
## 902        Action                             Koch Media   0.00
## 903     Adventure                             Koch Media   0.00
## 904        Puzzle                             Koch Media   0.00
## 905  Role-Playing                             Koch Media   0.00
## 906    Simulation                             Koch Media   0.00
## 907        Sports                             Koch Media   0.00
## 908      Strategy                             Koch Media   0.00
## 909      Fighting               Kokopeli Digital Studios   0.00
## 910        Action           Konami Digital Entertainment  12.52
## 911     Adventure           Konami Digital Entertainment   2.69
## 912      Fighting           Konami Digital Entertainment   0.63
## 913          Misc           Konami Digital Entertainment   3.05
## 914      Platform           Konami Digital Entertainment   4.88
## 915        Puzzle           Konami Digital Entertainment   0.18
## 916        Racing           Konami Digital Entertainment   0.04
## 917  Role-Playing           Konami Digital Entertainment   5.69
## 918       Shooter           Konami Digital Entertainment   3.65
## 919    Simulation           Konami Digital Entertainment   9.33
## 920        Sports           Konami Digital Entertainment  44.39
## 921      Strategy           Konami Digital Entertainment   4.25
## 922      Strategy                              Kool Kizz   0.00
## 923          Misc                                    KSS   0.03
## 924        Action                                 Laguna   0.30
## 925      Platform                                 Laguna   0.68
## 926  Role-Playing                                 Laguna   0.36
## 927     Adventure                     Legacy Interactive   0.00
## 928        Action                             LEGO Media   0.00
## 929     Adventure                             LEGO Media   0.00
## 930      Platform                             LEGO Media   0.00
## 931        Racing                             LEGO Media   0.00
## 932      Strategy                             LEGO Media   0.00
## 933        Action                                Level 5   4.84
## 934     Adventure                                Level 5   0.12
## 935          Misc                                Level 5   0.03
## 936        Puzzle                                Level 5   0.59
## 937  Role-Playing                                Level 5   5.68
## 938        Sports                                Level 5   0.26
## 939      Strategy                                Level 5   0.13
## 940       Shooter                  Lexicon Entertainment   0.00
## 941    Simulation                  Lexicon Entertainment   0.00
## 942        Action                            Licensed 4U   0.00
## 943        Puzzle                            Licensed 4U   0.00
## 944    Simulation                 Lighthouse Interactive   0.00
## 945        Puzzle                           Liquid Games   0.00
## 946        Racing                           Liquid Games   0.00
## 947        Action                           Little Orbit   0.00
## 948     Adventure                           Little Orbit   0.00
## 949    Simulation                           Little Orbit   0.00
## 950  Role-Playing                                  Locus   0.07
## 951        Action                              LSP Games   0.00
## 952      Platform                              LSP Games   0.00
## 953       Shooter                              LSP Games   0.00
## 954        Action                              LucasArts   0.06
## 955     Adventure                              LucasArts   0.04
## 956        Racing                              LucasArts   0.00
## 957  Role-Playing                              LucasArts   0.00
## 958       Shooter                              LucasArts   0.07
## 959    Simulation                              LucasArts   0.03
## 960      Strategy                              LucasArts   0.00
## 961          Misc                               Mad Catz   0.00
## 962    Simulation                               Mad Catz   0.00
## 963        Sports                               Mad Catz   0.00
## 964        Sports                        Magical Company   0.12
## 965          Misc                                  Magix   0.00
## 966        Action                  Majesco Entertainment   0.00
## 967     Adventure                  Majesco Entertainment   0.00
## 968      Fighting                  Majesco Entertainment   0.02
## 969          Misc                  Majesco Entertainment   0.00
## 970      Platform                  Majesco Entertainment   0.00
## 971        Puzzle                  Majesco Entertainment   0.00
## 972        Racing                  Majesco Entertainment   0.00
## 973  Role-Playing                  Majesco Entertainment   0.00
## 974       Shooter                  Majesco Entertainment   0.00
## 975    Simulation                  Majesco Entertainment   0.00
## 976        Sports                  Majesco Entertainment   0.00
## 977      Strategy                  Majesco Entertainment   0.00
## 978     Adventure                            Mamba Games   0.00
## 979      Strategy                            Mamba Games   0.00
## 980        Action                   Marvel Entertainment   0.05
## 981        Action                Marvelous Entertainment   0.65
## 982      Fighting                Marvelous Entertainment   0.16
## 983          Misc                Marvelous Entertainment   0.10
## 984  Role-Playing                Marvelous Entertainment   0.16
## 985    Simulation                Marvelous Entertainment   0.10
## 986     Adventure                        Marvelous Games   0.02
## 987        Action                  Marvelous Interactive   0.57
## 988     Adventure                  Marvelous Interactive   0.37
## 989      Fighting                  Marvelous Interactive   0.20
## 990          Misc                  Marvelous Interactive   0.03
## 991  Role-Playing                  Marvelous Interactive   0.63
## 992    Simulation                  Marvelous Interactive   0.33
## 993        Sports                  Marvelous Interactive   0.09
## 994    Simulation                      Masque Publishing   0.00
## 995     Adventure                           Mastertronic   0.00
## 996          Misc                           Mastertronic   0.00
## 997        Puzzle                           Mastertronic   0.00
## 998        Racing                           Mastertronic   0.00
## 999       Shooter                           Mastertronic   0.00
## 1000       Sports                           Mastertronic   0.00
## 1001     Strategy                           Mastertronic   0.00
## 1002    Adventure                                Mastiff   0.00
## 1003         Misc                                Mastiff   0.00
## 1004      Shooter                                Mastiff   0.00
## 1005   Simulation                                Mastiff   0.00
## 1006       Sports                                Mastiff   0.00
## 1007       Action                     Mattel Interactive   0.00
## 1008    Adventure                     Mattel Interactive   0.00
## 1009       Puzzle                     Mattel Interactive   0.00
## 1010       Racing                     Mattel Interactive   0.00
## 1011      Shooter                     Mattel Interactive   0.00
## 1012       Sports                     Mattel Interactive   0.00
## 1013 Role-Playing                               Max Five   0.00
## 1014       Action                   Maximum Family Games   0.00
## 1015   Simulation                                  Maxis   0.00
## 1016    Adventure                      MC2 Entertainment   0.00
## 1017      Shooter                      MC2 Entertainment   0.00
## 1018         Misc                    Media Entertainment   0.01
## 1019    Adventure                          Media Factory   0.14
## 1020       Sports                          Media Factory   0.15
## 1021       Racing                            Media Rings   0.10
## 1022 Role-Playing                            Media Rings   0.00
## 1023       Sports                            Media Rings   0.36
## 1024    Adventure                            Media Works   0.05
## 1025         Misc                            Media Works   0.04
## 1026     Strategy                            Media Works   0.09
## 1027       Puzzle                             MediaQuest   0.00
## 1028       Action                           Men-A-Vision   0.00
## 1029         Misc                     Mentor Interactive   0.00
## 1030 Role-Playing                          Mercury Games   0.02
## 1031   Simulation                          Mercury Games   0.00
## 1032    Adventure                            Merscom LLC   0.00
## 1033     Fighting                               Metro 3D   0.00
## 1034     Platform                               Metro 3D   0.00
## 1035       Racing                               Metro 3D   0.00
## 1036 Role-Playing                               Metro 3D   0.00
## 1037      Shooter                               Metro 3D   0.00
## 1038   Simulation                               Metro 3D   0.42
## 1039 Role-Playing                            Michaelsoft   0.01
## 1040       Puzzle                            Micro Cabin   0.02
## 1041 Role-Playing                            Micro Cabin   0.10
## 1042   Simulation                            Micro Cabin   0.08
## 1043       Action                               Microids   0.00
## 1044    Adventure                               Microids   0.00
## 1045       Sports                               Microids   0.00
## 1046         Misc                             Microprose   0.00
## 1047   Simulation                             Microprose   0.00
## 1048     Strategy                             Microprose   0.00
## 1049       Action                 Microsoft Game Studios   0.38
## 1050    Adventure                 Microsoft Game Studios   0.00
## 1051     Fighting                 Microsoft Game Studios   0.24
## 1052         Misc                 Microsoft Game Studios   0.44
## 1053     Platform                 Microsoft Game Studios   0.00
## 1054       Puzzle                 Microsoft Game Studios   0.00
## 1055       Racing                 Microsoft Game Studios   0.43
## 1056 Role-Playing                 Microsoft Game Studios   0.59
## 1057      Shooter                 Microsoft Game Studios   0.88
## 1058   Simulation                 Microsoft Game Studios   0.05
## 1059       Sports                 Microsoft Game Studios   0.21
## 1060     Strategy                 Microsoft Game Studios   0.04
## 1061       Action        Midas Interactive Entertainment   0.04
## 1062     Fighting        Midas Interactive Entertainment   0.00
## 1063         Misc        Midas Interactive Entertainment   0.00
## 1064     Platform        Midas Interactive Entertainment   0.00
## 1065       Puzzle        Midas Interactive Entertainment   0.05
## 1066       Racing        Midas Interactive Entertainment   0.00
## 1067 Role-Playing        Midas Interactive Entertainment   0.00
## 1068      Shooter        Midas Interactive Entertainment   0.00
## 1069   Simulation        Midas Interactive Entertainment   0.00
## 1070       Sports        Midas Interactive Entertainment   0.00
## 1071     Strategy        Midas Interactive Entertainment   0.06
## 1072       Action                           Midway Games   0.00
## 1073    Adventure                           Midway Games   0.00
## 1074     Fighting                           Midway Games   0.00
## 1075         Misc                           Midway Games   0.00
## 1076     Platform                           Midway Games   0.00
## 1077       Puzzle                           Midway Games   0.00
## 1078       Racing                           Midway Games   0.00
## 1079 Role-Playing                           Midway Games   0.10
## 1080      Shooter                           Midway Games   0.02
## 1081       Sports                           Midway Games   0.00
## 1082      Shooter                              Milestone   0.00
## 1083       Racing                        Milestone S.r.l   0.00
## 1084       Racing                       Milestone S.r.l.   0.10
## 1085       Action                         Minato Station   0.02
## 1086    Adventure                         Minato Station   0.03
## 1087       Action                              Mindscape   0.00
## 1088    Adventure                              Mindscape   0.00
## 1089         Misc                              Mindscape   0.00
## 1090       Puzzle                              Mindscape   0.00
## 1091       Racing                              Mindscape   0.00
## 1092 Role-Playing                              Mindscape   0.00
## 1093       Sports                              Mindscape   0.00
## 1094     Strategy                              Mindscape   0.00
## 1095         Misc                          Mirai Shounen   0.02
## 1096       Sports                                 Misawa   0.07
## 1097      Shooter                                 Mitsui   0.00
## 1098       Action                              mixi, Inc   0.86
## 1099       Sports                                MLB.com   0.00
## 1100    Adventure                                 Mojang   0.00
## 1101   Simulation               Monte Christo Multimedia   0.00
## 1102      Shooter                                   Moss   0.02
## 1103       Action                                    MTO   0.06
## 1104       Racing                                    MTO   0.09
## 1105   Simulation                                    MTO   0.24
## 1106         Misc                              MTV Games   0.01
## 1107         Misc                   Mud Duck Productions   0.00
## 1108       Sports                   Mud Duck Productions   0.00
## 1109       Puzzle                            Mumbo Jumbo   0.00
## 1110       Sports                            Mumbo Jumbo   0.00
## 1111     Strategy                            Mumbo Jumbo   0.00
## 1112       Action                                  Mycom   0.02
## 1113         Misc                           Myelin Media   0.00
## 1114       Action                               Mystique   0.00
## 1115       Action                                    N/A   0.46
## 1116    Adventure                                    N/A   0.08
## 1117     Fighting                                    N/A   0.00
## 1118         Misc                                    N/A   0.04
## 1119     Platform                                    N/A   0.00
## 1120       Puzzle                                    N/A   0.00
## 1121       Racing                                    N/A   0.00
## 1122 Role-Playing                                    N/A   0.05
## 1123      Shooter                                    N/A   0.00
## 1124   Simulation                                    N/A   0.06
## 1125       Sports                                    N/A   0.12
## 1126     Strategy                                    N/A   0.12
## 1127       Action                     Namco Bandai Games  21.10
## 1128    Adventure                     Namco Bandai Games   3.55
## 1129     Fighting                     Namco Bandai Games  19.83
## 1130         Misc                     Namco Bandai Games  12.25
## 1131     Platform                     Namco Bandai Games   1.29
## 1132       Puzzle                     Namco Bandai Games   3.24
## 1133       Racing                     Namco Bandai Games   1.38
## 1134 Role-Playing                     Namco Bandai Games  28.17
## 1135      Shooter                     Namco Bandai Games   4.25
## 1136   Simulation                     Namco Bandai Games   7.38
## 1137       Sports                     Namco Bandai Games  13.19
## 1138     Strategy                     Namco Bandai Games  11.44
## 1139    Adventure                                Natsume   0.00
## 1140     Fighting                                Natsume   0.00
## 1141         Misc                                Natsume   0.00
## 1142     Platform                                Natsume   0.00
## 1143       Puzzle                                Natsume   0.00
## 1144 Role-Playing                                Natsume   0.00
## 1145   Simulation                                Natsume   0.22
## 1146       Sports                                Natsume   0.10
## 1147     Strategy                                Natsume   0.00
## 1148       Sports                           Navarre Corp   0.00
## 1149         Misc                             Naxat Soft   0.01
## 1150     Strategy                                    NCS   0.40
## 1151       Action                                 NCSoft   0.00
## 1152 Role-Playing                                 NCSoft   0.00
## 1153      Shooter                        NDA Productions   0.00
## 1154    Adventure                                    NEC   0.14
## 1155 Role-Playing                                    NEC   0.29
## 1156    Adventure                       NEC Interchannel   0.51
## 1157 Role-Playing                       NEC Interchannel   0.13
## 1158   Simulation                       NEC Interchannel   0.06
## 1159     Strategy                       NEC Interchannel   0.08
## 1160       Action                     Neko Entertainment   0.00
## 1161    Adventure                     Neko Entertainment   0.00
## 1162         Misc                     Neko Entertainment   0.00
## 1163       Puzzle                     Neko Entertainment   0.00
## 1164      Shooter                     Neko Entertainment   0.00
## 1165       Action                                NetRevo   0.01
## 1166    Adventure                                NetRevo   0.02
## 1167     Fighting                                    New   0.33
## 1168     Strategy                    New World Computing   0.00
## 1169       Action                               NewKidCo   0.00
## 1170    Adventure                               NewKidCo   0.00
## 1171     Fighting                               NewKidCo   0.00
## 1172         Misc                               NewKidCo   0.00
## 1173     Platform                               NewKidCo   0.00
## 1174 Role-Playing                                  Nexon   0.03
## 1175         Misc                             Nichibutsu   0.28
## 1176       Action               Nihon Falcom Corporation   0.24
## 1177 Role-Playing               Nihon Falcom Corporation   0.34
## 1178       Action                               Nintendo  29.24
## 1179    Adventure                               Nintendo   9.01
## 1180     Fighting                               Nintendo  14.94
## 1181         Misc                               Nintendo  55.25
## 1182     Platform                               Nintendo 102.36
## 1183       Puzzle                               Nintendo  37.09
## 1184       Racing                               Nintendo  29.22
## 1185 Role-Playing                               Nintendo 102.24
## 1186      Shooter                               Nintendo   6.07
## 1187   Simulation                               Nintendo  23.67
## 1188       Sports                               Nintendo  35.87
## 1189     Strategy                               Nintendo  10.46
## 1190         Misc                           Nippon Amuse   0.09
## 1191       Action                        Nippon Columbia   0.53
## 1192         Misc                        Nippon Columbia   0.42
## 1193       Action                   Nippon Ichi Software   0.56
## 1194    Adventure                   Nippon Ichi Software   0.31
## 1195     Fighting                   Nippon Ichi Software   0.11
## 1196         Misc                   Nippon Ichi Software   0.30
## 1197     Platform                   Nippon Ichi Software   0.05
## 1198 Role-Playing                   Nippon Ichi Software   4.50
## 1199      Shooter                   Nippon Ichi Software   0.00
## 1200     Strategy                   Nippon Ichi Software   0.04
## 1201         Misc                         Nippon Telenet   0.26
## 1202    Adventure                              Nitroplus   0.01
## 1203     Fighting                              Nitroplus   0.01
## 1204       Action                                Nobilis   0.00
## 1205    Adventure                                Nobilis   0.01
## 1206         Misc                                Nobilis   0.00
## 1207       Racing                                Nobilis   0.00
## 1208 Role-Playing                                Nobilis   0.01
## 1209   Simulation                                Nobilis   0.00
## 1210       Action                            Nordcurrent   0.00
## 1211         Misc                            Nordcurrent   0.00
## 1212       Puzzle                            Nordcurrent   0.00
## 1213       Sports                            Nordcurrent   0.00
## 1214       Action                           Nordic Games   0.00
## 1215    Adventure                           Nordic Games   0.00
## 1216         Misc                           Nordic Games   0.00
## 1217       Racing                           Nordic Games   0.00
## 1218 Role-Playing                           Nordic Games   0.00
## 1219      Shooter                           Nordic Games   0.00
## 1220       Sports                           Nordic Games   0.00
## 1221     Strategy                           Nordic Games   0.00
## 1222      Shooter                              NovaLogic   0.00
## 1223     Platform                            Number None   0.00
## 1224    Adventure                                O-Games   0.00
## 1225         Misc                                O-Games   0.00
## 1226       Puzzle                                O-Games   0.00
## 1227       Racing                                O-Games   0.00
## 1228      Shooter                                O-Games   0.00
## 1229       Sports                                O-Games   0.00
## 1230       Puzzle                       O3 Entertainment   0.00
## 1231      Shooter                       O3 Entertainment   0.00
## 1232   Simulation                       O3 Entertainment   0.00
## 1233       Action                                  Ocean   0.02
## 1234     Fighting                                  Ocean   0.00
## 1235         Misc                                  Ocean   0.00
## 1236     Platform                                  Ocean   0.00
## 1237       Puzzle                                  Ocean   0.00
## 1238       Racing                                  Ocean   0.00
## 1239      Shooter                                  Ocean   0.12
## 1240       Sports                                  Ocean   0.28
## 1241   Simulation                          Office Create   0.06
## 1242 Role-Playing                              On Demand   0.00
## 1243   Simulation                              Ongakukan   0.01
## 1244   Simulation                         Origin Systems   0.00
## 1245    Adventure                                Otomate   0.01
## 1246       Action                     Oxygen Interactive   0.00
## 1247    Adventure                     Oxygen Interactive   0.00
## 1248         Misc                     Oxygen Interactive   0.00
## 1249     Platform                     Oxygen Interactive   0.00
## 1250       Puzzle                     Oxygen Interactive   0.00
## 1251       Sports                     Oxygen Interactive   0.00
## 1252         Misc                               P2 Games   0.00
## 1253       Puzzle                               P2 Games   0.00
## 1254         Misc            Pacific Century Cyber Works   0.03
## 1255    Adventure                          Pack-In-Video   0.05
## 1256   Simulation                          Pack-In-Video   0.06
## 1257   Simulation                           Pack In Soft   0.11
## 1258       Action                                 Palcom   0.31
## 1259 Role-Playing                       Panther Software   0.12
## 1260         Misc                                   Paon   0.25
## 1261         Misc                       Paon Corporation   0.03
## 1262   Simulation                    Paradox Development   0.00
## 1263         Misc                    Paradox Interactive   0.00
## 1264 Role-Playing                    Paradox Interactive   0.00
## 1265   Simulation                    Paradox Interactive   0.00
## 1266     Strategy                    Paradox Interactive   0.00
## 1267       Action                           Parker Bros.   0.00
## 1268     Platform                           Parker Bros.   0.00
## 1269       Puzzle                           Parker Bros.   0.00
## 1270       Puzzle          Performance Designed Products   0.00
## 1271   Simulation                             Phantagram   0.01
## 1272      Shooter                            Phantom EFX   0.00
## 1273     Platform                             Phenomedia   0.00
## 1274       Puzzle                             Phenomedia   0.00
## 1275       Racing                             Phenomedia   0.00
## 1276      Shooter                          Phoenix Games   0.00
## 1277    Adventure                                 Piacci   0.01
## 1278         Misc                               Pinnacle   0.00
## 1279       Puzzle                               Pinnacle   0.00
## 1280       Sports                               Pinnacle   0.00
## 1281     Strategy                               Pinnacle   0.00
## 1282    Adventure                            Pioneer LDC   0.32
## 1283       Racing                            Pioneer LDC   0.00
## 1284         Misc                                Play It   0.00
## 1285     Platform                                Play It   0.00
## 1286       Racing                                Play It   0.00
## 1287      Shooter                                Play It   0.00
## 1288       Sports                                Play It   0.00
## 1289       Action                 Playlogic Game Factory   0.00
## 1290         Misc                 Playlogic Game Factory   0.00
## 1291       Puzzle                 Playlogic Game Factory   0.00
## 1292      Shooter                 Playlogic Game Factory   0.00
## 1293       Sports                 Playlogic Game Factory   0.00
## 1294     Strategy                 Playlogic Game Factory   0.00
## 1295       Racing                              Playmates   0.00
## 1296     Fighting                               Playmore   0.04
## 1297       Action                                  PlayV   0.00
## 1298         Misc                                  PlayV   0.00
## 1299       Puzzle                                  PlayV   0.00
## 1300         Misc                                 Plenty   0.02
## 1301         Misc                             PM Studios   0.00
## 1302         Misc                            Pony Canyon   0.00
## 1303    Adventure                           PopCap Games   0.00
## 1304         Misc                           PopCap Games   0.00
## 1305       Puzzle                           PopCap Games   0.00
## 1306     Strategy                           PopCap Games   0.00
## 1307       Action                         Popcorn Arcade   0.00
## 1308     Platform                         Popcorn Arcade   0.00
## 1309       Puzzle                         Popcorn Arcade   0.00
## 1310       Racing                         Popcorn Arcade   0.00
## 1311      Shooter                         Popcorn Arcade   0.00
## 1312     Strategy                        PopTop Software   0.00
## 1313       Puzzle                                    Pow   0.05
## 1314       Action                                  PQube   0.19
## 1315    Adventure                                  PQube   0.17
## 1316     Fighting                                  PQube   0.69
## 1317         Misc                                  PQube   0.00
## 1318       Racing                                  PQube   0.00
## 1319      Shooter                                  PQube   0.00
## 1320   Simulation                                  PQube   0.00
## 1321       Sports                                  PQube   0.00
## 1322    Adventure                          Princess Soft   0.07
## 1323       Action                              Prototype   0.03
## 1324    Adventure                              Prototype   0.58
## 1325       Action                              Psygnosis   0.00
## 1326    Adventure                              Psygnosis   0.07
## 1327         Misc                              Psygnosis   0.00
## 1328     Platform                              Psygnosis   0.00
## 1329       Puzzle                              Psygnosis   0.00
## 1330       Racing                              Psygnosis   0.65
## 1331 Role-Playing                              Psygnosis   0.00
## 1332      Shooter                              Psygnosis   0.00
## 1333   Simulation                              Psygnosis   0.00
## 1334       Sports                              Psygnosis   0.00
## 1335         Misc                                 Quelle   0.00
## 1336 Role-Playing                                  Quest   0.71
## 1337       Action                               Quinrose   0.05
## 1338    Adventure                               Quinrose   0.17
## 1339    Adventure                                Quintet   0.02
## 1340     Fighting                          Rage Software   0.00
## 1341       Puzzle                          Rage Software   0.00
## 1342       Racing                          Rage Software   0.00
## 1343      Shooter                          Rage Software   0.00
## 1344     Platform                             Rain Games   0.00
## 1345       Racing                              Rebellion   0.00
## 1346      Shooter                 Rebellion Developments   0.00
## 1347    Adventure                      RED Entertainment   0.02
## 1348    Adventure                                Red Orb   0.00
## 1349       Action                Red Storm Entertainment   0.00
## 1350      Shooter                Red Storm Entertainment   0.00
## 1351         Misc                              RedOctane   0.03
## 1352    Adventure                     Reef Entertainment   0.00
## 1353      Shooter                     Reef Entertainment   0.00
## 1354       Sports                     Reef Entertainment   0.00
## 1355       Sports                           responDESIGN   0.00
## 1356    Adventure                     Revolution (Japan)   0.02
## 1357    Adventure                    Revolution Software   0.00
## 1358       Action                      Rising Star Games   0.09
## 1359    Adventure                      Rising Star Games   0.03
## 1360     Fighting                      Rising Star Games   0.05
## 1361         Misc                      Rising Star Games   0.03
## 1362     Platform                      Rising Star Games   0.00
## 1363       Puzzle                      Rising Star Games   0.05
## 1364 Role-Playing                      Rising Star Games   1.28
## 1365      Shooter                      Rising Star Games   0.05
## 1366   Simulation                      Rising Star Games   0.84
## 1367       Sports                      Rising Star Games   0.06
## 1368     Strategy                      Rising Star Games   0.05
## 1369   Simulation                          Riverhillsoft   0.04
## 1370       Action                         Rocket Company   0.17
## 1371    Adventure                         Rocket Company   0.03
## 1372         Misc                         Rocket Company   1.15
## 1373 Role-Playing                         Rocket Company   0.36
## 1374   Simulation                         Rocket Company   0.04
## 1375       Sports                         Rocket Company   0.07
## 1376       Action                             Rondomedia   0.00
## 1377    Adventure                             Rondomedia   0.00
## 1378         Misc                             Rondomedia   0.00
## 1379       Puzzle                             Rondomedia   0.00
## 1380       Racing                             Rondomedia   0.00
## 1381   Simulation                             Rondomedia   0.00
## 1382       Racing                                    RTL   0.00
## 1383   Simulation                                    RTL   0.00
## 1384       Sports                                    RTL   0.00
## 1385       Action                                 Russel   0.05
## 1386    Adventure                                 Russel   0.04
## 1387       Sports                                 Russel   0.00
## 1388    Adventure                      Sammy Corporation   0.00
## 1389     Fighting                      Sammy Corporation   0.24
## 1390         Misc                      Sammy Corporation   1.67
## 1391   Simulation                      Sammy Corporation   0.00
## 1392       Action                                 Saurus   0.00
## 1393       Action                        Scholastic Inc.   0.00
## 1394    Adventure                        Scholastic Inc.   0.00
## 1395         Misc                        Scholastic Inc.   0.00
## 1396       Puzzle                        Scholastic Inc.   0.00
## 1397       Action                                    SCi   0.00
## 1398     Platform                                    SCi   0.00
## 1399       Racing                                    SCi   0.00
## 1400      Shooter                                    SCi   0.00
## 1401       Action                             Screenlife   0.52
## 1402     Fighting                             Screenlife   0.07
## 1403 Role-Playing                             Screenlife   0.07
## 1404       Action                           SCS Software   0.00
## 1405       Puzzle                                  Sears   0.00
## 1406       Action                                   Sega   6.20
## 1407    Adventure                                   Sega   6.06
## 1408     Fighting                                   Sega   6.52
## 1409         Misc                                   Sega   5.45
## 1410     Platform                                   Sega   3.40
## 1411       Puzzle                                   Sega   1.63
## 1412       Racing                                   Sega   3.53
## 1413 Role-Playing                                   Sega   8.04
## 1414      Shooter                                   Sega   3.60
## 1415   Simulation                                   Sega   1.08
## 1416       Sports                                   Sega   9.75
## 1417     Strategy                                   Sega   1.77
## 1418         Misc                       Seta Corporation   0.36
## 1419 Role-Playing                       Seta Corporation   0.20
## 1420       Sports                       Seta Corporation   0.03
## 1421       Action                          Seventh Chord   0.08
## 1422    Adventure                             Shogakukan   0.11
## 1423         Misc                             Shogakukan   0.33
## 1424       Sports           Simon & Schuster Interactive   0.00
## 1425       Racing                   Slightly Mad Studios   0.02
## 1426     Strategy                    Slitherine Software   0.00
## 1427     Fighting                                    SNK   2.48
## 1428    Adventure                           SNK Playmore   0.10
## 1429     Fighting                           SNK Playmore   0.45
## 1430 Role-Playing                           SNK Playmore   0.01
## 1431      Shooter                           SNK Playmore   0.00
## 1432    Adventure                                Societa   0.04
## 1433       Action                               Sold Out   0.00
## 1434         Misc                                 Sonnet   0.06
## 1435       Action            Sony Computer Entertainment   3.96
## 1436    Adventure            Sony Computer Entertainment   2.73
## 1437     Fighting            Sony Computer Entertainment   7.24
## 1438         Misc            Sony Computer Entertainment   5.58
## 1439     Platform            Sony Computer Entertainment   7.57
## 1440       Puzzle            Sony Computer Entertainment   1.97
## 1441       Racing            Sony Computer Entertainment  13.89
## 1442 Role-Playing            Sony Computer Entertainment  16.08
## 1443      Shooter            Sony Computer Entertainment   2.80
## 1444   Simulation            Sony Computer Entertainment   2.38
## 1445       Sports            Sony Computer Entertainment   8.86
## 1446     Strategy            Sony Computer Entertainment   1.04
## 1447       Sports    Sony Computer Entertainment America   0.00
## 1448       Action     Sony Computer Entertainment Europe   0.28
## 1449    Adventure     Sony Computer Entertainment Europe   0.05
## 1450         Misc     Sony Computer Entertainment Europe   0.99
## 1451     Platform     Sony Computer Entertainment Europe   0.44
## 1452      Shooter     Sony Computer Entertainment Europe   0.04
## 1453   Simulation     Sony Computer Entertainment Europe   0.70
## 1454         Misc               Sony Music Entertainment   0.14
## 1455 Role-Playing              Sony Online Entertainment   0.00
## 1456     Strategy              Sony Online Entertainment   0.00
## 1457       Action                        SouthPeak Games   0.04
## 1458    Adventure                        SouthPeak Games   0.00
## 1459     Fighting                        SouthPeak Games   0.00
## 1460         Misc                        SouthPeak Games   0.00
## 1461       Puzzle                        SouthPeak Games   0.00
## 1462       Racing                        SouthPeak Games   0.00
## 1463 Role-Playing                        SouthPeak Games   0.03
## 1464      Shooter                        SouthPeak Games   0.00
## 1465   Simulation                        SouthPeak Games   0.00
## 1466       Sports                        SouthPeak Games   0.00
## 1467     Strategy                        SouthPeak Games   0.00
## 1468       Action                                  Spike   0.90
## 1469    Adventure                                  Spike   0.10
## 1470     Fighting                                  Spike   0.12
## 1471         Misc                                  Spike   0.57
## 1472 Role-Playing                                  Spike   0.32
## 1473   Simulation                                  Spike   0.08
## 1474       Sports                                  Spike   0.03
## 1475       Sports                                    SPS   0.00
## 1476       Racing                                 Square   0.15
## 1477 Role-Playing                                 Square   2.45
## 1478 Role-Playing                              Square EA   0.00
## 1479       Action                            Square Enix   2.92
## 1480    Adventure                            Square Enix   0.51
## 1481     Fighting                            Square Enix   1.43
## 1482         Misc                            Square Enix   1.02
## 1483       Puzzle                            Square Enix   0.07
## 1484 Role-Playing                            Square Enix  41.53
## 1485      Shooter                            Square Enix   0.82
## 1486   Simulation                            Square Enix   0.67
## 1487     Strategy                            Square Enix   0.91
## 1488     Fighting                             SquareSoft   0.77
## 1489       Racing                             SquareSoft   0.30
## 1490 Role-Playing                             SquareSoft  36.45
## 1491      Shooter                             SquareSoft   0.13
## 1492   Simulation                             SquareSoft   0.29
## 1493       Sports                             SquareSoft   0.66
## 1494     Strategy                             SquareSoft   1.53
## 1495     Strategy                                    SSI   0.00
## 1496       Action                        Stainless Games   0.00
## 1497       Action                               Starfish   0.00
## 1498 Role-Playing                               Starfish   0.10
## 1499      Shooter                               Starfish   0.00
## 1500       Sports                               Starfish   0.00
## 1501       Action                         Starpath Corp.   0.00
## 1502 Role-Playing                                  Sting   0.15
## 1503       Action                       Storm City Games   0.00
## 1504    Adventure                       Storm City Games   0.00
## 1505         Misc                       Storm City Games   0.00
## 1506     Platform                       Storm City Games   0.00
## 1507       Puzzle                       Storm City Games   0.00
## 1508       Racing                       Storm City Games   0.00
## 1509       Sports                       Storm City Games   0.00
## 1510     Strategy                       Storm City Games   0.00
## 1511     Strategy                         Strategy First   0.00
## 1512       Action                                Success   0.00
## 1513    Adventure                                Success   0.13
## 1514         Misc                                Success   0.04
## 1515       Puzzle                                Success   0.00
## 1516 Role-Playing                                Success   0.04
## 1517      Shooter                                Success   0.00
## 1518   Simulation                                Success   0.01
## 1519     Strategy                                Success   0.00
## 1520       Sports                             Summitsoft   0.00
## 1521     Strategy                             Sunflowers   0.00
## 1522       Action                    Sunrise Interactive   0.07
## 1523     Fighting                    Sunrise Interactive   0.02
## 1524       Racing                    Sunrise Interactive   0.02
## 1525 Role-Playing                    Sunrise Interactive   0.06
## 1526    Adventure                                Sunsoft   0.06
## 1527     Fighting                                Sunsoft   0.06
## 1528         Misc                                Sunsoft   0.03
## 1529     Platform                                Sunsoft   0.00
## 1530       Puzzle                                Sunsoft   0.02
## 1531 Role-Playing                                Sunsoft   0.00
## 1532      Shooter                                Sunsoft   0.00
## 1533    Adventure                                 Sweets   0.05
## 1534       Action                   Swing! Entertainment   0.00
## 1535    Adventure                   Swing! Entertainment   0.00
## 1536     Platform                   Swing! Entertainment   0.00
## 1537      Shooter                   Swing! Entertainment   0.00
## 1538   Simulation                   Swing! Entertainment   0.00
## 1539         Misc                                 Syscom   0.15
## 1540       Racing                                 Syscom   0.00
## 1541     Platform                               System 3   0.00
## 1542         Misc               System 3 Arcade Software   0.00
## 1543     Platform               System 3 Arcade Software   0.00
## 1544       Puzzle               System 3 Arcade Software   0.00
## 1545       Racing               System 3 Arcade Software   0.00
## 1546       Sports               System 3 Arcade Software   0.00
## 1547    Adventure                            System Soft   0.02
## 1548     Strategy                            System Soft   0.03
## 1549       Sports                               T&E Soft   0.12
## 1550       Action                                  Taito   0.00
## 1551    Adventure                                  Taito   0.02
## 1552     Fighting                                  Taito   0.01
## 1553         Misc                                  Taito   0.07
## 1554 Role-Playing                                  Taito   0.00
## 1555      Shooter                                  Taito   0.49
## 1556   Simulation                                  Taito   1.55
## 1557       Action                                 Takara   0.12
## 1558     Fighting                                 Takara   1.80
## 1559         Misc                                 Takara   0.63
## 1560       Racing                                 Takara   0.57
## 1561 Role-Playing                                 Takara   0.02
## 1562       Action                            Takara Tomy   0.48
## 1563     Fighting                            Takara Tomy   0.78
## 1564         Misc                            Takara Tomy   0.35
## 1565       Racing                            Takara Tomy   0.01
## 1566 Role-Playing                            Takara Tomy   0.16
## 1567       Sports                            Takara Tomy   0.07
## 1568     Strategy                            Takara Tomy   0.00
## 1569       Action                   Take-Two Interactive   4.44
## 1570    Adventure                   Take-Two Interactive   0.14
## 1571     Fighting                   Take-Two Interactive   0.00
## 1572         Misc                   Take-Two Interactive   0.05
## 1573     Platform                   Take-Two Interactive   0.00
## 1574       Puzzle                   Take-Two Interactive   0.00
## 1575       Racing                   Take-Two Interactive   0.08
## 1576 Role-Playing                   Take-Two Interactive   0.13
## 1577      Shooter                   Take-Two Interactive   0.67
## 1578   Simulation                   Take-Two Interactive   0.00
## 1579       Sports                   Take-Two Interactive   0.27
## 1580     Strategy                   Take-Two Interactive   0.05
## 1581    Adventure                                 Takuyo   0.01
## 1582      Shooter                              TalonSoft   0.00
## 1583       Action                               TDK Core   0.00
## 1584         Misc                               TDK Core   0.22
## 1585   Simulation                               TDK Core   0.03
## 1586       Action                         TDK Mediactive   0.00
## 1587    Adventure                         TDK Mediactive   0.00
## 1588         Misc                         TDK Mediactive   0.00
## 1589     Platform                         TDK Mediactive   0.00
## 1590       Racing                         TDK Mediactive   0.00
## 1591      Shooter                         TDK Mediactive   0.00
## 1592       Sports                         TDK Mediactive   0.00
## 1593     Strategy                        Team17 Software   0.00
## 1594       Sports              Technos Japan Corporation   0.02
## 1595      Shooter                             TechnoSoft   0.00
## 1596       Action                             Tecmo Koei  15.58
## 1597    Adventure                             Tecmo Koei   1.01
## 1598     Fighting                             Tecmo Koei   1.51
## 1599         Misc                             Tecmo Koei   0.27
## 1600     Platform                             Tecmo Koei   0.05
## 1601       Racing                             Tecmo Koei   0.25
## 1602 Role-Playing                             Tecmo Koei   2.43
## 1603      Shooter                             Tecmo Koei   0.02
## 1604   Simulation                             Tecmo Koei   1.20
## 1605       Sports                             Tecmo Koei   2.81
## 1606     Strategy                             Tecmo Koei   4.08
## 1607         Misc                              Telegames   0.00
## 1608       Puzzle                              Telegames   0.00
## 1609   Simulation                              Telegames   0.00
## 1610     Strategy                              Telegames   0.00
## 1611       Action                         Telltale Games   0.00
## 1612    Adventure                         Telltale Games   0.03
## 1613       Action                                Telstar   0.00
## 1614       Racing                                Telstar   0.00
## 1615      Shooter                                Telstar   0.00
## 1616       Puzzle                          Tetris Online   0.06
## 1617    Adventure                                    TGL   0.10
## 1618    Adventure                  The Adventure Company   0.00
## 1619       Puzzle                  The Adventure Company   0.00
## 1620       Racing                   The Learning Company   0.00
## 1621       Action                                    THQ   1.94
## 1622    Adventure                                    THQ   0.14
## 1623     Fighting                                    THQ   0.64
## 1624         Misc                                    THQ   0.00
## 1625     Platform                                    THQ   0.08
## 1626       Puzzle                                    THQ   1.10
## 1627       Racing                                    THQ   0.02
## 1628 Role-Playing                                    THQ   0.00
## 1629      Shooter                                    THQ   0.25
## 1630   Simulation                                    THQ   0.49
## 1631       Sports                                    THQ   0.14
## 1632     Strategy                                    THQ   0.21
## 1633       Action                            Tigervision   0.00
## 1634     Fighting                Time Warner Interactive   0.00
## 1635      Shooter                Time Warner Interactive   0.00
## 1636       Sports                Time Warner Interactive   0.00
## 1637     Strategy                Time Warner Interactive   0.00
## 1638       Action                                  Titus   0.07
## 1639     Fighting                                  Titus   0.00
## 1640         Misc                                  Titus   0.00
## 1641     Platform                                  Titus   0.00
## 1642       Racing                                  Titus   0.00
## 1643 Role-Playing                                  Titus   0.00
## 1644      Shooter                                  Titus   0.00
## 1645   Simulation                                  Titus   0.00
## 1646     Strategy                                  Titus   0.00
## 1647         Misc                                 Tivola   0.00
## 1648 Role-Playing                                   TOHO   0.11
## 1649         Misc                                  Tommo   0.00
## 1650      Shooter                                  Tommo   0.00
## 1651       Sports                                  Tommo   0.00
## 1652       Action                       Tomy Corporation   0.00
## 1653     Fighting                       Tomy Corporation   1.96
## 1654         Misc                       Tomy Corporation   0.00
## 1655       Racing                       Tomy Corporation   0.00
## 1656 Role-Playing                       Tomy Corporation   0.16
## 1657   Simulation                       Tomy Corporation   0.00
## 1658         Misc                    TopWare Interactive   0.00
## 1659 Role-Playing                    TopWare Interactive   0.00
## 1660       Action                             Touchstone   0.02
## 1661   Simulation                             Touchstone   0.00
## 1662       Sports                              Tradewest   0.00
## 1663      Shooter                           Trion Worlds   0.00
## 1664     Strategy                           Trion Worlds   0.00
## 1665      Shooter                   Tripwire Interactive   0.00
## 1666       Action                  Tru Blu Entertainment   0.00
## 1667       Sports                  Tru Blu Entertainment   0.00
## 1668     Fighting                               Tryfirst   0.03
## 1669       Racing                                    TYO   0.00
## 1670    Adventure                              Type-Moon   0.10
## 1671     Platform                              U.S. Gold   0.00
## 1672       Sports                              U.S. Gold   0.00
## 1673       Action                                Ubisoft   2.11
## 1674    Adventure                                Ubisoft   0.28
## 1675     Fighting                                Ubisoft   0.58
## 1676         Misc                                Ubisoft   0.29
## 1677     Platform                                Ubisoft   0.04
## 1678       Puzzle                                Ubisoft   0.03
## 1679       Racing                                Ubisoft   0.10
## 1680 Role-Playing                                Ubisoft   2.15
## 1681      Shooter                                Ubisoft   0.96
## 1682   Simulation                                Ubisoft   0.79
## 1683       Sports                                Ubisoft   0.08
## 1684     Strategy                                Ubisoft   0.09
## 1685       Action                         Ubisoft Annecy   2.08
## 1686     Fighting                         Ubisoft Annecy   0.10
## 1687         Misc                         Ubisoft Annecy   0.07
## 1688 Role-Playing                         Ubisoft Annecy   0.03
## 1689       Sports                            UEP Systems   0.20
## 1690       Action                        UFO Interactive   0.00
## 1691         Misc                        UFO Interactive   0.00
## 1692       Puzzle                        UFO Interactive   0.00
## 1693      Shooter                        UFO Interactive   0.00
## 1694       Sports                        UFO Interactive   0.00
## 1695   Simulation                      UIG Entertainment   0.00
## 1696     Fighting                            Ultravision   0.00
## 1697       Action                        Universal Gamex   0.00
## 1698       Action                  Universal Interactive   0.00
## 1699     Fighting                  Universal Interactive   0.00
## 1700         Misc                  Universal Interactive   0.00
## 1701     Platform                  Universal Interactive   0.24
## 1702      Shooter                  Universal Interactive   0.00
## 1703       Sports                  Universal Interactive   0.00
## 1704       Action                                Unknown   1.01
## 1705    Adventure                                Unknown   0.39
## 1706     Fighting                                Unknown   0.07
## 1707         Misc                                Unknown   1.12
## 1708     Platform                                Unknown   0.12
## 1709       Puzzle                                Unknown   0.69
## 1710       Racing                                Unknown   0.48
## 1711 Role-Playing                                Unknown   2.11
## 1712      Shooter                                Unknown   0.05
## 1713   Simulation                                Unknown   0.02
## 1714       Sports                                Unknown   0.00
## 1715     Strategy                                Unknown   0.00
## 1716    Adventure                           Valcon Games   0.00
## 1717       Racing                           Valcon Games   0.00
## 1718      Shooter                           Valcon Games   0.00
## 1719   Simulation                           Valcon Games   0.00
## 1720       Sports                           Valcon Games   0.00
## 1721    Adventure                               ValuSoft   0.00
## 1722       Puzzle                               ValuSoft   0.00
## 1723       Racing                               ValuSoft   0.00
## 1724      Shooter                                  Valve   0.02
## 1725      Shooter                         Valve Software   0.01
## 1726         Misc                                    Vap   0.05
## 1727       Racing                  Vatical Entertainment   0.00
## 1728     Fighting                              Vic Tokai   0.00
## 1729    Adventure                     Victor Interactive   0.02
## 1730         Misc                     Victor Interactive   0.02
## 1731 Role-Playing                     Victor Interactive   0.00
## 1732   Simulation                     Victor Interactive   0.31
## 1733       Sports                     Victor Interactive   0.33
## 1734       Action                           Video System   0.00
## 1735       Racing                           Video System   0.37
## 1736       Action                                  Views   0.02
## 1737    Adventure                                  Views   0.01
## 1738       Action                          Vir2L Studios   0.00
## 1739       Racing                          Vir2L Studios   0.00
## 1740       Sports                          Vir2L Studios   0.00
## 1741       Action                     Virgin Interactive   5.26
## 1742    Adventure                     Virgin Interactive   0.00
## 1743     Fighting                     Virgin Interactive   3.35
## 1744         Misc                     Virgin Interactive   0.00
## 1745     Platform                     Virgin Interactive   0.11
## 1746       Puzzle                     Virgin Interactive   0.00
## 1747       Racing                     Virgin Interactive   0.00
## 1748 Role-Playing                     Virgin Interactive   0.00
## 1749      Shooter                     Virgin Interactive   0.00
## 1750   Simulation                     Virgin Interactive   0.00
## 1751       Sports                     Virgin Interactive   0.00
## 1752     Strategy                     Virgin Interactive   0.22
## 1753         Misc                     Virtual Play Games   0.00
## 1754       Sports                     Virtual Play Games   0.00
## 1755      Shooter                                  Visco   0.00
## 1756       Action                          Vivendi Games   0.00
## 1757    Adventure                          Vivendi Games   0.06
## 1758     Fighting                          Vivendi Games   0.00
## 1759         Misc                          Vivendi Games   0.00
## 1760     Platform                          Vivendi Games   0.00
## 1761       Puzzle                          Vivendi Games   0.00
## 1762       Racing                          Vivendi Games   0.00
## 1763 Role-Playing                          Vivendi Games   0.00
## 1764      Shooter                          Vivendi Games   0.17
## 1765   Simulation                          Vivendi Games   0.00
## 1766       Sports                          Vivendi Games   0.00
## 1767     Strategy                          Vivendi Games   0.00
## 1768       Action                                Wanadoo   0.06
## 1769     Platform                                Wanadoo   0.00
## 1770       Racing                                Wanadoo   0.00
## 1771      Shooter                                Warashi   0.02
## 1772      Shooter                          Wargaming.net   0.00
## 1773       Action Warner Bros. Interactive Entertainment   0.96
## 1774    Adventure Warner Bros. Interactive Entertainment   0.00
## 1775     Fighting Warner Bros. Interactive Entertainment   0.01
## 1776         Misc Warner Bros. Interactive Entertainment   0.00
## 1777     Platform Warner Bros. Interactive Entertainment   0.00
## 1778       Puzzle Warner Bros. Interactive Entertainment   0.02
## 1779       Racing Warner Bros. Interactive Entertainment   0.00
## 1780      Shooter Warner Bros. Interactive Entertainment   0.05
## 1781     Strategy Warner Bros. Interactive Entertainment   0.00
## 1782    Adventure                                   Warp   0.07
## 1783    Adventure                WayForward Technologies   0.00
## 1784     Strategy                       Westwood Studios   0.00
## 1785       Puzzle                White Park Bay Software   0.00
## 1786       Action                     Wizard Video Games   0.00
## 1787       Racing                      Xicat Interactive   0.00
## 1788 Role-Playing                      Xicat Interactive   0.00
## 1789       Sports                      Xicat Interactive   0.00
## 1790     Fighting                     Xing Entertainment   0.16
## 1791         Misc                                Xplosiv   0.00
## 1792       Puzzle                                Xplosiv   0.00
## 1793       Racing                                Xplosiv   0.00
## 1794         Misc                               XS Games   0.00
## 1795       Racing                               XS Games   0.00
## 1796       Sports                               XS Games   0.00
## 1797       Action                            Xseed Games   0.04
## 1798 Role-Playing                            Xseed Games   0.33
## 1799      Shooter                            Xseed Games   0.00
## 1800     Platform                       Yacht Club Games   0.01
## 1801         Misc                   Yamasa Entertainment   0.04
## 1802       Action                                   Yeti   0.01
## 1803    Adventure                                   Yeti   0.21
## 1804     Fighting                                   Yeti   0.02
## 1805     Fighting                                 Yuke's   0.05
## 1806       Racing                                 Yuke's   0.00
## 1807    Adventure                                Yumedia   0.06
## 1808         Misc                                 Zenrin   0.06
## 1809       Action                 Zoo Digital Publishing   0.00
## 1810    Adventure                 Zoo Digital Publishing   0.00
## 1811     Fighting                 Zoo Digital Publishing   0.00
## 1812         Misc                 Zoo Digital Publishing   0.00
## 1813     Platform                 Zoo Digital Publishing   0.00
## 1814       Puzzle                 Zoo Digital Publishing   0.00
## 1815       Racing                 Zoo Digital Publishing   0.02
## 1816      Shooter                 Zoo Digital Publishing   0.00
## 1817   Simulation                 Zoo Digital Publishing   0.00
## 1818       Sports                 Zoo Digital Publishing   0.12
## 1819     Strategy                 Zoo Digital Publishing   0.00
## 1820       Action                              Zoo Games   0.00
## 1821    Adventure                              Zoo Games   0.00
## 1822         Misc                              Zoo Games   0.00
## 1823       Puzzle                              Zoo Games   0.00
## 1824       Racing                              Zoo Games   0.00
## 1825      Shooter                              Zoo Games   0.00
## 1826   Simulation                              Zoo Games   0.00
## 1827       Sports                              Zoo Games   0.00
## 1828       Action                            Zushi Games   0.00
## 1829    Adventure                            Zushi Games   0.00
## 1830         Misc                            Zushi Games   0.00
## 1831       Puzzle                            Zushi Games   0.00
## 1832       Racing                            Zushi Games   0.00
## 1833 Role-Playing                            Zushi Games   0.01
## 1834      Shooter                            Zushi Games   0.00
## 1835   Simulation                            Zushi Games   0.00
## 1836       Sports                            Zushi Games   0.00
## 1837     Strategy                            Zushi Games   0.00
aggregate(JP_Sales,by=list(Platform = Platform,Year = Year),mean)
##     Platform Year            x
## 1       2600 1980 0.0000000000
## 2       2600 1981 0.0000000000
## 3       2600 1982 0.0000000000
## 4       2600 1983 0.0000000000
## 5        NES 1983 1.3500000000
## 6       2600 1984 0.0000000000
## 7        NES 1984 1.0976923077
## 8       2600 1985 0.0000000000
## 9         DS 1985 0.0200000000
## 10       NES 1985 1.3218181818
## 11        PC 1985 0.0000000000
## 12      2600 1986 0.0000000000
## 13       NES 1986 1.0426315789
## 14      2600 1987 0.0000000000
## 15       NES 1987 1.1630000000
## 16      2600 1988 0.0000000000
## 17        GB 1988 0.3500000000
## 18       NES 1988 1.4009090909
## 19        PC 1988 0.0000000000
## 20      2600 1989 0.0000000000
## 21        GB 1989 1.6160000000
## 22       NES 1989 0.4400000000
## 23        GB 1990 0.4433333333
## 24       GEN 1990 0.1100000000
## 25       NES 1990 0.9800000000
## 26      SNES 1990 1.4000000000
## 27        GB 1991 0.3755555556
## 28       GEN 1991 0.2600000000
## 29       NES 1991 0.3714285714
## 30      SNES 1991 0.3558333333
## 31        GB 1992 1.0728571429
## 32       GEN 1992 0.1200000000
## 33        GG 1992 0.0400000000
## 34       NES 1992 0.3233333333
## 35        PC 1992 0.0000000000
## 36      SNES 1992 0.9366666667
## 37       GEN 1993 0.0928571429
## 38       NES 1993 0.2925000000
## 39        NG 1993 0.1050000000
## 40       SCD 1993 0.0900000000
## 41      SNES 1993 0.5045652174
## 42       3DO 1994 0.0200000000
## 43        GB 1994 1.0633333333
## 44       GEN 1994 0.0775000000
## 45       NES 1994 0.1100000000
## 46        NG 1994 0.2000000000
## 47        PC 1994 0.0000000000
## 48        PS 1994 0.1570588235
## 49       SAT 1994 0.1757894737
## 50       SCD 1994 0.0720000000
## 51      SNES 1994 0.4258490566
## 52       3DO 1995 0.0400000000
## 53        GB 1995 0.6800000000
## 54        NG 1995 0.0825000000
## 55        PC 1995 0.0000000000
## 56        PS 1995 0.0963636364
## 57       SAT 1995 0.2028846154
## 58      SNES 1995 0.4142592593
## 59      TG16 1995 0.0800000000
## 60        GB 1996 2.1516666667
## 61       N64 1996 0.3205555556
## 62        NG 1996 0.0500000000
## 63        PC 1996 0.0000000000
## 64      PCFX 1996 0.0300000000
## 65        PS 1996 0.1086585366
## 66       SAT 1996 0.2023684211
## 67      SNES 1996 0.4373333333
## 68        GB 1997 0.4075000000
## 69       N64 1997 0.0951020408
## 70        PC 1997 0.0150000000
## 71        PS 1997 0.1760638298
## 72       SAT 1997 0.1991176471
## 73      SNES 1997 0.2475000000
## 74        DC 1998 0.2042857143
## 75        GB 1998 1.1937500000
## 76       N64 1998 0.0849350649
## 77        PC 1998 0.0000000000
## 78        PS 1998 0.1148387097
## 79       SAT 1998 0.1317241379
## 80      SNES 1998 0.1100000000
## 81        DC 1999 0.2264285714
## 82        GB 1999 1.0681818182
## 83       N64 1999 0.0837254902
## 84        PC 1999 0.0000000000
## 85        PS 1999 0.1403500000
## 86       SAT 1999 0.0900000000
## 87      SNES 1999 0.2600000000
## 88        WS 1999 0.2300000000
## 89        DC 2000 0.1270000000
## 90        GB 2000 0.4917647059
## 91       GBA 2000 0.0000000000
## 92       N64 2000 0.1286666667
## 93        PC 2000 0.0000000000
## 94        PS 2000 0.0918238994
## 95       PS2 2000 0.1081707317
## 96        WS 2000 0.3400000000
## 97        XB 2000 0.0000000000
## 98        DC 2001 0.1337500000
## 99        GB 2001 0.4650000000
## 100      GBA 2001 0.0697196262
## 101       GC 2001 0.1750000000
## 102      N64 2001 0.0588888889
## 103       PC 2001 0.0000000000
## 104       PS 2001 0.0424175824
## 105      PS2 2001 0.0961621622
## 106       WS 2001 0.1400000000
## 107       XB 2001 0.0112121212
## 108       DC 2002 0.2900000000
## 109      GBA 2002 0.0616666667
## 110       GC 2002 0.0347368421
## 111      N64 2002 0.0000000000
## 112       PC 2002 0.0000000000
## 113       PS 2002 0.0820000000
## 114      PS2 2002 0.0780357143
## 115       XB 2002 0.0031012658
## 116      GBA 2003 0.0572666667
## 117       GC 2003 0.0446527778
## 118       PC 2003 0.0000000000
## 119       PS 2003 0.0000000000
## 120      PS2 2003 0.0737500000
## 121       XB 2003 0.0015873016
## 122       DS 2004 0.1586956522
## 123      GBA 2004 0.0772571429
## 124       GC 2004 0.0361445783
## 125       PC 2004 0.0025806452
## 126      PS2 2004 0.0740154440
## 127      PSP 2004 0.1353333333
## 128       XB 2004 0.0011299435
## 129       DS 2005 0.2530508475
## 130      GBA 2005 0.0242222222
## 131       GC 2005 0.0264948454
## 132       PC 2005 0.0000000000
## 133      PS2 2005 0.0578846154
## 134      PSP 2005 0.0332989691
## 135     X360 2005 0.0155555556
## 136       XB 2005 0.0001117318
## 137       DS 2006 0.1908910891
## 138      GBA 2006 0.0387179487
## 139       GC 2006 0.0052500000
## 140       PC 2006 0.0000000000
## 141      PS2 2006 0.0681081081
## 142      PS3 2006 0.0396296296
## 143      PSP 2006 0.0231052632
## 144      Wii 2006 0.2079545455
## 145     X360 2006 0.0129032258
## 146       XB 2006 0.0000000000
## 147       DC 2007 0.0200000000
## 148       DS 2007 0.0711140584
## 149      GBA 2007 0.0000000000
## 150       GC 2007 0.0000000000
## 151       PC 2007 0.0000000000
## 152      PS2 2007 0.0458878505
## 153      PS3 2007 0.0468888889
## 154      PSP 2007 0.0431343284
## 155      Wii 2007 0.0648128342
## 156     X360 2007 0.0123577236
## 157       XB 2007 0.0000000000
## 158       DC 2008 0.0400000000
## 159       DS 2008 0.0488008130
## 160       PC 2008 0.0000000000
## 161      PS2 2008 0.0300000000
## 162      PS3 2008 0.0419424460
## 163      PSP 2008 0.1007000000
## 164      Wii 2008 0.0450000000
## 165     X360 2008 0.0129452055
## 166       XB 2008 0.0000000000
## 167       DS 2009 0.0597777778
## 168       PC 2009 0.0000000000
## 169      PS2 2009 0.0202083333
## 170      PS3 2009 0.0557407407
## 171      PSP 2009 0.0508695652
## 172      Wii 2009 0.0509846154
## 173     X360 2009 0.0112716763
## 174       DS 2010 0.0609202454
## 175       PC 2010 0.0000000000
## 176      PS2 2010 0.0186842105
## 177      PS3 2010 0.0545303867
## 178      PSP 2010 0.0965957447
## 179      Wii 2010 0.0345669291
## 180     X360 2010 0.0115934066
## 181      3DS 2011 0.1103448276
## 182       DS 2011 0.0282352941
## 183       PC 2011 0.0000000000
## 184      PS2 2011 0.0128571429
## 185      PS3 2011 0.0652777778
## 186      PSP 2011 0.0976258993
## 187      PSV 2011 0.0444444444
## 188      Wii 2011 0.0387500000
## 189     X360 2011 0.0086407767
## 190      3DS 2012 0.2141935484
## 191       DS 2012 0.1488000000
## 192       PC 2012 0.0000000000
## 193      PS3 2012 0.0806756757
## 194      PSP 2012 0.0677358491
## 195      PSV 2012 0.0453703704
## 196      Wii 2012 0.1043750000
## 197     WiiU 2012 0.0665625000
## 198     X360 2012 0.0100000000
## 199      3DS 2013 0.2584615385
## 200       DS 2013 0.0000000000
## 201       PC 2013 0.0000000000
## 202      PS3 2013 0.0954330709
## 203      PS4 2013 0.0581250000
## 204      PSP 2013 0.0542592593
## 205      PSV 2013 0.0642857143
## 206      Wii 2013 0.0041666667
## 207     WiiU 2013 0.0842857143
## 208     X360 2013 0.0057333333
## 209     XOne 2013 0.0010526316
## 210      3DS 2014 0.2612658228
## 211       DS 2014 0.0000000000
## 212       PC 2014 0.0000000000
## 213      PS3 2014 0.0576851852
## 214      PS4 2014 0.0389333333
## 215      PSP 2014 0.0240000000
## 216      PSV 2014 0.0593137255
## 217      Wii 2014 0.0000000000
## 218     WiiU 2014 0.1019354839
## 219     X360 2014 0.0012307692
## 220     XOne 2014 0.0022950820
## 221      3DS 2015 0.1789534884
## 222       PC 2015 0.0000000000
## 223      PS3 2015 0.0495945946
## 224      PS4 2015 0.0451824818
## 225      PSP 2015 0.0400000000
## 226      PSV 2015 0.0422123894
## 227      Wii 2015 0.0000000000
## 228     WiiU 2015 0.1217857143
## 229     X360 2015 0.0000000000
## 230     XOne 2015 0.0021518987
## 231      3DS 2016 0.1437142857
## 232       PC 2016 0.0000000000
## 233      PS3 2016 0.0353125000
## 234      PS4 2016 0.0395327103
## 235      PSV 2016 0.0458333333
## 236     WiiU 2016 0.0550000000
## 237     X360 2016 0.0000000000
## 238     XOne 2016 0.0001851852
## 239      PS4 2017 0.0300000000
## 240      PSV 2017 0.0100000000
## 241       DS 2020 0.0000000000
## 242     2600  N/A 0.0000000000
## 243      3DS  N/A 0.0055555556
## 244       DS  N/A 0.0183333333
## 245       GB  N/A 0.0000000000
## 246      GBA  N/A 0.0700000000
## 247       GC  N/A 0.0171428571
## 248      N64  N/A 0.1533333333
## 249       PC  N/A 0.0000000000
## 250       PS  N/A 0.0057142857
## 251      PS2  N/A 0.0488235294
## 252      PS3  N/A 0.0312000000
## 253      PSP  N/A 0.0562500000
## 254      PSV  N/A 0.0700000000
## 255      Wii  N/A 0.0305714286
## 256     X360  N/A 0.0043333333
## 257       XB  N/A 0.0000000000
aggregate(JP_Sales,by=list(Platform = Platform,Genre = Genre),mean)
##     Platform        Genre            x
## 1       2600       Action 0.0000000000
## 2        3DS       Action 0.1211538462
## 3         DC       Action 0.1966666667
## 4         DS       Action 0.0371428571
## 5         GB       Action 0.2483333333
## 6        GBA       Action 0.0147904192
## 7         GC       Action 0.0280198020
## 8        GEN       Action 0.0833333333
## 9        N64       Action 0.0965789474
## 10       NES       Action 0.6653846154
## 11        PC       Action 0.0000000000
## 12        PS       Action 0.0729936306
## 13       PS2       Action 0.0741666667
## 14       PS3       Action 0.0778684211
## 15       PS4       Action 0.0443442623
## 16       PSP       Action 0.0547297297
## 17       PSV       Action 0.0460563380
## 18       SAT       Action 0.2166666667
## 19      SNES       Action 0.3716666667
## 20       Wii       Action 0.0206722689
## 21      WiiU       Action 0.0169841270
## 22      X360       Action 0.0085493827
## 23        XB       Action 0.0021290323
## 24      XOne       Action 0.0007352941
## 25      2600    Adventure 0.0000000000
## 26       3DO    Adventure 0.0600000000
## 27       3DS    Adventure 0.0740540541
## 28        DC    Adventure 0.1545454545
## 29        DS    Adventure 0.0327916667
## 30        GB    Adventure 0.8500000000
## 31       GBA    Adventure 0.0413157895
## 32        GC    Adventure 0.0335000000
## 33       GEN    Adventure 0.0950000000
## 34       N64    Adventure 0.0425000000
## 35       NES    Adventure 1.6100000000
## 36        PC    Adventure 0.0000000000
## 37        PS    Adventure 0.0500000000
## 38       PS2    Adventure 0.0379081633
## 39       PS3    Adventure 0.0362162162
## 40       PS4    Adventure 0.0200000000
## 41       PSP    Adventure 0.0352112676
## 42       PSV    Adventure 0.0254651163
## 43       SAT    Adventure 0.1600000000
## 44      SNES    Adventure 0.3750000000
## 45      TG16    Adventure 0.1400000000
## 46       Wii    Adventure 0.0139285714
## 47      WiiU    Adventure 0.0000000000
## 48      X360    Adventure 0.0129787234
## 49        XB    Adventure 0.0000000000
## 50      XOne    Adventure 0.0025000000
## 51      2600     Fighting 0.0000000000
## 52       3DS     Fighting 0.2278571429
## 53        DC     Fighting 0.1525000000
## 54        DS     Fighting 0.1136111111
## 55       GBA     Fighting 0.0060869565
## 56        GC     Fighting 0.0878571429
## 57       GEN     Fighting 0.1080000000
## 58       N64     Fighting 0.0844827586
## 59       NES     Fighting 0.7350000000
## 60        NG     Fighting 0.1290909091
## 61        PC     Fighting 0.0000000000
## 62        PS     Fighting 0.1287037037
## 63       PS2     Fighting 0.0776666667
## 64       PS3     Fighting 0.0860526316
## 65       PS4     Fighting 0.0411764706
## 66       PSP     Fighting 0.0777027027
## 67       PSV     Fighting 0.0418750000
## 68       SAT     Fighting 0.2448387097
## 69      SNES     Fighting 0.5708000000
## 70       Wii     Fighting 0.0873809524
## 71      WiiU     Fighting 0.1980000000
## 72      X360     Fighting 0.0147692308
## 73        XB     Fighting 0.0075000000
## 74      XOne     Fighting 0.0014285714
## 75      2600         Misc 0.0000000000
## 76       3DS         Misc 0.1015094340
## 77        DS         Misc 0.0949872774
## 78        GB         Misc 0.6012500000
## 79       GBA         Misc 0.0153636364
## 80        GC         Misc 0.0994444444
## 81       GEN         Misc 0.0300000000
## 82       N64         Misc 0.1866666667
## 83       NES         Misc 1.7900000000
## 84        PC         Misc 0.0000000000
## 85        PS         Misc 0.1093421053
## 86       PS2         Misc 0.0361711712
## 87       PS3         Misc 0.0111290323
## 88       PS4         Misc 0.0233333333
## 89       PSP         Misc 0.0573584906
## 90       PSV         Misc 0.0933333333
## 91       SAT         Misc 0.0800000000
## 92       SCD         Misc 0.0450000000
## 93      SNES         Misc 0.1752941176
## 94       Wii         Misc 0.0517142857
## 95      WiiU         Misc 0.1142857143
## 96      X360         Misc 0.0035714286
## 97        XB         Misc 0.0000000000
## 98      XOne         Misc 0.0006666667
## 99      2600     Platform 0.0000000000
## 100      3DS     Platform 0.2303571429
## 101       DC     Platform 0.2900000000
## 102       DS     Platform 0.1538043478
## 103       GB     Platform 0.7284210526
## 104      GBA     Platform 0.0794366197
## 105       GC     Platform 0.0205479452
## 106      GEN     Platform 0.1100000000
## 107       GG     Platform 0.0400000000
## 108      N64     Platform 0.2103333333
## 109      NES     Platform 1.0807142857
## 110       PC     Platform 0.0000000000
## 111       PS     Platform 0.0800000000
## 112      PS2     Platform 0.0239805825
## 113      PS3     Platform 0.0164864865
## 114      PS4     Platform 0.0445454545
## 115      PSP     Platform 0.0180555556
## 116      PSV     Platform 0.0060000000
## 117      SAT     Platform 0.1520000000
## 118      SCD     Platform 0.0900000000
## 119     SNES     Platform 0.7853846154
## 120      Wii     Platform 0.1937931034
## 121     WiiU     Platform 0.2281250000
## 122     X360     Platform 0.0008333333
## 123       XB     Platform 0.0002040816
## 124     XOne     Platform 0.0000000000
## 125     2600       Puzzle 0.0000000000
## 126      3DO       Puzzle 0.0200000000
## 127      3DS       Puzzle 0.0900000000
## 128       DS       Puzzle 0.0667647059
## 129       GB       Puzzle 0.8053333333
## 130      GBA       Puzzle 0.0643902439
## 131       GC       Puzzle 0.0561538462
## 132      N64       Puzzle 0.0450000000
## 133      NES       Puzzle 0.6742857143
## 134       PC       Puzzle 0.0000000000
## 135       PS       Puzzle 0.1187500000
## 136      PS2       Puzzle 0.0250000000
## 137      PS3       Puzzle 0.0333333333
## 138      PS4       Puzzle 0.0000000000
## 139      PSP       Puzzle 0.0120454545
## 140      PSV       Puzzle 0.0166666667
## 141      SAT       Puzzle 0.2000000000
## 142     SNES       Puzzle 0.4900000000
## 143      Wii       Puzzle 0.0272727273
## 144     WiiU       Puzzle 0.0550000000
## 145     X360       Puzzle 0.0214285714
## 146       XB       Puzzle 0.0000000000
## 147     2600       Racing 0.0000000000
## 148      3DS       Racing 0.2554545455
## 149       DC       Racing 0.1600000000
## 150       DS       Racing 0.0682089552
## 151       GB       Racing 0.3700000000
## 152      GBA       Racing 0.0234375000
## 153       GC       Racing 0.0249206349
## 154      GEN       Racing 0.2600000000
## 155      N64       Racing 0.0782456140
## 156      NES       Racing 0.9225000000
## 157       PC       Racing 0.0000000000
## 158       PS       Racing 0.0751034483
## 159      PS2       Racing 0.0274074074
## 160      PS3       Racing 0.0340217391
## 161      PS4       Racing 0.0152941176
## 162      PSP       Racing 0.0149230769
## 163      PSV       Racing 0.0145454545
## 164      SAT       Racing 0.2512500000
## 165      SCD       Racing 0.0700000000
## 166     SNES       Racing 0.7311111111
## 167      Wii       Racing 0.0437234043
## 168     WiiU       Racing 0.4300000000
## 169     X360       Racing 0.0049523810
## 170       XB       Racing 0.0013821138
## 171     XOne       Racing 0.0026315789
## 172      3DS Role-Playing 0.4605813953
## 173       DC Role-Playing 0.1700000000
## 174       DS Role-Playing 0.2727500000
## 175       GB Role-Playing 1.6452380952
## 176      GBA Role-Playing 0.2905479452
## 177       GC Role-Playing 0.0914814815
## 178      GEN Role-Playing 0.0900000000
## 179      N64 Role-Playing 0.1875000000
## 180      NES Role-Playing 1.4645454545
## 181       PC Role-Playing 0.0000000000
## 182     PCFX Role-Playing 0.0300000000
## 183       PS Role-Playing 0.4221649485
## 184      PS2 Role-Playing 0.1818716578
## 185      PS3 Role-Playing 0.1413445378
## 186      PS4 Role-Playing 0.0687234043
## 187      PSP Role-Playing 0.1605208333
## 188      PSV Role-Playing 0.0908433735
## 189      SAT Role-Playing 0.2211764706
## 190      SCD Role-Playing 0.0600000000
## 191     SNES Role-Playing 0.6752000000
## 192      Wii Role-Playing 0.1608571429
## 193     WiiU Role-Playing 0.1383333333
## 194       WS Role-Playing 0.3050000000
## 195     X360 Role-Playing 0.0343421053
## 196       XB Role-Playing 0.0034782609
## 197     XOne Role-Playing 0.0007692308
## 198     2600      Shooter 0.0000000000
## 199      3DS      Shooter 0.0285714286
## 200       DC      Shooter 0.1100000000
## 201       DS      Shooter 0.0080952381
## 202       GB      Shooter 0.3600000000
## 203      GBA      Shooter 0.0080000000
## 204       GC      Shooter 0.0077083333
## 205      GEN      Shooter 0.1300000000
## 206      N64      Shooter 0.0425000000
## 207      NES      Shooter 0.7057142857
## 208       PC      Shooter 0.0011486486
## 209       PS      Shooter 0.0247916667
## 210      PS2      Shooter 0.0240000000
## 211      PS3      Shooter 0.0564743590
## 212      PS4      Shooter 0.0685294118
## 213      PSP      Shooter 0.0121621622
## 214      PSV      Shooter 0.0480000000
## 215      SAT      Shooter 0.1804545455
## 216     SNES      Shooter 0.2380000000
## 217     TG16      Shooter 0.0200000000
## 218      Wii      Shooter 0.0100000000
## 219     WiiU      Shooter 0.1520000000
## 220     X360      Shooter 0.0152709360
## 221       XB      Shooter 0.0018181818
## 222     XOne      Shooter 0.0048484848
## 223     2600   Simulation 0.0000000000
## 224      3DO   Simulation 0.0200000000
## 225      3DS   Simulation 0.3440000000
## 226       DC   Simulation 0.5200000000
## 227       DS   Simulation 0.0544210526
## 228       GB   Simulation 0.7060000000
## 229      GBA   Simulation 0.0411111111
## 230       GC   Simulation 0.1008333333
## 231      N64   Simulation 0.2510000000
## 232       PC   Simulation 0.0000000000
## 233       PS   Simulation 0.2106666667
## 234      PS2   Simulation 0.0730000000
## 235      PS3   Simulation 0.0409677419
## 236      PS4   Simulation 0.0320000000
## 237      PSP   Simulation 0.0365517241
## 238      PSV   Simulation 0.0200000000
## 239      SAT   Simulation 0.1614285714
## 240     SNES   Simulation 0.4155555556
## 241      Wii   Simulation 0.0227586207
## 242     WiiU   Simulation 0.0000000000
## 243     X360   Simulation 0.0175000000
## 244       XB   Simulation 0.0012500000
## 245     XOne   Simulation 0.0000000000
## 246     2600       Sports 0.0000000000
## 247      3DS       Sports 0.0757692308
## 248       DC       Sports 0.1370000000
## 249       DS       Sports 0.0385135135
## 250       GB       Sports 0.4155555556
## 251      GBA       Sports 0.0226136364
## 252       GC       Sports 0.0148181818
## 253      GEN       Sports 0.0133333333
## 254      N64       Sports 0.0568750000
## 255      NES       Sports 1.2450000000
## 256       NG       Sports 0.0200000000
## 257       PC       Sports 0.0000000000
## 258       PS       Sports 0.0830180180
## 259      PS2       Sports 0.0618500000
## 260      PS3       Sports 0.0370892019
## 261      PS4       Sports 0.0213953488
## 262      PSP       Sports 0.0471111111
## 263      PSV       Sports 0.0447826087
## 264      SAT       Sports 0.1743750000
## 265     SNES       Sports 0.3144897959
## 266      Wii       Sports 0.0699233716
## 267     WiiU       Sports 0.0637500000
## 268     X360       Sports 0.0018636364
## 269       XB       Sports 0.0009411765
## 270     XOne       Sports 0.0005555556
## 271      3DS     Strategy 0.0553333333
## 272       DS     Strategy 0.0358227848
## 273       GB     Strategy 0.8185714286
## 274      GBA     Strategy 0.0988888889
## 275       GC     Strategy 0.1209090909
## 276      GEN     Strategy 0.1900000000
## 277      N64     Strategy 0.4088888889
## 278       PC     Strategy 0.0000000000
## 279       PS     Strategy 0.1212857143
## 280      PS2     Strategy 0.1166197183
## 281      PS3     Strategy 0.0483333333
## 282      PS4     Strategy 0.0140000000
## 283      PSP     Strategy 0.0745000000
## 284      PSV     Strategy 0.0257142857
## 285      SAT     Strategy 0.1800000000
## 286      SCD     Strategy 0.1400000000
## 287     SNES     Strategy 0.3120000000
## 288      Wii     Strategy 0.0696000000
## 289     WiiU     Strategy 0.1033333333
## 290       WS     Strategy 0.1000000000
## 291     X360     Strategy 0.0046428571
## 292       XB     Strategy 0.0000000000
## 293     XOne     Strategy 0.0000000000
aggregate(JP_Sales,by=list(Platform = Platform,Publisher = Publisher),mean)
##      Platform                              Publisher            x
## 1          DS                        10TACLE Studios 0.000000e+00
## 2         PS2                        10TACLE Studios 0.000000e+00
## 3          PC                             1C Company 0.000000e+00
## 4        2600           20th Century Fox Video Games 0.000000e+00
## 5          PC                                 2D Boy 0.000000e+00
## 6          GC                                    3DO 0.000000e+00
## 7         N64                                    3DO 0.000000e+00
## 8          PS                                    3DO 0.000000e+00
## 9         PS2                                    3DO 0.000000e+00
## 10         XB                                    3DO 0.000000e+00
## 11       X360                                49Games 0.000000e+00
## 12        3DS                              505 Games 3.333333e-02
## 13         DS                              505 Games 1.092308e-02
## 14         PC                              505 Games 0.000000e+00
## 15        PS2                              505 Games 3.000000e-02
## 16        PS3                              505 Games 1.666667e-02
## 17        PS4                              505 Games 1.666667e-03
## 18        PSP                              505 Games 8.000000e-03
## 19        PSV                              505 Games 0.000000e+00
## 20        Wii                              505 Games 6.000000e-03
## 21       WiiU                              505 Games 0.000000e+00
## 22       X360                              505 Games 2.222222e-03
## 23         XB                              505 Games 0.000000e+00
## 24       XOne                              505 Games 0.000000e+00
## 25        3DS                                    5pb 4.000000e-02
## 26        PS2                                    5pb 2.714286e-02
## 27        PS3                                    5pb 3.300000e-02
## 28        PS4                                    5pb 1.000000e-02
## 29        PSP                                    5pb 2.666667e-02
## 30        PSV                                    5pb 2.071429e-02
## 31       X360                                    5pb 2.800000e-02
## 32       XOne                                    5pb 1.000000e-02
## 33         DS                               7G//AMES 0.000000e+00
## 34        Wii                               7G//AMES 0.000000e+00
## 35         PS                             989 Sports 0.000000e+00
## 36         PS                            989 Studios 7.142857e-03
## 37        PS3                               Abylight 0.000000e+00
## 38         DC                  Acclaim Entertainment 1.400000e-01
## 39        GBA                  Acclaim Entertainment 0.000000e+00
## 40         GC                  Acclaim Entertainment 8.333333e-04
## 41        GEN                  Acclaim Entertainment 0.000000e+00
## 42        N64                  Acclaim Entertainment 2.903226e-03
## 43         PC                  Acclaim Entertainment 0.000000e+00
## 44         PS                  Acclaim Entertainment 5.000000e-03
## 45        PS2                  Acclaim Entertainment 1.818182e-03
## 46        SAT                  Acclaim Entertainment 1.866667e-01
## 47       SNES                  Acclaim Entertainment 0.000000e+00
## 48         XB                  Acclaim Entertainment 0.000000e+00
## 49         PS                               Accolade 0.000000e+00
## 50        3DS                            Ackkstudios 6.000000e-02
## 51         DS                            Ackkstudios 0.000000e+00
## 52        PS3                            Ackkstudios 1.366667e-01
## 53        PSP                            Ackkstudios 3.666667e-02
## 54        Wii                            Ackkstudios 4.000000e-02
## 55        3DS                                Acquire 6.000000e-02
## 56        PS2                                Acquire 5.000000e-02
## 57        PS3                                Acquire 3.666667e-02
## 58        PS4                                Acquire 1.000000e-02
## 59        PSP                                Acquire 9.714286e-02
## 60       2600                             Activision 0.000000e+00
## 61        3DS                             Activision 0.000000e+00
## 62         DC                             Activision 1.000000e-01
## 63         DS                             Activision 6.306306e-04
## 64         GB                             Activision 1.000000e-02
## 65        GBA                             Activision 2.244898e-03
## 66         GC                             Activision 1.363636e-03
## 67        N64                             Activision 3.846154e-03
## 68         PC                             Activision 0.000000e+00
## 69         PS                             Activision 1.156250e-02
## 70        PS2                             Activision 5.145631e-03
## 71        PS3                             Activision 3.138889e-02
## 72        PS4                             Activision 4.619048e-02
## 73        PSP                             Activision 2.941176e-04
## 74        PSV                             Activision 2.333333e-02
## 75        Wii                             Activision 1.261261e-03
## 76       WiiU                             Activision 5.555556e-04
## 77       X360                             Activision 4.552239e-03
## 78         XB                             Activision 3.278689e-04
## 79       XOne                             Activision 1.000000e-03
## 80         PC                    Activision Blizzard 0.000000e+00
## 81        GBA                       Activision Value 0.000000e+00
## 82         GC                       Activision Value 0.000000e+00
## 83         PS                       Activision Value 0.000000e+00
## 84        PS2                       Activision Value 0.000000e+00
## 85        PS3                       Activision Value 0.000000e+00
## 86        PSP                       Activision Value 0.000000e+00
## 87        Wii                       Activision Value 0.000000e+00
## 88       X360                       Activision Value 0.000000e+00
## 89         XB                       Activision Value 0.000000e+00
## 90         PS                       Adeline Software 0.000000e+00
## 91         PC                               Aerosoft 0.000000e+00
## 92        3DS                 Agatsuma Entertainment 3.000000e-02
## 93        GBA                 Agatsuma Entertainment 0.000000e+00
## 94         PS                                 Agetec 2.333333e-02
## 95        PS2                                 Agetec 7.750000e-02
## 96        PSP                                 Agetec 0.000000e+00
## 97        3DS                            Aksys Games 1.000000e-02
## 98         DS                            Aksys Games 0.000000e+00
## 99        PS3                            Aksys Games 2.000000e-02
## 100       PS4                            Aksys Games 3.000000e-02
## 101       PSV                            Aksys Games 3.000000e-02
## 102        PC                   Alawar Entertainment 0.000000e+00
## 103       3DS                              Alchemist 5.800000e-02
## 104        DS                              Alchemist 5.166667e-02
## 105       PS2                              Alchemist 2.769231e-02
## 106       PS3                              Alchemist 2.000000e-02
## 107       PSP                              Alchemist 2.466667e-02
## 108      X360                              Alchemist 2.500000e-02
## 109        PC                   Alternative Software 0.000000e+00
## 110       PS3                   Alternative Software 0.000000e+00
## 111       PS4                   Alternative Software 0.000000e+00
## 112       Wii                   Alternative Software 0.000000e+00
## 113      X360                   Alternative Software 0.000000e+00
## 114      XOne                   Alternative Software 0.000000e+00
## 115       GBA                                 Altron 0.000000e+00
## 116        DS                                 Alvion 2.000000e-02
## 117        PS                     American Softworks 0.000000e+00
## 118      SNES                          Angel Studios 1.466667e-01
## 119      2600                        Answer Software 0.000000e+00
## 120        DS                         AQ Interactive 1.000000e-02
## 121       PS2                         AQ Interactive 3.500000e-02
## 122       PSP                         AQ Interactive 2.000000e-02
## 123        PS                              Aqua Plus 1.300000e-01
## 124       PS2                              Aqua Plus 6.000000e-02
## 125       PS3                              Aqua Plus 4.625000e-02
## 126       PS4                              Aqua Plus 5.000000e-02
## 127       PSP                              Aqua Plus 4.666667e-02
## 128       PSV                              Aqua Plus 4.750000e-02
## 129        PS                                  Aques 1.500000e-01
## 130       3DS                       Arc System Works 2.000000e-02
## 131        DS                       Arc System Works 1.333333e-02
## 132       PS3                       Arc System Works 4.800000e-02
## 133       PS4                       Arc System Works 4.000000e-02
## 134       PSP                       Arc System Works 1.000000e-02
## 135       PSV                       Arc System Works 1.400000e-02
## 136       GEN                    Arena Entertainment 0.000000e+00
## 137       PS2                                   Aria 7.000000e-02
## 138        DS                                  Arika 2.000000e-02
## 139       PS2                                  Arika 0.000000e+00
## 140       3DS                                ArtDink 6.000000e-02
## 141        DS                                ArtDink 4.000000e-02
## 142        PS                                ArtDink 1.050000e-01
## 143       PS2                                ArtDink 2.500000e-02
## 144       PSP                                ArtDink 2.000000e-02
## 145        PS                             Aruze Corp 3.633333e-01
## 146        PS                              ASC Games 0.000000e+00
## 147        PC                  Ascaron Entertainment 0.000000e+00
## 148        PC             Ascaron Entertainment GmbH 0.000000e+00
## 149        GB                    ASCII Entertainment 3.700000e-01
## 150       N64                    ASCII Entertainment 0.000000e+00
## 151        PS                    ASCII Entertainment 5.112500e-01
## 152       PS2                    ASCII Entertainment 3.200000e-01
## 153       SAT                    ASCII Entertainment 9.000000e-02
## 154      SNES                    ASCII Entertainment 5.662500e-01
## 155        DS                      ASCII Media Works 3.000000e-02
## 156       PS2                      ASCII Media Works 2.000000e-02
## 157       PSP                      ASCII Media Works 4.000000e-02
## 158       PSV                      ASCII Media Works 1.000000e-02
## 159       PSP                                 Asgard 3.285714e-02
## 160       PSV                                 Asgard 2.000000e-02
## 161       SAT                                    ASK 3.000000e-02
## 162        PS                Asmik Ace Entertainment 9.000000e-02
## 163       PS2                Asmik Ace Entertainment 6.500000e-02
## 164      SNES                             Asmik Corp 8.500000e-02
## 165        DS                                  Aspyr 0.000000e+00
## 166       GBA                                  Aspyr 0.000000e+00
## 167        PC                                  Aspyr 0.000000e+00
## 168      X360                                  Aspyr 0.000000e+00
## 169        DS                               Astragon 0.000000e+00
## 170        PC                               Astragon 0.000000e+00
## 171       3DS                   Asylum Entertainment 0.000000e+00
## 172        DS                   Asylum Entertainment 0.000000e+00
## 173       Wii                   Asylum Entertainment 0.000000e+00
## 174      2600                                  Atari 0.000000e+00
## 175       3DS                                  Atari 0.000000e+00
## 176        DS                                  Atari 5.694444e-02
## 177       GBA                                  Atari 3.181818e-03
## 178        GC                                  Atari 1.000000e-02
## 179        PC                                  Atari 0.000000e+00
## 180        PS                                  Atari 4.363636e-02
## 181       PS2                                  Atari 8.871429e-02
## 182       PS3                                  Atari 4.333333e-02
## 183       PSP                                  Atari 1.235294e-02
## 184       Wii                                  Atari 2.500000e-02
## 185      X360                                  Atari 2.850000e-02
## 186        XB                                  Atari 2.702703e-04
## 187       N64                                 Athena 0.000000e+00
## 188       PS2                                 Athena 7.000000e-02
## 189       3DS                                  Atlus 1.130000e-01
## 190        DS                                  Atlus 8.555556e-02
## 191       GBA                                  Atlus 0.000000e+00
## 192        GC                                  Atlus 0.000000e+00
## 193       N64                                  Atlus 0.000000e+00
## 194        PS                                  Atlus 1.287500e-01
## 195       PS2                                  Atlus 1.016667e-01
## 196       PS3                                  Atlus 1.850000e-01
## 197       PS4                                  Atlus 3.400000e-01
## 198       PSP                                  Atlus 6.000000e-02
## 199       PSV                                  Atlus 2.150000e-01
## 200       SAT                                  Atlus 1.840000e-01
## 201      SNES                                  Atlus 2.250000e-01
## 202      WiiU                                  Atlus 0.000000e+00
## 203      X360                                  Atlus 1.500000e-02
## 204        XB                                  Atlus 2.500000e-02
## 205      2600                     Avalon Interactive 0.000000e+00
## 206        PS                     Avalon Interactive 0.000000e+00
## 207       PS2                     Avalon Interactive 0.000000e+00
## 208        XB                     Avalon Interactive 0.000000e+00
## 209        DS                              Avanquest 0.000000e+00
## 210        PC                              Avanquest 0.000000e+00
## 211       PS4                              Avanquest 0.000000e+00
## 212       Wii                              Avanquest 0.000000e+00
## 213       3DS                     Avanquest Software 0.000000e+00
## 214        DS                     Avanquest Software 0.000000e+00
## 215        PC                     Avanquest Software 0.000000e+00
## 216       PS3                     Avanquest Software 3.000000e-02
## 217      X360                     Avanquest Software 0.000000e+00
## 218        PS                                  Axela 2.400000e-01
## 219       GBA                     BAM! Entertainment 0.000000e+00
## 220        GC                     BAM! Entertainment 0.000000e+00
## 221       N64                     BAM! Entertainment 0.000000e+00
## 222        PS                     BAM! Entertainment 0.000000e+00
## 223       PS2                     BAM! Entertainment 3.750000e-03
## 224        XB                     BAM! Entertainment 0.000000e+00
## 225        DS                              Banpresto 9.500000e-02
## 226        GB                              Banpresto 3.900000e-01
## 227       GBA                              Banpresto 1.272727e-01
## 228       N64                              Banpresto 1.200000e-01
## 229        PS                              Banpresto 3.220000e-01
## 230       PS2                              Banpresto 2.395238e-01
## 231       PSP                              Banpresto 1.400000e-01
## 232       SAT                              Banpresto 5.500000e-01
## 233      SNES                              Banpresto 2.853846e-01
## 234      X360                              Banpresto 4.000000e-02
## 235        DS                                Benesse 5.333333e-02
## 236        PS                               Berkeley 0.000000e+00
## 237        PC                     Bethesda Softworks 0.000000e+00
## 238       PS2                     Bethesda Softworks 0.000000e+00
## 239       PS3                     Bethesda Softworks 5.384615e-02
## 240       PS4                     Bethesda Softworks 6.285714e-02
## 241       Wii                     Bethesda Softworks 0.000000e+00
## 242      X360                     Bethesda Softworks 2.000000e-02
## 243        XB                     Bethesda Softworks 0.000000e+00
## 244      XOne                     Bethesda Softworks 1.428571e-03
## 245       3DS                    Big Ben Interactive 0.000000e+00
## 246        DS                    Big Ben Interactive 0.000000e+00
## 247       PS2                    Big Ben Interactive 0.000000e+00
## 248       Wii                    Big Ben Interactive 0.000000e+00
## 249        PC                         Big Fish Games 0.000000e+00
## 250       PS3                     Bigben Interactive 0.000000e+00
## 251       PS4                     Bigben Interactive 0.000000e+00
## 252       PSV                     Bigben Interactive 0.000000e+00
## 253      X360                     Bigben Interactive 0.000000e+00
## 254      XOne                     Bigben Interactive 0.000000e+00
## 255        PC                      bitComposer Games 0.000000e+00
## 256       PS3                      bitComposer Games 0.000000e+00
## 257      X360                      bitComposer Games 0.000000e+00
## 258        DS                       Black Bean Games 0.000000e+00
## 259        PC                       Black Bean Games 0.000000e+00
## 260       PS2                       Black Bean Games 0.000000e+00
## 261       PS3                       Black Bean Games 1.000000e-03
## 262       PSP                       Black Bean Games 0.000000e+00
## 263       Wii                       Black Bean Games 0.000000e+00
## 264      X360                       Black Bean Games 0.000000e+00
## 265       PS2                      Black Label Games 0.000000e+00
## 266        DS               Blast! Entertainment Ltd 0.000000e+00
## 267       PS2               Blast! Entertainment Ltd 0.000000e+00
## 268       Wii               Blast! Entertainment Ltd 0.000000e+00
## 269        PC                              Blue Byte 0.000000e+00
## 270        PS          BMG Interactive Entertainment 0.000000e+00
## 271        PC                    Bohemia Interactive 0.000000e+00
## 272      2600                                   Bomb 0.000000e+00
## 273       PSP                               Boost On 1.000000e-02
## 274       NES                                    BPS 3.200000e-01
## 275      SNES                                    BPS 2.000000e-01
## 276        DS                    Brash Entertainment 0.000000e+00
## 277       PS2                    Brash Entertainment 0.000000e+00
## 278       Wii                    Brash Entertainment 0.000000e+00
## 279      X360                    Brash Entertainment 0.000000e+00
## 280        DS                               Broccoli 2.000000e-02
## 281       PS2                               Broccoli 2.400000e-02
## 282       PSP                               Broccoli 5.692308e-02
## 283       PSV                               Broccoli 3.000000e-02
## 284       PSP                              BushiRoad 3.000000e-02
## 285       3DS                                 Capcom 5.353333e-01
## 286        DC                                 Capcom 9.000000e-02
## 287        DS                                 Capcom 1.668000e-01
## 288        GB                                 Capcom 1.633333e-01
## 289       GBA                                 Capcom 1.600000e-01
## 290        GC                                 Capcom 6.052632e-02
## 291       GEN                                 Capcom 1.100000e-01
## 292       N64                                 Capcom 5.000000e-02
## 293       NES                                 Capcom 3.533333e-01
## 294        PC                                 Capcom 0.000000e+00
## 295        PS                                 Capcom 1.744444e-01
## 296       PS2                                 Capcom 1.352459e-01
## 297       PS3                                 Capcom 1.845238e-01
## 298       PS4                                 Capcom 3.125000e-02
## 299       PSP                                 Capcom 5.223077e-01
## 300       PSV                                 Capcom 2.333333e-02
## 301       SAT                                 Capcom 1.433333e-01
## 302      SNES                                 Capcom 6.900000e-01
## 303       Wii                                 Capcom 8.944444e-02
## 304      WiiU                                 Capcom 1.500000e-02
## 305      X360                                 Capcom 3.857143e-02
## 306        XB                                 Capcom 5.625000e-03
## 307      XOne                                 Capcom 0.000000e+00
## 308        DS                                   Cave 0.000000e+00
## 309      X360                                   Cave 2.000000e-02
## 310      2600                        CBS Electronics 0.000000e+00
## 311        PC                                    CCP 0.000000e+00
## 312        DS             CDV Software Entertainment 0.000000e+00
## 313        PC             CDV Software Entertainment 0.000000e+00
## 314       Wii             CDV Software Entertainment 0.000000e+00
## 315       3DS                               ChunSoft 3.000000e-02
## 316        DS                               ChunSoft 3.666667e-02
## 317        GB                               ChunSoft 2.700000e-01
## 318       N64                               ChunSoft 3.200000e-01
## 319        PS                               ChunSoft 1.600000e-01
## 320       PS2                               ChunSoft 3.600000e-01
## 321       PSP                               ChunSoft 1.500000e-02
## 322       PSV                               ChunSoft 4.000000e-02
## 323       SAT                               ChunSoft 9.000000e-02
## 324      SNES                               ChunSoft 5.375000e-01
## 325      X360                               ChunSoft 1.000000e-02
## 326        DS                       City Interactive 0.000000e+00
## 327        PC                       City Interactive 0.000000e+00
## 328       PS3                       City Interactive 2.333333e-02
## 329       Wii                       City Interactive 0.000000e+00
## 330      X360                       City Interactive 0.000000e+00
## 331       PS3       Cloud Imperium Games Corporation 0.000000e+00
## 332      X360       Cloud Imperium Games Corporation 0.000000e+00
## 333        PS                         Coconuts Japan 0.000000e+00
## 334      SNES                         Coconuts Japan 5.000000e-02
## 335       3DS                            Codemasters 0.000000e+00
## 336        DS                            Codemasters 0.000000e+00
## 337       GBA                            Codemasters 0.000000e+00
## 338        GC                            Codemasters 0.000000e+00
## 339       N64                            Codemasters 0.000000e+00
## 340        PC                            Codemasters 0.000000e+00
## 341        PS                            Codemasters 2.111111e-02
## 342       PS2                            Codemasters 1.764706e-03
## 343       PS3                            Codemasters 1.807692e-02
## 344       PS4                            Codemasters 1.333333e-02
## 345       PSP                            Codemasters 1.666667e-03
## 346       PSV                            Codemasters 1.000000e-02
## 347       Wii                            Codemasters 0.000000e+00
## 348      X360                            Codemasters 2.962963e-03
## 349        XB                            Codemasters 0.000000e+00
## 350      XOne                            Codemasters 0.000000e+00
## 351        PC                     Codemasters Online 0.000000e+00
## 352        DS                      CokeM Interactive 0.000000e+00
## 353      2600                                 Coleco 0.000000e+00
## 354       PS2                                Comfort 1.500000e-02
## 355       PSP                                Comfort 3.000000e-02
## 356        DS                               Commseed 1.000000e-02
## 357       N64                                Compile 1.600000e-01
## 358        PS                                Compile 1.070000e+00
## 359       SAT                                Compile 3.150000e-01
## 360      SNES                                Compile 2.450000e-01
## 361       PS3                          Compile Heart 4.666667e-02
## 362       PS4                          Compile Heart 2.000000e-02
## 363       PSP                          Compile Heart 3.000000e-02
## 364       PSV                          Compile Heart 4.875000e-02
## 365      X360                          Compile Heart 6.666667e-03
## 366        DS               Conspiracy Entertainment 0.000000e+00
## 367       GBA               Conspiracy Entertainment 0.000000e+00
## 368        PS               Conspiracy Entertainment 0.000000e+00
## 369       PS2               Conspiracy Entertainment 0.000000e+00
## 370       PS3               Conspiracy Entertainment 0.000000e+00
## 371       PSP               Conspiracy Entertainment 0.000000e+00
## 372       Wii               Conspiracy Entertainment 0.000000e+00
## 373      X360               Conspiracy Entertainment 0.000000e+00
## 374        PS                       Core Design Ltd. 0.000000e+00
## 375      2600                           CPG Products 0.000000e+00
## 376       3DS                    Crave Entertainment 0.000000e+00
## 377        DS                    Crave Entertainment 0.000000e+00
## 378       GBA                    Crave Entertainment 0.000000e+00
## 379        GC                    Crave Entertainment 0.000000e+00
## 380       N64                    Crave Entertainment 0.000000e+00
## 381        PS                    Crave Entertainment 6.000000e-02
## 382       PS2                    Crave Entertainment 1.875000e-02
## 383       PS3                    Crave Entertainment 0.000000e+00
## 384       PSP                    Crave Entertainment 0.000000e+00
## 385       Wii                    Crave Entertainment 0.000000e+00
## 386      X360                    Crave Entertainment 0.000000e+00
## 387        XB                    Crave Entertainment 0.000000e+00
## 388        DS                          Creative Core 3.333333e-02
## 389        PC                            Crimson Cow 0.000000e+00
## 390        PS                       Crystal Dynamics 0.000000e+00
## 391        PS                                CTO SpA 0.000000e+00
## 392        DS                          Culture Brain 2.000000e-02
## 393      SNES                          Culture Brain 1.150000e-01
## 394        PS                     Culture Publishers 0.000000e+00
## 395       PS2                             CyberFront 3.000000e-02
## 396       PSP                             CyberFront 1.500000e-02
## 397       PSV                             CyberFront 2.000000e-02
## 398      X360                             CyberFront 2.000000e-02
## 399       PSV                                Cygames 3.000000e-02
## 400       3DS                            D3Publisher 4.285714e-03
## 401        DS                            D3Publisher 1.645833e-02
## 402       GBA                            D3Publisher 0.000000e+00
## 403        GC                            D3Publisher 0.000000e+00
## 404        PS                            D3Publisher 2.475000e-01
## 405       PS2                            D3Publisher 3.708333e-02
## 406       PS3                            D3Publisher 3.642857e-02
## 407       PS4                            D3Publisher 6.000000e-02
## 408       PSP                            D3Publisher 2.343750e-02
## 409       PSV                            D3Publisher 3.333333e-02
## 410       Wii                            D3Publisher 0.000000e+00
## 411      WiiU                            D3Publisher 0.000000e+00
## 412      X360                            D3Publisher 1.687500e-02
## 413        PC                               Daedalic 0.000000e+00
## 414        PC                 Daedalic Entertainment 0.000000e+00
## 415       PS2                                  Daito 7.000000e-02
## 416       PSP                                  Daito 4.500000e-02
## 417      2600                               Data Age 0.000000e+00
## 418       Wii                Data Design Interactive 0.000000e+00
## 419       SAT                              Data East 1.100000e-01
## 420      SNES                              Data East 4.000000e-02
## 421       PS2                         Datam Polystar 1.500000e-02
## 422       3DS                            Deep Silver 7.000000e-02
## 423        DS                            Deep Silver 0.000000e+00
## 424        PC                            Deep Silver 0.000000e+00
## 425       PS3                            Deep Silver 3.500000e-02
## 426       PS4                            Deep Silver 1.500000e-02
## 427       PSP                            Deep Silver 0.000000e+00
## 428       Wii                            Deep Silver 0.000000e+00
## 429      WiiU                            Deep Silver 0.000000e+00
## 430      X360                            Deep Silver 4.545455e-03
## 431        XB                            Deep Silver 0.000000e+00
## 432      XOne                            Deep Silver 0.000000e+00
## 433        DS              Destination Software, Inc 0.000000e+00
## 434       GBA              Destination Software, Inc 0.000000e+00
## 435        DS                              Destineer 0.000000e+00
## 436        PC                              Destineer 0.000000e+00
## 437       PS2                              Destineer 0.000000e+00
## 438       PSP                              Destineer 0.000000e+00
## 439       Wii                              Destineer 0.000000e+00
## 440       Wii                            Detn8 Games 0.000000e+00
## 441        PC                       Devolver Digital 0.000000e+00
## 442       PS4                       Devolver Digital 0.000000e+00
## 443        DS                        DHM Interactive 0.000000e+00
## 444       PSP                        DHM Interactive 0.000000e+00
## 445       PS2                               DigiCube 6.000000e-02
## 446       3DS             Disney Interactive Studios 5.714286e-03
## 447        DS             Disney Interactive Studios 6.101695e-03
## 448       GBA             Disney Interactive Studios 0.000000e+00
## 449        GC             Disney Interactive Studios 0.000000e+00
## 450        PC             Disney Interactive Studios 0.000000e+00
## 451       PS2             Disney Interactive Studios 0.000000e+00
## 452       PS3             Disney Interactive Studios 4.545455e-04
## 453       PS4             Disney Interactive Studios 0.000000e+00
## 454       PSP             Disney Interactive Studios 0.000000e+00
## 455       PSV             Disney Interactive Studios 0.000000e+00
## 456       Wii             Disney Interactive Studios 3.589744e-03
## 457      WiiU             Disney Interactive Studios 1.666667e-03
## 458      X360             Disney Interactive Studios 0.000000e+00
## 459        XB             Disney Interactive Studios 0.000000e+00
## 460      XOne             Disney Interactive Studios 0.000000e+00
## 461       PSP                                 Dorart 1.500000e-02
## 462       PSV                        dramatic create 2.200000e-02
## 463        DS               DreamCatcher Interactive 0.000000e+00
## 464        PC               DreamCatcher Interactive 0.000000e+00
## 465       PS2               DreamCatcher Interactive 0.000000e+00
## 466        XB               DreamCatcher Interactive 0.000000e+00
## 467        PS                 DreamWorks Interactive 0.000000e+00
## 468        DS                              DSI Games 0.000000e+00
## 469       GBA                              DSI Games 0.000000e+00
## 470       3DS                      DTP Entertainment 0.000000e+00
## 471        DS                      DTP Entertainment 0.000000e+00
## 472       GBA                      DTP Entertainment 0.000000e+00
## 473        PC                      DTP Entertainment 0.000000e+00
## 474       PS2                      DTP Entertainment 0.000000e+00
## 475       PS3                      DTP Entertainment 2.500000e-03
## 476       Wii                      DTP Entertainment 0.000000e+00
## 477      X360                      DTP Entertainment 1.428571e-03
## 478       PS4               Dusenberry Martin Racing 0.000000e+00
## 479      XOne               Dusenberry Martin Racing 0.000000e+00
## 480       PS3                               EA Games 0.000000e+00
## 481        DS                       Easy Interactive 0.000000e+00
## 482       PS2                                  Ecole 6.000000e-02
## 483       PSP                                   Edia 4.500000e-02
## 484        DC                      Eidos Interactive 3.050000e-01
## 485        DS                      Eidos Interactive 0.000000e+00
## 486        GB                      Eidos Interactive 2.340000e+00
## 487       GBA                      Eidos Interactive 0.000000e+00
## 488        GC                      Eidos Interactive 0.000000e+00
## 489        PC                      Eidos Interactive 0.000000e+00
## 490        PS                      Eidos Interactive 8.357143e-02
## 491       PS2                      Eidos Interactive 1.159091e-02
## 492       PS3                      Eidos Interactive 3.142857e-02
## 493       PSP                      Eidos Interactive 0.000000e+00
## 494       Wii                      Eidos Interactive 8.333333e-04
## 495      X360                      Eidos Interactive 5.714286e-03
## 496        XB                      Eidos Interactive 0.000000e+00
## 497       3DS                        Electronic Arts 4.285714e-03
## 498        DS                        Electronic Arts 6.835443e-03
## 499        GB                        Electronic Arts 1.000000e-01
## 500       GBA                        Electronic Arts 3.250000e-03
## 501        GC                        Electronic Arts 2.222222e-04
## 502       N64                        Electronic Arts 8.695652e-04
## 503        PC                        Electronic Arts 0.000000e+00
## 504        PS                        Electronic Arts 1.075472e-02
## 505       PS2                        Electronic Arts 3.271357e-02
## 506       PS3                        Electronic Arts 1.964789e-02
## 507       PS4                        Electronic Arts 3.884615e-02
## 508       PSP                        Electronic Arts 4.027778e-03
## 509       PSV                        Electronic Arts 2.166667e-02
## 510       SAT                        Electronic Arts 8.000000e-02
## 511       Wii                        Electronic Arts 2.666667e-03
## 512      WiiU                        Electronic Arts 0.000000e+00
## 513      X360                        Electronic Arts 5.628743e-03
## 514        XB                        Electronic Arts 0.000000e+00
## 515      XOne                        Electronic Arts 2.592593e-03
## 516        PS                 Electronic Arts Victor 0.000000e+00
## 517       SAT                                    Elf 3.200000e-01
## 518        PS                                  Elite 0.000000e+00
## 519        DS                     Empire Interactive 6.666667e-03
## 520       GBA                     Empire Interactive 0.000000e+00
## 521        GC                     Empire Interactive 0.000000e+00
## 522        PC                     Empire Interactive 0.000000e+00
## 523        PS                     Empire Interactive 0.000000e+00
## 524       PS2                     Empire Interactive 2.375000e-02
## 525       PSP                     Empire Interactive 0.000000e+00
## 526      X360                     Empire Interactive 0.000000e+00
## 527        XB                     Empire Interactive 0.000000e+00
## 528        GC                                 Encore 0.000000e+00
## 529        PC                                 Encore 0.000000e+00
## 530        PS                                 Encore 0.000000e+00
## 531        XB                                 Encore 0.000000e+00
## 532        GB                       Enix Corporation 8.200000e-01
## 533       GBA                       Enix Corporation 6.400000e-01
## 534       N64                       Enix Corporation 1.200000e-01
## 535       NES                       Enix Corporation 3.070000e+00
## 536        PS                       Enix Corporation 1.165000e+00
## 537       PS2                       Enix Corporation 4.266667e-01
## 538      SNES                       Enix Corporation 1.066667e+00
## 539        DS                      Enjoy Gaming ltd. 0.000000e+00
## 540        DS                             Enterbrain 1.666667e-01
## 541       GBA                             Enterbrain 1.200000e-01
## 542        PS                             Enterbrain 3.700000e-01
## 543       PS2                             Enterbrain 9.444444e-02
## 544       PSP                             Enterbrain 1.000000e-01
## 545        PS              EON Digital Entertainment 0.000000e+00
## 546       PS4                             Epic Games 0.000000e+00
## 547       N64                                  Epoch 9.000000e-02
## 548      SNES                                  Epoch 1.500000e-01
## 549        DS                                 Ertain 0.000000e+00
## 550       GBA                                    ESP 3.000000e-02
## 551        PS                                    ESP 0.000000e+00
## 552       SAT                                    ESP 1.700000e-01
## 553       PS2                        Essential Games 7.333333e-02
## 554        PS                        Evolution Games 6.000000e-02
## 555        PC                          Evolved Games 0.000000e+00
## 556       PS2                          Evolved Games 0.000000e+00
## 557       PS3                          Evolved Games 0.000000e+00
## 558      X360                          Evolved Games 0.000000e+00
## 559        XB                          Evolved Games 0.000000e+00
## 560       3DS                   Excalibur Publishing 0.000000e+00
## 561        PC                   Excalibur Publishing 0.000000e+00
## 562       PSV                        Experience Inc. 2.000000e-02
## 563       3DS            Extreme Entertainment Group 1.000000e-02
## 564       PS3                     Falcom Corporation 2.333333e-02
## 565       PSP                     Falcom Corporation 6.416667e-02
## 566       PSV                     Falcom Corporation 7.000000e-02
## 567       PS3                                 Fields 3.000000e-02
## 568       GBA                       Flashpoint Games 0.000000e+00
## 569       Wii                       Flashpoint Games 0.000000e+00
## 570       PS2                            Flight-Plan 6.000000e-02
## 571        DS                 Focus Home Interactive 0.000000e+00
## 572        PC                 Focus Home Interactive 0.000000e+00
## 573       PS3                 Focus Home Interactive 4.000000e-03
## 574       PS4                 Focus Home Interactive 3.333333e-03
## 575       PSV                 Focus Home Interactive 0.000000e+00
## 576       Wii                 Focus Home Interactive 0.000000e+00
## 577      X360                 Focus Home Interactive 0.000000e+00
## 578      XOne                 Focus Home Interactive 0.000000e+00
## 579        PC                       Focus Multimedia 0.000000e+00
## 580       PSP                                 fonfun 2.000000e-02
## 581        DS                    Foreign Media Games 0.000000e+00
## 582        DC                              Fortyfive 6.000000e-02
## 583       N64                        Fox Interactive 0.000000e+00
## 584        PS                        Fox Interactive 0.000000e+00
## 585        DS                          From Software 1.000000e-02
## 586        PS                          From Software 1.016667e-01
## 587       PS2                          From Software 4.000000e-02
## 588       PS3                          From Software 1.200000e-01
## 589       PSP                          From Software 3.000000e-02
## 590        XB                          From Software 6.000000e-02
## 591        PS                                   Fuji 3.000000e-02
## 592       3DS                           Funbox Media 0.000000e+00
## 593       PS3                           Funbox Media 0.000000e+00
## 594       PSV                           Funbox Media 0.000000e+00
## 595       Wii                           Funbox Media 0.000000e+00
## 596        PC                                 Funcom 0.000000e+00
## 597        PS                                FunSoft 0.000000e+00
## 598        DS                                 Funsta 0.000000e+00
## 599       PSP                                 Funsta 0.000000e+00
## 600       Wii                                 Funsta 0.000000e+00
## 601       3DS                                  FuRyu 5.571429e-02
## 602        DS                                  FuRyu 1.000000e-02
## 603       PSP                                  FuRyu 2.666667e-02
## 604       PSV                                  FuRyu 3.666667e-02
## 605       PS4                      FuRyu Corporation 0.000000e+00
## 606      X360                                  G.Rev 2.000000e-02
## 607       SAT                                   Gaga 2.000000e-02
## 608        PS                 Gainax Network Systems 8.000000e-02
## 609        DS                                 Gakken 2.000000e-02
## 610       GEN                              Game Arts 1.400000e-01
## 611        DS                           Game Factory 0.000000e+00
## 612       GBA                           Game Factory 0.000000e+00
## 613       PS2                           Game Factory 0.000000e+00
## 614       PSP                           Game Factory 0.000000e+00
## 615       Wii                           Game Factory 0.000000e+00
## 616        DS                              Game Life 0.000000e+00
## 617       PS3                             Gamebridge 2.200000e-01
## 618      X360                             Gamebridge 2.000000e-02
## 619        DS                               Gamecock 0.000000e+00
## 620        PC                               Gamecock 0.000000e+00
## 621       PS3                               Gamecock 0.000000e+00
## 622      X360                               Gamecock 0.000000e+00
## 623        DS                               Gameloft 0.000000e+00
## 624        DS                 GameMill Entertainment 0.000000e+00
## 625       Wii                 GameMill Entertainment 0.000000e+00
## 626      X360                 GameMill Entertainment 0.000000e+00
## 627       N64                                GameTek 0.000000e+00
## 628        PC                Gathering of Developers 0.000000e+00
## 629       PS2                Gathering of Developers 0.000000e+00
## 630        XB                Gathering of Developers 0.000000e+00
## 631        PS                  General Entertainment 1.300000e-01
## 632       3DS                                  Genki 5.000000e-02
## 633        DC                                  Genki 1.700000e-01
## 634        DS                                  Genki 4.000000e-02
## 635       PS2                                  Genki 1.050000e-01
## 636       PS3                                  Genki 3.000000e-02
## 637       PSP                                  Genki 2.000000e-02
## 638        XB                                  Genki 0.000000e+00
## 639        DS                            Genterprise 1.000000e-02
## 640       3DS                             Ghostlight 6.000000e-02
## 641        DS                             Ghostlight 2.400000e-02
## 642       PS2                             Ghostlight 6.250000e-02
## 643       PS3                             Ghostlight 3.000000e-02
## 644       PSP                             Ghostlight 2.000000e-01
## 645       Wii                             Ghostlight 0.000000e+00
## 646       PSV                                   Giga 2.000000e-02
## 647       PSP                                 Giza10 2.000000e-02
## 648       SAT                                  Glams 8.000000e-02
## 649        DS                 Global A Entertainment 5.000000e-03
## 650       PSP                 Global A Entertainment 0.000000e+00
## 651       GBA                            Global Star 0.000000e+00
## 652        GC                            Global Star 0.000000e+00
## 653       PS2                            Global Star 0.000000e+00
## 654        XB                            Global Star 0.000000e+00
## 655       PS2                            GN Software 2.000000e-02
## 656       PSP                            GN Software 1.000000e-02
## 657        PC                                    GOA 0.000000e+00
## 658       GBA                           Gotham Games 0.000000e+00
## 659        GC                           Gotham Games 0.000000e+00
## 660        PS                           Gotham Games 0.000000e+00
## 661       PS2                           Gotham Games 0.000000e+00
## 662        XB                           Gotham Games 0.000000e+00
## 663        DS                               Graffiti 0.000000e+00
## 664       PSP                               Graffiti 0.000000e+00
## 665       Wii                               Graffiti 0.000000e+00
## 666       PSP                       Grand Prix Games 6.000000e-02
## 667        PC                 Graphsim Entertainment 0.000000e+00
## 668       N64                Gremlin Interactive Ltd 0.000000e+00
## 669        PS                Gremlin Interactive Ltd 0.000000e+00
## 670      X360                  Griffin International 0.000000e+00
## 671        XB                           Groove Games 0.000000e+00
## 672        DS                                    GSP 0.000000e+00
## 673        PC                                    GSP 0.000000e+00
## 674       Wii                                    GSP 0.000000e+00
## 675       N64                         GT Interactive 0.000000e+00
## 676        PS                         GT Interactive 7.407407e-04
## 677       3DS                                 GungHo 8.550000e-01
## 678        DS                                 GungHo 4.250000e-02
## 679       PS3                                 GungHo 0.000000e+00
## 680       PSP                                 GungHo 3.000000e-02
## 681       PSV                                 GungHo 7.000000e-02
## 682        DS                                   Gust 3.500000e-02
## 683        PS                                   Gust 1.200000e-01
## 684       PS2                                   Gust 7.000000e-02
## 685       PSP                                   Gust 2.333333e-02
## 686       PSV                                   Gust 8.333333e-02
## 687       PS2                              Hackberry 4.428571e-02
## 688       NES                         HAL Laboratory 0.000000e+00
## 689        PS                    Hamster Corporation 0.000000e+00
## 690       PS2                    Hamster Corporation 2.000000e-02
## 691       3DS                               Happinet 3.600000e-02
## 692       PS4                 Harmonix Music Systems 0.000000e+00
## 693      XOne                 Harmonix Music Systems 0.000000e+00
## 694       GBA                     Hasbro Interactive 0.000000e+00
## 695       N64                     Hasbro Interactive 0.000000e+00
## 696        PC                     Hasbro Interactive 0.000000e+00
## 697        PS                     Hasbro Interactive 0.000000e+00
## 698        PC                      Havas Interactive 0.000000e+00
## 699        PC                           Headup Games 0.000000e+00
## 700        PS                           Hearty Robin 8.000000e-02
## 701        PS                                   Hect 4.000000e-02
## 702      SNES                                   Hect 2.300000e-01
## 703       PS4                            Hello Games 2.000000e-02
## 704        PC                        Her Interactive 0.000000e+00
## 705       GBA                        Hip Interactive 0.000000e+00
## 706       PS2                        Hip Interactive 0.000000e+00
## 707        XB                        Hip Interactive 0.000000e+00
## 708        DS                        HMH Interactive 0.000000e+00
## 709        PC                        HMH Interactive 0.000000e+00
## 710        PC           Home Entertainment Suppliers 0.000000e+00
## 711       PS3           Home Entertainment Suppliers 0.000000e+00
## 712      X360           Home Entertainment Suppliers 0.000000e+00
## 713        DS                   Hudson Entertainment 2.000000e-02
## 714       GBA                   Hudson Entertainment 0.000000e+00
## 715       N64                   Hudson Entertainment 0.000000e+00
## 716        PS                   Hudson Entertainment 5.900000e-01
## 717       PSP                   Hudson Entertainment 0.000000e+00
## 718       Wii                   Hudson Entertainment 5.000000e-03
## 719       3DS                            Hudson Soft 1.500000e-02
## 720        DS                            Hudson Soft 9.000000e-02
## 721       GBA                            Hudson Soft 5.500000e-02
## 722        GC                            Hudson Soft 3.500000e-02
## 723       N64                            Hudson Soft 1.400000e-01
## 724       NES                            Hudson Soft 9.100000e-01
## 725        NG                            Hudson Soft 3.000000e-02
## 726        PS                            Hudson Soft 7.500000e-02
## 727       PS2                            Hudson Soft 3.166667e-01
## 728       PS3                            Hudson Soft 0.000000e+00
## 729       PSP                            Hudson Soft 2.750000e-02
## 730       SAT                            Hudson Soft 1.566667e-01
## 731      SNES                            Hudson Soft 3.905556e-01
## 732      TG16                            Hudson Soft 2.000000e-02
## 733       Wii                            Hudson Soft 9.583333e-02
## 734      X360                            Hudson Soft 0.000000e+00
## 735        XB                            Hudson Soft 0.000000e+00
## 736        PS                    Human Entertainment 1.625000e-01
## 737       SAT                    Human Entertainment 1.200000e-01
## 738      SNES                    Human Entertainment 3.500000e-01
## 739       PSV                                  HuneX 1.500000e-02
## 740        PC                    Iceberg Interactive 0.000000e+00
## 741        PC                            id Software 0.000000e+00
## 742        DS                           Idea Factory 3.333333e-02
## 743       PS2                           Idea Factory 2.705882e-02
## 744       PS3                           Idea Factory 2.000000e-02
## 745       PS4                           Idea Factory 2.000000e-02
## 746       PSP                           Idea Factory 2.666667e-02
## 747       PSV                           Idea Factory 2.312500e-02
## 748      X360                           Idea Factory 1.000000e-02
## 749       PS4             Idea Factory International 4.500000e-02
## 750       PSV             Idea Factory International 2.750000e-02
## 751       3DS                           IE Institute 2.000000e-02
## 752        DS                           IE Institute 2.350000e-01
## 753        DS                 Ignition Entertainment 1.538462e-02
## 754       GBA                 Ignition Entertainment 0.000000e+00
## 755        GC                 Ignition Entertainment 0.000000e+00
## 756       PS2                 Ignition Entertainment 1.058824e-02
## 757       PS3                 Ignition Entertainment 3.666667e-02
## 758       PSP                 Ignition Entertainment 1.875000e-02
## 759       Wii                 Ignition Entertainment 0.000000e+00
## 760      X360                 Ignition Entertainment 2.000000e-02
## 761        XB                 Ignition Entertainment 0.000000e+00
## 762       PS2                     Illusion Softworks 0.000000e+00
## 763       SAT                                 Imadio 1.400000e-01
## 764       PSP                            Image Epoch 1.000000e-01
## 765       3DS                        imageepoch Inc. 2.000000e-02
## 766       3DO                             Imageworks 2.000000e-02
## 767      2600                                 Imagic 0.000000e+00
## 768        GB                              Imagineer 3.325000e-01
## 769       N64                              Imagineer 8.200000e-02
## 770        PS                              Imagineer 1.000000e-02
## 771       SAT                              Imagineer 1.333333e-01
## 772      SNES                              Imagineer 1.266667e-01
## 773      SNES                                   Imax 6.000000e-02
## 774       PS2                            Indie Games 4.666667e-02
## 775        DC                             Infogrames 6.000000e-02
## 776       GBA                             Infogrames 0.000000e+00
## 777        GC                             Infogrames 2.625000e-02
## 778       N64                             Infogrames 0.000000e+00
## 779        PC                             Infogrames 0.000000e+00
## 780        PS                             Infogrames 3.913043e-03
## 781       PS2                             Infogrames 2.857143e-03
## 782        XB                             Infogrames 0.000000e+00
## 783        PC                        Insomniac Games 0.000000e+00
## 784       PS4                        Insomniac Games 0.000000e+00
## 785      XOne                        Insomniac Games 0.000000e+00
## 786       PS2                           Interchannel 2.500000e-02
## 787       PS2                     Interchannel-Holon 1.000000e-02
## 788       3DS                              Intergrow 3.000000e-02
## 789       GBA                              Interplay 0.000000e+00
## 790       N64                              Interplay 0.000000e+00
## 791        PC                              Interplay 0.000000e+00
## 792        PS                              Interplay 0.000000e+00
## 793       PS2                              Interplay 0.000000e+00
## 794      SNES                              Interplay 1.000000e-02
## 795        XB                              Interplay 0.000000e+00
## 796        PS                  Interplay Productions 0.000000e+00
## 797       PS3             Interworks Unlimited, Inc. 0.000000e+00
## 798       3DS                           Inti Creates 1.000000e-02
## 799       PS4                  Introversion Software 0.000000e+00
## 800        PC                   inXile Entertainment 0.000000e+00
## 801       3DS              Irem Software Engineering 2.000000e-02
## 802        PS              Irem Software Engineering 0.000000e+00
## 803       PS2              Irem Software Engineering 5.500000e-02
## 804       PS3              Irem Software Engineering 2.000000e-02
## 805       PSP              Irem Software Engineering 2.333333e-02
## 806      2600                       ITT Family Games 0.000000e+00
## 807       PSP                              Ivolgamus 0.000000e+00
## 808        DS                                   iWin 0.000000e+00
## 809        DS                      Jack of All Games 0.000000e+00
## 810       GBA                      Jack of All Games 0.000000e+00
## 811        DS                                 Jaleco 6.666667e-02
## 812       GBA                                 Jaleco 0.000000e+00
## 813        GC                                 Jaleco 0.000000e+00
## 814        PS                                 Jaleco 5.000000e-02
## 815       PS2                                 Jaleco 3.333333e-03
## 816       SAT                                 Jaleco 1.000000e-01
## 817       Wii                                 Jaleco 3.000000e-02
## 818        XB                                 Jaleco 0.000000e+00
## 819       PS2                     Jester Interactive 0.000000e+00
## 820        GB                                Jorudan 3.000000e-01
## 821       GBA                                Jorudan 3.150000e-01
## 822        DS                     JoWood Productions 0.000000e+00
## 823        GC                     JoWood Productions 0.000000e+00
## 824        PC                     JoWood Productions 0.000000e+00
## 825       PS2                     JoWood Productions 0.000000e+00
## 826       Wii                     JoWood Productions 0.000000e+00
## 827      X360                     JoWood Productions 1.000000e-02
## 828        XB                     JoWood Productions 0.000000e+00
## 829        PC                            Just Flight 0.000000e+00
## 830        PS                                    JVC 0.000000e+00
## 831       SAT                                    JVC 1.200000e-01
## 832       3DS                         Kadokawa Games 1.000000e-02
## 833       PS3                         Kadokawa Games 2.000000e-02
## 834       PSP                         Kadokawa Games 2.000000e-02
## 835       PSV                         Kadokawa Games 4.900000e-02
## 836       3DS                        Kadokawa Shoten 1.000000e-01
## 837        DS                        Kadokawa Shoten 2.800000e-02
## 838        PS                        Kadokawa Shoten 4.666667e-02
## 839       PS2                        Kadokawa Shoten 4.166667e-02
## 840       PSP                        Kadokawa Shoten 5.368421e-02
## 841       PSV                        Kadokawa Shoten 6.666667e-02
## 842       SAT                        Kadokawa Shoten 1.600000e-01
## 843       Wii                        Kadokawa Shoten 4.500000e-02
## 844       PS3                            Kaga Create 1.000000e-02
## 845       PSP                            Kaga Create 1.000000e-02
## 846       PSV                            Kaga Create 3.000000e-02
## 847        PC                          Kalypso Media 0.000000e+00
## 848       PS3                          Kalypso Media 0.000000e+00
## 849       PS4                          Kalypso Media 3.000000e-02
## 850      X360                          Kalypso Media 5.000000e-03
## 851        DS                                  Kamui 3.000000e-02
## 852       PS2                            Kando Games 0.000000e+00
## 853       PSP                    Karin Entertainment 2.000000e-02
## 854       GBA                                  Kemco 0.000000e+00
## 855        GC                                  Kemco 0.000000e+00
## 856       N64                                  Kemco 0.000000e+00
## 857        PS                                  Kemco 0.000000e+00
## 858       PS2                                  Kemco 0.000000e+00
## 859      SNES                                  Kemco 5.000000e-02
## 860        XB                                  Kemco 0.000000e+00
## 861       PS2                                    KID 1.666667e-02
## 862       SAT                                    KID 3.000000e-02
## 863        DS                           Kids Station 3.000000e-02
## 864       GBA                           King Records 2.000000e-02
## 865       GBA                    Knowledge Adventure 0.000000e+00
## 866       Wii                    Knowledge Adventure 0.000000e+00
## 867       3DS                             Koch Media 0.000000e+00
## 868        DS                             Koch Media 0.000000e+00
## 869        PC                             Koch Media 0.000000e+00
## 870       PS2                             Koch Media 0.000000e+00
## 871       PS3                             Koch Media 0.000000e+00
## 872       PS4                             Koch Media 0.000000e+00
## 873       PSP                             Koch Media 0.000000e+00
## 874       Wii                             Koch Media 0.000000e+00
## 875      X360                             Koch Media 0.000000e+00
## 876      XOne                             Koch Media 0.000000e+00
## 877        PS               Kokopeli Digital Studios 0.000000e+00
## 878       3DO           Konami Digital Entertainment 6.000000e-02
## 879       3DS           Konami Digital Entertainment 9.250000e-02
## 880        DC           Konami Digital Entertainment 6.000000e-02
## 881        DS           Konami Digital Entertainment 7.285714e-02
## 882        GB           Konami Digital Entertainment 6.470000e-01
## 883       GBA           Konami Digital Entertainment 5.016667e-02
## 884        GC           Konami Digital Entertainment 2.625000e-02
## 885       GEN           Konami Digital Entertainment 4.000000e-02
## 886       N64           Konami Digital Entertainment 1.244000e-01
## 887       NES           Konami Digital Entertainment 5.766667e-01
## 888        PC           Konami Digital Entertainment 0.000000e+00
## 889        PS           Konami Digital Entertainment 2.045000e-01
## 890       PS2           Konami Digital Entertainment 1.248466e-01
## 891       PS3           Konami Digital Entertainment 1.501639e-01
## 892       PS4           Konami Digital Entertainment 1.685714e-01
## 893       PSP           Konami Digital Entertainment 1.117722e-01
## 894       PSV           Konami Digital Entertainment 7.666667e-02
## 895       SAT           Konami Digital Entertainment 1.875000e-01
## 896      SNES           Konami Digital Entertainment 2.236842e-01
## 897       Wii           Konami Digital Entertainment 2.490909e-02
## 898      X360           Konami Digital Entertainment 5.306122e-03
## 899        XB           Konami Digital Entertainment 6.451613e-04
## 900      XOne           Konami Digital Entertainment 2.000000e-03
## 901        XB                              Kool Kizz 0.000000e+00
## 902      SNES                                    KSS 3.000000e-02
## 903      SNES                                 Laguna 3.350000e-01
## 904        DS                     Legacy Interactive 0.000000e+00
## 905       GBA                             LEGO Media 0.000000e+00
## 906       N64                             LEGO Media 0.000000e+00
## 907        PC                             LEGO Media 0.000000e+00
## 908        PS                             LEGO Media 0.000000e+00
## 909       3DS                                Level 5 7.400000e-01
## 910        DS                                Level 5 3.271429e-01
## 911       PSP                                Level 5 2.025000e-01
## 912       PSV                                Level 5 4.500000e-02
## 913       Wii                                Level 5 1.450000e-01
## 914      WiiU                                Level 5 3.000000e-02
## 915        DS                  Lexicon Entertainment 0.000000e+00
## 916       3DS                            Licensed 4U 0.000000e+00
## 917        DS                            Licensed 4U 0.000000e+00
## 918        PC                 Lighthouse Interactive 0.000000e+00
## 919       GBA                           Liquid Games 0.000000e+00
## 920       3DS                           Little Orbit 0.000000e+00
## 921        DS                           Little Orbit 0.000000e+00
## 922       PS3                           Little Orbit 0.000000e+00
## 923       PS4                           Little Orbit 0.000000e+00
## 924       Wii                           Little Orbit 0.000000e+00
## 925      WiiU                           Little Orbit 0.000000e+00
## 926      X360                           Little Orbit 0.000000e+00
## 927      XOne                           Little Orbit 0.000000e+00
## 928        PS                                  Locus 7.000000e-02
## 929       GBA                              LSP Games 0.000000e+00
## 930       PS2                              LSP Games 0.000000e+00
## 931       3DS                              LucasArts 0.000000e+00
## 932        DS                              LucasArts 0.000000e+00
## 933       GBA                              LucasArts 0.000000e+00
## 934        GC                              LucasArts 7.500000e-03
## 935       N64                              LucasArts 0.000000e+00
## 936        PC                              LucasArts 0.000000e+00
## 937        PS                              LucasArts 1.250000e-02
## 938       PS2                              LucasArts 6.470588e-03
## 939       PS3                              LucasArts 0.000000e+00
## 940       PSP                              LucasArts 1.111111e-03
## 941       Wii                              LucasArts 0.000000e+00
## 942      X360                              LucasArts 0.000000e+00
## 943        XB                              LucasArts 0.000000e+00
## 944        GC                               Mad Catz 0.000000e+00
## 945      X360                               Mad Catz 0.000000e+00
## 946        XB                               Mad Catz 0.000000e+00
## 947        PS                        Magical Company 1.200000e-01
## 948       PS2                                  Magix 0.000000e+00
## 949       3DS                  Majesco Entertainment 0.000000e+00
## 950        DS                  Majesco Entertainment 0.000000e+00
## 951       GBA                  Majesco Entertainment 0.000000e+00
## 952       PS2                  Majesco Entertainment 0.000000e+00
## 953       PS3                  Majesco Entertainment 0.000000e+00
## 954       PSP                  Majesco Entertainment 1.000000e-02
## 955       Wii                  Majesco Entertainment 0.000000e+00
## 956      X360                  Majesco Entertainment 0.000000e+00
## 957        XB                  Majesco Entertainment 0.000000e+00
## 958      XOne                  Majesco Entertainment 0.000000e+00
## 959        PC                            Mamba Games 0.000000e+00
## 960       PSV                   Marvel Entertainment 5.000000e-02
## 961       3DS                Marvelous Entertainment 1.340000e-01
## 962       PSP                Marvelous Entertainment 6.500000e-02
## 963       PSV                Marvelous Entertainment 7.400000e-02
## 964       PSV                        Marvelous Games 2.000000e-02
## 965       3DS                  Marvelous Interactive 1.366667e-01
## 966        DS                  Marvelous Interactive 3.692308e-02
## 967       GBA                  Marvelous Interactive 6.666667e-03
## 968        GC                  Marvelous Interactive 0.000000e+00
## 969       PS2                  Marvelous Interactive 1.666667e-02
## 970       PS3                  Marvelous Interactive 8.000000e-02
## 971       PS4                  Marvelous Interactive 5.000000e-02
## 972       PSP                  Marvelous Interactive 4.545455e-02
## 973       PSV                  Marvelous Interactive 5.666667e-02
## 974       Wii                  Marvelous Interactive 3.200000e-02
## 975      X360                  Marvelous Interactive 2.000000e-02
## 976        PC                      Masque Publishing 0.000000e+00
## 977        DS                           Mastertronic 0.000000e+00
## 978        PC                           Mastertronic 0.000000e+00
## 979       PS2                           Mastertronic 0.000000e+00
## 980       Wii                           Mastertronic 0.000000e+00
## 981      X360                           Mastertronic 0.000000e+00
## 982       3DS                                Mastiff 0.000000e+00
## 983        DS                                Mastiff 0.000000e+00
## 984       GBA                                Mastiff 0.000000e+00
## 985        PC                                Mastiff 0.000000e+00
## 986       PS2                                Mastiff 0.000000e+00
## 987       Wii                                Mastiff 0.000000e+00
## 988        XB                                Mastiff 0.000000e+00
## 989      2600                     Mattel Interactive 0.000000e+00
## 990        PS                     Mattel Interactive 0.000000e+00
## 991        PS                               Max Five 0.000000e+00
## 992       3DS                   Maximum Family Games 0.000000e+00
## 993        PC                                  Maxis 0.000000e+00
## 994        PS                                  Maxis 0.000000e+00
## 995        PC                      MC2 Entertainment 0.000000e+00
## 996        XB                      MC2 Entertainment 0.000000e+00
## 997       PS2                    Media Entertainment 1.000000e-02
## 998        GB                          Media Factory 1.400000e-01
## 999       N64                          Media Factory 1.500000e-01
## 1000      GBA                            Media Rings 0.000000e+00
## 1001     SNES                            Media Rings 2.300000e-01
## 1002       PS                            Media Works 5.000000e-02
## 1003      PS2                            Media Works 2.500000e-02
## 1004      SAT                            Media Works 3.000000e-02
## 1005       PS                             MediaQuest 0.000000e+00
## 1006     2600                           Men-A-Vision 0.000000e+00
## 1007       DS                     Mentor Interactive 0.000000e+00
## 1008       DS                          Mercury Games 0.000000e+00
## 1009      PSP                          Mercury Games 1.000000e-02
## 1010       PC                            Merscom LLC 0.000000e+00
## 1011      PS2                               Metro 3D 6.000000e-02
## 1012      Wii                               Metro 3D 0.000000e+00
## 1013       XB                               Metro 3D 0.000000e+00
## 1014      PS2                            Michaelsoft 1.000000e-02
## 1015      3DO                            Micro Cabin 2.000000e-02
## 1016      SAT                            Micro Cabin 9.000000e-02
## 1017      GBA                               Microids 0.000000e+00
## 1018       PC                               Microids 0.000000e+00
## 1019      PS2                               Microids 0.000000e+00
## 1020      PS4                               Microids 0.000000e+00
## 1021       XB                               Microids 0.000000e+00
## 1022       PC                             Microprose 0.000000e+00
## 1023       PS                             Microprose 0.000000e+00
## 1024       PC                 Microsoft Game Studios 0.000000e+00
## 1025     WiiU                 Microsoft Game Studios 1.400000e-01
## 1026     X360                 Microsoft Game Studios 3.070423e-02
## 1027       XB                 Microsoft Game Studios 1.147059e-02
## 1028     XOne                 Microsoft Game Studios 8.000000e-03
## 1029       DS        Midas Interactive Entertainment 0.000000e+00
## 1030       PS        Midas Interactive Entertainment 0.000000e+00
## 1031      PS2        Midas Interactive Entertainment 1.500000e-02
## 1032      PSP        Midas Interactive Entertainment 0.000000e+00
## 1033      Wii        Midas Interactive Entertainment 0.000000e+00
## 1034       DS                           Midway Games 0.000000e+00
## 1035      GBA                           Midway Games 0.000000e+00
## 1036       GC                           Midway Games 0.000000e+00
## 1037      N64                           Midway Games 0.000000e+00
## 1038       PC                           Midway Games 0.000000e+00
## 1039       PS                           Midway Games 0.000000e+00
## 1040      PS2                           Midway Games 2.000000e-03
## 1041      PS3                           Midway Games 0.000000e+00
## 1042      PSP                           Midway Games 0.000000e+00
## 1043      Wii                           Midway Games 0.000000e+00
## 1044     X360                           Midway Games 2.222222e-03
## 1045       XB                           Midway Games 0.000000e+00
## 1046      Wii                              Milestone 0.000000e+00
## 1047      PS4                        Milestone S.r.l 0.000000e+00
## 1048     XOne                        Milestone S.r.l 0.000000e+00
## 1049       PC                       Milestone S.r.l. 0.000000e+00
## 1050      PS3                       Milestone S.r.l. 1.333333e-02
## 1051      PS4                       Milestone S.r.l. 1.500000e-02
## 1052      PSV                       Milestone S.r.l. 0.000000e+00
## 1053     X360                       Milestone S.r.l. 0.000000e+00
## 1054     XOne                       Milestone S.r.l. 0.000000e+00
## 1055      PS2                         Minato Station 2.000000e-02
## 1056      PS3                         Minato Station 2.000000e-02
## 1057      PSV                         Minato Station 1.000000e-02
## 1058       DS                              Mindscape 0.000000e+00
## 1059      N64                              Mindscape 0.000000e+00
## 1060       PS                              Mindscape 0.000000e+00
## 1061      PS2                              Mindscape 0.000000e+00
## 1062      Wii                              Mindscape 0.000000e+00
## 1063     X360                              Mindscape 0.000000e+00
## 1064       XB                              Mindscape 0.000000e+00
## 1065       DS                          Mirai Shounen 2.000000e-02
## 1066     SNES                                 Misawa 3.500000e-02
## 1067      N64                                 Mitsui 0.000000e+00
## 1068      3DS                              mixi, Inc 8.600000e-01
## 1069     XOne                                MLB.com 0.000000e+00
## 1070       PC                                 Mojang 0.000000e+00
## 1071      PS3                                 Mojang 0.000000e+00
## 1072      PS4                                 Mojang 0.000000e+00
## 1073     X360                                 Mojang 0.000000e+00
## 1074     XOne                                 Mojang 0.000000e+00
## 1075       PC               Monte Christo Multimedia 0.000000e+00
## 1076     X360                                   Moss 1.000000e-02
## 1077       DS                                    MTO 4.285714e-02
## 1078       PS                                    MTO 9.000000e-02
## 1079       DS                              MTV Games 0.000000e+00
## 1080      PS2                              MTV Games 0.000000e+00
## 1081      PS3                              MTV Games 0.000000e+00
## 1082      PSP                              MTV Games 0.000000e+00
## 1083      Wii                              MTV Games 0.000000e+00
## 1084     X360                              MTV Games 1.000000e-03
## 1085      PS2                   Mud Duck Productions 0.000000e+00
## 1086       XB                   Mud Duck Productions 0.000000e+00
## 1087       DS                            Mumbo Jumbo 0.000000e+00
## 1088       PC                            Mumbo Jumbo 0.000000e+00
## 1089      PSP                            Mumbo Jumbo 0.000000e+00
## 1090      Wii                            Mumbo Jumbo 0.000000e+00
## 1091       DS                                  Mycom 2.000000e-02
## 1092      PS2                           Myelin Media 0.000000e+00
## 1093      PSP                           Myelin Media 0.000000e+00
## 1094       XB                           Myelin Media 0.000000e+00
## 1095     2600                               Mystique 0.000000e+00
## 1096      3DS                                    N/A 1.000000e-02
## 1097       DS                                    N/A 3.285714e-02
## 1098      GBA                                    N/A 1.038462e-02
## 1099       PC                                    N/A 0.000000e+00
## 1100       PS                                    N/A 1.333333e-02
## 1101      PS2                                    N/A 0.000000e+00
## 1102      PS3                                    N/A 2.333333e-02
## 1103      PSP                                    N/A 6.000000e-02
## 1104      PSV                                    N/A 1.500000e-02
## 1105      Wii                                    N/A 1.400000e-01
## 1106     X360                                    N/A 2.500000e-03
## 1107      3DS                     Namco Bandai Games 9.931034e-02
## 1108       DC                     Namco Bandai Games 1.900000e-01
## 1109       DS                     Namco Bandai Games 9.829630e-02
## 1110       GB                     Namco Bandai Games 1.070000e+00
## 1111      GBA                     Namco Bandai Games 3.000000e-02
## 1112       GC                     Namco Bandai Games 4.000000e-02
## 1113      N64                     Namco Bandai Games 8.666667e-02
## 1114      NES                     Namco Bandai Games 9.657143e-01
## 1115       PC                     Namco Bandai Games 0.000000e+00
## 1116       PS                     Namco Bandai Games 2.322917e-01
## 1117      PS2                     Namco Bandai Games 1.765421e-01
## 1118      PS3                     Namco Bandai Games 1.267241e-01
## 1119      PS4                     Namco Bandai Games 6.566667e-02
## 1120      PSP                     Namco Bandai Games 1.213223e-01
## 1121      PSV                     Namco Bandai Games 1.044444e-01
## 1122      SAT                     Namco Bandai Games 2.037500e-01
## 1123     SNES                     Namco Bandai Games 4.157692e-01
## 1124      Wii                     Namco Bandai Games 9.714286e-02
## 1125     WiiU                     Namco Bandai Games 5.000000e-02
## 1126       WS                     Namco Bandai Games 1.650000e-01
## 1127     X360                     Namco Bandai Games 1.954545e-02
## 1128       XB                     Namco Bandai Games 3.000000e-03
## 1129     XOne                     Namco Bandai Games 0.000000e+00
## 1130      3DS                                Natsume 0.000000e+00
## 1131       DS                                Natsume 4.400000e-02
## 1132      GBA                                Natsume 0.000000e+00
## 1133      N64                                Natsume 0.000000e+00
## 1134       PS                                Natsume 5.000000e-02
## 1135      PS2                                Natsume 0.000000e+00
## 1136      PSP                                Natsume 0.000000e+00
## 1137      Wii                                Natsume 0.000000e+00
## 1138     X360                           Navarre Corp 0.000000e+00
## 1139      PS2                             Naxat Soft 1.000000e-02
## 1140      SAT                                    NCS 1.333333e-01
## 1141       PC                                 NCSoft 0.000000e+00
## 1142       GC                        NDA Productions 0.000000e+00
## 1143     PCFX                                    NEC 3.000000e-02
## 1144      SAT                                    NEC 2.600000e-01
## 1145     TG16                                    NEC 1.400000e-01
## 1146       DC                       NEC Interchannel 6.000000e-02
## 1147      SAT                       NEC Interchannel 1.200000e-01
## 1148       DS                     Neko Entertainment 0.000000e+00
## 1149      Wii                     Neko Entertainment 0.000000e+00
## 1150      PSP                                NetRevo 1.500000e-02
## 1151       PS                                    New 3.300000e-01
## 1152       PC                    New World Computing 0.000000e+00
## 1153      GBA                               NewKidCo 0.000000e+00
## 1154       GC                               NewKidCo 0.000000e+00
## 1155      N64                               NewKidCo 0.000000e+00
## 1156       PS                               NewKidCo 0.000000e+00
## 1157       DS                                  Nexon 3.000000e-02
## 1158     SNES                             Nichibutsu 2.800000e-01
## 1159      PS4               Nihon Falcom Corporation 2.000000e-02
## 1160      PSP               Nihon Falcom Corporation 1.400000e-01
## 1161      PSV               Nihon Falcom Corporation 8.400000e-02
## 1162      3DS                               Nintendo 6.369512e-01
## 1163       DS                               Nintendo 7.185430e-01
## 1164       GB                               Nintendo 1.046393e+00
## 1165      GBA                               Nintendo 3.619780e-01
## 1166       GC                               Nintendo 3.126415e-01
## 1167      N64                               Nintendo 4.653333e-01
## 1168      NES                               Nintendo 1.260222e+00
## 1169     SNES                               Nintendo 9.566667e-01
## 1170      Wii                               Nintendo 6.076190e-01
## 1171     WiiU                               Nintendo 2.810000e-01
## 1172      PS2                           Nippon Amuse 9.000000e-02
## 1173      3DS                        Nippon Columbia 1.357143e-01
## 1174      3DS                   Nippon Ichi Software 8.600000e-02
## 1175       DS                   Nippon Ichi Software 1.500000e-02
## 1176       PS                   Nippon Ichi Software 0.000000e+00
## 1177      PS2                   Nippon Ichi Software 3.600000e-02
## 1178      PS3                   Nippon Ichi Software 6.818182e-02
## 1179      PS4                   Nippon Ichi Software 3.111111e-02
## 1180      PSP                   Nippon Ichi Software 5.411765e-02
## 1181      PSV                   Nippon Ichi Software 5.677419e-02
## 1182      Wii                   Nippon Ichi Software 1.000000e-02
## 1183     WiiU                   Nippon Ichi Software 1.000000e-02
## 1184     SNES                         Nippon Telenet 1.300000e-01
## 1185      PS3                              Nitroplus 1.000000e-02
## 1186      PSV                              Nitroplus 1.000000e-02
## 1187       DS                                Nobilis 1.000000e-03
## 1188       PC                                Nobilis 0.000000e+00
## 1189      Wii                                Nobilis 5.000000e-03
## 1190       DS                            Nordcurrent 0.000000e+00
## 1191      Wii                            Nordcurrent 0.000000e+00
## 1192       DS                           Nordic Games 0.000000e+00
## 1193       PC                           Nordic Games 0.000000e+00
## 1194      PS3                           Nordic Games 0.000000e+00
## 1195      PS4                           Nordic Games 0.000000e+00
## 1196      Wii                           Nordic Games 0.000000e+00
## 1197     WiiU                           Nordic Games 0.000000e+00
## 1198     X360                           Nordic Games 0.000000e+00
## 1199     XOne                           Nordic Games 0.000000e+00
## 1200       PC                              NovaLogic 0.000000e+00
## 1201      PS2                              NovaLogic 0.000000e+00
## 1202       XB                              NovaLogic 0.000000e+00
## 1203       PC                            Number None 0.000000e+00
## 1204       DS                                O-Games 0.000000e+00
## 1205      PS3                                O-Games 0.000000e+00
## 1206      Wii                                O-Games 0.000000e+00
## 1207     X360                                O-Games 0.000000e+00
## 1208       DS                       O3 Entertainment 0.000000e+00
## 1209       GC                       O3 Entertainment 0.000000e+00
## 1210      N64                                  Ocean 4.000000e-03
## 1211      NES                                  Ocean 0.000000e+00
## 1212       PS                                  Ocean 1.714286e-02
## 1213     SNES                                  Ocean 2.800000e-01
## 1214      3DS                          Office Create 3.000000e-02
## 1215       PS                              On Demand 0.000000e+00
## 1216      PS3                              Ongakukan 1.000000e-02
## 1217       PS                         Origin Systems 0.000000e+00
## 1218      PSP                                Otomate 1.000000e-02
## 1219       DS                     Oxygen Interactive 0.000000e+00
## 1220      PS2                     Oxygen Interactive 0.000000e+00
## 1221      PSP                     Oxygen Interactive 0.000000e+00
## 1222      Wii                     Oxygen Interactive 0.000000e+00
## 1223     X360                     Oxygen Interactive 0.000000e+00
## 1224       DS                               P2 Games 0.000000e+00
## 1225      Wii                               P2 Games 0.000000e+00
## 1226      PS2            Pacific Century Cyber Works 3.000000e-02
## 1227     SNES                          Pack-In-Video 5.500000e-02
## 1228      N64                           Pack In Soft 1.100000e-01
## 1229      NES                                 Palcom 3.100000e-01
## 1230       PS                       Panther Software 1.200000e-01
## 1231       DS                                   Paon 1.000000e-01
## 1232      PS2                                   Paon 3.666667e-02
## 1233      PSP                                   Paon 2.000000e-02
## 1234      PS3                       Paon Corporation 3.000000e-02
## 1235       PC                    Paradox Development 0.000000e+00
## 1236       PC                    Paradox Interactive 0.000000e+00
## 1237     2600                           Parker Bros. 0.000000e+00
## 1238       DS          Performance Designed Products 0.000000e+00
## 1239      Wii          Performance Designed Products 0.000000e+00
## 1240       XB                             Phantagram 1.000000e-02
## 1241     X360                            Phantom EFX 0.000000e+00
## 1242       DS                             Phenomedia 0.000000e+00
## 1243       DS                          Phoenix Games 0.000000e+00
## 1244      PSP                                 Piacci 1.000000e-02
## 1245       DS                               Pinnacle 0.000000e+00
## 1246       PC                               Pinnacle 0.000000e+00
## 1247      Wii                               Pinnacle 0.000000e+00
## 1248       PS                            Pioneer LDC 8.000000e-02
## 1249      GBA                                Play It 0.000000e+00
## 1250      PS2                                Play It 0.000000e+00
## 1251      PSP                                Play It 0.000000e+00
## 1252       DS                 Playlogic Game Factory 0.000000e+00
## 1253       PC                 Playlogic Game Factory 0.000000e+00
## 1254      PS2                 Playlogic Game Factory 0.000000e+00
## 1255      PS3                 Playlogic Game Factory 0.000000e+00
## 1256      PSP                 Playlogic Game Factory 0.000000e+00
## 1257      Wii                 Playlogic Game Factory 0.000000e+00
## 1258     X360                 Playlogic Game Factory 0.000000e+00
## 1259       PS                              Playmates 0.000000e+00
## 1260      PS2                               Playmore 4.000000e-02
## 1261       DS                                  PlayV 0.000000e+00
## 1262       DS                                 Plenty 2.000000e-02
## 1263      PSP                             PM Studios 0.000000e+00
## 1264       PS                            Pony Canyon 0.000000e+00
## 1265       DS                           PopCap Games 0.000000e+00
## 1266       PC                           PopCap Games 0.000000e+00
## 1267      PS3                           PopCap Games 0.000000e+00
## 1268     X360                           PopCap Games 0.000000e+00
## 1269      Wii                         Popcorn Arcade 0.000000e+00
## 1270       PS                        PopTop Software 0.000000e+00
## 1271     SNES                                    Pow 5.000000e-02
## 1272      3DS                                  PQube 4.000000e-02
## 1273       DS                                  PQube 1.666667e-02
## 1274       PC                                  PQube 0.000000e+00
## 1275      PS2                                  PQube 0.000000e+00
## 1276      PS3                                  PQube 4.200000e-02
## 1277      PS4                                  PQube 3.000000e-02
## 1278      PSP                                  PQube 4.750000e-02
## 1279      PSV                                  PQube 2.142857e-02
## 1280      Wii                                  PQube 0.000000e+00
## 1281     X360                                  PQube 2.666667e-02
## 1282     XOne                                  PQube 0.000000e+00
## 1283      PS2                          Princess Soft 2.333333e-02
## 1284      PS2                              Prototype 2.000000e-02
## 1285      PS3                              Prototype 3.000000e-02
## 1286      PSP                              Prototype 2.636364e-02
## 1287      PSV                              Prototype 1.833333e-02
## 1288     X360                              Prototype 2.000000e-02
## 1289       PS                              Psygnosis 2.250000e-02
## 1290     2600                                 Quelle 0.000000e+00
## 1291     SNES                                  Quest 7.100000e-01
## 1292      PSP                               Quinrose 1.571429e-02
## 1293      SAT                                Quintet 2.000000e-02
## 1294      GBA                          Rage Software 0.000000e+00
## 1295       GC                          Rage Software 0.000000e+00
## 1296      PS2                          Rage Software 0.000000e+00
## 1297       XB                          Rage Software 0.000000e+00
## 1298      PSV                             Rain Games 0.000000e+00
## 1299      GBA                              Rebellion 0.000000e+00
## 1300      PS4                 Rebellion Developments 0.000000e+00
## 1301     XOne                 Rebellion Developments 0.000000e+00
## 1302      PS2                      RED Entertainment 2.000000e-02
## 1303       PC                                Red Orb 0.000000e+00
## 1304      N64                Red Storm Entertainment 0.000000e+00
## 1305       PS                Red Storm Entertainment 0.000000e+00
## 1306      PS2                              RedOctane 7.500000e-03
## 1307       DS                     Reef Entertainment 0.000000e+00
## 1308       PC                     Reef Entertainment 0.000000e+00
## 1309      PS3                     Reef Entertainment 0.000000e+00
## 1310      Wii                     Reef Entertainment 0.000000e+00
## 1311      PS2                           responDESIGN 0.000000e+00
## 1312       XB                           responDESIGN 0.000000e+00
## 1313      PS2                     Revolution (Japan) 2.000000e-02
## 1314      PS4                    Revolution Software 0.000000e+00
## 1315     XOne                    Revolution Software 0.000000e+00
## 1316      3DS                      Rising Star Games 1.000000e-02
## 1317       DS                      Rising Star Games 3.575000e-02
## 1318       PC                      Rising Star Games 0.000000e+00
## 1319      PS2                      Rising Star Games 2.333333e-02
## 1320      PS3                      Rising Star Games 2.000000e-02
## 1321      PS4                      Rising Star Games 0.000000e+00
## 1322      PSP                      Rising Star Games 3.250000e-02
## 1323      PSV                      Rising Star Games 3.000000e-02
## 1324      Wii                      Rising Star Games 2.764706e-02
## 1325     X360                      Rising Star Games 1.200000e-02
## 1326       PS                          Riverhillsoft 4.000000e-02
## 1327      3DS                         Rocket Company 5.714286e-02
## 1328       DS                         Rocket Company 1.500000e-01
## 1329      Wii                         Rocket Company 7.000000e-02
## 1330       DS                             Rondomedia 0.000000e+00
## 1331       PC                             Rondomedia 0.000000e+00
## 1332      Wii                             Rondomedia 0.000000e+00
## 1333       DS                                    RTL 0.000000e+00
## 1334      Wii                                    RTL 0.000000e+00
## 1335     X360                                    RTL 0.000000e+00
## 1336       DS                                 Russel 3.000000e-02
## 1337       PC                                 Russel 0.000000e+00
## 1338      PS2                                 Russel 1.500000e-02
## 1339      PSP                                 Russel 1.500000e-02
## 1340      GBA                      Sammy Corporation 0.000000e+00
## 1341      PS2                      Sammy Corporation 1.911111e-01
## 1342     SNES                      Sammy Corporation 1.900000e-01
## 1343       PS                                 Saurus 0.000000e+00
## 1344       DS                        Scholastic Inc. 0.000000e+00
## 1345      PS2                        Scholastic Inc. 0.000000e+00
## 1346      Wii                        Scholastic Inc. 0.000000e+00
## 1347       GC                                    SCi 0.000000e+00
## 1348       PC                                    SCi 0.000000e+00
## 1349      PS2                                    SCi 0.000000e+00
## 1350       XB                                    SCi 0.000000e+00
## 1351      3DS                             Screenlife 1.700000e-01
## 1352      PSV                             Screenlife 5.000000e-02
## 1353       PC                           SCS Software 0.000000e+00
## 1354     2600                                  Sears 0.000000e+00
## 1355     2600                                   Sega 0.000000e+00
## 1356      3DS                                   Sega 7.142857e-02
## 1357       DC                                   Sega 1.926667e-01
## 1358       DS                                   Sega 9.109375e-02
## 1359      GBA                                   Sega 1.130000e-01
## 1360       GC                                   Sega 1.760000e-02
## 1361      GEN                                   Sega 1.244444e-01
## 1362       GG                                   Sega 4.000000e-02
## 1363       PC                                   Sega 0.000000e+00
## 1364      PS2                                   Sega 7.795181e-02
## 1365      PS3                                   Sega 9.049180e-02
## 1366      PS4                                   Sega 8.000000e-02
## 1367      PSP                                   Sega 1.127451e-01
## 1368      PSV                                   Sega 7.312500e-02
## 1369      SAT                                   Sega 2.284416e-01
## 1370      SCD                                   Sega 7.500000e-02
## 1371      Wii                                   Sega 4.454545e-02
## 1372     WiiU                                   Sega 1.250000e-02
## 1373     X360                                   Sega 6.595745e-03
## 1374       XB                                   Sega 4.210526e-03
## 1375     XOne                                   Sega 0.000000e+00
## 1376      N64                       Seta Corporation 6.000000e-02
## 1377       PS                       Seta Corporation 9.000000e-02
## 1378      SAT                       Seta Corporation 1.300000e-01
## 1379      3DS                          Seventh Chord 8.000000e-02
## 1380      3DS                             Shogakukan 3.000000e-02
## 1381       DS                             Shogakukan 1.500000e-01
## 1382      SAT                             Shogakukan 5.500000e-02
## 1383       XB           Simon & Schuster Interactive 0.000000e+00
## 1384       PC                   Slightly Mad Studios 0.000000e+00
## 1385      PS4                   Slightly Mad Studios 2.000000e-02
## 1386     XOne                   Slightly Mad Studios 0.000000e+00
## 1387       DS                    Slitherine Software 0.000000e+00
## 1388      PS3                    Slitherine Software 0.000000e+00
## 1389      PSP                    Slitherine Software 0.000000e+00
## 1390     X360                    Slitherine Software 0.000000e+00
## 1391       DC                                    SNK 8.500000e-02
## 1392       NG                                    SNK 1.390000e-01
## 1393       PS                                    SNK 7.800000e-02
## 1394      PS2                                    SNK 0.000000e+00
## 1395      SAT                                    SNK 1.325000e-01
## 1396       DS                           SNK Playmore 2.750000e-02
## 1397       PS                           SNK Playmore 1.333333e-02
## 1398      PS2                           SNK Playmore 1.666667e-02
## 1399      PSP                           SNK Playmore 3.000000e-02
## 1400      SAT                           SNK Playmore 2.800000e-01
## 1401       XB                           SNK Playmore 0.000000e+00
## 1402      SAT                                Societa 4.000000e-02
## 1403      PS4                               Sold Out 0.000000e+00
## 1404      SAT                                 Sonnet 3.000000e-02
## 1405       PS            Sony Computer Entertainment 2.300000e-01
## 1406      PS2            Sony Computer Entertainment 7.808824e-02
## 1407      PS3            Sony Computer Entertainment 5.558140e-02
## 1408      PS4            Sony Computer Entertainment 5.352941e-02
## 1409      PSP            Sony Computer Entertainment 4.641026e-02
## 1410      PSV            Sony Computer Entertainment 5.071429e-02
## 1411      PS3    Sony Computer Entertainment America 0.000000e+00
## 1412      PS4    Sony Computer Entertainment America 0.000000e+00
## 1413      PSV    Sony Computer Entertainment America 0.000000e+00
## 1414      PS2     Sony Computer Entertainment Europe 3.500000e-01
## 1415      PS3     Sony Computer Entertainment Europe 6.000000e-02
## 1416      PS4     Sony Computer Entertainment Europe 1.475000e-01
## 1417      PSV     Sony Computer Entertainment Europe 2.275000e-01
## 1418      PS2               Sony Music Entertainment 1.400000e-01
## 1419       PC              Sony Online Entertainment 0.000000e+00
## 1420      PS2              Sony Online Entertainment 0.000000e+00
## 1421      PS3              Sony Online Entertainment 0.000000e+00
## 1422      PSP              Sony Online Entertainment 0.000000e+00
## 1423       DS                        SouthPeak Games 0.000000e+00
## 1424       PC                        SouthPeak Games 0.000000e+00
## 1425       PS                        SouthPeak Games 0.000000e+00
## 1426      PS2                        SouthPeak Games 0.000000e+00
## 1427      PS3                        SouthPeak Games 1.666667e-02
## 1428      PSP                        SouthPeak Games 0.000000e+00
## 1429      Wii                        SouthPeak Games 0.000000e+00
## 1430     X360                        SouthPeak Games 4.000000e-03
## 1431       DS                                  Spike 8.250000e-02
## 1432      GBA                                  Spike 0.000000e+00
## 1433      PS2                                  Spike 3.714286e-02
## 1434      PS3                                  Spike 5.000000e-03
## 1435      PSP                                  Spike 8.428571e-02
## 1436     X360                                  Spike 0.000000e+00
## 1437       PS                                    SPS 0.000000e+00
## 1438      NES                                 Square 1.100000e-01
## 1439       PS                                 Square 2.900000e-01
## 1440     SNES                                 Square 1.330000e+00
## 1441       PS                              Square EA 0.000000e+00
## 1442      3DS                            Square Enix 4.321429e-01
## 1443       DS                            Square Enix 2.864444e-01
## 1444      GBA                            Square Enix 3.550000e-01
## 1445       PC                            Square Enix 0.000000e+00
## 1446      PS2                            Square Enix 4.634615e-01
## 1447      PS3                            Square Enix 2.175862e-01
## 1448      PS4                            Square Enix 8.684211e-02
## 1449      PSP                            Square Enix 2.745000e-01
## 1450      PSV                            Square Enix 1.287500e-01
## 1451      Wii                            Square Enix 2.800000e-01
## 1452     WiiU                            Square Enix 1.366667e-01
## 1453     X360                            Square Enix 2.884615e-02
## 1454     XOne                            Square Enix 1.818182e-03
## 1455       GB                             SquareSoft 7.466667e-01
## 1456      GBA                             SquareSoft 8.900000e-01
## 1457      NES                             SquareSoft 8.900000e-01
## 1458       PS                             SquareSoft 7.108000e-01
## 1459      PS2                             SquareSoft 2.150000e-01
## 1460     SNES                             SquareSoft 1.067143e+00
## 1461       WS                             SquareSoft 3.800000e-01
## 1462       PS                                    SSI 0.000000e+00
## 1463     XOne                        Stainless Games 0.000000e+00
## 1464       DS                               Starfish 1.000000e-02
## 1465      GBA                               Starfish 0.000000e+00
## 1466       PS                               Starfish 0.000000e+00
## 1467      PSP                               Starfish 2.000000e-02
## 1468      Wii                               Starfish 0.000000e+00
## 1469     2600                         Starpath Corp. 0.000000e+00
## 1470       DS                                  Sting 1.000000e-02
## 1471      GBA                                  Sting 1.500000e-02
## 1472      PS2                                  Sting 2.000000e-02
## 1473      PSP                                  Sting 3.500000e-02
## 1474      Wii                                  Sting 0.000000e+00
## 1475       DS                       Storm City Games 0.000000e+00
## 1476      Wii                       Storm City Games 0.000000e+00
## 1477       PC                         Strategy First 0.000000e+00
## 1478      3DS                                Success 4.000000e-02
## 1479       DS                                Success 1.000000e-02
## 1480       PS                                Success 0.000000e+00
## 1481      PS2                                Success 1.666667e-02
## 1482      PSP                                Success 1.000000e-02
## 1483     X360                                Success 0.000000e+00
## 1484      GBA                             Summitsoft 0.000000e+00
## 1485       PC                             Sunflowers 0.000000e+00
## 1486      PS2                    Sunrise Interactive 4.250000e-02
## 1487      3DS                                Sunsoft 2.000000e-02
## 1488      N64                                Sunsoft 0.000000e+00
## 1489       PS                                Sunsoft 0.000000e+00
## 1490      SAT                                Sunsoft 5.000000e-02
## 1491     SNES                                Sunsoft 2.500000e-02
## 1492      PS2                                 Sweets 2.500000e-02
## 1493      GBA                   Swing! Entertainment 0.000000e+00
## 1494       PS                   Swing! Entertainment 0.000000e+00
## 1495      PS2                   Swing! Entertainment 0.000000e+00
## 1496       XB                   Swing! Entertainment 0.000000e+00
## 1497       PS                                 Syscom 7.500000e-02
## 1498      PS3                               System 3 0.000000e+00
## 1499      PS4                               System 3 0.000000e+00
## 1500      PSV                               System 3 0.000000e+00
## 1501       DS               System 3 Arcade Software 0.000000e+00
## 1502      PS2               System 3 Arcade Software 0.000000e+00
## 1503      PS3               System 3 Arcade Software 0.000000e+00
## 1504      PSP               System 3 Arcade Software 0.000000e+00
## 1505      Wii               System 3 Arcade Software 0.000000e+00
## 1506      PSP                            System Soft 1.250000e-02
## 1507     SNES                               T&E Soft 1.200000e-01
## 1508     2600                                  Taito 0.000000e+00
## 1509       DS                                  Taito 2.000000e-02
## 1510      GBA                                  Taito 0.000000e+00
## 1511       GC                                  Taito 0.000000e+00
## 1512      N64                                  Taito 5.000000e-02
## 1513       PS                                  Taito 7.000000e-01
## 1514      PS2                                  Taito 1.800000e-02
## 1515      SAT                                  Taito 3.000000e-02
## 1516     SNES                                  Taito 2.450000e-01
## 1517      Wii                                  Taito 1.000000e-02
## 1518      GBA                                 Takara 0.000000e+00
## 1519      N64                                 Takara 5.000000e-02
## 1520       PS                                 Takara 1.866667e-01
## 1521      PS2                                 Takara 4.000000e-02
## 1522     SNES                                 Takara 3.700000e-01
## 1523      3DS                            Takara Tomy 9.000000e-02
## 1524       DS                            Takara Tomy 5.181818e-02
## 1525      PSP                            Takara Tomy 2.666667e-02
## 1526      Wii                            Takara Tomy 4.500000e-02
## 1527     X360                            Takara Tomy 0.000000e+00
## 1528      3DS                   Take-Two Interactive 0.000000e+00
## 1529       DS                   Take-Two Interactive 2.413793e-03
## 1530      GBA                   Take-Two Interactive 0.000000e+00
## 1531       GC                   Take-Two Interactive 0.000000e+00
## 1532      N64                   Take-Two Interactive 0.000000e+00
## 1533       PC                   Take-Two Interactive 0.000000e+00
## 1534       PS                   Take-Two Interactive 3.333333e-03
## 1535      PS2                   Take-Two Interactive 2.316667e-02
## 1536      PS3                   Take-Two Interactive 4.792453e-02
## 1537      PS4                   Take-Two Interactive 4.250000e-02
## 1538      PSP                   Take-Two Interactive 1.869565e-02
## 1539      PSV                   Take-Two Interactive 1.500000e-02
## 1540      Wii                   Take-Two Interactive 1.315789e-03
## 1541     WiiU                   Take-Two Interactive 0.000000e+00
## 1542     X360                   Take-Two Interactive 1.071429e-02
## 1543       XB                   Take-Two Interactive 0.000000e+00
## 1544     XOne                   Take-Two Interactive 0.000000e+00
## 1545      PSP                                 Takuyo 1.000000e-02
## 1546       PS                              TalonSoft 0.000000e+00
## 1547       DS                               TDK Core 8.333333e-02
## 1548      GBA                               TDK Core 0.000000e+00
## 1549       PS                               TDK Core 0.000000e+00
## 1550      GBA                         TDK Mediactive 0.000000e+00
## 1551       GC                         TDK Mediactive 0.000000e+00
## 1552       PS                         TDK Mediactive 0.000000e+00
## 1553      PS2                         TDK Mediactive 0.000000e+00
## 1554       XB                         TDK Mediactive 0.000000e+00
## 1555       PC                        Team17 Software 0.000000e+00
## 1556       NG              Technos Japan Corporation 2.000000e-02
## 1557       PS                             TechnoSoft 0.000000e+00
## 1558      3DS                             Tecmo Koei 5.333333e-02
## 1559       DS                             Tecmo Koei 4.115385e-02
## 1560      GBA                             Tecmo Koei 0.000000e+00
## 1561       GC                             Tecmo Koei 4.000000e-02
## 1562       PS                             Tecmo Koei 1.238889e-01
## 1563      PS2                             Tecmo Koei 1.211765e-01
## 1564      PS3                             Tecmo Koei 1.114286e-01
## 1565      PS4                             Tecmo Koei 4.681818e-02
## 1566      PSP                             Tecmo Koei 6.424242e-02
## 1567      PSV                             Tecmo Koei 5.968750e-02
## 1568      SAT                             Tecmo Koei 1.366667e-01
## 1569     SNES                             Tecmo Koei 3.337500e-01
## 1570      Wii                             Tecmo Koei 1.333333e-02
## 1571     WiiU                             Tecmo Koei 2.000000e-02
## 1572     X360                             Tecmo Koei 1.913043e-02
## 1573       XB                             Tecmo Koei 2.000000e-02
## 1574     XOne                             Tecmo Koei 1.666667e-03
## 1575       DS                              Telegames 0.000000e+00
## 1576      GBA                              Telegames 0.000000e+00
## 1577       PS                              Telegames 0.000000e+00
## 1578      PS3                         Telltale Games 0.000000e+00
## 1579      PS4                         Telltale Games 2.857143e-03
## 1580      PSV                         Telltale Games 5.000000e-03
## 1581      Wii                         Telltale Games 0.000000e+00
## 1582     X360                         Telltale Games 0.000000e+00
## 1583     XOne                         Telltale Games 0.000000e+00
## 1584       PS                                Telstar 0.000000e+00
## 1585      3DS                          Tetris Online 6.000000e-02
## 1586      PSP                                    TGL 1.000000e-02
## 1587      PSV                                    TGL 3.000000e-02
## 1588       DS                  The Adventure Company 0.000000e+00
## 1589      Wii                  The Adventure Company 0.000000e+00
## 1590       PS                   The Learning Company 0.000000e+00
## 1591      3DS                                    THQ 0.000000e+00
## 1592       DS                                    THQ 8.695652e-05
## 1593      GBA                                    THQ 1.727273e-03
## 1594       GC                                    THQ 0.000000e+00
## 1595      N64                                    THQ 5.555556e-03
## 1596       PC                                    THQ 0.000000e+00
## 1597       PS                                    THQ 5.222222e-02
## 1598      PS2                                    THQ 2.050000e-02
## 1599      PS3                                    THQ 1.195652e-02
## 1600      PSP                                    THQ 0.000000e+00
## 1601     SNES                                    THQ 4.900000e-01
## 1602      Wii                                    THQ 0.000000e+00
## 1603     WiiU                                    THQ 0.000000e+00
## 1604     X360                                    THQ 3.281250e-03
## 1605       XB                                    THQ 0.000000e+00
## 1606     2600                            Tigervision 0.000000e+00
## 1607       PS                Time Warner Interactive 0.000000e+00
## 1608      GBA                                  Titus 0.000000e+00
## 1609       GC                                  Titus 0.000000e+00
## 1610      N64                                  Titus 0.000000e+00
## 1611       PS                                  Titus 0.000000e+00
## 1612      PS2                                  Titus 0.000000e+00
## 1613     SNES                                  Titus 7.000000e-02
## 1614       XB                                  Titus 0.000000e+00
## 1615       DS                                 Tivola 0.000000e+00
## 1616     SNES                                   TOHO 1.100000e-01
## 1617       DS                                  Tommo 0.000000e+00
## 1618      Wii                                  Tommo 0.000000e+00
## 1619       DS                       Tomy Corporation 7.800000e-02
## 1620      GBA                       Tomy Corporation 0.000000e+00
## 1621       GC                       Tomy Corporation 1.920000e-01
## 1622       PS                       Tomy Corporation 1.925000e-01
## 1623      Wii                       Tomy Corporation 0.000000e+00
## 1624       PC                    TopWare Interactive 0.000000e+00
## 1625      PS3                    TopWare Interactive 0.000000e+00
## 1626      PS4                    TopWare Interactive 0.000000e+00
## 1627     X360                    TopWare Interactive 0.000000e+00
## 1628       DS                             Touchstone 0.000000e+00
## 1629       PC                             Touchstone 0.000000e+00
## 1630      PS3                             Touchstone 1.000000e-02
## 1631     X360                             Touchstone 1.000000e-02
## 1632      PS3                              Tradewest 0.000000e+00
## 1633      Wii                              Tradewest 0.000000e+00
## 1634     X360                              Tradewest 0.000000e+00
## 1635       PC                           Trion Worlds 0.000000e+00
## 1636      PS3                           Trion Worlds 0.000000e+00
## 1637     X360                           Trion Worlds 0.000000e+00
## 1638       PC                   Tripwire Interactive 0.000000e+00
## 1639      PS3                  Tru Blu Entertainment 0.000000e+00
## 1640      PS4                  Tru Blu Entertainment 0.000000e+00
## 1641     X360                  Tru Blu Entertainment 0.000000e+00
## 1642     XOne                  Tru Blu Entertainment 0.000000e+00
## 1643      PS2                               Tryfirst 3.000000e-02
## 1644       PS                                    TYO 0.000000e+00
## 1645      PSV                              Type-Moon 1.000000e-01
## 1646       PS                              U.S. Gold 0.000000e+00
## 1647      3DS                                Ubisoft 8.095238e-03
## 1648       DC                                Ubisoft 2.000000e-01
## 1649       DS                                Ubisoft 1.546961e-03
## 1650       GB                                Ubisoft 1.200000e-01
## 1651      GBA                                Ubisoft 4.716981e-03
## 1652       GC                                Ubisoft 0.000000e+00
## 1653      N64                                Ubisoft 0.000000e+00
## 1654       PC                                Ubisoft 0.000000e+00
## 1655       PS                                Ubisoft 5.000000e-03
## 1656      PS2                                Ubisoft 2.214286e-02
## 1657      PS3                                Ubisoft 2.958904e-02
## 1658      PS4                                Ubisoft 3.541667e-02
## 1659      PSP                                Ubisoft 1.552632e-02
## 1660      PSV                                Ubisoft 9.090909e-03
## 1661      Wii                                Ubisoft 2.347826e-03
## 1662     WiiU                                Ubisoft 5.000000e-03
## 1663     X360                                Ubisoft 7.272727e-03
## 1664       XB                                Ubisoft 6.666667e-04
## 1665     XOne                                Ubisoft 4.000000e-04
## 1666      3DS                         Ubisoft Annecy 8.500000e-02
## 1667      PS3                         Ubisoft Annecy 2.740000e-01
## 1668      PSP                         Ubisoft Annecy 1.550000e-01
## 1669     X360                         Ubisoft Annecy 4.000000e-02
## 1670       PS                            UEP Systems 2.000000e-01
## 1671      3DS                        UFO Interactive 0.000000e+00
## 1672       DS                        UFO Interactive 0.000000e+00
## 1673      Wii                        UFO Interactive 0.000000e+00
## 1674      PS4                      UIG Entertainment 0.000000e+00
## 1675     2600                            Ultravision 0.000000e+00
## 1676     2600                        Universal Gamex 0.000000e+00
## 1677      GBA                  Universal Interactive 0.000000e+00
## 1678       GC                  Universal Interactive 0.000000e+00
## 1679      PS2                  Universal Interactive 3.000000e-02
## 1680       XB                  Universal Interactive 0.000000e+00
## 1681     2600                                Unknown 0.000000e+00
## 1682      3DS                                Unknown 2.000000e-02
## 1683       DS                                Unknown 1.121212e-02
## 1684      GBA                                Unknown 5.090909e-02
## 1685       GC                                Unknown 2.166667e-02
## 1686      N64                                Unknown 0.000000e+00
## 1687       PC                                Unknown 0.000000e+00
## 1688       PS                                Unknown 0.000000e+00
## 1689      PS2                                Unknown 4.916667e-02
## 1690      PS3                                Unknown 2.200000e-02
## 1691      PS4                                Unknown 0.000000e+00
## 1692      PSP                                Unknown 1.676923e-01
## 1693      PSV                                Unknown 1.666667e-02
## 1694      Wii                                Unknown 3.115385e-02
## 1695     X360                                Unknown 7.500000e-03
## 1696       XB                                Unknown 0.000000e+00
## 1697     XOne                                Unknown 0.000000e+00
## 1698       DS                           Valcon Games 0.000000e+00
## 1699      PS2                           Valcon Games 0.000000e+00
## 1700      Wii                           Valcon Games 0.000000e+00
## 1701     X360                           Valcon Games 0.000000e+00
## 1702       DS                               ValuSoft 0.000000e+00
## 1703       PC                               ValuSoft 0.000000e+00
## 1704      PS2                               ValuSoft 0.000000e+00
## 1705      PS3                                  Valve 2.000000e-02
## 1706       PC                         Valve Software 0.000000e+00
## 1707     X360                         Valve Software 1.000000e-02
## 1708     SNES                                    Vap 5.000000e-02
## 1709      N64                  Vatical Entertainment 0.000000e+00
## 1710       PS                  Vatical Entertainment 0.000000e+00
## 1711      N64                              Vic Tokai 0.000000e+00
## 1712       PS                              Vic Tokai 0.000000e+00
## 1713       GB                     Victor Interactive 2.300000e-01
## 1714      GBA                     Victor Interactive 0.000000e+00
## 1715       PS                     Victor Interactive 7.333333e-02
## 1716      PS2                     Victor Interactive 5.000000e-02
## 1717      SAT                     Victor Interactive 2.000000e-02
## 1718     SNES                     Victor Interactive 1.100000e-01
## 1719      N64                           Video System 4.500000e-02
## 1720       PS                           Video System 0.000000e+00
## 1721     SNES                           Video System 2.800000e-01
## 1722      PS3                                  Views 1.000000e-02
## 1723      PSP                                  Views 2.000000e-02
## 1724       DS                          Vir2L Studios 0.000000e+00
## 1725      Wii                          Vir2L Studios 0.000000e+00
## 1726       DC                     Virgin Interactive 1.800000e-01
## 1727       GC                     Virgin Interactive 0.000000e+00
## 1728      GEN                     Virgin Interactive 3.000000e-02
## 1729      N64                     Virgin Interactive 1.750000e-02
## 1730       PC                     Virgin Interactive 0.000000e+00
## 1731       PS                     Virgin Interactive 1.641026e-01
## 1732      PS2                     Virgin Interactive 2.233333e-01
## 1733      SAT                     Virgin Interactive 3.300000e-01
## 1734     SNES                     Virgin Interactive 8.000000e-02
## 1735       XB                     Virgin Interactive 0.000000e+00
## 1736      Wii                     Virtual Play Games 0.000000e+00
## 1737       PC                                  Visco 0.000000e+00
## 1738       DS                          Vivendi Games 0.000000e+00
## 1739      GBA                          Vivendi Games 0.000000e+00
## 1740       GC                          Vivendi Games 4.000000e-03
## 1741       PC                          Vivendi Games 7.391304e-03
## 1742       PS                          Vivendi Games 0.000000e+00
## 1743      PS2                          Vivendi Games 0.000000e+00
## 1744      PS3                          Vivendi Games 0.000000e+00
## 1745      PSP                          Vivendi Games 0.000000e+00
## 1746      Wii                          Vivendi Games 0.000000e+00
## 1747     X360                          Vivendi Games 0.000000e+00
## 1748       XB                          Vivendi Games 0.000000e+00
## 1749      GBA                                Wanadoo 0.000000e+00
## 1750       GC                                Wanadoo 0.000000e+00
## 1751      PS2                                Wanadoo 3.000000e-02
## 1752       XB                                Wanadoo 0.000000e+00
## 1753       DC                                Warashi 2.000000e-02
## 1754       PC                          Wargaming.net 0.000000e+00
## 1755      3DS Warner Bros. Interactive Entertainment 9.444444e-03
## 1756       DS Warner Bros. Interactive Entertainment 6.250000e-04
## 1757       GC Warner Bros. Interactive Entertainment 0.000000e+00
## 1758       PC Warner Bros. Interactive Entertainment 0.000000e+00
## 1759      PS2 Warner Bros. Interactive Entertainment 0.000000e+00
## 1760      PS3 Warner Bros. Interactive Entertainment 1.125000e-02
## 1761      PS4 Warner Bros. Interactive Entertainment 2.357143e-02
## 1762      PSP Warner Bros. Interactive Entertainment 0.000000e+00
## 1763      PSV Warner Bros. Interactive Entertainment 0.000000e+00
## 1764      Wii Warner Bros. Interactive Entertainment 0.000000e+00
## 1765     WiiU Warner Bros. Interactive Entertainment 4.666667e-03
## 1766     X360 Warner Bros. Interactive Entertainment 2.058824e-03
## 1767     XOne Warner Bros. Interactive Entertainment 1.538462e-03
## 1768      SAT                                   Warp 7.000000e-02
## 1769      3DS                WayForward Technologies 0.000000e+00
## 1770       PC                       Westwood Studios 0.000000e+00
## 1771       DS                White Park Bay Software 0.000000e+00
## 1772     2600                     Wizard Video Games 0.000000e+00
## 1773      PS2                      Xicat Interactive 0.000000e+00
## 1774       XB                      Xicat Interactive 0.000000e+00
## 1775       PS                     Xing Entertainment 1.600000e-01
## 1776      PS2                                Xplosiv 0.000000e+00
## 1777      PSP                                Xplosiv 0.000000e+00
## 1778      Wii                                Xplosiv 0.000000e+00
## 1779      GBA                               XS Games 0.000000e+00
## 1780       PS                               XS Games 0.000000e+00
## 1781      PS2                               XS Games 0.000000e+00
## 1782      Wii                               XS Games 0.000000e+00
## 1783     X360                               XS Games 0.000000e+00
## 1784       XB                               XS Games 0.000000e+00
## 1785      3DS                            Xseed Games 2.100000e-01
## 1786      PS4                            Xseed Games 0.000000e+00
## 1787      PSV                            Xseed Games 8.000000e-02
## 1788      3DS                       Yacht Club Games 1.000000e-02
## 1789      PS4                       Yacht Club Games 0.000000e+00
## 1790     WiiU                       Yacht Club Games 0.000000e+00
## 1791      PS2                   Yamasa Entertainment 2.000000e-02
## 1792      PSP                   Yamasa Entertainment 2.000000e-02
## 1793      PS2                                   Yeti 2.250000e-02
## 1794      PS4                                   Yeti 2.000000e-02
## 1795      PSP                                   Yeti 2.400000e-02
## 1796     X360                                   Yeti 1.000000e-02
## 1797      PS2                                 Yuke's 1.666667e-02
## 1798      SAT                                Yumedia 6.000000e-02
## 1799      PSP                                 Zenrin 3.000000e-02
## 1800       DS                 Zoo Digital Publishing 0.000000e+00
## 1801      GBA                 Zoo Digital Publishing 0.000000e+00
## 1802       GC                 Zoo Digital Publishing 0.000000e+00
## 1803      PS2                 Zoo Digital Publishing 1.272727e-02
## 1804      Wii                 Zoo Digital Publishing 0.000000e+00
## 1805       XB                 Zoo Digital Publishing 0.000000e+00
## 1806       DS                              Zoo Games 0.000000e+00
## 1807      Wii                              Zoo Games 0.000000e+00
## 1808     X360                              Zoo Games 0.000000e+00
## 1809       DS                            Zushi Games 0.000000e+00
## 1810      PSP                            Zushi Games 1.000000e-02
## 1811      Wii                            Zushi Games 0.000000e+00
## 1812     X360                            Zushi Games 0.000000e+00
aggregate(JP_Sales,by=list(Year = Year,Genre = Genre),mean)
##     Year        Genre           x
## 1   1980       Action 0.000000000
## 2   1981       Action 0.000000000
## 3   1982       Action 0.000000000
## 4   1983       Action 0.000000000
## 5   1984       Action 0.830000000
## 6   1985       Action 0.720000000
## 7   1986       Action 0.885000000
## 8   1987       Action 0.000000000
## 9   1988       Action 0.210000000
## 10  1989       Action 0.155000000
## 11  1990       Action 0.336666667
## 12  1991       Action 0.412000000
## 13  1992       Action 0.540000000
## 14  1993       Action 0.153333333
## 15  1994       Action 0.210000000
## 16  1995       Action 0.157500000
## 17  1996       Action 0.131000000
## 18  1997       Action 0.061290323
## 19  1998       Action 0.126136364
## 20  1999       Action 0.072500000
## 21  2000       Action 0.085000000
## 22  2001       Action 0.089402985
## 23  2002       Action 0.040800000
## 24  2003       Action 0.029097222
## 25  2004       Action 0.038560000
## 26  2005       Action 0.032916667
## 27  2006       Action 0.031358696
## 28  2007       Action 0.029052133
## 29  2008       Action 0.027149321
## 30  2009       Action 0.043970588
## 31  2010       Action 0.037964602
## 32  2011       Action 0.045271967
## 33  2012       Action 0.046240602
## 34  2013       Action 0.073513514
## 35  2014       Action 0.034946237
## 36  2015       Action 0.062156863
## 37  2016       Action 0.048655462
## 38  2017       Action 0.010000000
## 39   N/A       Action 0.020476190
## 40  1983    Adventure 0.000000000
## 41  1987    Adventure 1.610000000
## 42  1991    Adventure 0.520000000
## 43  1992    Adventure 0.742500000
## 44  1993    Adventure 0.070000000
## 45  1994    Adventure 0.217500000
## 46  1995    Adventure 0.051538462
## 47  1996    Adventure 0.152941176
## 48  1997    Adventure 0.075000000
## 49  1998    Adventure 0.126521739
## 50  1999    Adventure 0.058421053
## 51  2000    Adventure 0.069375000
## 52  2001    Adventure 0.050952381
## 53  2002    Adventure 0.076904762
## 54  2003    Adventure 0.035833333
## 55  2004    Adventure 0.031538462
## 56  2005    Adventure 0.017619048
## 57  2006    Adventure 0.036901408
## 58  2007    Adventure 0.042261905
## 59  2008    Adventure 0.026144578
## 60  2009    Adventure 0.023758865
## 61  2010    Adventure 0.023376623
## 62  2011    Adventure 0.035462963
## 63  2012    Adventure 0.041724138
## 64  2013    Adventure 0.037000000
## 65  2014    Adventure 0.018133333
## 66  2015    Adventure 0.019259259
## 67  2016    Adventure 0.028529412
## 68   N/A    Adventure 0.006000000
## 69  1980     Fighting 0.000000000
## 70  1985     Fighting 1.050000000
## 71  1987     Fighting 0.935000000
## 72  1991     Fighting 0.390000000
## 73  1992     Fighting 0.821428571
## 74  1993     Fighting 0.555454545
## 75  1994     Fighting 0.201818182
## 76  1995     Fighting 0.243103448
## 77  1996     Fighting 0.204000000
## 78  1997     Fighting 0.092857143
## 79  1998     Fighting 0.101951220
## 80  1999     Fighting 0.117916667
## 81  2000     Fighting 0.105172414
## 82  2001     Fighting 0.151666667
## 83  2002     Fighting 0.058148148
## 84  2003     Fighting 0.067045455
## 85  2004     Fighting 0.034358974
## 86  2005     Fighting 0.071395349
## 87  2006     Fighting 0.051272727
## 88  2007     Fighting 0.054600000
## 89  2008     Fighting 0.107894737
## 90  2009     Fighting 0.056981132
## 91  2010     Fighting 0.038000000
## 92  2011     Fighting 0.058800000
## 93  2012     Fighting 0.061724138
## 94  2013     Fighting 0.064000000
## 95  2014     Fighting 0.208695652
## 96  2015     Fighting 0.037619048
## 97  2016     Fighting 0.045714286
## 98   N/A     Fighting 0.016666667
## 99  1980         Misc 0.000000000
## 100 1982         Misc 0.000000000
## 101 1983         Misc 2.130000000
## 102 1984         Misc 1.450000000
## 103 1989         Misc 1.280000000
## 104 1991         Misc 0.080000000
## 105 1992         Misc 0.905000000
## 106 1993         Misc 0.100000000
## 107 1994         Misc 0.076666667
## 108 1995         Misc 0.110454545
## 109 1996         Misc 0.150869565
## 110 1997         Misc 0.081666667
## 111 1998         Misc 0.130909091
## 112 1999         Misc 0.172800000
## 113 2000         Misc 0.138500000
## 114 2001         Misc 0.048461538
## 115 2002         Misc 0.064444444
## 116 2003         Misc 0.067547170
## 117 2004         Misc 0.028588235
## 118 2005         Misc 0.069217391
## 119 2006         Misc 0.144403670
## 120 2007         Misc 0.075894040
## 121 2008         Misc 0.034150943
## 122 2009         Misc 0.028019324
## 123 2010         Misc 0.033283582
## 124 2011         Misc 0.025760870
## 125 2012         Misc 0.096315789
## 126 2013         Misc 0.085238095
## 127 2014         Misc 0.057560976
## 128 2015         Misc 0.053846154
## 129 2016         Misc 0.045000000
## 130  N/A         Misc 0.037586207
## 131 1981     Platform 0.000000000
## 132 1982     Platform 0.000000000
## 133 1983     Platform 0.724000000
## 134 1984     Platform 0.690000000
## 135 1985     Platform 2.167500000
## 136 1986     Platform 1.351666667
## 137 1987     Platform 0.345000000
## 138 1988     Platform 1.425000000
## 139 1989     Platform 1.656666667
## 140 1990     Platform 1.426666667
## 141 1991     Platform 0.318333333
## 142 1992     Platform 0.465000000
## 143 1993     Platform 0.473636364
## 144 1994     Platform 0.638181818
## 145 1995     Platform 0.489230769
## 146 1996     Platform 0.482857143
## 147 1997     Platform 0.206111111
## 148 1998     Platform 0.131600000
## 149 1999     Platform 0.092222222
## 150 2000     Platform 0.106666667
## 151 2001     Platform 0.082325581
## 152 2002     Platform 0.058701299
## 153 2003     Platform 0.025517241
## 154 2004     Platform 0.092575758
## 155 2005     Platform 0.013493976
## 156 2006     Platform 0.170555556
## 157 2007     Platform 0.070952381
## 158 2008     Platform 0.038064516
## 159 2009     Platform 0.166896552
## 160 2010     Platform 0.118709677
## 161 2011     Platform 0.094324324
## 162 2012     Platform 0.320000000
## 163 2013     Platform 0.056216216
## 164 2014     Platform 0.126000000
## 165 2015     Platform 0.092142857
## 166 2016     Platform 0.011000000
## 167  N/A     Platform 0.012000000
## 168 1981       Puzzle 0.000000000
## 169 1982       Puzzle 0.000000000
## 170 1983       Puzzle 0.000000000
## 171 1984       Puzzle 0.743333333
## 172 1985       Puzzle 0.415000000
## 173 1988       Puzzle 1.810000000
## 174 1989       Puzzle 1.354000000
## 175 1990       Puzzle 0.965000000
## 176 1991       Puzzle 0.527500000
## 177 1992       Puzzle 0.536000000
## 178 1993       Puzzle 0.796666667
## 179 1994       Puzzle 0.510000000
## 180 1995       Puzzle 0.195000000
## 181 1996       Puzzle 0.151111111
## 182 1997       Puzzle 0.273571429
## 183 1998       Puzzle 0.141538462
## 184 1999       Puzzle 0.003333333
## 185 2000       Puzzle 0.081666667
## 186 2001       Puzzle 0.046666667
## 187 2002       Puzzle 0.008500000
## 188 2003       Puzzle 0.142500000
## 189 2004       Puzzle 0.102000000
## 190 2005       Puzzle 0.188181818
## 191 2006       Puzzle 0.079069767
## 192 2007       Puzzle 0.046363636
## 193 2008       Puzzle 0.014375000
## 194 2009       Puzzle 0.020886076
## 195 2010       Puzzle 0.010888889
## 196 2011       Puzzle 0.017906977
## 197 2012       Puzzle 0.087272727
## 198 2013       Puzzle 0.083333333
## 199 2014       Puzzle 0.051250000
## 200 2015       Puzzle 0.086666667
## 201  N/A       Puzzle 0.057272727
## 202 1981       Racing 0.000000000
## 203 1982       Racing 0.000000000
## 204 1984       Racing 1.030000000
## 205 1986       Racing 0.410000000
## 206 1988       Racing 0.190000000
## 207 1990       Racing 0.740000000
## 208 1991       Racing 0.150000000
## 209 1992       Racing 2.045000000
## 210 1993       Racing 0.180000000
## 211 1994       Racing 0.266250000
## 212 1995       Racing 0.162500000
## 213 1996       Racing 0.240909091
## 214 1997       Racing 0.113611111
## 215 1998       Racing 0.046938776
## 216 1999       Racing 0.068367347
## 217 2000       Racing 0.026744186
## 218 2001       Racing 0.056338028
## 219 2002       Racing 0.001941748
## 220 2003       Racing 0.025963303
## 221 2004       Racing 0.028028169
## 222 2005       Racing 0.056883117
## 223 2006       Racing 0.011600000
## 224 2007       Racing 0.010930233
## 225 2008       Racing 0.051341463
## 226 2009       Racing 0.005952381
## 227 2010       Racing 0.018245614
## 228 2011       Racing 0.048000000
## 229 2012       Racing 0.006666667
## 230 2013       Racing 0.033750000
## 231 2014       Racing 0.054074074
## 232 2015       Racing 0.014736842
## 233 2016       Racing 0.000500000
## 234  N/A       Racing 0.003478261
## 235 1986 Role-Playing 0.520000000
## 236 1987 Role-Playing 1.393333333
## 237 1988 Role-Playing 1.926666667
## 238 1989 Role-Playing 1.100000000
## 239 1990 Role-Playing 2.210000000
## 240 1991 Role-Playing 0.562000000
## 241 1992 Role-Playing 1.366000000
## 242 1993 Role-Playing 0.583333333
## 243 1994 Role-Playing 0.366470588
## 244 1995 Role-Playing 0.545416667
## 245 1996 Role-Playing 0.670714286
## 246 1997 Role-Playing 0.502608696
## 247 1998 Role-Playing 0.435769231
## 248 1999 Role-Playing 0.566666667
## 249 2000 Role-Playing 0.544827586
## 250 2001 Role-Playing 0.232926829
## 251 2002 Role-Playing 0.248000000
## 252 2003 Role-Playing 0.200625000
## 253 2004 Role-Playing 0.224833333
## 254 2005 Role-Playing 0.129859155
## 255 2006 Role-Playing 0.180272727
## 256 2007 Role-Playing 0.120679612
## 257 2008 Role-Playing 0.156339286
## 258 2009 Role-Playing 0.165728155
## 259 2010 Role-Playing 0.229805825
## 260 2011 Role-Playing 0.151894737
## 261 2012 Role-Playing 0.184487179
## 262 2013 Role-Playing 0.279718310
## 263 2014 Role-Playing 0.194615385
## 264 2015 Role-Playing 0.086025641
## 265 2016 Role-Playing 0.090750000
## 266 2017 Role-Playing 0.020000000
## 267  N/A Role-Playing 0.118823529
## 268 1980      Shooter 0.000000000
## 269 1981      Shooter 0.000000000
## 270 1982      Shooter 0.000000000
## 271 1983      Shooter 0.000000000
## 272 1984      Shooter 0.653333333
## 273 1985      Shooter 0.210000000
## 274 1986      Shooter 0.692500000
## 275 1987      Shooter 0.000000000
## 276 1988      Shooter 0.000000000
## 277 1989      Shooter 0.360000000
## 278 1991      Shooter 0.166666667
## 279 1992      Shooter 0.086666667
## 280 1993      Shooter 0.445000000
## 281 1994      Shooter 0.151818182
## 282 1995      Shooter 0.098275862
## 283 1996      Shooter 0.048260870
## 284 1997      Shooter 0.080370370
## 285 1998      Shooter 0.015652174
## 286 1999      Shooter 0.018125000
## 287 2000      Shooter 0.010000000
## 288 2001      Shooter 0.014722222
## 289 2002      Shooter 0.012911392
## 290 2003      Shooter 0.002876712
## 291 2004      Shooter 0.007386364
## 292 2005      Shooter 0.013750000
## 293 2006      Shooter 0.027391304
## 294 2007      Shooter 0.018000000
## 295 2008      Shooter 0.009277108
## 296 2009      Shooter 0.012307692
## 297 2010      Shooter 0.026172840
## 298 2011      Shooter 0.028617021
## 299 2012      Shooter 0.054583333
## 300 2013      Shooter 0.029322034
## 301 2014      Shooter 0.022978723
## 302 2015      Shooter 0.079117647
## 303 2016      Shooter 0.019062500
## 304  N/A      Shooter 0.003571429
## 305 1981   Simulation 0.000000000
## 306 1985   Simulation 0.000000000
## 307 1988   Simulation 0.000000000
## 308 1990   Simulation 0.480000000
## 309 1991   Simulation 0.455000000
## 310 1992   Simulation 0.000000000
## 311 1993   Simulation 0.190000000
## 312 1994   Simulation 0.300000000
## 313 1995   Simulation 0.145000000
## 314 1996   Simulation 0.183076923
## 315 1997   Simulation 0.311052632
## 316 1998   Simulation 0.420000000
## 317 1999   Simulation 0.306000000
## 318 2000   Simulation 0.084666667
## 319 2001   Simulation 0.134642857
## 320 2002   Simulation 0.039473684
## 321 2003   Simulation 0.041714286
## 322 2004   Simulation 0.021481481
## 323 2005   Simulation 0.237368421
## 324 2006   Simulation 0.041034483
## 325 2007   Simulation 0.033555556
## 326 2008   Simulation 0.030756303
## 327 2009   Simulation 0.007723577
## 328 2010   Simulation 0.020243902
## 329 2011   Simulation 0.021964286
## 330 2012   Simulation 0.325555556
## 331 2013   Simulation 0.122222222
## 332 2014   Simulation 0.033636364
## 333 2015   Simulation 0.105333333
## 334 2016   Simulation 0.033333333
## 335 2020   Simulation 0.000000000
## 336  N/A   Simulation 0.010000000
## 337 1980       Sports 0.000000000
## 338 1981       Sports 0.000000000
## 339 1982       Sports 0.000000000
## 340 1983       Sports 2.350000000
## 341 1984       Sports 2.010000000
## 342 1985       Sports 1.530000000
## 343 1986       Sports 0.896666667
## 344 1987       Sports 0.820000000
## 345 1988       Sports 0.930000000
## 346 1989       Sports 0.823333333
## 347 1990       Sports 0.426666667
## 348 1991       Sports 0.268571429
## 349 1992       Sports 0.225000000
## 350 1993       Sports 0.347777778
## 351 1994       Sports 0.237727273
## 352 1995       Sports 0.133448276
## 353 1996       Sports 0.097692308
## 354 1997       Sports 0.165000000
## 355 1998       Sports 0.072285714
## 356 1999       Sports 0.110161290
## 357 2000       Sports 0.078518519
## 358 2001       Sports 0.040625000
## 359 2002       Sports 0.024946809
## 360 2003       Sports 0.032000000
## 361 2004       Sports 0.041698113
## 362 2005       Sports 0.029016393
## 363 2006       Sports 0.062971014
## 364 2007       Sports 0.057425150
## 365 2008       Sports 0.026850000
## 366 2009       Sports 0.053315217
## 367 2010       Sports 0.023763441
## 368 2011       Sports 0.025245902
## 369 2012       Sports 0.047962963
## 370 2013       Sports 0.040566038
## 371 2014       Sports 0.029090909
## 372 2015       Sports 0.011612903
## 373 2016       Sports 0.020526316
## 374  N/A       Sports 0.014523810
## 375 1991     Strategy 0.235000000
## 376 1992     Strategy 0.096666667
## 377 1993     Strategy 0.255000000
## 378 1994     Strategy 0.245000000
## 379 1995     Strategy 0.132142857
## 380 1996     Strategy 0.155000000
## 381 1997     Strategy 0.165714286
## 382 1998     Strategy 0.199428571
## 383 1999     Strategy 0.161923077
## 384 2000     Strategy 0.236250000
## 385 2001     Strategy 0.141000000
## 386 2002     Strategy 0.109090909
## 387 2003     Strategy 0.042162162
## 388 2004     Strategy 0.063750000
## 389 2005     Strategy 0.047586207
## 390 2006     Strategy 0.012142857
## 391 2007     Strategy 0.042835821
## 392 2008     Strategy 0.034600000
## 393 2009     Strategy 0.028000000
## 394 2010     Strategy 0.038113208
## 395 2011     Strategy 0.041304348
## 396 2012     Strategy 0.074000000
## 397 2013     Strategy 0.043157895
## 398 2014     Strategy 0.068750000
## 399 2015     Strategy 0.008823529
## 400 2016     Strategy 0.005000000
## 401  N/A     Strategy 0.036000000
aggregate(JP_Sales,by=list(Year = Year,Publisher = Publisher),mean)
##      Year                              Publisher            x
## 1    2006                        10TACLE Studios 0.0000000000
## 2    2007                        10TACLE Studios 0.0000000000
## 3    2009                             1C Company 0.0000000000
## 4    2011                             1C Company 0.0000000000
## 5    1981           20th Century Fox Video Games 0.0000000000
## 6    1982           20th Century Fox Video Games 0.0000000000
## 7    2008                                 2D Boy 0.0000000000
## 8    1998                                    3DO 0.0000000000
## 9    1999                                    3DO 0.0000000000
## 10   2000                                    3DO 0.0000000000
## 11   2001                                    3DO 0.0000000000
## 12   2002                                    3DO 0.0000000000
## 13   2003                                    3DO 0.0000000000
## 14   2009                                49Games 0.0000000000
## 15   2002                              505 Games 0.2500000000
## 16   2003                              505 Games 0.0000000000
## 17   2004                              505 Games 0.0000000000
## 18   2005                              505 Games 0.0061538462
## 19   2006                              505 Games 0.0250000000
## 20   2007                              505 Games 0.0175000000
## 21   2008                              505 Games 0.0138461538
## 22   2009                              505 Games 0.0070000000
## 23   2010                              505 Games 0.0004545455
## 24   2011                              505 Games 0.0028571429
## 25   2012                              505 Games 0.0100000000
## 26   2013                              505 Games 0.0150000000
## 27   2014                              505 Games 0.0016666667
## 28   2015                              505 Games 0.0000000000
## 29   2016                              505 Games 0.0057142857
## 30   2008                                    5pb 0.0200000000
## 31   2009                                    5pb 0.0257142857
## 32   2010                                    5pb 0.0290000000
## 33   2011                                    5pb 0.0312500000
## 34   2012                                    5pb 0.0325000000
## 35   2013                                    5pb 0.0280000000
## 36   2014                                    5pb 0.0185714286
## 37   2015                                    5pb 0.0244444444
## 38   2016                                    5pb 0.0200000000
## 39   2010                               7G//AMES 0.0000000000
## 40   2011                               7G//AMES 0.0000000000
## 41   1999                             989 Sports 0.0000000000
## 42   1997                            989 Studios 0.0000000000
## 43   1998                            989 Studios 0.0166666667
## 44   1999                            989 Studios 0.0000000000
## 45   2010                               Abylight 0.0000000000
## 46   1993                  Acclaim Entertainment 0.0000000000
## 47   1994                  Acclaim Entertainment 0.0357142857
## 48   1995                  Acclaim Entertainment 0.0372727273
## 49   1996                  Acclaim Entertainment 0.0130769231
## 50   1997                  Acclaim Entertainment 0.0090000000
## 51   1998                  Acclaim Entertainment 0.0000000000
## 52   1999                  Acclaim Entertainment 0.0000000000
## 53   2000                  Acclaim Entertainment 0.0093333333
## 54   2001                  Acclaim Entertainment 0.0033333333
## 55   2002                  Acclaim Entertainment 0.0000000000
## 56   2003                  Acclaim Entertainment 0.0000000000
## 57   2004                  Acclaim Entertainment 0.0000000000
## 58   1996                               Accolade 0.0000000000
## 59   1997                               Accolade 0.0000000000
## 60   1999                               Accolade 0.0000000000
## 61   2009                            Ackkstudios 0.0000000000
## 62   2010                            Ackkstudios 0.0000000000
## 63   2011                            Ackkstudios 0.2050000000
## 64   2012                            Ackkstudios 0.0416666667
## 65   2006                                Acquire 0.0500000000
## 66   2008                                Acquire 0.0800000000
## 67   2009                                Acquire 0.0800000000
## 68   2010                                Acquire 0.0733333333
## 69   2011                                Acquire 0.0750000000
## 70   2012                                Acquire 0.0850000000
## 71   2014                                Acquire 0.0100000000
## 72   1980                             Activision 0.0000000000
## 73   1981                             Activision 0.0000000000
## 74   1982                             Activision 0.0000000000
## 75   1983                             Activision 0.0000000000
## 76   1984                             Activision 0.0000000000
## 77   1985                             Activision 0.0000000000
## 78   1987                             Activision 0.0000000000
## 79   1988                             Activision 0.0000000000
## 80   1989                             Activision 0.0000000000
## 81   1994                             Activision 0.0000000000
## 82   1995                             Activision 0.0000000000
## 83   1996                             Activision 0.0000000000
## 84   1997                             Activision 0.1066666667
## 85   1998                             Activision 0.0000000000
## 86   1999                             Activision 0.0150000000
## 87   2000                             Activision 0.0038461538
## 88   2001                             Activision 0.0073913043
## 89   2002                             Activision 0.0024000000
## 90   2003                             Activision 0.0082352941
## 91   2004                             Activision 0.0023404255
## 92   2005                             Activision 0.0015714286
## 93   2006                             Activision 0.0012000000
## 94   2007                             Activision 0.0066666667
## 95   2008                             Activision 0.0005681818
## 96   2009                             Activision 0.0038016529
## 97   2010                             Activision 0.0087640449
## 98   2011                             Activision 0.0082666667
## 99   2012                             Activision 0.0188095238
## 100  2013                             Activision 0.0165789474
## 101  2014                             Activision 0.0176190476
## 102  2015                             Activision 0.0125641026
## 103  2016                             Activision 0.0100000000
## 104   N/A                             Activision 0.0000000000
## 105  2014                    Activision Blizzard 0.0000000000
## 106  2001                       Activision Value 0.0000000000
## 107  2002                       Activision Value 0.0000000000
## 108  2003                       Activision Value 0.0000000000
## 109  2004                       Activision Value 0.0000000000
## 110  2005                       Activision Value 0.0000000000
## 111  2006                       Activision Value 0.0000000000
## 112  2007                       Activision Value 0.0000000000
## 113  2008                       Activision Value 0.0000000000
## 114  2009                       Activision Value 0.0000000000
## 115  1996                       Adeline Software 0.0000000000
## 116  2010                               Aerosoft 0.0000000000
## 117  2013                               Aerosoft 0.0000000000
## 118  2004                 Agatsuma Entertainment 0.0000000000
## 119  2012                 Agatsuma Entertainment 0.0300000000
## 120  2013                 Agatsuma Entertainment 0.0300000000
## 121  1997                                 Agetec 0.0000000000
## 122  1998                                 Agetec 0.0350000000
## 123  2002                                 Agetec 0.0750000000
## 124  2003                                 Agetec 0.0800000000
## 125  2009                                 Agetec 0.0000000000
## 126  2008                            Aksys Games 0.0000000000
## 127  2014                            Aksys Games 0.0200000000
## 128  2015                            Aksys Games 0.0366666667
## 129  2016                            Aksys Games 0.0150000000
## 130  2009                   Alawar Entertainment 0.0000000000
## 131  2015                   Alawar Entertainment 0.0000000000
## 132  2006                              Alchemist 0.0150000000
## 133  2007                              Alchemist 0.0633333333
## 134  2008                              Alchemist 0.0428571429
## 135  2009                              Alchemist 0.0200000000
## 136  2010                              Alchemist 0.0260000000
## 137  2011                              Alchemist 0.0314285714
## 138  2012                              Alchemist 0.0325000000
## 139  2013                              Alchemist 0.0325000000
## 140  2015                              Alchemist 0.0400000000
## 141  2010                   Alternative Software 0.0000000000
## 142  2015                   Alternative Software 0.0000000000
## 143  2016                   Alternative Software 0.0000000000
## 144  2001                                 Altron 0.0000000000
## 145  2009                                 Alvion 0.0200000000
## 146  2010                                 Alvion 0.0200000000
## 147  1996                     American Softworks 0.0000000000
## 148  1991                          Angel Studios 0.2900000000
## 149  1994                          Angel Studios 0.1200000000
## 150  1995                          Angel Studios 0.0300000000
## 151  1982                        Answer Software 0.0000000000
## 152  2007                         AQ Interactive 0.0400000000
## 153  2008                         AQ Interactive 0.0000000000
## 154  2009                         AQ Interactive 0.0233333333
## 155  1999                              Aqua Plus 0.1300000000
## 156  2006                              Aqua Plus 0.1100000000
## 157  2007                              Aqua Plus 0.0100000000
## 158  2008                              Aqua Plus 0.0800000000
## 159  2009                              Aqua Plus 0.0366666667
## 160  2010                              Aqua Plus 0.0300000000
## 161  2011                              Aqua Plus 0.0566666667
## 162  2012                              Aqua Plus 0.0450000000
## 163  2013                              Aqua Plus 0.0500000000
## 164  2015                              Aqua Plus 0.0575000000
## 165  2016                              Aqua Plus 0.0333333333
## 166  1997                                  Aques 0.1500000000
## 167  2008                       Arc System Works 0.0150000000
## 168  2009                       Arc System Works 0.0066666667
## 169  2010                       Arc System Works 0.0166666667
## 170  2012                       Arc System Works 0.0150000000
## 171  2013                       Arc System Works 0.0350000000
## 172  2014                       Arc System Works 0.0400000000
## 173  2015                       Arc System Works 0.0100000000
## 174  1992                    Arena Entertainment 0.0000000000
## 175  2006                                   Aria 0.0700000000
## 176  2002                                  Arika 0.0000000000
## 177  2004                                  Arika 0.0000000000
## 178  2008                                  Arika 0.0200000000
## 179  1994                                ArtDink 0.2400000000
## 180  1996                                ArtDink 0.0450000000
## 181  1998                                ArtDink 0.0900000000
## 182  2001                                ArtDink 0.0250000000
## 183  2009                                ArtDink 0.0400000000
## 184  2010                                ArtDink 0.0200000000
## 185  2014                                ArtDink 0.0600000000
## 186  1999                             Aruze Corp 0.5000000000
## 187  2000                             Aruze Corp 0.2950000000
## 188  1996                              ASC Games 0.0000000000
## 189  1998                              ASC Games 0.0000000000
## 190  1999                              ASC Games 0.0000000000
## 191  2012                  Ascaron Entertainment 0.0000000000
## 192  2004             Ascaron Entertainment GmbH 0.0000000000
## 193  2008             Ascaron Entertainment GmbH 0.0000000000
## 194  1994                    ASCII Entertainment 0.8700000000
## 195  1995                    ASCII Entertainment 0.6250000000
## 196  1996                    ASCII Entertainment 0.5420000000
## 197  1997                    ASCII Entertainment 0.4650000000
## 198  1998                    ASCII Entertainment 0.0400000000
## 199  1999                    ASCII Entertainment 0.4600000000
## 200  2001                    ASCII Entertainment 0.3200000000
## 201  2008                      ASCII Media Works 0.0300000000
## 202  2009                      ASCII Media Works 0.0350000000
## 203  2010                      ASCII Media Works 0.0400000000
## 204  2011                      ASCII Media Works 0.0100000000
## 205  2014                      ASCII Media Works 0.0100000000
## 206  2010                                 Asgard 0.0466666667
## 207  2011                                 Asgard 0.0300000000
## 208  2012                                 Asgard 0.0100000000
## 209  2013                                 Asgard 0.0250000000
## 210  2015                                 Asgard 0.0200000000
## 211  1996                                    ASK 0.0300000000
## 212  1996                Asmik Ace Entertainment 0.0900000000
## 213  2000                Asmik Ace Entertainment 0.0900000000
## 214  2006                Asmik Ace Entertainment 0.0400000000
## 215  1994                             Asmik Corp 0.0700000000
## 216  1995                             Asmik Corp 0.1000000000
## 217  2003                                  Aspyr 0.0000000000
## 218  2007                                  Aspyr 0.0000000000
## 219  2008                                  Aspyr 0.0000000000
## 220  2009                                  Aspyr 0.0000000000
## 221  2009                               Astragon 0.0000000000
## 222  2010                               Astragon 0.0000000000
## 223  2011                               Astragon 0.0000000000
## 224  2016                               Astragon 0.0000000000
## 225  2010                   Asylum Entertainment 0.0000000000
## 226  2011                   Asylum Entertainment 0.0000000000
## 227  1980                                  Atari 0.0000000000
## 228  1981                                  Atari 0.0000000000
## 229  1982                                  Atari 0.0000000000
## 230  1983                                  Atari 0.0000000000
## 231  1986                                  Atari 0.0000000000
## 232  1987                                  Atari 0.0000000000
## 233  1989                                  Atari 0.0000000000
## 234  1998                                  Atari 0.0000000000
## 235  1999                                  Atari 0.0000000000
## 236  2000                                  Atari 0.0100000000
## 237  2001                                  Atari 0.1655555556
## 238  2002                                  Atari 0.0404255319
## 239  2003                                  Atari 0.0237500000
## 240  2004                                  Atari 0.0166666667
## 241  2005                                  Atari 0.0650000000
## 242  2006                                  Atari 0.0200000000
## 243  2007                                  Atari 0.0612903226
## 244  2008                                  Atari 0.0309375000
## 245  2009                                  Atari 0.0000000000
## 246  2010                                  Atari 0.0000000000
## 247  2011                                  Atari 0.0000000000
## 248  2012                                  Atari 0.0000000000
## 249  2016                                  Atari 0.0000000000
## 250   N/A                                  Atari 0.0006250000
## 251  1999                                 Athena 0.0000000000
## 252  2001                                 Athena 0.0700000000
## 253  1994                                  Atlus 0.2250000000
## 254  1995                                  Atlus 0.2160000000
## 255  1996                                  Atlus 0.0250000000
## 256  1997                                  Atlus 0.1550000000
## 257  1998                                  Atlus 0.0000000000
## 258  1999                                  Atlus 0.0700000000
## 259  2000                                  Atlus 0.2800000000
## 260  2001                                  Atlus 0.0900000000
## 261  2002                                  Atlus 0.0166666667
## 262  2003                                  Atlus 0.0000000000
## 263  2004                                  Atlus 0.0000000000
## 264  2006                                  Atlus 0.0250000000
## 265  2007                                  Atlus 0.0250000000
## 266  2008                                  Atlus 0.1380000000
## 267  2009                                  Atlus 0.0980000000
## 268  2010                                  Atlus 0.0900000000
## 269  2011                                  Atlus 0.0580000000
## 270  2012                                  Atlus 0.1485714286
## 271  2013                                  Atlus 0.2050000000
## 272  2014                                  Atlus 0.0560000000
## 273  2015                                  Atlus 0.0533333333
## 274  2016                                  Atlus 0.2300000000
## 275  1982                     Avalon Interactive 0.0000000000
## 276  1999                     Avalon Interactive 0.0000000000
## 277  2002                     Avalon Interactive 0.0000000000
## 278  2003                     Avalon Interactive 0.0000000000
## 279  2004                     Avalon Interactive 0.0000000000
## 280  2007                              Avanquest 0.0000000000
## 281  2008                              Avanquest 0.0000000000
## 282  2009                              Avanquest 0.0000000000
## 283  2010                              Avanquest 0.0000000000
## 284  2011                              Avanquest 0.0000000000
## 285  2016                              Avanquest 0.0000000000
## 286   N/A                              Avanquest 0.0000000000
## 287  2012                     Avanquest Software 0.0050000000
## 288  2013                     Avanquest Software 0.0000000000
## 289  2015                     Avanquest Software 0.0000000000
## 290  1998                                  Axela 0.2400000000
## 291  2000                     BAM! Entertainment 0.0000000000
## 292  2001                     BAM! Entertainment 0.0000000000
## 293  2002                     BAM! Entertainment 0.0016666667
## 294  2003                     BAM! Entertainment 0.0000000000
## 295  2004                     BAM! Entertainment 0.0000000000
## 296  1991                              Banpresto 0.2550000000
## 297  1992                              Banpresto 0.1600000000
## 298  1993                              Banpresto 1.6900000000
## 299  1994                              Banpresto 0.1240000000
## 300  1995                              Banpresto 0.1500000000
## 301  1996                              Banpresto 0.5000000000
## 302  1997                              Banpresto 0.4250000000
## 303  1998                              Banpresto 0.2200000000
## 304  1999                              Banpresto 0.2333333333
## 305  2000                              Banpresto 0.7500000000
## 306  2001                              Banpresto 0.3300000000
## 307  2002                              Banpresto 0.2325000000
## 308  2003                              Banpresto 0.2100000000
## 309  2004                              Banpresto 0.2533333333
## 310  2005                              Banpresto 0.2200000000
## 311  2006                              Banpresto 0.0871428571
## 312  2007                              Banpresto 0.1677777778
## 313  2008                              Banpresto 0.0825000000
## 314  2009                              Banpresto 0.0450000000
## 315  2011                              Banpresto 0.2066666667
## 316  2007                                Benesse 0.0900000000
## 317  2008                                Benesse 0.0350000000
## 318  2001                               Berkeley 0.0000000000
## 319  2002                     Bethesda Softworks 0.0000000000
## 320  2003                     Bethesda Softworks 0.0000000000
## 321  2004                     Bethesda Softworks 0.0000000000
## 322  2005                     Bethesda Softworks 0.0000000000
## 323  2006                     Bethesda Softworks 0.0000000000
## 324  2007                     Bethesda Softworks 0.0000000000
## 325  2008                     Bethesda Softworks 0.0228571429
## 326  2009                     Bethesda Softworks 0.0016666667
## 327  2010                     Bethesda Softworks 0.0466666667
## 328  2011                     Bethesda Softworks 0.0400000000
## 329  2012                     Bethesda Softworks 0.0083333333
## 330  2014                     Bethesda Softworks 0.0263636364
## 331  2015                     Bethesda Softworks 0.0263636364
## 332  2016                     Bethesda Softworks 0.0066666667
## 333   N/A                     Bethesda Softworks 0.0050000000
## 334  2002                    Big Ben Interactive 0.0000000000
## 335  2004                    Big Ben Interactive 0.0000000000
## 336  2008                    Big Ben Interactive 0.0000000000
## 337  2009                    Big Ben Interactive 0.0000000000
## 338  2011                    Big Ben Interactive 0.0000000000
## 339  2013                    Big Ben Interactive 0.0000000000
## 340  2008                         Big Fish Games 0.0000000000
## 341  2014                         Big Fish Games 0.0000000000
## 342  2015                     Bigben Interactive 0.0000000000
## 343  2009                      bitComposer Games 0.0000000000
## 344  2011                      bitComposer Games 0.0000000000
## 345  2005                       Black Bean Games 0.0000000000
## 346  2007                       Black Bean Games 0.0000000000
## 347  2008                       Black Bean Games 0.0000000000
## 348  2009                       Black Bean Games 0.0000000000
## 349  2010                       Black Bean Games 0.0000000000
## 350  2011                       Black Bean Games 0.0000000000
## 351   N/A                       Black Bean Games 0.0025000000
## 352  2002                      Black Label Games 0.0000000000
## 353  2007               Blast! Entertainment Ltd 0.0000000000
## 354  2008               Blast! Entertainment Ltd 0.0000000000
## 355  2009               Blast! Entertainment Ltd 0.0000000000
## 356  2001                              Blue Byte 0.0000000000
## 357  1996          BMG Interactive Entertainment 0.0000000000
## 358  1997          BMG Interactive Entertainment 0.0000000000
## 359  1998          BMG Interactive Entertainment 0.0000000000
## 360  2013                    Bohemia Interactive 0.0000000000
## 361  1982                                   Bomb 0.0000000000
## 362  2013                               Boost On 0.0100000000
## 363  1991                                    BPS 0.3200000000
## 364  1994                                    BPS 0.2000000000
## 365  2007                    Brash Entertainment 0.0000000000
## 366  2008                    Brash Entertainment 0.0000000000
## 367  2006                               Broccoli 0.0300000000
## 368  2007                               Broccoli 0.0233333333
## 369  2008                               Broccoli 0.0300000000
## 370  2009                               Broccoli 0.0133333333
## 371  2010                               Broccoli 0.0200000000
## 372  2011                               Broccoli 0.0833333333
## 373  2012                               Broccoli 0.0500000000
## 374  2013                               Broccoli 0.0650000000
## 375  2015                               Broccoli 0.0500000000
## 376  2016                               Broccoli 0.0300000000
## 377  2012                              BushiRoad 0.0300000000
## 378  1985                                 Capcom 0.2100000000
## 379  1986                                 Capcom 0.4600000000
## 380  1987                                 Capcom 0.2700000000
## 381  1988                                 Capcom 0.3850000000
## 382  1989                                 Capcom 0.4200000000
## 383  1990                                 Capcom 0.4766666667
## 384  1991                                 Capcom 0.3200000000
## 385  1992                                 Capcom 1.4100000000
## 386  1993                                 Capcom 0.2442857143
## 387  1994                                 Capcom 0.1600000000
## 388  1996                                 Capcom 0.1833333333
## 389  1997                                 Capcom 0.1358333333
## 390  1998                                 Capcom 0.2271428571
## 391  1999                                 Capcom 0.0500000000
## 392  2000                                 Capcom 0.1520000000
## 393  2001                                 Capcom 0.1900000000
## 394  2002                                 Capcom 0.1831578947
## 395  2003                                 Capcom 0.0848387097
## 396  2004                                 Capcom 0.0569565217
## 397  2005                                 Capcom 0.1487500000
## 398  2006                                 Capcom 0.0874074074
## 399  2007                                 Capcom 0.2370588235
## 400  2008                                 Capcom 0.2084615385
## 401  2009                                 Capcom 0.2040000000
## 402  2010                                 Capcom 0.3309090909
## 403  2011                                 Capcom 0.1050000000
## 404  2012                                 Capcom 0.1320833333
## 405  2013                                 Capcom 0.2123809524
## 406  2014                                 Capcom 0.0800000000
## 407  2015                                 Capcom 0.2350000000
## 408  2016                                 Capcom 0.0294444444
## 409   N/A                                 Capcom 0.1400000000
## 410  2008                                   Cave 0.0000000000
## 411  2009                                   Cave 0.0300000000
## 412  2010                                   Cave 0.0350000000
## 413  2011                                   Cave 0.0125000000
## 414  2012                                   Cave 0.0200000000
## 415  2013                                   Cave 0.0100000000
## 416  1982                        CBS Electronics 0.0000000000
## 417  2003                                    CCP 0.0000000000
## 418  2005             CDV Software Entertainment 0.0000000000
## 419  2008             CDV Software Entertainment 0.0000000000
## 420  2009             CDV Software Entertainment 0.0000000000
## 421  2011             CDV Software Entertainment 0.0000000000
## 422  1992                               ChunSoft 0.1600000000
## 423  1993                               ChunSoft 0.7800000000
## 424  1994                               ChunSoft 0.8100000000
## 425  1995                               ChunSoft 0.4000000000
## 426  1996                               ChunSoft 0.2700000000
## 427  1998                               ChunSoft 0.0900000000
## 428  1999                               ChunSoft 0.1600000000
## 429  2000                               ChunSoft 0.3200000000
## 430  2002                               ChunSoft 0.3600000000
## 431  2006                               ChunSoft 0.0150000000
## 432  2009                               ChunSoft 0.0300000000
## 433  2010                               ChunSoft 0.0400000000
## 434  2011                               ChunSoft 0.0333333333
## 435  2012                               ChunSoft 0.0300000000
## 436  2008                       City Interactive 0.0000000000
## 437  2009                       City Interactive 0.0000000000
## 438  2010                       City Interactive 0.0000000000
## 439  2011                       City Interactive 0.0100000000
## 440  2013                       City Interactive 0.0100000000
## 441  2014                       City Interactive 0.0000000000
## 442   N/A                       City Interactive 0.0000000000
## 443  2012       Cloud Imperium Games Corporation 0.0000000000
## 444  1993                         Coconuts Japan 0.0500000000
## 445  1996                         Coconuts Japan 0.0000000000
## 446  1997                            Codemasters 0.0100000000
## 447  1998                            Codemasters 0.0375000000
## 448  1999                            Codemasters 0.0000000000
## 449  2000                            Codemasters 0.0100000000
## 450  2001                            Codemasters 0.0000000000
## 451  2002                            Codemasters 0.0040000000
## 452  2003                            Codemasters 0.0014285714
## 453  2004                            Codemasters 0.0000000000
## 454  2005                            Codemasters 0.0014285714
## 455  2006                            Codemasters 0.0000000000
## 456  2007                            Codemasters 0.0008333333
## 457  2008                            Codemasters 0.0033333333
## 458  2009                            Codemasters 0.0026923077
## 459  2010                            Codemasters 0.0180000000
## 460  2011                            Codemasters 0.0176923077
## 461  2012                            Codemasters 0.0062500000
## 462  2013                            Codemasters 0.0080000000
## 463  2014                            Codemasters 0.0050000000
## 464  2015                            Codemasters 0.0100000000
## 465  2016                            Codemasters 0.0016666667
## 466   N/A                            Codemasters 0.0000000000
## 467  2008                     Codemasters Online 0.0000000000
## 468  2007                      CokeM Interactive 0.0000000000
## 469  1981                                 Coleco 0.0000000000
## 470  1982                                 Coleco 0.0000000000
## 471  2010                                Comfort 0.0150000000
## 472  2011                                Comfort 0.0400000000
## 473  2012                                Comfort 0.0200000000
## 474  2013                                Comfort 0.0200000000
## 475  2008                               Commseed 0.0100000000
## 476  1995                                Compile 0.4700000000
## 477  1996                                Compile 0.0200000000
## 478  1997                                Compile 0.6100000000
## 479  1998                                Compile 0.0300000000
## 480  2008                          Compile Heart 0.0100000000
## 481  2009                          Compile Heart 0.0100000000
## 482  2010                          Compile Heart 0.0200000000
## 483  2011                          Compile Heart 0.0900000000
## 484  2012                          Compile Heart 0.0433333333
## 485  2013                          Compile Heart 0.0550000000
## 486  2014                          Compile Heart 0.0460000000
## 487  2015                          Compile Heart 0.0366666667
## 488  2016                          Compile Heart 0.0200000000
## 489  2001               Conspiracy Entertainment 0.0000000000
## 490  2002               Conspiracy Entertainment 0.0000000000
## 491  2007               Conspiracy Entertainment 0.0000000000
## 492  2008               Conspiracy Entertainment 0.0000000000
## 493  2009               Conspiracy Entertainment 0.0000000000
## 494  2010               Conspiracy Entertainment 0.0000000000
## 495  1994                       Core Design Ltd. 0.0000000000
## 496  1995                       Core Design Ltd. 0.0000000000
## 497  1982                           CPG Products 0.0000000000
## 498  1998                    Crave Entertainment 0.0000000000
## 499  1999                    Crave Entertainment 0.0000000000
## 500  2000                    Crave Entertainment 0.1500000000
## 501  2002                    Crave Entertainment 0.0000000000
## 502  2003                    Crave Entertainment 0.0000000000
## 503  2004                    Crave Entertainment 0.0000000000
## 504  2005                    Crave Entertainment 0.0000000000
## 505  2006                    Crave Entertainment 0.0000000000
## 506  2007                    Crave Entertainment 0.0000000000
## 507  2008                    Crave Entertainment 0.0000000000
## 508  2009                    Crave Entertainment 0.0000000000
## 509  2010                    Crave Entertainment 0.0000000000
## 510  2011                    Crave Entertainment 0.0000000000
## 511  2008                          Creative Core 0.0350000000
## 512  2009                          Creative Core 0.0300000000
## 513  2008                            Crimson Cow 0.0000000000
## 514  2011                            Crimson Cow 0.0000000000
## 515  1995                       Crystal Dynamics 0.0000000000
## 516  1996                       Crystal Dynamics 0.0000000000
## 517  1996                                CTO SpA 0.0000000000
## 518  1997                                CTO SpA 0.0000000000
## 519  1991                          Culture Brain 0.2000000000
## 520  1994                          Culture Brain 0.0300000000
## 521  2008                          Culture Brain 0.0200000000
## 522  2010                          Culture Brain 0.0200000000
## 523  1998                     Culture Publishers 0.0000000000
## 524  2007                             CyberFront 0.0200000000
## 525  2008                             CyberFront 0.0400000000
## 526  2009                             CyberFront 0.0100000000
## 527  2010                             CyberFront 0.0166666667
## 528  2011                             CyberFront 0.0200000000
## 529  2012                             CyberFront 0.0150000000
## 530  2013                             CyberFront 0.0300000000
## 531  2015                                Cygames 0.0300000000
## 532  1998                            D3Publisher 0.9900000000
## 533  2000                            D3Publisher 0.0000000000
## 534  2001                            D3Publisher 0.0000000000
## 535  2005                            D3Publisher 0.0325000000
## 536  2006                            D3Publisher 0.0338461538
## 537  2007                            D3Publisher 0.0186363636
## 538  2008                            D3Publisher 0.0219047619
## 539  2009                            D3Publisher 0.0106451613
## 540  2010                            D3Publisher 0.0141935484
## 541  2011                            D3Publisher 0.0238888889
## 542  2012                            D3Publisher 0.0266666667
## 543  2013                            D3Publisher 0.0205000000
## 544  2014                            D3Publisher 0.0400000000
## 545  2015                            D3Publisher 0.0420000000
## 546  2016                            D3Publisher 0.0266666667
## 547   N/A                            D3Publisher 0.0000000000
## 548  2009                               Daedalic 0.0000000000
## 549  2010                               Daedalic 0.0000000000
## 550  2012                               Daedalic 0.0000000000
## 551  2012                 Daedalic Entertainment 0.0000000000
## 552  2013                 Daedalic Entertainment 0.0000000000
## 553  2006                                  Daito 0.0575000000
## 554  1981                               Data Age 0.0000000000
## 555  1982                               Data Age 0.0000000000
## 556  2007                Data Design Interactive 0.0000000000
## 557  2008                Data Design Interactive 0.0000000000
## 558  2009                Data Design Interactive 0.0000000000
## 559  1995                              Data East 0.0400000000
## 560  1998                              Data East 0.1100000000
## 561  2002                         Datam Polystar 0.0200000000
## 562  2007                         Datam Polystar 0.0100000000
## 563  2004                            Deep Silver 0.0000000000
## 564  2005                            Deep Silver 0.0000000000
## 565  2006                            Deep Silver 0.0000000000
## 566  2007                            Deep Silver 0.0000000000
## 567  2008                            Deep Silver 0.0000000000
## 568  2009                            Deep Silver 0.0050000000
## 569  2010                            Deep Silver 0.0000000000
## 570  2011                            Deep Silver 0.0292307692
## 571  2012                            Deep Silver 0.0025000000
## 572  2013                            Deep Silver 0.0225000000
## 573  2014                            Deep Silver 0.0050000000
## 574  2015                            Deep Silver 0.0057142857
## 575  2016                            Deep Silver 0.0190909091
## 576   N/A                            Deep Silver 0.0000000000
## 577  2001              Destination Software, Inc 0.0000000000
## 578  2002              Destination Software, Inc 0.0000000000
## 579  2003              Destination Software, Inc 0.0000000000
## 580  2004              Destination Software, Inc 0.0000000000
## 581  2005              Destination Software, Inc 0.0000000000
## 582  2006              Destination Software, Inc 0.0000000000
## 583  2007              Destination Software, Inc 0.0000000000
## 584  2008              Destination Software, Inc 0.0000000000
## 585  2007                              Destineer 0.0000000000
## 586  2008                              Destineer 0.0000000000
## 587  2009                              Destineer 0.0000000000
## 588  2010                              Destineer 0.0000000000
## 589  2011                              Destineer 0.0000000000
## 590  2007                            Detn8 Games 0.0000000000
## 591  2010                       Devolver Digital 0.0000000000
## 592  2015                       Devolver Digital 0.0000000000
## 593  2007                        DHM Interactive 0.0000000000
## 594  2009                        DHM Interactive 0.0000000000
## 595  2002                               DigiCube 0.0600000000
## 596  1999             Disney Interactive Studios 0.0000000000
## 597  2002             Disney Interactive Studios 0.0000000000
## 598  2003             Disney Interactive Studios 0.0000000000
## 599  2004             Disney Interactive Studios 0.0000000000
## 600  2005             Disney Interactive Studios 0.0000000000
## 601  2006             Disney Interactive Studios 0.0000000000
## 602  2007             Disney Interactive Studios 0.0007142857
## 603  2008             Disney Interactive Studios 0.0006060606
## 604  2009             Disney Interactive Studios 0.0075000000
## 605  2010             Disney Interactive Studios 0.0065714286
## 606  2011             Disney Interactive Studios 0.0030000000
## 607  2012             Disney Interactive Studios 0.0071428571
## 608  2013             Disney Interactive Studios 0.0000000000
## 609  2014             Disney Interactive Studios 0.0000000000
## 610  2015             Disney Interactive Studios 0.0000000000
## 611   N/A             Disney Interactive Studios 0.0000000000
## 612  2008                                 Dorart 0.0200000000
## 613  2010                                 Dorart 0.0100000000
## 614  2015                        dramatic create 0.0266666667
## 615  2016                        dramatic create 0.0150000000
## 616  2001               DreamCatcher Interactive 0.0000000000
## 617  2003               DreamCatcher Interactive 0.0000000000
## 618  2004               DreamCatcher Interactive 0.0000000000
## 619  2005               DreamCatcher Interactive 0.0000000000
## 620  2006               DreamCatcher Interactive 0.0000000000
## 621  2008               DreamCatcher Interactive 0.0000000000
## 622  2009               DreamCatcher Interactive 0.0000000000
## 623  2010               DreamCatcher Interactive 0.0000000000
## 624  1998                 DreamWorks Interactive 0.0000000000
## 625  2005                              DSI Games 0.0000000000
## 626  2006                              DSI Games 0.0000000000
## 627  2007                              DSI Games 0.0000000000
## 628  2008                              DSI Games 0.0000000000
## 629  2005                      DTP Entertainment 0.0000000000
## 630  2007                      DTP Entertainment 0.0000000000
## 631  2008                      DTP Entertainment 0.0000000000
## 632  2009                      DTP Entertainment 0.0009090909
## 633  2010                      DTP Entertainment 0.0000000000
## 634  2011                      DTP Entertainment 0.0007692308
## 635  2012                      DTP Entertainment 0.0000000000
## 636   N/A                      DTP Entertainment 0.0000000000
## 637  2016               Dusenberry Martin Racing 0.0000000000
## 638  2012                               EA Games 0.0000000000
## 639  2012                       Easy Interactive 0.0000000000
## 640  2009                                  Ecole 0.0600000000
## 641  2006                                   Edia 0.0700000000
## 642  2009                                   Edia 0.0200000000
## 643  1996                      Eidos Interactive 0.0325000000
## 644  1997                      Eidos Interactive 0.0640000000
## 645  1998                      Eidos Interactive 0.2540000000
## 646  1999                      Eidos Interactive 0.1925000000
## 647  2000                      Eidos Interactive 0.0844444444
## 648  2001                      Eidos Interactive 0.0170000000
## 649  2002                      Eidos Interactive 0.0206666667
## 650  2003                      Eidos Interactive 0.0000000000
## 651  2004                      Eidos Interactive 0.0000000000
## 652  2005                      Eidos Interactive 0.0008333333
## 653  2006                      Eidos Interactive 0.0020689655
## 654  2007                      Eidos Interactive 0.0050000000
## 655  2008                      Eidos Interactive 0.0024000000
## 656  2009                      Eidos Interactive 0.0050000000
## 657   N/A                      Eidos Interactive 0.0000000000
## 658  1992                        Electronic Arts 0.0000000000
## 659  1994                        Electronic Arts 0.1050000000
## 660  1995                        Electronic Arts 0.0000000000
## 661  1996                        Electronic Arts 0.0192307692
## 662  1997                        Electronic Arts 0.0212000000
## 663  1998                        Electronic Arts 0.0023333333
## 664  1999                        Electronic Arts 0.0000000000
## 665  2000                        Electronic Arts 0.0396774194
## 666  2001                        Electronic Arts 0.0109302326
## 667  2002                        Electronic Arts 0.0105681818
## 668  2003                        Electronic Arts 0.0280000000
## 669  2004                        Electronic Arts 0.0152325581
## 670  2005                        Electronic Arts 0.0030769231
## 671  2006                        Electronic Arts 0.0033333333
## 672  2007                        Electronic Arts 0.0060747664
## 673  2008                        Electronic Arts 0.0065000000
## 674  2009                        Electronic Arts 0.0040178571
## 675  2010                        Electronic Arts 0.0070454545
## 676  2011                        Electronic Arts 0.0125000000
## 677  2012                        Electronic Arts 0.0126086957
## 678  2013                        Electronic Arts 0.0190476190
## 679  2014                        Electronic Arts 0.0100000000
## 680  2015                        Electronic Arts 0.0193750000
## 681  2016                        Electronic Arts 0.0045000000
## 682   N/A                        Electronic Arts 0.0050000000
## 683  1996                 Electronic Arts Victor 0.0000000000
## 684  1996                                    Elf 0.3600000000
## 685  1997                                    Elf 0.2800000000
## 686  1996                                  Elite 0.0000000000
## 687  1996                     Empire Interactive 0.0000000000
## 688  1998                     Empire Interactive 0.0000000000
## 689  1999                     Empire Interactive 0.0000000000
## 690  2000                     Empire Interactive 0.0950000000
## 691  2001                     Empire Interactive 0.0000000000
## 692  2002                     Empire Interactive 0.0000000000
## 693  2003                     Empire Interactive 0.0000000000
## 694  2004                     Empire Interactive 0.0000000000
## 695  2005                     Empire Interactive 0.0057142857
## 696  2006                     Empire Interactive 0.0000000000
## 697  2007                     Empire Interactive 0.0000000000
## 698  2008                     Empire Interactive 0.0000000000
## 699   N/A                     Empire Interactive 0.0000000000
## 700  2001                                 Encore 0.0000000000
## 701  2003                                 Encore 0.0000000000
## 702  2005                                 Encore 0.0000000000
## 703  1987                       Enix Corporation 2.4100000000
## 704  1988                       Enix Corporation 3.7700000000
## 705  1990                       Enix Corporation 3.0300000000
## 706  1992                       Enix Corporation 2.7800000000
## 707  1993                       Enix Corporation 1.1500000000
## 708  1994                       Enix Corporation 0.3600000000
## 709  1995                       Enix Corporation 1.6600000000
## 710  1996                       Enix Corporation 0.4375000000
## 711  1999                       Enix Corporation 0.5400000000
## 712  2000                       Enix Corporation 1.6633333333
## 713  2001                       Enix Corporation 0.9666666667
## 714  2002                       Enix Corporation 0.2260000000
## 715  2003                       Enix Corporation 0.6400000000
## 716  2004                       Enix Corporation 1.6500000000
## 717  2009                      Enjoy Gaming ltd. 0.0000000000
## 718  2001                             Enterbrain 0.2050000000
## 719  2002                             Enterbrain 0.0400000000
## 720  2004                             Enterbrain 0.2750000000
## 721  2006                             Enterbrain 0.0800000000
## 722  2007                             Enterbrain 0.0100000000
## 723  2008                             Enterbrain 0.1900000000
## 724  2009                             Enterbrain 0.1300000000
## 725  2010                             Enterbrain 0.0900000000
## 726  1999              EON Digital Entertainment 0.0000000000
## 727  2016                             Epic Games 0.0000000000
## 728  1991                                  Epoch 0.0800000000
## 729  1992                                  Epoch 0.0700000000
## 730  1993                                  Epoch 0.0500000000
## 731  1995                                  Epoch 0.2550000000
## 732  1996                                  Epoch 0.1900000000
## 733  2000                                  Epoch 0.0900000000
## 734  2007                                 Ertain 0.0000000000
## 735  1997                                    ESP 0.4200000000
## 736  1998                                    ESP 0.0300000000
## 737  2002                                    ESP 0.0300000000
## 738  2005                        Essential Games 0.1700000000
## 739  2006                        Essential Games 0.0250000000
## 740  1998                        Evolution Games 0.0600000000
## 741  2004                          Evolved Games 0.0000000000
## 742  2009                          Evolved Games 0.0000000000
## 743  2011                          Evolved Games 0.0000000000
## 744  2011                   Excalibur Publishing 0.0000000000
## 745  2012                   Excalibur Publishing 0.0000000000
## 746  2014                        Experience Inc. 0.0100000000
## 747  2015                        Experience Inc. 0.0400000000
## 748  2016                        Experience Inc. 0.0100000000
## 749  2015            Extreme Entertainment Group 0.0100000000
## 750  2007                     Falcom Corporation 0.0350000000
## 751  2008                     Falcom Corporation 0.0366666667
## 752  2009                     Falcom Corporation 0.0433333333
## 753  2010                     Falcom Corporation 0.0866666667
## 754  2011                     Falcom Corporation 0.2000000000
## 755  2012                     Falcom Corporation 0.0550000000
## 756  2013                     Falcom Corporation 0.0150000000
## 757  2012                                 Fields 0.0300000000
## 758  2005                       Flashpoint Games 0.0000000000
## 759  2010                       Flashpoint Games 0.0000000000
## 760  2007                            Flight-Plan 0.0800000000
## 761  2009                            Flight-Plan 0.0400000000
## 762  2006                 Focus Home Interactive 0.0000000000
## 763  2007                 Focus Home Interactive 0.0000000000
## 764  2008                 Focus Home Interactive 0.0000000000
## 765  2009                 Focus Home Interactive 0.0000000000
## 766  2010                 Focus Home Interactive 0.0000000000
## 767  2011                 Focus Home Interactive 0.0000000000
## 768  2012                 Focus Home Interactive 0.0000000000
## 769  2013                 Focus Home Interactive 0.0066666667
## 770  2014                 Focus Home Interactive 0.0000000000
## 771  2015                 Focus Home Interactive 0.0050000000
## 772  2016                 Focus Home Interactive 0.0000000000
## 773   N/A                 Focus Home Interactive 0.0000000000
## 774  2012                       Focus Multimedia 0.0000000000
## 775  2015                       Focus Multimedia 0.0000000000
## 776  2008                                 fonfun 0.0200000000
## 777  2010                    Foreign Media Games 0.0000000000
## 778  1998                              Fortyfive 0.0600000000
## 779  1996                        Fox Interactive 0.0000000000
## 780  1997                        Fox Interactive 0.0000000000
## 781  1998                        Fox Interactive 0.0000000000
## 782  1999                        Fox Interactive 0.0000000000
## 783  2000                        Fox Interactive 0.0000000000
## 784  1994                          From Software 0.0800000000
## 785  1996                          From Software 0.1100000000
## 786  1997                          From Software 0.1500000000
## 787  1998                          From Software 0.0700000000
## 788  1999                          From Software 0.1300000000
## 789  2001                          From Software 0.0400000000
## 790  2002                          From Software 0.0600000000
## 791  2006                          From Software 0.0100000000
## 792  2009                          From Software 0.0300000000
## 793  2010                          From Software 0.0300000000
## 794  2013                          From Software 0.1200000000
## 795  1995                                   Fuji 0.0300000000
## 796  2011                           Funbox Media 0.0000000000
## 797  2012                           Funbox Media 0.0000000000
## 798  2015                           Funbox Media 0.0000000000
## 799  2010                                 Funcom 0.0000000000
## 800  2012                                 Funcom 0.0000000000
## 801  1996                                FunSoft 0.0000000000
## 802  2006                                 Funsta 0.0000000000
## 803  2007                                 Funsta 0.0000000000
## 804   N/A                                 Funsta 0.0000000000
## 805  2010                                  FuRyu 0.0100000000
## 806  2011                                  FuRyu 0.0375000000
## 807  2012                                  FuRyu 0.0325000000
## 808  2013                                  FuRyu 0.0440000000
## 809  2014                                  FuRyu 0.0533333333
## 810  2015                                  FuRyu 0.0528571429
## 811  2016                                  FuRyu 0.0433333333
## 812  2015                      FuRyu Corporation 0.0000000000
## 813  2009                                  G.Rev 0.0100000000
## 814  2010                                  G.Rev 0.0300000000
## 815  1996                                   Gaga 0.0200000000
## 816  1998                 Gainax Network Systems 0.0800000000
## 817  2007                                 Gakken 0.0200000000
## 818  1994                              Game Arts 0.1400000000
## 819  2003                           Game Factory 0.0000000000
## 820  2004                           Game Factory 0.0000000000
## 821  2005                           Game Factory 0.0000000000
## 822  2006                           Game Factory 0.0000000000
## 823  2007                           Game Factory 0.0000000000
## 824  2008                           Game Factory 0.0000000000
## 825  2010                           Game Factory 0.0000000000
## 826  2007                              Game Life 0.0000000000
## 827  2009                              Game Life 0.0000000000
## 828  2008                             Gamebridge 0.2200000000
## 829  2009                             Gamebridge 0.0200000000
## 830  2008                               Gamecock 0.0000000000
## 831  2007                               Gameloft 0.0000000000
## 832  2010                 GameMill Entertainment 0.0000000000
## 833  2011                 GameMill Entertainment 0.0000000000
## 834  2012                 GameMill Entertainment 0.0000000000
## 835  1998                                GameTek 0.0000000000
## 836  2001                Gathering of Developers 0.0000000000
## 837  2003                Gathering of Developers 0.0000000000
## 838  2004                Gathering of Developers 0.0000000000
## 839  1998                  General Entertainment 0.1300000000
## 840  1999                                  Genki 0.1700000000
## 841  2001                                  Genki 0.0000000000
## 842  2003                                  Genki 0.1050000000
## 843  2007                                  Genki 0.0300000000
## 844  2012                                  Genki 0.0500000000
## 845  2009                            Genterprise 0.0100000000
## 846  2003                             Ghostlight 0.2500000000
## 847  2004                             Ghostlight 0.0000000000
## 848  2005                             Ghostlight 0.0000000000
## 849  2006                             Ghostlight 0.0600000000
## 850  2007                             Ghostlight 0.0150000000
## 851  2008                             Ghostlight 0.0000000000
## 852  2009                             Ghostlight 0.3400000000
## 853  2010                             Ghostlight 0.0000000000
## 854  2011                             Ghostlight 0.0900000000
## 855   N/A                             Ghostlight 0.0300000000
## 856  2014                                   Giga 0.0200000000
## 857  2012                                 Giza10 0.0200000000
## 858  1995                                  Glams 0.0800000000
## 859  2006                 Global A Entertainment 0.0000000000
## 860  2007                 Global A Entertainment 0.0000000000
## 861  2008                 Global A Entertainment 0.0050000000
## 862  2004                            Global Star 0.0000000000
## 863  2005                            Global Star 0.0000000000
## 864  2006                            Global Star 0.0000000000
## 865  2006                            GN Software 0.0100000000
## 866  2008                            GN Software 0.0300000000
## 867  2010                            GN Software 0.0100000000
## 868  2008                                    GOA 0.0000000000
## 869  2002                           Gotham Games 0.0000000000
## 870  2003                           Gotham Games 0.0000000000
## 871  2004                           Gotham Games 0.0000000000
## 872  2008                               Graffiti 0.0000000000
## 873  2009                               Graffiti 0.0000000000
## 874  2010                               Graffiti 0.0000000000
## 875  2007                       Grand Prix Games 0.0600000000
## 876  2005                 Graphsim Entertainment 0.0000000000
## 877  1996                Gremlin Interactive Ltd 0.0000000000
## 878  1997                Gremlin Interactive Ltd 0.0000000000
## 879  1998                Gremlin Interactive Ltd 0.0000000000
## 880  2010                  Griffin International 0.0000000000
## 881  2005                           Groove Games 0.0000000000
## 882  2006                           Groove Games 0.0000000000
## 883  2008                                    GSP 0.0000000000
## 884  2009                                    GSP 0.0000000000
## 885  2010                                    GSP 0.0000000000
## 886  2011                                    GSP 0.0000000000
## 887  1995                         GT Interactive 0.0000000000
## 888  1996                         GT Interactive 0.0000000000
## 889  1997                         GT Interactive 0.0000000000
## 890  1998                         GT Interactive 0.0000000000
## 891  1999                         GT Interactive 0.0050000000
## 892  2008                                 GungHo 0.0425000000
## 893  2009                                 GungHo 0.0200000000
## 894  2011                                 GungHo 0.0500000000
## 895  2012                                 GungHo 0.0850000000
## 896  2013                                 GungHo 0.7750000000
## 897  2014                                 GungHo 0.0000000000
## 898  2016                                 GungHo 0.2000000000
## 899  1996                                   Gust 0.0100000000
## 900  1997                                   Gust 0.2300000000
## 901  2001                                   Gust 0.0900000000
## 902  2002                                   Gust 0.0700000000
## 903  2007                                   Gust 0.0400000000
## 904  2008                                   Gust 0.0500000000
## 905  2009                                   Gust 0.0250000000
## 906  2010                                   Gust 0.0300000000
## 907  2011                                   Gust 0.0200000000
## 908  2012                                   Gust 0.0950000000
## 909  2013                                   Gust 0.0600000000
## 910  2007                              Hackberry 0.0550000000
## 911  2008                              Hackberry 0.0400000000
## 912  2010                              Hackberry 0.0100000000
## 913  1989                         HAL Laboratory 0.0000000000
## 914  2002                    Hamster Corporation 0.0000000000
## 915  2006                    Hamster Corporation 0.0200000000
## 916  2014                               Happinet 0.0550000000
## 917  2015                               Happinet 0.0150000000
## 918  2016                               Happinet 0.0400000000
## 919  2015                 Harmonix Music Systems 0.0000000000
## 920  1994                     Hasbro Interactive 0.0000000000
## 921  1997                     Hasbro Interactive 0.0000000000
## 922  1998                     Hasbro Interactive 0.0000000000
## 923  1999                     Hasbro Interactive 0.0000000000
## 924  2000                     Hasbro Interactive 0.0000000000
## 925  2001                     Hasbro Interactive 0.0000000000
## 926  2006                     Hasbro Interactive 0.0000000000
## 927  2000                      Havas Interactive 0.0000000000
## 928  2013                           Headup Games 0.0000000000
## 929  1996                           Hearty Robin 0.0800000000
## 930  1993                                   Hect 0.1900000000
## 931  1994                                   Hect 0.2700000000
## 932  1995                                   Hect 0.0400000000
## 933  2016                            Hello Games 0.0200000000
## 934  2011                        Her Interactive 0.0000000000
## 935  2004                        Hip Interactive 0.0000000000
## 936  2005                        Hip Interactive 0.0000000000
## 937  2008                        HMH Interactive 0.0000000000
## 938  2009                        HMH Interactive 0.0000000000
## 939  2010           Home Entertainment Suppliers 0.0000000000
## 940  2011           Home Entertainment Suppliers 0.0000000000
## 941   N/A           Home Entertainment Suppliers 0.0000000000
## 942  1997                   Hudson Entertainment 0.7400000000
## 943  1998                   Hudson Entertainment 0.0000000000
## 944  1999                   Hudson Entertainment 0.4400000000
## 945  2001                   Hudson Entertainment 0.0000000000
## 946  2003                   Hudson Entertainment 0.0000000000
## 947  2006                   Hudson Entertainment 0.0200000000
## 948  2007                   Hudson Entertainment 0.0000000000
## 949  2008                   Hudson Entertainment 0.0100000000
## 950  2009                   Hudson Entertainment 0.0000000000
## 951  1984                            Hudson Soft 1.1000000000
## 952  1985                            Hudson Soft 0.8500000000
## 953  1986                            Hudson Soft 1.0675000000
## 954  1991                            Hudson Soft 0.1500000000
## 955  1992                            Hudson Soft 0.3950000000
## 956  1993                            Hudson Soft 0.3400000000
## 957  1994                            Hudson Soft 0.6100000000
## 958  1995                            Hudson Soft 0.2050000000
## 959  1996                            Hudson Soft 0.2200000000
## 960  1997                            Hudson Soft 0.1800000000
## 961  1998                            Hudson Soft 0.0000000000
## 962  1999                            Hudson Soft 0.1100000000
## 963  2000                            Hudson Soft 0.1500000000
## 964  2001                            Hudson Soft 0.4900000000
## 965  2002                            Hudson Soft 0.1400000000
## 966  2003                            Hudson Soft 0.1733333333
## 967  2004                            Hudson Soft 0.0800000000
## 968  2005                            Hudson Soft 0.2200000000
## 969  2006                            Hudson Soft 0.0766666667
## 970  2007                            Hudson Soft 0.1700000000
## 971  2008                            Hudson Soft 0.0787500000
## 972  2009                            Hudson Soft 0.1037500000
## 973  2010                            Hudson Soft 0.0536363636
## 974  2011                            Hudson Soft 0.0200000000
## 975  1991                    Human Entertainment 0.3900000000
## 976  1994                    Human Entertainment 0.3650000000
## 977  1995                    Human Entertainment 0.1900000000
## 978  1996                    Human Entertainment 0.1200000000
## 979  1997                    Human Entertainment 0.2100000000
## 980  1998                    Human Entertainment 0.1600000000
## 981  1999                    Human Entertainment 0.1500000000
## 982  2015                                  HuneX 0.0150000000
## 983  2011                    Iceberg Interactive 0.0000000000
## 984  2012                    Iceberg Interactive 0.0000000000
## 985  1992                            id Software 0.0000000000
## 986  2002                           Idea Factory 0.0500000000
## 987  2005                           Idea Factory 0.0000000000
## 988  2006                           Idea Factory 0.0150000000
## 989  2007                           Idea Factory 0.0250000000
## 990  2008                           Idea Factory 0.0283333333
## 991  2009                           Idea Factory 0.0257142857
## 992  2010                           Idea Factory 0.0273913043
## 993  2011                           Idea Factory 0.0294736842
## 994  2012                           Idea Factory 0.0289473684
## 995  2013                           Idea Factory 0.0281818182
## 996  2014                           Idea Factory 0.0269230769
## 997  2015                           Idea Factory 0.0192857143
## 998  2016                           Idea Factory 0.0171428571
## 999  2017                           Idea Factory 0.0100000000
## 1000  N/A                           Idea Factory 0.0100000000
## 1001 2014             Idea Factory International 0.0200000000
## 1002 2015             Idea Factory International 0.0466666667
## 1003 2006                           IE Institute 0.3650000000
## 1004 2007                           IE Institute 0.1700000000
## 1005 2008                           IE Institute 0.0400000000
## 1006 2012                           IE Institute 0.0200000000
## 1007 2002                 Ignition Entertainment 0.0000000000
## 1008 2003                 Ignition Entertainment 0.0000000000
## 1009 2004                 Ignition Entertainment 0.0163636364
## 1010 2005                 Ignition Entertainment 0.0114285714
## 1011 2006                 Ignition Entertainment 0.0133333333
## 1012 2007                 Ignition Entertainment 0.0057142857
## 1013 2008                 Ignition Entertainment 0.0073333333
## 1014 2009                 Ignition Entertainment 0.0200000000
## 1015 2011                 Ignition Entertainment 0.0550000000
## 1016  N/A                 Ignition Entertainment 0.0000000000
## 1017 2004                     Illusion Softworks 0.0000000000
## 1018 1997                                 Imadio 0.1400000000
## 1019 2012                            Image Epoch 0.1000000000
## 1020 2014                        imageepoch Inc. 0.0200000000
## 1021 1995                             Imageworks 0.0200000000
## 1022 1981                                 Imagic 0.0000000000
## 1023 1991                              Imagineer 0.1266666667
## 1024 1996                              Imagineer 0.1125000000
## 1025 1997                              Imagineer 0.3050000000
## 1026 1998                              Imagineer 0.0800000000
## 1027 1999                              Imagineer 0.1800000000
## 1028 2000                              Imagineer 0.2700000000
## 1029 2001                              Imagineer 0.1200000000
## 1030 1993                                   Imax 0.0600000000
## 1031 2004                            Indie Games 0.0466666667
## 1032 1994                             Infogrames 0.0000000000
## 1033 1996                             Infogrames 0.0000000000
## 1034 1997                             Infogrames 0.0900000000
## 1035 1998                             Infogrames 0.0085714286
## 1036 1999                             Infogrames 0.0000000000
## 1037 2000                             Infogrames 0.0000000000
## 1038 2001                             Infogrames 0.0020000000
## 1039 2002                             Infogrames 0.0095454545
## 1040 2003                             Infogrames 0.0000000000
## 1041  N/A                             Infogrames 0.0000000000
## 1042 2016                        Insomniac Games 0.0000000000
## 1043 2006                           Interchannel 0.0266666667
## 1044 2008                           Interchannel 0.0200000000
## 1045 2007                     Interchannel-Holon 0.0100000000
## 1046 2015                              Intergrow 0.0300000000
## 1047 1993                              Interplay 0.0100000000
## 1048 1995                              Interplay 0.0000000000
## 1049 1996                              Interplay 0.0000000000
## 1050 1997                              Interplay 0.0000000000
## 1051 1998                              Interplay 0.0000000000
## 1052 1999                              Interplay 0.0000000000
## 1053 2000                              Interplay 0.0000000000
## 1054 2001                              Interplay 0.0000000000
## 1055 2002                              Interplay 0.0000000000
## 1056 2003                              Interplay 0.0000000000
## 1057 2004                              Interplay 0.0000000000
## 1058 1997                  Interplay Productions 0.0000000000
## 1059 2012             Interworks Unlimited, Inc. 0.0000000000
## 1060 2016                           Inti Creates 0.0100000000
## 1061 2016                  Introversion Software 0.0000000000
## 1062 2015                   inXile Entertainment 0.0000000000
## 1063 1998              Irem Software Engineering 0.0000000000
## 1064 2006              Irem Software Engineering 0.0600000000
## 1065 2007              Irem Software Engineering 0.0500000000
## 1066 2008              Irem Software Engineering 0.0100000000
## 1067 2009              Irem Software Engineering 0.0700000000
## 1068 2010              Irem Software Engineering 0.0250000000
## 1069 2011              Irem Software Engineering 0.0150000000
## 1070 2012              Irem Software Engineering 0.0200000000
## 1071 1982                       ITT Family Games 0.0000000000
## 1072 2008                              Ivolgamus 0.0000000000
## 1073 2011                                   iWin 0.0000000000
## 1074 2005                      Jack of All Games 0.0000000000
## 1075 2011                      Jack of All Games 0.0000000000
## 1076 1995                                 Jaleco 0.0500000000
## 1077 1996                                 Jaleco 0.2100000000
## 1078 1998                                 Jaleco 0.0450000000
## 1079 1999                                 Jaleco 0.0000000000
## 1080 2002                                 Jaleco 0.0000000000
## 1081 2003                                 Jaleco 0.0000000000
## 1082 2004                                 Jaleco 0.0000000000
## 1083 2007                                 Jaleco 0.0633333333
## 1084 2008                                 Jaleco 0.0250000000
## 1085 2002                     Jester Interactive 0.0000000000
## 1086 2003                     Jester Interactive 0.0000000000
## 1087 2005                     Jester Interactive 0.0000000000
## 1088 1999                                Jorudan 0.3000000000
## 1089 2002                                Jorudan 0.3500000000
## 1090 2003                                Jorudan 0.2800000000
## 1091 2002                     JoWood Productions 0.0000000000
## 1092 2004                     JoWood Productions 0.0000000000
## 1093 2005                     JoWood Productions 0.0000000000
## 1094 2006                     JoWood Productions 0.0000000000
## 1095 2007                     JoWood Productions 0.0000000000
## 1096 2008                     JoWood Productions 0.0000000000
## 1097 2009                     JoWood Productions 0.0000000000
## 1098 2010                     JoWood Productions 0.0025000000
## 1099 2010                            Just Flight 0.0000000000
## 1100 1994                                    JVC 0.1200000000
## 1101 1996                                    JVC 0.0000000000
## 1102 1997                                    JVC 0.0000000000
## 1103 1998                                    JVC 0.0000000000
## 1104 1999                                    JVC 0.0000000000
## 1105 2000                                    JVC 0.0000000000
## 1106 2012                         Kadokawa Games 0.0200000000
## 1107 2013                         Kadokawa Games 0.0166666667
## 1108 2014                         Kadokawa Games 0.0400000000
## 1109 2015                         Kadokawa Games 0.0225000000
## 1110 2016                         Kadokawa Games 0.1100000000
## 1111 1996                        Kadokawa Shoten 0.2300000000
## 1112 1997                        Kadokawa Shoten 0.2100000000
## 1113 1998                        Kadokawa Shoten 0.0850000000
## 1114 1999                        Kadokawa Shoten 0.0000000000
## 1115 2004                        Kadokawa Shoten 0.0200000000
## 1116 2005                        Kadokawa Shoten 0.0400000000
## 1117 2006                        Kadokawa Shoten 0.0200000000
## 1118 2007                        Kadokawa Shoten 0.0866666667
## 1119 2008                        Kadokawa Shoten 0.0366666667
## 1120 2009                        Kadokawa Shoten 0.0300000000
## 1121 2010                        Kadokawa Shoten 0.0211111111
## 1122 2011                        Kadokawa Shoten 0.0755555556
## 1123 2012                        Kadokawa Shoten 0.0550000000
## 1124 2013                        Kadokawa Shoten 0.0500000000
## 1125 2014                        Kadokawa Shoten 0.1400000000
## 1126 2015                        Kadokawa Shoten 0.0700000000
## 1127 2013                            Kaga Create 0.0100000000
## 1128 2015                            Kaga Create 0.0260000000
## 1129 2007                          Kalypso Media 0.0000000000
## 1130 2008                          Kalypso Media 0.0000000000
## 1131 2009                          Kalypso Media 0.0060000000
## 1132 2010                          Kalypso Media 0.0000000000
## 1133 2011                          Kalypso Media 0.0000000000
## 1134 2012                          Kalypso Media 0.0000000000
## 1135 2014                          Kalypso Media 0.0000000000
## 1136 2015                          Kalypso Media 0.0200000000
## 1137  N/A                          Kalypso Media 0.0000000000
## 1138 2010                                  Kamui 0.0300000000
## 1139 2006                            Kando Games 0.0000000000
## 1140 2010                    Karin Entertainment 0.0200000000
## 1141 1991                                  Kemco 0.0500000000
## 1142 1997                                  Kemco 0.0000000000
## 1143 1998                                  Kemco 0.0000000000
## 1144 1999                                  Kemco 0.0000000000
## 1145 2001                                  Kemco 0.0000000000
## 1146 2002                                  Kemco 0.0000000000
## 1147 2003                                  Kemco 0.0000000000
## 1148 2005                                  Kemco 0.0000000000
## 1149 1998                                    KID 0.0300000000
## 1150 2006                                    KID 0.0166666667
## 1151 2007                           Kids Station 0.0300000000
## 1152 2002                           King Records 0.0200000000
## 1153 2003                    Knowledge Adventure 0.0000000000
## 1154 2009                    Knowledge Adventure 0.0000000000
## 1155 2008                             Koch Media 0.0000000000
## 1156 2011                             Koch Media 0.0000000000
## 1157 2013                             Koch Media 0.0000000000
## 1158 2015                             Koch Media 0.0000000000
## 1159 2016                             Koch Media 0.0000000000
## 1160 1995               Kokopeli Digital Studios 0.0000000000
## 1161 1986           Konami Digital Entertainment 1.0050000000
## 1162 1987           Konami Digital Entertainment 0.4200000000
## 1163 1989           Konami Digital Entertainment 0.3700000000
## 1164 1990           Konami Digital Entertainment 0.2100000000
## 1165 1991           Konami Digital Entertainment 0.2350000000
## 1166 1992           Konami Digital Entertainment 0.0700000000
## 1167 1993           Konami Digital Entertainment 0.1533333333
## 1168 1994           Konami Digital Entertainment 0.2414285714
## 1169 1995           Konami Digital Entertainment 0.1691666667
## 1170 1996           Konami Digital Entertainment 0.1412500000
## 1171 1997           Konami Digital Entertainment 0.1182352941
## 1172 1998           Konami Digital Entertainment 0.3395833333
## 1173 1999           Konami Digital Entertainment 0.2412500000
## 1174 2000           Konami Digital Entertainment 0.2141935484
## 1175 2001           Konami Digital Entertainment 0.0984615385
## 1176 2002           Konami Digital Entertainment 0.0641818182
## 1177 2003           Konami Digital Entertainment 0.0959259259
## 1178 2004           Konami Digital Entertainment 0.0992857143
## 1179 2005           Konami Digital Entertainment 0.0573214286
## 1180 2006           Konami Digital Entertainment 0.0713636364
## 1181 2007           Konami Digital Entertainment 0.0714754098
## 1182 2008           Konami Digital Entertainment 0.0923437500
## 1183 2009           Konami Digital Entertainment 0.0584745763
## 1184 2010           Konami Digital Entertainment 0.0870588235
## 1185 2011           Konami Digital Entertainment 0.0827272727
## 1186 2012           Konami Digital Entertainment 0.0856250000
## 1187 2013           Konami Digital Entertainment 0.1506250000
## 1188 2014           Konami Digital Entertainment 0.0788888889
## 1189 2015           Konami Digital Entertainment 0.1058333333
## 1190 2016           Konami Digital Entertainment 0.0787500000
## 1191  N/A           Konami Digital Entertainment 0.0411111111
## 1192 2003                              Kool Kizz 0.0000000000
## 1193 1996                                    KSS 0.0300000000
## 1194 1993                                 Laguna 0.4500000000
## 1195 1994                                 Laguna 0.3600000000
## 1196 1995                                 Laguna 0.2650000000
## 1197 2008                     Legacy Interactive 0.0000000000
## 1198 1999                             LEGO Media 0.0000000000
## 1199 2001                             LEGO Media 0.0000000000
## 1200 2002                             LEGO Media 0.0000000000
## 1201 2009                                Level 5 0.0875000000
## 1202 2010                                Level 5 0.6466666667
## 1203 2011                                Level 5 0.2666666667
## 1204 2012                                Level 5 0.1400000000
## 1205 2013                                Level 5 0.1633333333
## 1206 2014                                Level 5 2.6800000000
## 1207 2015                                Level 5 1.1550000000
## 1208 2016                                Level 5 0.9100000000
## 1209 2007                  Lexicon Entertainment 0.0000000000
## 1210 2008                  Lexicon Entertainment 0.0000000000
## 1211 2012                            Licensed 4U 0.0000000000
## 1212 2007                 Lighthouse Interactive 0.0000000000
## 1213 2002                           Liquid Games 0.0000000000
## 1214 2006                           Liquid Games 0.0000000000
## 1215 2010                           Little Orbit 0.0000000000
## 1216 2013                           Little Orbit 0.0000000000
## 1217 2014                           Little Orbit 0.0000000000
## 1218 2015                           Little Orbit 0.0000000000
## 1219 1998                                  Locus 0.0700000000
## 1220 2002                              LSP Games 0.0000000000
## 1221 2003                              LSP Games 0.0000000000
## 1222 1994                              LucasArts 0.0000000000
## 1223 1996                              LucasArts 0.0000000000
## 1224 1997                              LucasArts 0.0000000000
## 1225 1999                              LucasArts 0.0250000000
## 1226 2000                              LucasArts 0.0000000000
## 1227 2001                              LucasArts 0.0075000000
## 1228 2002                              LucasArts 0.0000000000
## 1229 2003                              LucasArts 0.0000000000
## 1230 2004                              LucasArts 0.0075000000
## 1231 2005                              LucasArts 0.0087500000
## 1232 2006                              LucasArts 0.0011111111
## 1233 2007                              LucasArts 0.0000000000
## 1234 2008                              LucasArts 0.0007692308
## 1235 2009                              LucasArts 0.0000000000
## 1236 2010                              LucasArts 0.0000000000
## 1237 2011                              LucasArts 0.0000000000
## 1238  N/A                              LucasArts 0.0000000000
## 1239 2004                               Mad Catz 0.0000000000
## 1240 2006                               Mad Catz 0.0000000000
## 1241 2012                               Mad Catz 0.0000000000
## 1242 1998                        Magical Company 0.1200000000
## 1243 2001                                  Magix 0.0000000000
## 1244 2009                                  Magix 0.0000000000
## 1245 2001                  Majesco Entertainment 0.0000000000
## 1246 2002                  Majesco Entertainment 0.0000000000
## 1247 2003                  Majesco Entertainment 0.0000000000
## 1248 2004                  Majesco Entertainment 0.0000000000
## 1249 2005                  Majesco Entertainment 0.0000000000
## 1250 2006                  Majesco Entertainment 0.0033333333
## 1251 2007                  Majesco Entertainment 0.0000000000
## 1252 2008                  Majesco Entertainment 0.0000000000
## 1253 2009                  Majesco Entertainment 0.0000000000
## 1254 2010                  Majesco Entertainment 0.0000000000
## 1255 2011                  Majesco Entertainment 0.0000000000
## 1256 2013                  Majesco Entertainment 0.0000000000
## 1257  N/A                  Majesco Entertainment 0.0000000000
## 1258 2008                            Mamba Games 0.0000000000
## 1259 2010                            Mamba Games 0.0000000000
## 1260 2015                   Marvel Entertainment 0.0500000000
## 1261 2012                Marvelous Entertainment 0.2150000000
## 1262 2013                Marvelous Entertainment 0.1266666667
## 1263 2014                Marvelous Entertainment 0.0450000000
## 1264 2015                Marvelous Entertainment 0.0850000000
## 1265 2016                Marvelous Entertainment 0.0100000000
## 1266 2015                        Marvelous Games 0.0200000000
## 1267 2002                  Marvelous Interactive 0.0000000000
## 1268 2003                  Marvelous Interactive 0.0000000000
## 1269 2004                  Marvelous Interactive 0.0000000000
## 1270 2005                  Marvelous Interactive 0.0333333333
## 1271 2006                  Marvelous Interactive 0.0300000000
## 1272 2007                  Marvelous Interactive 0.0190909091
## 1273 2008                  Marvelous Interactive 0.0238461538
## 1274 2009                  Marvelous Interactive 0.0420000000
## 1275 2010                  Marvelous Interactive 0.0483333333
## 1276 2011                  Marvelous Interactive 0.0950000000
## 1277 2014                  Marvelous Interactive 0.0300000000
## 1278 2015                  Marvelous Interactive 0.0633333333
## 1279 2016                  Marvelous Interactive 0.1900000000
## 1280 2011                      Masque Publishing 0.0000000000
## 1281 2006                           Mastertronic 0.0000000000
## 1282 2009                           Mastertronic 0.0000000000
## 1283 2010                           Mastertronic 0.0000000000
## 1284 2011                           Mastertronic 0.0000000000
## 1285 2012                           Mastertronic 0.0000000000
## 1286 2004                                Mastiff 0.0000000000
## 1287 2005                                Mastiff 0.0000000000
## 1288 2009                                Mastiff 0.0000000000
## 1289 2010                                Mastiff 0.0000000000
## 1290 2011                                Mastiff 0.0000000000
## 1291 1981                     Mattel Interactive 0.0000000000
## 1292 1982                     Mattel Interactive 0.0000000000
## 1293 1999                     Mattel Interactive 0.0000000000
## 1294 2000                     Mattel Interactive 0.0000000000
## 1295 2001                               Max Five 0.0000000000
## 1296 2012                   Maximum Family Games 0.0000000000
## 1297 1988                                  Maxis 0.0000000000
## 1298 1992                                  Maxis 0.0000000000
## 1299 1996                                  Maxis 0.0000000000
## 1300 2004                      MC2 Entertainment 0.0000000000
## 1301 2005                      MC2 Entertainment 0.0000000000
## 1302 2002                    Media Entertainment 0.0100000000
## 1303 2000                          Media Factory 0.1400000000
## 1304 2001                          Media Factory 0.1500000000
## 1305 1994                            Media Rings 0.3600000000
## 1306 1995                            Media Rings 0.1000000000
## 1307 2002                            Media Rings 0.0000000000
## 1308 1996                            Media Works 0.0400000000
## 1309 1998                            Media Works 0.0450000000
## 1310 2006                            Media Works 0.0300000000
## 1311 2007                            Media Works 0.0200000000
## 1312 1995                             MediaQuest 0.0000000000
## 1313 1981                           Men-A-Vision 0.0000000000
## 1314 2009                     Mentor Interactive 0.0000000000
## 1315 2010                     Mentor Interactive 0.0000000000
## 1316 2011                     Mentor Interactive 0.0000000000
## 1317 2007                          Mercury Games 0.0100000000
## 1318 2008                          Mercury Games 0.0000000000
## 1319 2009                            Merscom LLC 0.0000000000
## 1320 2001                               Metro 3D 0.0633333333
## 1321 2002                               Metro 3D 0.1150000000
## 1322 2003                               Metro 3D 0.0000000000
## 1323 2007                               Metro 3D 0.0000000000
## 1324 2008                               Metro 3D 0.0000000000
## 1325 2006                            Michaelsoft 0.0100000000
## 1326 1994                            Micro Cabin 0.0200000000
## 1327 1995                            Micro Cabin 0.0800000000
## 1328 1996                            Micro Cabin 0.1000000000
## 1329 2002                               Microids 0.0000000000
## 1330 2003                               Microids 0.0000000000
## 1331 2004                               Microids 0.0000000000
## 1332 2005                               Microids 0.0000000000
## 1333 2016                               Microids 0.0000000000
## 1334 1995                             Microprose 0.0000000000
## 1335 1996                             Microprose 0.0000000000
## 1336 1997                             Microprose 0.0000000000
## 1337 1999                             Microprose 0.0000000000
## 1338  N/A                             Microprose 0.0000000000
## 1339 1996                 Microsoft Game Studios 0.0000000000
## 1340 1999                 Microsoft Game Studios 0.0000000000
## 1341 2000                 Microsoft Game Studios 0.0000000000
## 1342 2001                 Microsoft Game Studios 0.0370000000
## 1343 2002                 Microsoft Game Studios 0.0035000000
## 1344 2003                 Microsoft Game Studios 0.0078571429
## 1345 2004                 Microsoft Game Studios 0.0092307692
## 1346 2005                 Microsoft Game Studios 0.0042857143
## 1347 2006                 Microsoft Game Studios 0.0433333333
## 1348 2007                 Microsoft Game Studios 0.0210526316
## 1349 2008                 Microsoft Game Studios 0.0210000000
## 1350 2009                 Microsoft Game Studios 0.0314285714
## 1351 2010                 Microsoft Game Studios 0.0425000000
## 1352 2011                 Microsoft Game Studios 0.0200000000
## 1353 2012                 Microsoft Game Studios 0.0157142857
## 1354 2013                 Microsoft Game Studios 0.0087500000
## 1355 2014                 Microsoft Game Studios 0.0077777778
## 1356 2015                 Microsoft Game Studios 0.0140000000
## 1357 2016                 Microsoft Game Studios 0.0375000000
## 1358 1997        Midas Interactive Entertainment 0.0000000000
## 1359 1998        Midas Interactive Entertainment 0.0000000000
## 1360 1999        Midas Interactive Entertainment 0.0000000000
## 1361 2000        Midas Interactive Entertainment 0.0085714286
## 1362 2001        Midas Interactive Entertainment 0.0100000000
## 1363 2002        Midas Interactive Entertainment 0.0250000000
## 1364 2005        Midas Interactive Entertainment 0.0000000000
## 1365 2006        Midas Interactive Entertainment 0.0000000000
## 1366 2007        Midas Interactive Entertainment 0.0000000000
## 1367 2008        Midas Interactive Entertainment 0.0000000000
## 1368 2009        Midas Interactive Entertainment 0.0000000000
## 1369 1996                           Midway Games 0.0000000000
## 1370 1997                           Midway Games 0.0000000000
## 1371 1998                           Midway Games 0.0000000000
## 1372 1999                           Midway Games 0.0000000000
## 1373 2000                           Midway Games 0.0000000000
## 1374 2001                           Midway Games 0.0090909091
## 1375 2002                           Midway Games 0.0000000000
## 1376 2003                           Midway Games 0.0000000000
## 1377 2004                           Midway Games 0.0000000000
## 1378 2005                           Midway Games 0.0000000000
## 1379 2006                           Midway Games 0.0000000000
## 1380 2007                           Midway Games 0.0005882353
## 1381 2008                           Midway Games 0.0006250000
## 1382  N/A                           Midway Games 0.0000000000
## 1383 2008                              Milestone 0.0000000000
## 1384 2016                        Milestone S.r.l 0.0000000000
## 1385 2014                       Milestone S.r.l. 0.0000000000
## 1386 2015                       Milestone S.r.l. 0.0111111111
## 1387 2016                       Milestone S.r.l. 0.0000000000
## 1388 2008                         Minato Station 0.0200000000
## 1389 2012                         Minato Station 0.0200000000
## 1390 2015                         Minato Station 0.0100000000
## 1391 1995                              Mindscape 0.0000000000
## 1392 1996                              Mindscape 0.0000000000
## 1393 1997                              Mindscape 0.0000000000
## 1394 1998                              Mindscape 0.0000000000
## 1395 1999                              Mindscape 0.0000000000
## 1396 2000                              Mindscape 0.0000000000
## 1397 2003                              Mindscape 0.0000000000
## 1398 2007                              Mindscape 0.0000000000
## 1399 2008                              Mindscape 0.0000000000
## 1400 2009                              Mindscape 0.0000000000
## 1401 2010                              Mindscape 0.0000000000
## 1402 2008                          Mirai Shounen 0.0200000000
## 1403 1993                                 Misawa 0.0500000000
## 1404 1994                                 Misawa 0.0200000000
## 1405 1998                                 Mitsui 0.0000000000
## 1406 2015                              mixi, Inc 0.8600000000
## 1407 2016                                MLB.com 0.0000000000
## 1408 2015                                 Mojang 0.0000000000
## 1409 2007               Monte Christo Multimedia 0.0000000000
## 1410 2008                                   Moss 0.0100000000
## 1411 2013                                   Moss 0.0100000000
## 1412 1998                                    MTO 0.0900000000
## 1413 2006                                    MTO 0.0800000000
## 1414 2007                                    MTO 0.0366666667
## 1415 2008                                    MTO 0.0100000000
## 1416 2010                                    MTO 0.0200000000
## 1417 2008                              MTV Games 0.0000000000
## 1418 2009                              MTV Games 0.0000000000
## 1419 2010                              MTV Games 0.0012500000
## 1420 2011                              MTV Games 0.0000000000
## 1421  N/A                              MTV Games 0.0000000000
## 1422 2003                   Mud Duck Productions 0.0000000000
## 1423 2004                   Mud Duck Productions 0.0000000000
## 1424 2006                            Mumbo Jumbo 0.0000000000
## 1425 2007                            Mumbo Jumbo 0.0000000000
## 1426 2008                            Mumbo Jumbo 0.0000000000
## 1427 1985                                  Mycom 0.0200000000
## 1428 2006                           Myelin Media 0.0000000000
## 1429 1981                               Mystique 0.0000000000
## 1430 2004                                    N/A 0.0000000000
## 1431 2005                                    N/A 0.0000000000
## 1432 2007                                    N/A 0.0000000000
## 1433 2010                                    N/A 0.0000000000
## 1434 2011                                    N/A 0.0000000000
## 1435 2012                                    N/A 0.0000000000
## 1436 2014                                    N/A 0.0000000000
## 1437 2016                                    N/A 0.0150000000
## 1438  N/A                                    N/A 0.0409090909
## 1439 1984                     Namco Bandai Games 0.9366666667
## 1440 1985                     Namco Bandai Games 0.7300000000
## 1441 1986                     Namco Bandai Games 1.3450000000
## 1442 1987                     Namco Bandai Games 1.2750000000
## 1443 1988                     Namco Bandai Games 1.1650000000
## 1444 1989                     Namco Bandai Games 1.1000000000
## 1445 1990                     Namco Bandai Games 0.3150000000
## 1446 1991                     Namco Bandai Games 0.3433333333
## 1447 1992                     Namco Bandai Games 0.5200000000
## 1448 1993                     Namco Bandai Games 0.6725000000
## 1449 1994                     Namco Bandai Games 0.2866666667
## 1450 1995                     Namco Bandai Games 0.2263636364
## 1451 1996                     Namco Bandai Games 0.4275000000
## 1452 1997                     Namco Bandai Games 0.3423076923
## 1453 1998                     Namco Bandai Games 0.3077777778
## 1454 1999                     Namco Bandai Games 0.1564285714
## 1455 2000                     Namco Bandai Games 0.2778571429
## 1456 2001                     Namco Bandai Games 0.0866666667
## 1457 2002                     Namco Bandai Games 0.2224000000
## 1458 2003                     Namco Bandai Games 0.1613043478
## 1459 2004                     Namco Bandai Games 0.0720000000
## 1460 2005                     Namco Bandai Games 0.0726829268
## 1461 2006                     Namco Bandai Games 0.0904545455
## 1462 2007                     Namco Bandai Games 0.1140816327
## 1463 2008                     Namco Bandai Games 0.1296153846
## 1464 2009                     Namco Bandai Games 0.1095161290
## 1465 2010                     Namco Bandai Games 0.0958571429
## 1466 2011                     Namco Bandai Games 0.1276315789
## 1467 2012                     Namco Bandai Games 0.1110588235
## 1468 2013                     Namco Bandai Games 0.1003174603
## 1469 2014                     Namco Bandai Games 0.0749275362
## 1470 2015                     Namco Bandai Games 0.0739705882
## 1471 2016                     Namco Bandai Games 0.0585000000
## 1472  N/A                     Namco Bandai Games 0.0575000000
## 1473 1996                                Natsume 0.1000000000
## 1474 1997                                Natsume 0.0000000000
## 1475 2000                                Natsume 0.0000000000
## 1476 2001                                Natsume 0.0000000000
## 1477 2002                                Natsume 0.0000000000
## 1478 2003                                Natsume 0.0000000000
## 1479 2006                                Natsume 0.0000000000
## 1480 2007                                Natsume 0.0000000000
## 1481 2009                                Natsume 0.0000000000
## 1482 2010                                Natsume 0.0733333333
## 1483 2014                                Natsume 0.0000000000
## 1484 2008                           Navarre Corp 0.0000000000
## 1485 2008                             Naxat Soft 0.0100000000
## 1486 1996                                    NCS 0.2000000000
## 1487 1997                                    NCS 0.1100000000
## 1488 1998                                    NCS 0.0900000000
## 1489 2005                                 NCSoft 0.0000000000
## 1490 2006                                 NCSoft 0.0000000000
## 1491 2012                                 NCSoft 0.0000000000
## 1492 2014                                 NCSoft 0.0000000000
## 1493 2002                        NDA Productions 0.0000000000
## 1494 1995                                    NEC 0.1400000000
## 1495 1996                                    NEC 0.1450000000
## 1496 1996                       NEC Interchannel 0.0600000000
## 1497 1997                       NEC Interchannel 0.1050000000
## 1498 1998                       NEC Interchannel 0.1650000000
## 1499 2000                       NEC Interchannel 0.0700000000
## 1500 2008                       NEC Interchannel 0.0400000000
## 1501 2007                     Neko Entertainment 0.0000000000
## 1502 2008                     Neko Entertainment 0.0000000000
## 1503 2009                     Neko Entertainment 0.0000000000
## 1504 2010                     Neko Entertainment 0.0000000000
## 1505 2010                                NetRevo 0.0200000000
## 1506 2012                                NetRevo 0.0100000000
## 1507 1995                                    New 0.3300000000
## 1508 1992                    New World Computing 0.0000000000
## 1509 1998                               NewKidCo 0.0000000000
## 1510 1999                               NewKidCo 0.0000000000
## 1511 2001                               NewKidCo 0.0000000000
## 1512 2002                               NewKidCo 0.0000000000
## 1513 2003                               NewKidCo 0.0000000000
## 1514 2010                                  Nexon 0.0300000000
## 1515 1995                             Nichibutsu 0.2800000000
## 1516 2012               Nihon Falcom Corporation 0.1200000000
## 1517 2014               Nihon Falcom Corporation 0.0600000000
## 1518 2015               Nihon Falcom Corporation 0.1500000000
## 1519 2016               Nihon Falcom Corporation 0.0433333333
## 1520 1983                               Nintendo 1.3500000000
## 1521 1984                               Nintendo 1.1511111111
## 1522 1985                               Nintendo 1.7171428571
## 1523 1986                               Nintendo 1.2416666667
## 1524 1987                               Nintendo 1.3650000000
## 1525 1988                               Nintendo 1.3550000000
## 1526 1989                               Nintendo 1.6733333333
## 1527 1990                               Nintendo 1.1542857143
## 1528 1991                               Nintendo 0.4784615385
## 1529 1992                               Nintendo 1.2660000000
## 1530 1993                               Nintendo 0.7766666667
## 1531 1994                               Nintendo 1.1250000000
## 1532 1995                               Nintendo 0.7450000000
## 1533 1996                               Nintendo 1.2435294118
## 1534 1997                               Nintendo 0.3253846154
## 1535 1998                               Nintendo 0.6658823529
## 1536 1999                               Nintendo 0.7940000000
## 1537 2000                               Nintendo 0.4578260870
## 1538 2001                               Nintendo 0.5068181818
## 1539 2002                               Nintendo 0.5409090909
## 1540 2003                               Nintendo 0.3648148148
## 1541 2004                               Nintendo 0.3064912281
## 1542 2005                               Nintendo 0.6555555556
## 1543 2006                               Nintendo 0.6932075472
## 1544 2007                               Nintendo 0.4757142857
## 1545 2008                               Nintendo 0.6237500000
## 1546 2009                               Nintendo 0.9318750000
## 1547 2010                               Nintendo 0.5821428571
## 1548 2011                               Nintendo 0.5165384615
## 1549 2012                               Nintendo 0.5987096774
## 1550 2013                               Nintendo 0.6256521739
## 1551 2014                               Nintendo 0.8060000000
## 1552 2015                               Nintendo 0.2678125000
## 1553 2016                               Nintendo 0.1170000000
## 1554  N/A                               Nintendo 0.0614285714
## 1555 2002                           Nippon Amuse 0.0900000000
## 1556 2012                        Nippon Columbia 0.2800000000
## 1557 2013                        Nippon Columbia 0.1150000000
## 1558 2014                        Nippon Columbia 0.1200000000
## 1559 2015                        Nippon Columbia 0.1400000000
## 1560 2016                        Nippon Columbia 0.0600000000
## 1561 1998                   Nippon Ichi Software 0.0000000000
## 1562 2007                   Nippon Ichi Software 0.0550000000
## 1563 2008                   Nippon Ichi Software 0.0540000000
## 1564 2009                   Nippon Ichi Software 0.0411111111
## 1565 2010                   Nippon Ichi Software 0.0555555556
## 1566 2011                   Nippon Ichi Software 0.0755555556
## 1567 2012                   Nippon Ichi Software 0.0480000000
## 1568 2013                   Nippon Ichi Software 0.0822222222
## 1569 2014                   Nippon Ichi Software 0.0568421053
## 1570 2015                   Nippon Ichi Software 0.0500000000
## 1571 2016                   Nippon Ichi Software 0.0250000000
## 1572  N/A                   Nippon Ichi Software 0.0700000000
## 1573 1996                         Nippon Telenet 0.1300000000
## 1574 2014                              Nitroplus 0.0100000000
## 1575 2015                              Nitroplus 0.0100000000
## 1576 2007                                Nobilis 0.0050000000
## 1577 2008                                Nobilis 0.0014285714
## 1578 2009                                Nobilis 0.0000000000
## 1579 2010                                Nobilis 0.0000000000
## 1580 2007                            Nordcurrent 0.0000000000
## 1581 2008                            Nordcurrent 0.0000000000
## 1582 2009                            Nordcurrent 0.0000000000
## 1583 2010                            Nordcurrent 0.0000000000
## 1584 2008                           Nordic Games 0.0000000000
## 1585 2009                           Nordic Games 0.0000000000
## 1586 2010                           Nordic Games 0.0000000000
## 1587 2011                           Nordic Games 0.0000000000
## 1588 2012                           Nordic Games 0.0000000000
## 1589 2013                           Nordic Games 0.0000000000
## 1590 2014                           Nordic Games 0.0000000000
## 1591 2015                           Nordic Games 0.0000000000
## 1592 2016                           Nordic Games 0.0000000000
## 1593 2005                              NovaLogic 0.0000000000
## 1594 2009                              NovaLogic 0.0000000000
## 1595 2009                            Number None 0.0000000000
## 1596 2009                                O-Games 0.0000000000
## 1597 2010                                O-Games 0.0000000000
## 1598 2011                                O-Games 0.0000000000
## 1599 2004                       O3 Entertainment 0.0000000000
## 1600 2006                       O3 Entertainment 0.0000000000
## 1601 2007                       O3 Entertainment 0.0000000000
## 1602 1992                                  Ocean 0.2800000000
## 1603 1993                                  Ocean 0.0000000000
## 1604 1995                                  Ocean 0.0600000000
## 1605 1996                                  Ocean 0.0000000000
## 1606 1997                                  Ocean 0.0066666667
## 1607 1998                                  Ocean 0.0000000000
## 1608 2013                          Office Create 0.0300000000
## 1609 2014                          Office Create 0.0300000000
## 1610 1997                              On Demand 0.0000000000
## 1611 2006                              Ongakukan 0.0100000000
## 1612 1997                         Origin Systems 0.0000000000
## 1613 2013                                Otomate 0.0100000000
## 1614 2005                     Oxygen Interactive 0.0000000000
## 1615 2006                     Oxygen Interactive 0.0000000000
## 1616 2007                     Oxygen Interactive 0.0000000000
## 1617 2008                     Oxygen Interactive 0.0000000000
## 1618 2009                     Oxygen Interactive 0.0000000000
## 1619  N/A                     Oxygen Interactive 0.0000000000
## 1620 2009                               P2 Games 0.0000000000
## 1621 2011                               P2 Games 0.0000000000
## 1622 2002            Pacific Century Cyber Works 0.0300000000
## 1623 1995                          Pack-In-Video 0.0550000000
## 1624 1999                           Pack In Soft 0.1100000000
## 1625 1989                                 Palcom 0.3100000000
## 1626 1995                       Panther Software 0.1200000000
## 1627 2007                                   Paon 0.0700000000
## 1628 2008                                   Paon 0.0350000000
## 1629 2010                                   Paon 0.0200000000
## 1630 2011                                   Paon 0.0200000000
## 1631 2013                       Paon Corporation 0.0300000000
## 1632 2016                    Paradox Development 0.0000000000
## 1633 2007                    Paradox Interactive 0.0000000000
## 1634 2008                    Paradox Interactive 0.0000000000
## 1635 2009                    Paradox Interactive 0.0000000000
## 1636 2010                    Paradox Interactive 0.0000000000
## 1637 2011                    Paradox Interactive 0.0000000000
## 1638 2012                    Paradox Interactive 0.0000000000
## 1639 2014                    Paradox Interactive 0.0000000000
## 1640 2015                    Paradox Interactive 0.0000000000
## 1641 2016                    Paradox Interactive 0.0000000000
## 1642 1981                           Parker Bros. 0.0000000000
## 1643 1982                           Parker Bros. 0.0000000000
## 1644 1983                           Parker Bros. 0.0000000000
## 1645 2009          Performance Designed Products 0.0000000000
## 1646 2002                             Phantagram 0.0100000000
## 1647 2009                            Phantom EFX 0.0000000000
## 1648 2007                             Phenomedia 0.0000000000
## 1649 2008                             Phenomedia 0.0000000000
## 1650 2009                             Phenomedia 0.0000000000
## 1651 2007                          Phoenix Games 0.0000000000
## 1652 2010                                 Piacci 0.0100000000
## 1653 2008                               Pinnacle 0.0000000000
## 1654 2009                               Pinnacle 0.0000000000
## 1655 1996                            Pioneer LDC 0.1000000000
## 1656 1998                            Pioneer LDC 0.0700000000
## 1657 2001                            Pioneer LDC 0.0500000000
## 1658 2002                                Play It 0.0000000000
## 1659 2003                                Play It 0.0000000000
## 1660 2004                                Play It 0.0000000000
## 1661 2005                                Play It 0.0000000000
## 1662 2005                 Playlogic Game Factory 0.0000000000
## 1663 2008                 Playlogic Game Factory 0.0000000000
## 1664 2009                 Playlogic Game Factory 0.0000000000
## 1665 1997                              Playmates 0.0000000000
## 1666 2002                               Playmore 0.0400000000
## 1667 2009                                  PlayV 0.0000000000
## 1668 2010                                  PlayV 0.0000000000
## 1669 2011                                 Plenty 0.0200000000
## 1670 2009                             PM Studios 0.0000000000
## 1671 2000                            Pony Canyon 0.0000000000
## 1672 2006                           PopCap Games 0.0000000000
## 1673 2007                           PopCap Games 0.0000000000
## 1674 2008                           PopCap Games 0.0000000000
## 1675 2009                           PopCap Games 0.0000000000
## 1676 2010                           PopCap Games 0.0000000000
## 1677 2011                           PopCap Games 0.0000000000
## 1678 2007                         Popcorn Arcade 0.0000000000
## 1679 2008                         Popcorn Arcade 0.0000000000
## 1680 1999                        PopTop Software 0.0000000000
## 1681 1995                                    Pow 0.0500000000
## 1682 2007                                  PQube 0.0250000000
## 1683 2008                                  PQube 0.0200000000
## 1684 2009                                  PQube 0.0250000000
## 1685 2010                                  PQube 0.0316666667
## 1686 2011                                  PQube 0.0340000000
## 1687 2012                                  PQube 0.0200000000
## 1688 2013                                  PQube 0.0000000000
## 1689 2015                                  PQube 0.0300000000
## 1690 2016                                  PQube 0.0140000000
## 1691 2002                          Princess Soft 0.0200000000
## 1692 2006                          Princess Soft 0.0300000000
## 1693 2008                          Princess Soft 0.0200000000
## 1694 2007                              Prototype 0.0180000000
## 1695 2008                              Prototype 0.0266666667
## 1696 2009                              Prototype 0.0260000000
## 1697 2010                              Prototype 0.0275000000
## 1698 2011                              Prototype 0.0200000000
## 1699 2012                              Prototype 0.0350000000
## 1700 2013                              Prototype 0.0100000000
## 1701 2014                              Prototype 0.0166666667
## 1702 2015                              Prototype 0.0200000000
## 1703 2016                              Prototype 0.0100000000
## 1704 1994                              Psygnosis 0.0000000000
## 1705 1995                              Psygnosis 0.0100000000
## 1706 1996                              Psygnosis 0.0600000000
## 1707 1997                              Psygnosis 0.0255555556
## 1708 1998                              Psygnosis 0.0000000000
## 1709 1999                              Psygnosis 0.0000000000
## 1710 2000                              Psygnosis 0.0000000000
## 1711 1982                                 Quelle 0.0000000000
## 1712 1995                                  Quest 0.7100000000
## 1713 2011                               Quinrose 0.0200000000
## 1714 2012                               Quinrose 0.0150000000
## 1715 2013                               Quinrose 0.0100000000
## 1716 2014                               Quinrose 0.0100000000
## 1717 1998                                Quintet 0.0200000000
## 1718 2001                          Rage Software 0.0000000000
## 1719 2002                          Rage Software 0.0000000000
## 1720 2015                             Rain Games 0.0000000000
## 1721 2001                              Rebellion 0.0000000000
## 1722 2002                              Rebellion 0.0000000000
## 1723 2015                 Rebellion Developments 0.0000000000
## 1724 2010                      RED Entertainment 0.0200000000
## 1725 1994                                Red Orb 0.0000000000
## 1726 1997                                Red Orb 0.0000000000
## 1727 1999                Red Storm Entertainment 0.0000000000
## 1728 2001                Red Storm Entertainment 0.0000000000
## 1729 2005                              RedOctane 0.0150000000
## 1730 2006                              RedOctane 0.0000000000
## 1731 2007                              RedOctane 0.0000000000
## 1732 2009                     Reef Entertainment 0.0000000000
## 1733 2010                     Reef Entertainment 0.0000000000
## 1734 2012                     Reef Entertainment 0.0000000000
## 1735 2004                           responDESIGN 0.0000000000
## 1736 2005                           responDESIGN 0.0000000000
## 1737 2009                     Revolution (Japan) 0.0200000000
## 1738 2015                    Revolution Software 0.0000000000
## 1739 2005                      Rising Star Games 0.0185714286
## 1740 2006                      Rising Star Games 0.0400000000
## 1741 2007                      Rising Star Games 0.0294736842
## 1742 2008                      Rising Star Games 0.0470588235
## 1743 2009                      Rising Star Games 0.0400000000
## 1744 2010                      Rising Star Games 0.0066666667
## 1745 2011                      Rising Star Games 0.0055555556
## 1746 2012                      Rising Star Games 0.0000000000
## 1747 2013                      Rising Star Games 0.0233333333
## 1748 2016                      Rising Star Games 0.0000000000
## 1749  N/A                      Rising Star Games 0.0400000000
## 1750 1995                          Riverhillsoft 0.0400000000
## 1751 2006                         Rocket Company 0.3450000000
## 1752 2007                         Rocket Company 0.1466666667
## 1753 2008                         Rocket Company 0.0100000000
## 1754 2009                         Rocket Company 0.0600000000
## 1755 2010                         Rocket Company 0.0750000000
## 1756 2011                         Rocket Company 0.0700000000
## 1757 2012                         Rocket Company 0.1300000000
## 1758 2013                         Rocket Company 0.0800000000
## 1759 2014                         Rocket Company 0.0700000000
## 1760 2015                         Rocket Company 0.0300000000
## 1761 2016                         Rocket Company 0.0300000000
## 1762 2008                             Rondomedia 0.0000000000
## 1763 2009                             Rondomedia 0.0000000000
## 1764 2010                             Rondomedia 0.0000000000
## 1765 2011                             Rondomedia 0.0000000000
## 1766 2015                             Rondomedia 0.0000000000
## 1767 2007                                    RTL 0.0000000000
## 1768 2008                                    RTL 0.0000000000
## 1769 2009                                    RTL 0.0000000000
## 1770 2007                                 Russel 0.0000000000
## 1771 2008                                 Russel 0.0100000000
## 1772 2009                                 Russel 0.0300000000
## 1773 2010                                 Russel 0.0166666667
## 1774 1993                      Sammy Corporation 0.1900000000
## 1775 2001                      Sammy Corporation 0.0000000000
## 1776 2002                      Sammy Corporation 0.1280000000
## 1777 2003                      Sammy Corporation 0.0000000000
## 1778 2004                      Sammy Corporation 1.0000000000
## 1779 2006                      Sammy Corporation 0.0800000000
## 1780 1998                                 Saurus 0.0000000000
## 1781 2007                        Scholastic Inc. 0.0000000000
## 1782 2008                        Scholastic Inc. 0.0000000000
## 1783 2010                        Scholastic Inc. 0.0000000000
## 1784 2011                        Scholastic Inc. 0.0000000000
## 1785 2002                                    SCi 0.0000000000
## 1786 2003                                    SCi 0.0000000000
## 1787 2004                                    SCi 0.0000000000
## 1788 2005                                    SCi 0.0000000000
## 1789 2013                             Screenlife 0.1425000000
## 1790 2015                             Screenlife 0.0700000000
## 1791 2016                             Screenlife 0.0200000000
## 1792 2012                           SCS Software 0.0000000000
## 1793  N/A                                  Sears 0.0000000000
## 1794 1982                                   Sega 0.0000000000
## 1795 1990                                   Sega 0.1100000000
## 1796 1991                                   Sega 0.2600000000
## 1797 1992                                   Sega 0.1520000000
## 1798 1993                                   Sega 0.0866666667
## 1799 1994                                   Sega 0.1488461538
## 1800 1995                                   Sega 0.2559259259
## 1801 1996                                   Sega 0.2860000000
## 1802 1997                                   Sega 0.1945454545
## 1803 1998                                   Sega 0.1878571429
## 1804 1999                                   Sega 0.2622222222
## 1805 2000                                   Sega 0.1000000000
## 1806 2001                                   Sega 0.1433333333
## 1807 2002                                   Sega 0.0461538462
## 1808 2003                                   Sega 0.0453125000
## 1809 2004                                   Sega 0.0164285714
## 1810 2005                                   Sega 0.0790322581
## 1811 2006                                   Sega 0.0936170213
## 1812 2007                                   Sega 0.0442000000
## 1813 2008                                   Sega 0.0513432836
## 1814 2009                                   Sega 0.0776744186
## 1815 2010                                   Sega 0.0505128205
## 1816 2011                                   Sega 0.0631428571
## 1817 2012                                   Sega 0.0912000000
## 1818 2013                                   Sega 0.0664705882
## 1819 2014                                   Sega 0.0678260870
## 1820 2015                                   Sega 0.0760000000
## 1821 2016                                   Sega 0.0562500000
## 1822 2017                                   Sega 0.0200000000
## 1823  N/A                                   Sega 0.1200000000
## 1824 1995                       Seta Corporation 0.0825000000
## 1825 1996                       Seta Corporation 0.1300000000
## 1826 2013                          Seventh Chord 0.0800000000
## 1827 1995                             Shogakukan 0.0550000000
## 1828 2006                             Shogakukan 0.2000000000
## 1829 2007                             Shogakukan 0.1000000000
## 1830 2015                             Shogakukan 0.0300000000
## 1831 2002           Simon & Schuster Interactive 0.0000000000
## 1832 2015                   Slightly Mad Studios 0.0066666667
## 1833 2009                    Slitherine Software 0.0000000000
## 1834 2010                    Slitherine Software 0.0000000000
## 1835  N/A                    Slitherine Software 0.0000000000
## 1836 1993                                    SNK 0.1050000000
## 1837 1994                                    SNK 0.2000000000
## 1838 1995                                    SNK 0.1400000000
## 1839 1996                                    SNK 0.0920000000
## 1840 1997                                    SNK 0.0700000000
## 1841 1998                                    SNK 0.1266666667
## 1842 1999                                    SNK 0.0500000000
## 1843 2000                                    SNK 0.0900000000
## 1844 2005                                    SNK 0.0000000000
## 1845 1995                           SNK Playmore 0.2800000000
## 1846 1998                           SNK Playmore 0.0400000000
## 1847 1999                           SNK Playmore 0.0000000000
## 1848 2005                           SNK Playmore 0.0000000000
## 1849 2006                           SNK Playmore 0.0000000000
## 1850 2007                           SNK Playmore 0.0250000000
## 1851 2008                           SNK Playmore 0.0200000000
## 1852 2009                           SNK Playmore 0.0300000000
## 1853 2010                           SNK Playmore 0.0200000000
## 1854 1996                                Societa 0.0400000000
## 1855 2016                               Sold Out 0.0000000000
## 1856 1995                                 Sonnet 0.0400000000
## 1857 1996                                 Sonnet 0.0200000000
## 1858 1994            Sony Computer Entertainment 0.2571428571
## 1859 1995            Sony Computer Entertainment 0.1874193548
## 1860 1996            Sony Computer Entertainment 0.3267857143
## 1861 1997            Sony Computer Entertainment 0.3720588235
## 1862 1998            Sony Computer Entertainment 0.2106666667
## 1863 1999            Sony Computer Entertainment 0.2692000000
## 1864 2000            Sony Computer Entertainment 0.0487500000
## 1865 2001            Sony Computer Entertainment 0.1705263158
## 1866 2002            Sony Computer Entertainment 0.1210000000
## 1867 2003            Sony Computer Entertainment 0.0478125000
## 1868 2004            Sony Computer Entertainment 0.0870000000
## 1869 2005            Sony Computer Entertainment 0.0308333333
## 1870 2006            Sony Computer Entertainment 0.0419607843
## 1871 2007            Sony Computer Entertainment 0.0612195122
## 1872 2008            Sony Computer Entertainment 0.0335135135
## 1873 2009            Sony Computer Entertainment 0.0306666667
## 1874 2010            Sony Computer Entertainment 0.0530232558
## 1875 2011            Sony Computer Entertainment 0.0469444444
## 1876 2012            Sony Computer Entertainment 0.0341666667
## 1877 2013            Sony Computer Entertainment 0.0700000000
## 1878 2014            Sony Computer Entertainment 0.0600000000
## 1879 2015            Sony Computer Entertainment 0.0450000000
## 1880 2016            Sony Computer Entertainment 0.0440000000
## 1881  N/A            Sony Computer Entertainment 0.0000000000
## 1882 2014    Sony Computer Entertainment America 0.0000000000
## 1883 2001     Sony Computer Entertainment Europe 0.3800000000
## 1884 2004     Sony Computer Entertainment Europe 0.3200000000
## 1885 2012     Sony Computer Entertainment Europe 0.0000000000
## 1886 2013     Sony Computer Entertainment Europe 0.1085714286
## 1887 2014     Sony Computer Entertainment Europe 0.2475000000
## 1888 2015     Sony Computer Entertainment Europe 0.0500000000
## 1889 2001               Sony Music Entertainment 0.1400000000
## 1890 2003              Sony Online Entertainment 0.0000000000
## 1891 2004              Sony Online Entertainment 0.0000000000
## 1892 2005              Sony Online Entertainment 0.0000000000
## 1893 2006              Sony Online Entertainment 0.0000000000
## 1894 2011              Sony Online Entertainment 0.0000000000
## 1895 1999                        SouthPeak Games 0.0000000000
## 1896 2004                        SouthPeak Games 0.0000000000
## 1897 2005                        SouthPeak Games 0.0000000000
## 1898 2006                        SouthPeak Games 0.0000000000
## 1899 2007                        SouthPeak Games 0.0000000000
## 1900 2008                        SouthPeak Games 0.0000000000
## 1901 2009                        SouthPeak Games 0.0053846154
## 1902 2010                        SouthPeak Games 0.0000000000
## 1903 2001                                  Spike 0.0000000000
## 1904 2002                                  Spike 0.1200000000
## 1905 2004                                  Spike 0.0800000000
## 1906 2006                                  Spike 0.0825000000
## 1907 2007                                  Spike 0.0237500000
## 1908 2008                                  Spike 0.0800000000
## 1909 2009                                  Spike 0.0137500000
## 1910 2010                                  Spike 0.0925000000
## 1911 2011                                  Spike 0.0950000000
## 1912 2012                                  Spike 0.1025000000
## 1913 1996                                    SPS 0.0000000000
## 1914 1991                                 Square 1.3300000000
## 1915 1994                                 Square 0.1100000000
## 1916 1997                                 Square 0.5900000000
## 1917 1999                                 Square 0.2850000000
## 1918 2001                                 Square 0.0000000000
## 1919 1999                              Square EA 0.0000000000
## 1920 2003                            Square Enix 0.2383333333
## 1921 2004                            Square Enix 0.7533333333
## 1922 2005                            Square Enix 0.4833333333
## 1923 2006                            Square Enix 0.5641666667
## 1924 2007                            Square Enix 0.2743478261
## 1925 2008                            Square Enix 0.1645833333
## 1926 2009                            Square Enix 0.2033333333
## 1927 2010                            Square Enix 0.1632000000
## 1928 2011                            Square Enix 0.1586363636
## 1929 2012                            Square Enix 0.2445454545
## 1930 2013                            Square Enix 0.2268750000
## 1931 2014                            Square Enix 0.0723076923
## 1932 2015                            Square Enix 0.1406250000
## 1933 2016                            Square Enix 0.1115000000
## 1934  N/A                            Square Enix 0.0450000000
## 1935 1987                             SquareSoft 0.5200000000
## 1936 1988                             SquareSoft 0.7600000000
## 1937 1989                             SquareSoft 1.1000000000
## 1938 1990                             SquareSoft 1.3900000000
## 1939 1991                             SquareSoft 0.5700000000
## 1940 1992                             SquareSoft 1.7000000000
## 1941 1993                             SquareSoft 1.3300000000
## 1942 1994                             SquareSoft 1.4350000000
## 1943 1995                             SquareSoft 1.2000000000
## 1944 1996                             SquareSoft 0.3025000000
## 1945 1997                             SquareSoft 0.6175000000
## 1946 1998                             SquareSoft 0.4600000000
## 1947 1999                             SquareSoft 0.7962500000
## 1948 2000                             SquareSoft 1.0075000000
## 1949 2001                             SquareSoft 0.2500000000
## 1950 2002                             SquareSoft 0.0600000000
## 1951 2003                             SquareSoft 0.8900000000
## 1952 1996                                    SSI 0.0000000000
## 1953 2016                        Stainless Games 0.0000000000
## 1954 1997                               Starfish 0.0000000000
## 1955 1999                               Starfish 0.0000000000
## 1956 2001                               Starfish 0.0000000000
## 1957 2007                               Starfish 0.0000000000
## 1958 2009                               Starfish 0.0200000000
## 1959 2010                               Starfish 0.0200000000
## 1960 2011                               Starfish 0.0200000000
## 1961 2012                               Starfish 0.0200000000
## 1962 1981                         Starpath Corp. 0.0000000000
## 1963 2004                                  Sting 0.0000000000
## 1964 2006                                  Sting 0.0300000000
## 1965 2007                                  Sting 0.0200000000
## 1966 2008                                  Sting 0.0140000000
## 1967 2010                                  Sting 0.0300000000
## 1968 2009                       Storm City Games 0.0000000000
## 1969 2010                       Storm City Games 0.0000000000
## 1970 2011                       Storm City Games 0.0000000000
## 1971 2001                         Strategy First 0.0000000000
## 1972 1998                                Success 0.0000000000
## 1973 1999                                Success 0.0000000000
## 1974 2000                                Success 0.0000000000
## 1975 2001                                Success 0.0000000000
## 1976 2002                                Success 0.0300000000
## 1977 2005                                Success 0.0200000000
## 1978 2006                                Success 0.0300000000
## 1979 2007                                Success 0.0020000000
## 1980 2008                                Success 0.0066666667
## 1981 2009                                Success 0.0100000000
## 1982 2013                                Success 0.0700000000
## 1983 2014                                Success 0.0100000000
## 1984 2004                             Summitsoft 0.0000000000
## 1985 2004                             Sunflowers 0.0000000000
## 1986 2000                    Sunrise Interactive 0.0650000000
## 1987 2006                    Sunrise Interactive 0.0200000000
## 1988 2007                    Sunrise Interactive 0.0200000000
## 1989 1994                                Sunsoft 0.0400000000
## 1990 1995                                Sunsoft 0.0300000000
## 1991 1996                                Sunsoft 0.0000000000
## 1992 1997                                Sunsoft 0.0000000000
## 1993 1998                                Sunsoft 0.0000000000
## 1994 1999                                Sunsoft 0.0000000000
## 1995 2000                                Sunsoft 0.0000000000
## 1996 2011                                Sunsoft 0.0200000000
## 1997 2006                                 Sweets 0.0200000000
## 1998 2009                                 Sweets 0.0300000000
## 1999 1998                   Swing! Entertainment 0.0000000000
## 2000 2000                   Swing! Entertainment 0.0000000000
## 2001 2001                   Swing! Entertainment 0.0000000000
## 2002 2002                   Swing! Entertainment 0.0000000000
## 2003 1998                                 Syscom 0.1500000000
## 2004 1999                                 Syscom 0.0000000000
## 2005 2013                               System 3 0.0000000000
## 2006 2006               System 3 Arcade Software 0.0000000000
## 2007 2007               System 3 Arcade Software 0.0000000000
## 2008 2008               System 3 Arcade Software 0.0000000000
## 2009 2009               System 3 Arcade Software 0.0000000000
## 2010  N/A               System 3 Arcade Software 0.0000000000
## 2011 2008                            System Soft 0.0200000000
## 2012 2010                            System Soft 0.0100000000
## 2013 2011                            System Soft 0.0100000000
## 2014 1993                               T&E Soft 0.1200000000
## 2015 1981                                  Taito 0.0000000000
## 2016 1994                                  Taito 0.4600000000
## 2017 1995                                  Taito 0.0300000000
## 2018 1997                                  Taito 1.0200000000
## 2019 1999                                  Taito 0.2150000000
## 2020 2001                                  Taito 0.0600000000
## 2021 2002                                  Taito 0.0000000000
## 2022 2003                                  Taito 0.0000000000
## 2023 2006                                  Taito 0.0300000000
## 2024 2007                                  Taito 0.0100000000
## 2025 2010                                  Taito 0.0100000000
## 2026 1992                                 Takara 0.3900000000
## 2027 1993                                 Takara 0.4500000000
## 2028 1994                                 Takara 0.4800000000
## 2029 1995                                 Takara 0.0500000000
## 2030 1996                                 Takara 0.2700000000
## 2031 1997                                 Takara 0.2700000000
## 2032 1998                                 Takara 0.1450000000
## 2033 1999                                 Takara 0.0500000000
## 2034 2001                                 Takara 0.0300000000
## 2035 2002                                 Takara 0.0200000000
## 2036 2003                                 Takara 0.0400000000
## 2037 2006                            Takara Tomy 0.0366666667
## 2038 2007                            Takara Tomy 0.0512500000
## 2039 2008                            Takara Tomy 0.0500000000
## 2040 2009                            Takara Tomy 0.0400000000
## 2041 2010                            Takara Tomy 0.0475000000
## 2042 2011                            Takara Tomy 0.0200000000
## 2043 2013                            Takara Tomy 0.0800000000
## 2044 2015                            Takara Tomy 0.1100000000
## 2045 1997                   Take-Two Interactive 0.0133333333
## 2046 1998                   Take-Two Interactive 0.0000000000
## 2047 1999                   Take-Two Interactive 0.0000000000
## 2048 2000                   Take-Two Interactive 0.0033333333
## 2049 2001                   Take-Two Interactive 0.0291666667
## 2050 2002                   Take-Two Interactive 0.0612500000
## 2051 2003                   Take-Two Interactive 0.0000000000
## 2052 2004                   Take-Two Interactive 0.0341666667
## 2053 2005                   Take-Two Interactive 0.0058536585
## 2054 2006                   Take-Two Interactive 0.0121212121
## 2055 2007                   Take-Two Interactive 0.0037837838
## 2056 2008                   Take-Two Interactive 0.0173170732
## 2057 2009                   Take-Two Interactive 0.0036585366
## 2058 2010                   Take-Two Interactive 0.0168571429
## 2059 2011                   Take-Two Interactive 0.0064516129
## 2060 2012                   Take-Two Interactive 0.0110714286
## 2061 2013                   Take-Two Interactive 0.0712500000
## 2062 2014                   Take-Two Interactive 0.0306666667
## 2063 2015                   Take-Two Interactive 0.0094117647
## 2064 2016                   Take-Two Interactive 0.0016666667
## 2065  N/A                   Take-Two Interactive 0.0000000000
## 2066 2011                                 Takuyo 0.0100000000
## 2067 2001                              TalonSoft 0.0000000000
## 2068 2000                               TDK Core 0.0000000000
## 2069 2002                               TDK Core 0.0000000000
## 2070 2006                               TDK Core 0.1100000000
## 2071 2007                               TDK Core 0.0300000000
## 2072 2001                         TDK Mediactive 0.0000000000
## 2073 2002                         TDK Mediactive 0.0000000000
## 2074 2003                         TDK Mediactive 0.0000000000
## 2075 2004                         TDK Mediactive 0.0000000000
## 2076 2010                        Team17 Software 0.0000000000
## 2077 1995              Technos Japan Corporation 0.0200000000
## 2078 1998                             TechnoSoft 0.0000000000
## 2079 1991                             Tecmo Koei 0.2650000000
## 2080 1992                             Tecmo Koei 0.2900000000
## 2081 1993                             Tecmo Koei 0.4250000000
## 2082 1994                             Tecmo Koei 0.5300000000
## 2083 1995                             Tecmo Koei 0.1500000000
## 2084 1996                             Tecmo Koei 0.1125000000
## 2085 1997                             Tecmo Koei 0.3200000000
## 2086 1998                             Tecmo Koei 0.0775000000
## 2087 1999                             Tecmo Koei 0.1020000000
## 2088 2000                             Tecmo Koei 0.0940000000
## 2089 2001                             Tecmo Koei 0.0825000000
## 2090 2002                             Tecmo Koei 0.1181818182
## 2091 2003                             Tecmo Koei 0.2133333333
## 2092 2004                             Tecmo Koei 0.0946153846
## 2093 2005                             Tecmo Koei 0.1223076923
## 2094 2006                             Tecmo Koei 0.0626923077
## 2095 2007                             Tecmo Koei 0.0938709677
## 2096 2008                             Tecmo Koei 0.0576666667
## 2097 2009                             Tecmo Koei 0.0504761905
## 2098 2010                             Tecmo Koei 0.0689473684
## 2099 2011                             Tecmo Koei 0.0935294118
## 2100 2012                             Tecmo Koei 0.0970000000
## 2101 2013                             Tecmo Koei 0.0931578947
## 2102 2014                             Tecmo Koei 0.0585185185
## 2103 2015                             Tecmo Koei 0.0391428571
## 2104 2016                             Tecmo Koei 0.0458823529
## 2105 1999                              Telegames 0.0000000000
## 2106 2003                              Telegames 0.0000000000
## 2107 2005                              Telegames 0.0000000000
## 2108 2007                              Telegames 0.0000000000
## 2109 2008                              Telegames 0.0000000000
## 2110 2010                              Telegames 0.0000000000
## 2111 2011                         Telltale Games 0.0000000000
## 2112 2014                         Telltale Games 0.0027272727
## 2113 2015                         Telltale Games 0.0000000000
## 2114 2016                         Telltale Games 0.0000000000
## 2115 1995                                Telstar 0.0000000000
## 2116 1998                                Telstar 0.0000000000
## 2117 2011                          Tetris Online 0.0600000000
## 2118 2009                                    TGL 0.0100000000
## 2119 2015                                    TGL 0.0300000000
## 2120 2008                  The Adventure Company 0.0000000000
## 2121 2009                  The Adventure Company 0.0000000000
## 2122 2000                   The Learning Company 0.0000000000
## 2123 1995                                    THQ 0.2800000000
## 2124 1997                                    THQ 0.0100000000
## 2125 1998                                    THQ 0.1127272727
## 2126 1999                                    THQ 0.0025000000
## 2127 2000                                    THQ 0.0326666667
## 2128 2001                                    THQ 0.0372222222
## 2129 2002                                    THQ 0.0032727273
## 2130 2003                                    THQ 0.0020312500
## 2131 2004                                    THQ 0.0032653061
## 2132 2005                                    THQ 0.0007936508
## 2133 2006                                    THQ 0.0008771930
## 2134 2007                                    THQ 0.0005405405
## 2135 2008                                    THQ 0.0009836066
## 2136 2009                                    THQ 0.0009722222
## 2137 2010                                    THQ 0.0012280702
## 2138 2011                                    THQ 0.0063157895
## 2139 2012                                    THQ 0.0050000000
## 2140 2013                                    THQ 0.0000000000
## 2141  N/A                                    THQ 0.0000000000
## 2142 1981                            Tigervision 0.0000000000
## 2143 1982                            Tigervision 0.0000000000
## 2144 1994                Time Warner Interactive 0.0000000000
## 2145 1995                Time Warner Interactive 0.0000000000
## 2146 1996                Time Warner Interactive 0.0000000000
## 2147 1993                                  Titus 0.0700000000
## 2148 1997                                  Titus 0.0000000000
## 2149 1998                                  Titus 0.0000000000
## 2150 1999                                  Titus 0.0000000000
## 2151 2000                                  Titus 0.0000000000
## 2152 2001                                  Titus 0.0000000000
## 2153 2002                                  Titus 0.0000000000
## 2154 2003                                  Titus 0.0000000000
## 2155 2008                                 Tivola 0.0000000000
## 2156 2009                                 Tivola 0.0000000000
## 2157 1993                                   TOHO 0.1100000000
## 2158 2007                                  Tommo 0.0000000000
## 2159 2009                                  Tommo 0.0000000000
## 2160 2011                                  Tommo 0.0000000000
## 2161 1995                       Tomy Corporation 0.3000000000
## 2162 1996                       Tomy Corporation 0.1300000000
## 2163 1998                       Tomy Corporation 0.2100000000
## 2164 2003                       Tomy Corporation 0.0420000000
## 2165 2004                       Tomy Corporation 0.4300000000
## 2166 2005                       Tomy Corporation 0.2300000000
## 2167 2006                       Tomy Corporation 0.0200000000
## 2168 2007                       Tomy Corporation 0.0000000000
## 2169 2008                       Tomy Corporation 0.0000000000
## 2170 2009                       Tomy Corporation 0.0000000000
## 2171 2010                       Tomy Corporation 0.0000000000
## 2172 2011                    TopWare Interactive 0.0000000000
## 2173 2015                    TopWare Interactive 0.0000000000
## 2174  N/A                    TopWare Interactive 0.0000000000
## 2175 2007                             Touchstone 0.0000000000
## 2176 2008                             Touchstone 0.0066666667
## 2177 2010                              Tradewest 0.0000000000
## 2178 2012                           Trion Worlds 0.0000000000
## 2179 2013                           Trion Worlds 0.0000000000
## 2180 2011                   Tripwire Interactive 0.0000000000
## 2181 2014                  Tru Blu Entertainment 0.0000000000
## 2182 2015                  Tru Blu Entertainment 0.0000000000
## 2183 2008                               Tryfirst 0.0300000000
## 2184 1998                                    TYO 0.0000000000
## 2185 2014                              Type-Moon 0.1000000000
## 2186 1995                              U.S. Gold 0.0000000000
## 2187 1996                              U.S. Gold 0.0000000000
## 2188 1995                                Ubisoft 0.0000000000
## 2189 1996                                Ubisoft 0.0000000000
## 2190 1997                                Ubisoft 0.0000000000
## 2191 1998                                Ubisoft 0.0000000000
## 2192 1999                                Ubisoft 0.0184615385
## 2193 2000                                Ubisoft 0.0352380952
## 2194 2001                                Ubisoft 0.0056000000
## 2195 2002                                Ubisoft 0.0072727273
## 2196 2003                                Ubisoft 0.0140425532
## 2197 2004                                Ubisoft 0.0000000000
## 2198 2005                                Ubisoft 0.0049122807
## 2199 2006                                Ubisoft 0.0101639344
## 2200 2007                                Ubisoft 0.0055681818
## 2201 2008                                Ubisoft 0.0060714286
## 2202 2009                                Ubisoft 0.0046078431
## 2203 2010                                Ubisoft 0.0040277778
## 2204 2011                                Ubisoft 0.0049425287
## 2205 2012                                Ubisoft 0.0168750000
## 2206 2013                                Ubisoft 0.0120689655
## 2207 2014                                Ubisoft 0.0147727273
## 2208 2015                                Ubisoft 0.0059375000
## 2209 2016                                Ubisoft 0.0184615385
## 2210 2020                                Ubisoft 0.0000000000
## 2211  N/A                                Ubisoft 0.0566666667
## 2212 2009                         Ubisoft Annecy 0.1733333333
## 2213 2010                         Ubisoft Annecy 0.1775000000
## 2214 2011                         Ubisoft Annecy 0.2233333333
## 2215 2012                         Ubisoft Annecy 0.0950000000
## 2216 1997                            UEP Systems 0.2000000000
## 2217 2007                        UFO Interactive 0.0000000000
## 2218 2008                        UFO Interactive 0.0000000000
## 2219 2009                        UFO Interactive 0.0000000000
## 2220 2010                        UFO Interactive 0.0000000000
## 2221 2011                        UFO Interactive 0.0000000000
## 2222 2012                        UFO Interactive 0.0000000000
## 2223 2016                      UIG Entertainment 0.0000000000
## 2224  N/A                            Ultravision 0.0000000000
## 2225 1982                        Universal Gamex 0.0000000000
## 2226 2001                  Universal Interactive 0.1200000000
## 2227 2002                  Universal Interactive 0.0000000000
## 2228 2003                  Universal Interactive 0.0000000000
## 2229  N/A                  Universal Interactive 0.0000000000
## 2230 1981                                Unknown 0.0000000000
## 2231 1998                                Unknown 0.0000000000
## 2232 2001                                Unknown 0.1400000000
## 2233 2002                                Unknown 0.0200000000
## 2234 2003                                Unknown 0.0000000000
## 2235 2004                                Unknown 0.0000000000
## 2236 2005                                Unknown 0.0000000000
## 2237 2006                                Unknown 0.0100000000
## 2238 2007                                Unknown 0.0766666667
## 2239 2008                                Unknown 0.0400000000
## 2240 2009                                Unknown 0.0000000000
## 2241 2010                                Unknown 0.0427777778
## 2242 2011                                Unknown 0.0314285714
## 2243 2012                                Unknown 0.0366666667
## 2244 2013                                Unknown 0.0000000000
## 2245 2014                                Unknown 0.0000000000
## 2246 2015                                Unknown 0.0066666667
## 2247 2016                                Unknown 0.0400000000
## 2248  N/A                                Unknown 0.0266019417
## 2249 2005                           Valcon Games 0.0000000000
## 2250 2006                           Valcon Games 0.0000000000
## 2251 2008                           Valcon Games 0.0000000000
## 2252 2009                           Valcon Games 0.0000000000
## 2253 2010                           Valcon Games 0.0000000000
## 2254 2005                               ValuSoft 0.0000000000
## 2255 2008                               ValuSoft 0.0000000000
## 2256 2009                               ValuSoft 0.0000000000
## 2257 2011                               ValuSoft 0.0000000000
## 2258 2011                                  Valve 0.0200000000
## 2259 2009                         Valve Software 0.0000000000
## 2260 2011                         Valve Software 0.0050000000
## 2261 1994                                    Vap 0.0500000000
## 2262 2000                  Vatical Entertainment 0.0000000000
## 2263 1996                              Vic Tokai 0.0000000000
## 2264 1997                              Vic Tokai 0.0000000000
## 2265 1993                     Victor Interactive 0.1100000000
## 2266 1995                     Victor Interactive 0.0450000000
## 2267 1997                     Victor Interactive 0.2300000000
## 2268 1998                     Victor Interactive 0.1500000000
## 2269 2000                     Victor Interactive 0.0000000000
## 2270 2001                     Victor Interactive 0.0400000000
## 2271 2002                     Victor Interactive 0.0200000000
## 2272 1992                           Video System 0.2800000000
## 2273 1997                           Video System 0.0000000000
## 2274 1998                           Video System 0.0900000000
## 2275 2000                           Video System 0.0000000000
## 2276 2012                                  Views 0.0200000000
## 2277 2014                                  Views 0.0100000000
## 2278 2008                          Vir2L Studios 0.0000000000
## 2279 2009                          Vir2L Studios 0.0000000000
## 2280 1992                     Virgin Interactive 0.0000000000
## 2281 1994                     Virgin Interactive 0.0366666667
## 2282 1995                     Virgin Interactive 0.2725000000
## 2283 1996                     Virgin Interactive 0.1938461538
## 2284 1997                     Virgin Interactive 0.0388888889
## 2285 1998                     Virgin Interactive 0.2820000000
## 2286 1999                     Virgin Interactive 0.0116666667
## 2287 2000                     Virgin Interactive 0.1400000000
## 2288 2001                     Virgin Interactive 0.1900000000
## 2289 2002                     Virgin Interactive 0.0000000000
## 2290 2010                     Virtual Play Games 0.0000000000
## 2291 2011                                  Visco 0.0000000000
## 2292 1995                          Vivendi Games 0.0000000000
## 2293 1997                          Vivendi Games 0.0450000000
## 2294 1998                          Vivendi Games 0.0000000000
## 2295 1999                          Vivendi Games 0.0000000000
## 2296 2000                          Vivendi Games 0.0000000000
## 2297 2001                          Vivendi Games 0.0000000000
## 2298 2002                          Vivendi Games 0.0037500000
## 2299 2003                          Vivendi Games 0.0000000000
## 2300 2004                          Vivendi Games 0.0044444444
## 2301 2005                          Vivendi Games 0.0000000000
## 2302 2006                          Vivendi Games 0.0000000000
## 2303 2007                          Vivendi Games 0.0000000000
## 2304 2008                          Vivendi Games 0.0000000000
## 2305 2009                          Vivendi Games 0.0000000000
## 2306  N/A                          Vivendi Games 0.0000000000
## 2307 2001                                Wanadoo 0.0000000000
## 2308 2002                                Wanadoo 0.0600000000
## 2309 2003                                Wanadoo 0.0000000000
## 2310 2005                                Wanadoo 0.0000000000
## 2311 2007                                Warashi 0.0200000000
## 2312 2011                          Wargaming.net 0.0000000000
## 2313 2003 Warner Bros. Interactive Entertainment 0.0000000000
## 2314 2005 Warner Bros. Interactive Entertainment 0.0000000000
## 2315 2006 Warner Bros. Interactive Entertainment 0.0000000000
## 2316 2007 Warner Bros. Interactive Entertainment 0.0000000000
## 2317 2008 Warner Bros. Interactive Entertainment 0.0000000000
## 2318 2009 Warner Bros. Interactive Entertainment 0.0017241379
## 2319 2010 Warner Bros. Interactive Entertainment 0.0000000000
## 2320 2011 Warner Bros. Interactive Entertainment 0.0089473684
## 2321 2012 Warner Bros. Interactive Entertainment 0.0061904762
## 2322 2013 Warner Bros. Interactive Entertainment 0.0050000000
## 2323 2014 Warner Bros. Interactive Entertainment 0.0060000000
## 2324 2015 Warner Bros. Interactive Entertainment 0.0138461538
## 2325 2016 Warner Bros. Interactive Entertainment 0.0007142857
## 2326  N/A Warner Bros. Interactive Entertainment 0.0006666667
## 2327 1997                                   Warp 0.0700000000
## 2328 2015                WayForward Technologies 0.0000000000
## 2329 1999                       Westwood Studios 0.0000000000
## 2330 2007                White Park Bay Software 0.0000000000
## 2331 1982                     Wizard Video Games 0.0000000000
## 2332 2002                      Xicat Interactive 0.0000000000
## 2333 2003                      Xicat Interactive 0.0000000000
## 2334 1997                     Xing Entertainment 0.1600000000
## 2335 2005                                Xplosiv 0.0000000000
## 2336 2006                                Xplosiv 0.0000000000
## 2337 2007                                Xplosiv 0.0000000000
## 2338 2008                                Xplosiv 0.0000000000
## 2339 2002                               XS Games 0.0000000000
## 2340 2004                               XS Games 0.0000000000
## 2341 2005                               XS Games 0.0000000000
## 2342 2007                               XS Games 0.0000000000
## 2343 2008                               XS Games 0.0000000000
## 2344 2009                               XS Games 0.0000000000
## 2345 2010                               XS Games 0.0000000000
## 2346 2012                            Xseed Games 0.2100000000
## 2347 2013                            Xseed Games 0.1200000000
## 2348 2014                            Xseed Games 0.0400000000
## 2349 2015                            Xseed Games 0.0000000000
## 2350 2015                       Yacht Club Games 0.0033333333
## 2351 2006                   Yamasa Entertainment 0.0200000000
## 2352 2006                                   Yeti 0.0100000000
## 2353 2007                                   Yeti 0.0100000000
## 2354 2008                                   Yeti 0.0500000000
## 2355 2009                                   Yeti 0.0150000000
## 2356 2010                                   Yeti 0.0275000000
## 2357 2012                                   Yeti 0.0100000000
## 2358 2016                                   Yeti 0.0200000000
## 2359 2005                                 Yuke's 0.0000000000
## 2360 2006                                 Yuke's 0.0300000000
## 2361 2007                                 Yuke's 0.0200000000
## 2362 1995                                Yumedia 0.0600000000
## 2363 2006                                 Zenrin 0.0400000000
## 2364 2007                                 Zenrin 0.0200000000
## 2365 2002                 Zoo Digital Publishing 0.0233333333
## 2366 2003                 Zoo Digital Publishing 0.0000000000
## 2367 2004                 Zoo Digital Publishing 0.0000000000
## 2368 2005                 Zoo Digital Publishing 0.0000000000
## 2369 2006                 Zoo Digital Publishing 0.0000000000
## 2370 2007                 Zoo Digital Publishing 0.0000000000
## 2371 2008                 Zoo Digital Publishing 0.0000000000
## 2372 2009                 Zoo Digital Publishing 0.0000000000
## 2373 2008                              Zoo Games 0.0000000000
## 2374 2009                              Zoo Games 0.0000000000
## 2375 2010                              Zoo Games 0.0000000000
## 2376 2011                              Zoo Games 0.0000000000
## 2377 2007                            Zushi Games 0.0000000000
## 2378 2008                            Zushi Games 0.0025000000
## 2379 2009                            Zushi Games 0.0000000000
aggregate(JP_Sales,by=list(Genre = Genre,Publisher=Publisher),mean)
##             Genre                              Publisher            x
## 1       Adventure                        10TACLE Studios 0.0000000000
## 2          Puzzle                        10TACLE Studios 0.0000000000
## 3        Strategy                        10TACLE Studios 0.0000000000
## 4          Racing                             1C Company 0.0000000000
## 5    Role-Playing                             1C Company 0.0000000000
## 6        Strategy                             1C Company 0.0000000000
## 7          Action           20th Century Fox Video Games 0.0000000000
## 8         Shooter           20th Century Fox Video Games 0.0000000000
## 9          Puzzle                                 2D Boy 0.0000000000
## 10         Action                                    3DO 0.0000000000
## 11      Adventure                                    3DO 0.0000000000
## 12       Fighting                                    3DO 0.0000000000
## 13       Platform                                    3DO 0.0000000000
## 14         Puzzle                                    3DO 0.0000000000
## 15   Role-Playing                                    3DO 0.0000000000
## 16        Shooter                                    3DO 0.0000000000
## 17         Sports                                    3DO 0.0000000000
## 18       Strategy                                    3DO 0.0000000000
## 19         Sports                                49Games 0.0000000000
## 20         Action                              505 Games 0.0180952381
## 21      Adventure                              505 Games 0.0471428571
## 22       Fighting                              505 Games 0.0054545455
## 23           Misc                              505 Games 0.0000000000
## 24       Platform                              505 Games 0.0600000000
## 25         Puzzle                              505 Games 0.0006666667
## 26         Racing                              505 Games 0.0000000000
## 27   Role-Playing                              505 Games 0.0310000000
## 28        Shooter                              505 Games 0.0044444444
## 29     Simulation                              505 Games 0.0126829268
## 30         Sports                              505 Games 0.0000000000
## 31       Strategy                              505 Games 0.0000000000
## 32         Action                                    5pb 0.0260000000
## 33      Adventure                                    5pb 0.0273469388
## 34       Fighting                                    5pb 0.0200000000
## 35   Role-Playing                                    5pb 0.0300000000
## 36        Shooter                                    5pb 0.0166666667
## 37     Simulation                                    5pb 0.0200000000
## 38           Misc                               7G//AMES 0.0000000000
## 39         Puzzle                               7G//AMES 0.0000000000
## 40     Simulation                               7G//AMES 0.0000000000
## 41         Sports                             989 Sports 0.0000000000
## 42         Action                            989 Studios 0.0000000000
## 43         Racing                            989 Studios 0.0000000000
## 44         Sports                            989 Studios 0.0111111111
## 45         Action                               Abylight 0.0000000000
## 46         Action                  Acclaim Entertainment 0.0000000000
## 47      Adventure                  Acclaim Entertainment 0.0250000000
## 48       Fighting                  Acclaim Entertainment 0.0154838710
## 49           Misc                  Acclaim Entertainment 0.0000000000
## 50       Platform                  Acclaim Entertainment 0.0080000000
## 51         Puzzle                  Acclaim Entertainment 0.0000000000
## 52         Racing                  Acclaim Entertainment 0.0018181818
## 53   Role-Playing                  Acclaim Entertainment 0.0000000000
## 54        Shooter                  Acclaim Entertainment 0.0258823529
## 55         Sports                  Acclaim Entertainment 0.0000000000
## 56       Strategy                  Acclaim Entertainment 0.0000000000
## 57       Platform                               Accolade 0.0000000000
## 58         Racing                               Accolade 0.0000000000
## 59         Sports                               Accolade 0.0000000000
## 60         Action                            Ackkstudios 0.1275000000
## 61      Adventure                            Ackkstudios 0.0000000000
## 62   Role-Playing                            Ackkstudios 0.0150000000
## 63         Sports                            Ackkstudios 0.0550000000
## 64       Strategy                            Ackkstudios 0.0100000000
## 65         Action                                Acquire 0.0300000000
## 66      Adventure                                Acquire 0.1100000000
## 67   Role-Playing                                Acquire 0.0687500000
## 68       Strategy                                Acquire 0.0800000000
## 69         Action                             Activision 0.0034838710
## 70      Adventure                             Activision 0.0040000000
## 71       Fighting                             Activision 0.0000000000
## 72           Misc                             Activision 0.0004854369
## 73       Platform                             Activision 0.0011666667
## 74         Puzzle                             Activision 0.0214285714
## 75         Racing                             Activision 0.0005405405
## 76   Role-Playing                             Activision 0.0063414634
## 77        Shooter                             Activision 0.0291823899
## 78     Simulation                             Activision 0.0008695652
## 79         Sports                             Activision 0.0009027778
## 80       Strategy                             Activision 0.0000000000
## 81         Action                    Activision Blizzard 0.0000000000
## 82         Action                       Activision Value 0.0000000000
## 83           Misc                       Activision Value 0.0000000000
## 84        Shooter                       Activision Value 0.0000000000
## 85         Sports                       Activision Value 0.0000000000
## 86       Strategy                       Activision Value 0.0000000000
## 87         Action                       Adeline Software 0.0000000000
## 88     Simulation                               Aerosoft 0.0000000000
## 89         Action                 Agatsuma Entertainment 0.0300000000
## 90           Misc                 Agatsuma Entertainment 0.0000000000
## 91       Platform                 Agatsuma Entertainment 0.0300000000
## 92         Action                                 Agetec 0.0750000000
## 93       Fighting                                 Agetec 0.0700000000
## 94           Misc                                 Agetec 0.0000000000
## 95         Racing                                 Agetec 0.0000000000
## 96     Simulation                                 Agetec 0.1600000000
## 97         Sports                                 Agetec 0.0000000000
## 98       Strategy                                 Agetec 0.0000000000
## 99         Action                            Aksys Games 0.0400000000
## 100     Adventure                            Aksys Games 0.0100000000
## 101  Role-Playing                            Aksys Games 0.0275000000
## 102        Action                   Alawar Entertainment 0.0000000000
## 103      Strategy                   Alawar Entertainment 0.0000000000
## 104        Action                              Alchemist 0.0633333333
## 105     Adventure                              Alchemist 0.0296875000
## 106          Misc                              Alchemist 0.0450000000
## 107  Role-Playing                              Alchemist 0.0200000000
## 108       Shooter                              Alchemist 0.0266666667
## 109        Action                   Alternative Software 0.0000000000
## 110        Sports                   Alternative Software 0.0000000000
## 111       Shooter                                 Altron 0.0000000000
## 112          Misc                                 Alvion 0.0200000000
## 113        Action                     American Softworks 0.0000000000
## 114      Fighting                          Angel Studios 0.1200000000
## 115  Role-Playing                          Angel Studios 0.2900000000
## 116      Strategy                          Angel Studios 0.0300000000
## 117        Action                        Answer Software 0.0000000000
## 118      Fighting                         AQ Interactive 0.0350000000
## 119          Misc                         AQ Interactive 0.0133333333
## 120     Adventure                              Aqua Plus 0.0584615385
## 121      Fighting                              Aqua Plus 0.0500000000
## 122          Misc                              Aqua Plus 0.0300000000
## 123  Role-Playing                              Aqua Plus 0.0550000000
## 124      Strategy                              Aqua Plus 0.0600000000
## 125        Sports                                  Aques 0.1500000000
## 126        Action                       Arc System Works 0.0200000000
## 127     Adventure                       Arc System Works 0.0100000000
## 128      Fighting                       Arc System Works 0.0485714286
## 129          Misc                       Arc System Works 0.0000000000
## 130  Role-Playing                       Arc System Works 0.0100000000
## 131        Sports                       Arc System Works 0.0150000000
## 132      Fighting                    Arena Entertainment 0.0000000000
## 133        Sports                    Arena Entertainment 0.0000000000
## 134     Adventure                                   Aria 0.0700000000
## 135          Misc                                  Arika 0.0000000000
## 136  Role-Playing                                  Arika 0.0000000000
## 137       Shooter                                  Arika 0.0200000000
## 138  Role-Playing                                ArtDink 0.0366666667
## 139    Simulation                                ArtDink 0.0433333333
## 140      Strategy                                ArtDink 0.1166666667
## 141          Misc                             Aruze Corp 0.3633333333
## 142        Action                              ASC Games 0.0000000000
## 143        Racing                              ASC Games 0.0000000000
## 144        Sports                              ASC Games 0.0000000000
## 145      Strategy                  Ascaron Entertainment 0.0000000000
## 146  Role-Playing             Ascaron Entertainment GmbH 0.0000000000
## 147      Strategy             Ascaron Entertainment GmbH 0.0000000000
## 148     Adventure                    ASCII Entertainment 0.2750000000
## 149          Misc                    ASCII Entertainment 0.0400000000
## 150        Racing                    ASCII Entertainment 0.3000000000
## 151  Role-Playing                    ASCII Entertainment 0.2333333333
## 152    Simulation                    ASCII Entertainment 0.3200000000
## 153        Sports                    ASCII Entertainment 0.8100000000
## 154      Strategy                    ASCII Entertainment 0.3700000000
## 155     Adventure                      ASCII Media Works 0.0300000000
## 156  Role-Playing                      ASCII Media Works 0.0300000000
## 157        Action                                 Asgard 0.0150000000
## 158          Misc                                 Asgard 0.0366666667
## 159          Misc                                    ASK 0.0300000000
## 160     Adventure                Asmik Ace Entertainment 0.0400000000
## 161      Fighting                Asmik Ace Entertainment 0.0900000000
## 162    Simulation                Asmik Ace Entertainment 0.0900000000
## 163        Sports                             Asmik Corp 0.0850000000
## 164     Adventure                                  Aspyr 0.0000000000
## 165          Misc                                  Aspyr 0.0000000000
## 166  Role-Playing                                  Aspyr 0.0000000000
## 167    Simulation                                  Aspyr 0.0000000000
## 168        Sports                                  Aspyr 0.0000000000
## 169        Action                               Astragon 0.0000000000
## 170     Adventure                               Astragon 0.0000000000
## 171        Puzzle                               Astragon 0.0000000000
## 172    Simulation                               Astragon 0.0000000000
## 173     Adventure                   Asylum Entertainment 0.0000000000
## 174      Platform                   Asylum Entertainment 0.0000000000
## 175    Simulation                   Asylum Entertainment 0.0000000000
## 176        Action                                  Atari 0.0025925926
## 177     Adventure                                  Atari 0.0100000000
## 178      Fighting                                  Atari 0.1478378378
## 179          Misc                                  Atari 0.0026923077
## 180      Platform                                  Atari 0.0000000000
## 181        Puzzle                                  Atari 0.0095454545
## 182        Racing                                  Atari 0.0019444444
## 183  Role-Playing                                  Atari 0.0578571429
## 184       Shooter                                  Atari 0.0022500000
## 185    Simulation                                  Atari 0.2811111111
## 186        Sports                                  Atari 0.0060714286
## 187      Strategy                                  Atari 0.0000000000
## 188     Adventure                                 Athena 0.0700000000
## 189        Sports                                 Athena 0.0000000000
## 190        Action                                  Atlus 0.0000000000
## 191     Adventure                                  Atlus 0.0300000000
## 192      Fighting                                  Atlus 0.1000000000
## 193          Misc                                  Atlus 0.0200000000
## 194      Platform                                  Atlus 0.0000000000
## 195        Racing                                  Atlus 0.1200000000
## 196  Role-Playing                                  Atlus 0.1289130435
## 197       Shooter                                  Atlus 0.0550000000
## 198    Simulation                                  Atlus 0.0000000000
## 199        Sports                                  Atlus 0.0000000000
## 200      Strategy                                  Atlus 0.0100000000
## 201        Action                     Avalon Interactive 0.0000000000
## 202        Racing                     Avalon Interactive 0.0000000000
## 203  Role-Playing                     Avalon Interactive 0.0000000000
## 204       Shooter                     Avalon Interactive 0.0000000000
## 205    Simulation                     Avalon Interactive 0.0000000000
## 206        Action                              Avanquest 0.0000000000
## 207     Adventure                              Avanquest 0.0000000000
## 208          Misc                              Avanquest 0.0000000000
## 209        Puzzle                              Avanquest 0.0000000000
## 210    Simulation                              Avanquest 0.0000000000
## 211        Sports                              Avanquest 0.0000000000
## 212        Action                     Avanquest Software 0.0000000000
## 213     Adventure                     Avanquest Software 0.0100000000
## 214          Misc                     Avanquest Software 0.0000000000
## 215        Sports                                  Axela 0.2400000000
## 216        Action                     BAM! Entertainment 0.0000000000
## 217     Adventure                     BAM! Entertainment 0.0000000000
## 218      Fighting                     BAM! Entertainment 0.0000000000
## 219          Misc                     BAM! Entertainment 0.0000000000
## 220      Platform                     BAM! Entertainment 0.0000000000
## 221        Racing                     BAM! Entertainment 0.0042857143
## 222       Shooter                     BAM! Entertainment 0.0000000000
## 223        Sports                     BAM! Entertainment 0.0000000000
## 224        Action                              Banpresto 0.0750000000
## 225     Adventure                              Banpresto 0.1033333333
## 226      Fighting                              Banpresto 0.0200000000
## 227          Misc                              Banpresto 0.0100000000
## 228      Platform                              Banpresto 0.0400000000
## 229        Puzzle                              Banpresto 0.9800000000
## 230        Racing                              Banpresto 0.0400000000
## 231  Role-Playing                              Banpresto 0.1241176471
## 232       Shooter                              Banpresto 0.0700000000
## 233    Simulation                              Banpresto 0.2333333333
## 234        Sports                              Banpresto 0.1633333333
## 235      Strategy                              Banpresto 0.3564285714
## 236          Misc                                Benesse 0.0533333333
## 237        Action                               Berkeley 0.0000000000
## 238        Action                     Bethesda Softworks 0.0205882353
## 239        Racing                     Bethesda Softworks 0.0000000000
## 240  Role-Playing                     Bethesda Softworks 0.0529411765
## 241       Shooter                     Bethesda Softworks 0.0095238095
## 242    Simulation                     Bethesda Softworks 0.0000000000
## 243        Sports                     Bethesda Softworks 0.0000000000
## 244      Strategy                     Bethesda Softworks 0.0000000000
## 245     Adventure                    Big Ben Interactive 0.0000000000
## 246      Platform                    Big Ben Interactive 0.0000000000
## 247        Racing                    Big Ben Interactive 0.0000000000
## 248       Shooter                    Big Ben Interactive 0.0000000000
## 249        Sports                    Big Ben Interactive 0.0000000000
## 250        Action                         Big Fish Games 0.0000000000
## 251     Adventure                         Big Fish Games 0.0000000000
## 252        Sports                     Bigben Interactive 0.0000000000
## 253        Racing                      bitComposer Games 0.0000000000
## 254    Simulation                      bitComposer Games 0.0000000000
## 255        Action                       Black Bean Games 0.0000000000
## 256          Misc                       Black Bean Games 0.0000000000
## 257        Racing                       Black Bean Games 0.0005263158
## 258        Sports                       Black Bean Games 0.0000000000
## 259      Strategy                       Black Bean Games 0.0000000000
## 260        Action                      Black Label Games 0.0000000000
## 261        Action               Blast! Entertainment Ltd 0.0000000000
## 262     Adventure               Blast! Entertainment Ltd 0.0000000000
## 263        Sports               Blast! Entertainment Ltd 0.0000000000
## 264    Simulation                              Blue Byte 0.0000000000
## 265      Strategy                              Blue Byte 0.0000000000
## 266      Platform          BMG Interactive Entertainment 0.0000000000
## 267        Racing          BMG Interactive Entertainment 0.0000000000
## 268       Shooter          BMG Interactive Entertainment 0.0000000000
## 269        Sports          BMG Interactive Entertainment 0.0000000000
## 270       Shooter                    Bohemia Interactive 0.0000000000
## 271        Action                                   Bomb 0.0000000000
## 272     Adventure                               Boost On 0.0100000000
## 273        Puzzle                                    BPS 0.3200000000
## 274        Racing                                    BPS 0.2000000000
## 275          Misc                    Brash Entertainment 0.0000000000
## 276      Platform                    Brash Entertainment 0.0000000000
## 277        Action                               Broccoli 0.0560000000
## 278     Adventure                               Broccoli 0.0477777778
## 279      Fighting                               Broccoli 0.0150000000
## 280          Misc                               Broccoli 0.1000000000
## 281  Role-Playing                               Broccoli 0.0100000000
## 282    Simulation                               Broccoli 0.0300000000
## 283      Strategy                               Broccoli 0.0266666667
## 284     Adventure                              BushiRoad 0.0300000000
## 285        Action                                 Capcom 0.1443506494
## 286     Adventure                                 Capcom 0.2095454545
## 287      Fighting                                 Capcom 0.1615517241
## 288          Misc                                 Capcom 0.0345454545
## 289      Platform                                 Capcom 0.1243478261
## 290        Puzzle                                 Capcom 0.0000000000
## 291        Racing                                 Capcom 0.0046153846
## 292  Role-Playing                                 Capcom 0.6171052632
## 293       Shooter                                 Capcom 0.0840000000
## 294    Simulation                                 Capcom 0.0000000000
## 295        Sports                                 Capcom 0.0533333333
## 296      Strategy                                 Capcom 0.0000000000
## 297        Action                                   Cave 0.0200000000
## 298     Adventure                                   Cave 0.0100000000
## 299          Misc                                   Cave 0.0000000000
## 300       Shooter                                   Cave 0.0214285714
## 301        Action                        CBS Electronics 0.0000000000
## 302  Role-Playing                                    CCP 0.0000000000
## 303     Adventure             CDV Software Entertainment 0.0000000000
## 304        Puzzle             CDV Software Entertainment 0.0000000000
## 305    Simulation             CDV Software Entertainment 0.0000000000
## 306      Strategy             CDV Software Entertainment 0.0000000000
## 307        Action                               ChunSoft 0.0400000000
## 308     Adventure                               ChunSoft 0.1590909091
## 309  Role-Playing                               ChunSoft 0.3033333333
## 310        Action                       City Interactive 0.0000000000
## 311     Adventure                       City Interactive 0.0000000000
## 312          Misc                       City Interactive 0.0000000000
## 313        Puzzle                       City Interactive 0.0000000000
## 314       Shooter                       City Interactive 0.0087500000
## 315    Simulation                       City Interactive 0.0000000000
## 316      Fighting       Cloud Imperium Games Corporation 0.0000000000
## 317     Adventure                         Coconuts Japan 0.0000000000
## 318          Misc                         Coconuts Japan 0.0500000000
## 319        Action                            Codemasters 0.0000000000
## 320     Adventure                            Codemasters 0.0000000000
## 321          Misc                            Codemasters 0.0000000000
## 322        Puzzle                            Codemasters 0.0000000000
## 323        Racing                            Codemasters 0.0074157303
## 324  Role-Playing                            Codemasters 0.0000000000
## 325       Shooter                            Codemasters 0.0075000000
## 326    Simulation                            Codemasters 0.0000000000
## 327        Sports                            Codemasters 0.0010000000
## 328      Strategy                            Codemasters 0.0025000000
## 329  Role-Playing                     Codemasters Online 0.0000000000
## 330        Action                      CokeM Interactive 0.0000000000
## 331        Action                                 Coleco 0.0000000000
## 332      Platform                                 Coleco 0.0000000000
## 333       Shooter                                 Coleco 0.0000000000
## 334        Action                                Comfort 0.0200000000
## 335     Adventure                                Comfort 0.0260000000
## 336          Misc                               Commseed 0.0100000000
## 337        Puzzle                                Compile 0.4640000000
## 338  Role-Playing                                Compile 0.0300000000
## 339        Action                          Compile Heart 0.0300000000
## 340     Adventure                          Compile Heart 0.0275000000
## 341  Role-Playing                          Compile Heart 0.0461538462
## 342      Strategy                          Compile Heart 0.0000000000
## 343        Action               Conspiracy Entertainment 0.0000000000
## 344          Misc               Conspiracy Entertainment 0.0000000000
## 345      Platform               Conspiracy Entertainment 0.0000000000
## 346        Puzzle               Conspiracy Entertainment 0.0000000000
## 347        Racing               Conspiracy Entertainment 0.0000000000
## 348       Shooter               Conspiracy Entertainment 0.0000000000
## 349    Simulation               Conspiracy Entertainment 0.0000000000
## 350        Sports               Conspiracy Entertainment 0.0000000000
## 351        Action                       Core Design Ltd. 0.0000000000
## 352    Simulation                       Core Design Ltd. 0.0000000000
## 353        Action                           CPG Products 0.0000000000
## 354        Action                    Crave Entertainment 0.0000000000
## 355     Adventure                    Crave Entertainment 0.0000000000
## 356      Fighting                    Crave Entertainment 0.0000000000
## 357          Misc                    Crave Entertainment 0.0000000000
## 358      Platform                    Crave Entertainment 0.0000000000
## 359        Puzzle                    Crave Entertainment 0.0000000000
## 360        Racing                    Crave Entertainment 0.0375000000
## 361  Role-Playing                    Crave Entertainment 0.1500000000
## 362       Shooter                    Crave Entertainment 0.0000000000
## 363    Simulation                    Crave Entertainment 0.0000000000
## 364        Sports                    Crave Entertainment 0.0000000000
## 365      Strategy                    Crave Entertainment 0.0000000000
## 366     Adventure                          Creative Core 0.0300000000
## 367          Misc                          Creative Core 0.0100000000
## 368    Simulation                          Creative Core 0.0600000000
## 369        Action                            Crimson Cow 0.0000000000
## 370     Adventure                            Crimson Cow 0.0000000000
## 371     Adventure                       Crystal Dynamics 0.0000000000
## 372      Platform                       Crystal Dynamics 0.0000000000
## 373        Racing                       Crystal Dynamics 0.0000000000
## 374  Role-Playing                       Crystal Dynamics 0.0000000000
## 375        Sports                       Crystal Dynamics 0.0000000000
## 376       Shooter                                CTO SpA 0.0000000000
## 377        Sports                                CTO SpA 0.0000000000
## 378     Adventure                          Culture Brain 0.0200000000
## 379          Misc                          Culture Brain 0.0200000000
## 380  Role-Playing                          Culture Brain 0.0300000000
## 381        Sports                          Culture Brain 0.2000000000
## 382        Puzzle                     Culture Publishers 0.0000000000
## 383        Action                             CyberFront 0.0200000000
## 384     Adventure                             CyberFront 0.0187500000
## 385          Misc                             CyberFront 0.0150000000
## 386  Role-Playing                             CyberFront 0.0300000000
## 387      Strategy                             CyberFront 0.0150000000
## 388      Platform                                Cygames 0.0300000000
## 389        Action                            D3Publisher 0.0128301887
## 390     Adventure                            D3Publisher 0.0232258065
## 391      Fighting                            D3Publisher 0.0433333333
## 392          Misc                            D3Publisher 0.0653125000
## 393      Platform                            D3Publisher 0.0033333333
## 394        Puzzle                            D3Publisher 0.0027272727
## 395        Racing                            D3Publisher 0.0000000000
## 396  Role-Playing                            D3Publisher 0.0350000000
## 397       Shooter                            D3Publisher 0.0391666667
## 398    Simulation                            D3Publisher 0.0516666667
## 399        Sports                            D3Publisher 0.0000000000
## 400      Strategy                            D3Publisher 0.0133333333
## 401     Adventure                               Daedalic 0.0000000000
## 402     Adventure                 Daedalic Entertainment 0.0000000000
## 403          Misc                                  Daito 0.0575000000
## 404        Action                               Data Age 0.0000000000
## 405          Misc                Data Design Interactive 0.0000000000
## 406        Racing                Data Design Interactive 0.0000000000
## 407        Sports                Data Design Interactive 0.0000000000
## 408     Adventure                              Data East 0.1100000000
## 409  Role-Playing                              Data East 0.0400000000
## 410     Adventure                         Datam Polystar 0.0150000000
## 411        Action                            Deep Silver 0.0185185185
## 412     Adventure                            Deep Silver 0.0230000000
## 413      Fighting                            Deep Silver 0.0150000000
## 414          Misc                            Deep Silver 0.0000000000
## 415      Platform                            Deep Silver 0.0000000000
## 416        Puzzle                            Deep Silver 0.0000000000
## 417        Racing                            Deep Silver 0.0000000000
## 418  Role-Playing                            Deep Silver 0.0176470588
## 419       Shooter                            Deep Silver 0.0060000000
## 420    Simulation                            Deep Silver 0.0000000000
## 421        Sports                            Deep Silver 0.0000000000
## 422      Strategy                            Deep Silver 0.0000000000
## 423        Action              Destination Software, Inc 0.0000000000
## 424          Misc              Destination Software, Inc 0.0000000000
## 425        Puzzle              Destination Software, Inc 0.0000000000
## 426        Racing              Destination Software, Inc 0.0000000000
## 427  Role-Playing              Destination Software, Inc 0.0000000000
## 428    Simulation              Destination Software, Inc 0.0000000000
## 429        Sports              Destination Software, Inc 0.0000000000
## 430        Action                              Destineer 0.0000000000
## 431     Adventure                              Destineer 0.0000000000
## 432          Misc                              Destineer 0.0000000000
## 433      Platform                              Destineer 0.0000000000
## 434        Puzzle                              Destineer 0.0000000000
## 435        Racing                              Destineer 0.0000000000
## 436       Shooter                              Destineer 0.0000000000
## 437    Simulation                              Destineer 0.0000000000
## 438        Sports                              Destineer 0.0000000000
## 439        Sports                            Detn8 Games 0.0000000000
## 440        Puzzle                       Devolver Digital 0.0000000000
## 441       Shooter                       Devolver Digital 0.0000000000
## 442        Puzzle                        DHM Interactive 0.0000000000
## 443       Shooter                        DHM Interactive 0.0000000000
## 444    Simulation                        DHM Interactive 0.0000000000
## 445        Sports                               DigiCube 0.0600000000
## 446        Action             Disney Interactive Studios 0.0009375000
## 447     Adventure             Disney Interactive Studios 0.0010344828
## 448          Misc             Disney Interactive Studios 0.0061363636
## 449      Platform             Disney Interactive Studios 0.0060000000
## 450        Puzzle             Disney Interactive Studios 0.0000000000
## 451        Racing             Disney Interactive Studios 0.0035714286
## 452  Role-Playing             Disney Interactive Studios 0.0000000000
## 453       Shooter             Disney Interactive Studios 0.0000000000
## 454    Simulation             Disney Interactive Studios 0.0000000000
## 455        Sports             Disney Interactive Studios 0.0000000000
## 456          Misc                                 Dorart 0.0150000000
## 457        Action                        dramatic create 0.0100000000
## 458     Adventure                        dramatic create 0.0250000000
## 459     Adventure               DreamCatcher Interactive 0.0000000000
## 460          Misc               DreamCatcher Interactive 0.0000000000
## 461      Platform               DreamCatcher Interactive 0.0000000000
## 462        Puzzle               DreamCatcher Interactive 0.0000000000
## 463       Shooter               DreamCatcher Interactive 0.0000000000
## 464    Simulation               DreamCatcher Interactive 0.0000000000
## 465        Sports               DreamCatcher Interactive 0.0000000000
## 466      Platform                 DreamWorks Interactive 0.0000000000
## 467        Action                              DSI Games 0.0000000000
## 468     Adventure                              DSI Games 0.0000000000
## 469          Misc                              DSI Games 0.0000000000
## 470    Simulation                              DSI Games 0.0000000000
## 471        Sports                              DSI Games 0.0000000000
## 472        Action                      DTP Entertainment 0.0020000000
## 473     Adventure                      DTP Entertainment 0.0000000000
## 474          Misc                      DTP Entertainment 0.0000000000
## 475        Puzzle                      DTP Entertainment 0.0000000000
## 476  Role-Playing                      DTP Entertainment 0.0000000000
## 477       Shooter                      DTP Entertainment 0.0100000000
## 478    Simulation                      DTP Entertainment 0.0000000000
## 479        Sports                      DTP Entertainment 0.0000000000
## 480      Strategy                      DTP Entertainment 0.0000000000
## 481        Racing               Dusenberry Martin Racing 0.0000000000
## 482       Shooter                               EA Games 0.0000000000
## 483        Puzzle                       Easy Interactive 0.0000000000
## 484      Fighting                                  Ecole 0.0600000000
## 485          Misc                                   Edia 0.0450000000
## 486        Action                      Eidos Interactive 0.0405952381
## 487     Adventure                      Eidos Interactive 0.0000000000
## 488      Fighting                      Eidos Interactive 0.0228571429
## 489          Misc                      Eidos Interactive 0.0000000000
## 490      Platform                      Eidos Interactive 0.0000000000
## 491        Puzzle                      Eidos Interactive 0.0000000000
## 492        Racing                      Eidos Interactive 0.0000000000
## 493  Role-Playing                      Eidos Interactive 0.2600000000
## 494       Shooter                      Eidos Interactive 0.0054285714
## 495    Simulation                      Eidos Interactive 0.0000000000
## 496        Sports                      Eidos Interactive 0.0000000000
## 497      Strategy                      Eidos Interactive 0.0009090909
## 498        Action                        Electronic Arts 0.0136065574
## 499     Adventure                        Electronic Arts 0.0061538462
## 500      Fighting                        Electronic Arts 0.0007692308
## 501          Misc                        Electronic Arts 0.0002173913
## 502      Platform                        Electronic Arts 0.0031250000
## 503        Puzzle                        Electronic Arts 0.0000000000
## 504        Racing                        Electronic Arts 0.0075471698
## 505  Role-Playing                        Electronic Arts 0.0760000000
## 506       Shooter                        Electronic Arts 0.0210791367
## 507    Simulation                        Electronic Arts 0.0075862069
## 508        Sports                        Electronic Arts 0.0058288770
## 509      Strategy                        Electronic Arts 0.0118918919
## 510        Action                 Electronic Arts Victor 0.0000000000
## 511        Sports                 Electronic Arts Victor 0.0000000000
## 512     Adventure                                    Elf 0.3600000000
## 513      Strategy                                    Elf 0.2800000000
## 514    Simulation                                  Elite 0.0000000000
## 515        Action                     Empire Interactive 0.0000000000
## 516     Adventure                     Empire Interactive 0.0000000000
## 517      Fighting                     Empire Interactive 0.3800000000
## 518          Misc                     Empire Interactive 0.0000000000
## 519        Puzzle                     Empire Interactive 0.0000000000
## 520        Racing                     Empire Interactive 0.0000000000
## 521  Role-Playing                     Empire Interactive 0.0400000000
## 522       Shooter                     Empire Interactive 0.0000000000
## 523    Simulation                     Empire Interactive 0.0000000000
## 524        Sports                     Empire Interactive 0.0000000000
## 525        Action                                 Encore 0.0000000000
## 526        Racing                                 Encore 0.0000000000
## 527  Role-Playing                                 Encore 0.0000000000
## 528        Action                       Enix Corporation 0.0000000000
## 529          Misc                       Enix Corporation 0.2350000000
## 530  Role-Playing                       Enix Corporation 1.3591304348
## 531    Simulation                       Enix Corporation 0.2750000000
## 532        Sports                       Enix Corporation 0.0600000000
## 533       Shooter                      Enjoy Gaming ltd. 0.0000000000
## 534     Adventure                             Enterbrain 0.0833333333
## 535      Fighting                             Enterbrain 0.0000000000
## 536  Role-Playing                             Enterbrain 0.0933333333
## 537    Simulation                             Enterbrain 0.0400000000
## 538        Sports                             Enterbrain 0.2725000000
## 539      Strategy              EON Digital Entertainment 0.0000000000
## 540        Action                             Epic Games 0.0000000000
## 541          Misc                                  Epoch 0.0800000000
## 542      Platform                                  Epoch 0.0750000000
## 543  Role-Playing                                  Epoch 0.0600000000
## 544        Sports                                  Epoch 0.3200000000
## 545    Simulation                                 Ertain 0.0000000000
## 546      Fighting                                    ESP 0.0300000000
## 547      Platform                                    ESP 0.0000000000
## 548  Role-Playing                                    ESP 0.4200000000
## 549       Shooter                                    ESP 0.0300000000
## 550    Simulation                                    ESP 0.0600000000
## 551        Action                        Essential Games 0.0200000000
## 552       Shooter                        Essential Games 0.1700000000
## 553      Strategy                        Essential Games 0.0300000000
## 554        Action                        Evolution Games 0.0600000000
## 555      Platform                          Evolved Games 0.0000000000
## 556        Racing                          Evolved Games 0.0000000000
## 557       Shooter                          Evolved Games 0.0000000000
## 558        Action                   Excalibur Publishing 0.0000000000
## 559    Simulation                   Excalibur Publishing 0.0000000000
## 560  Role-Playing                        Experience Inc. 0.0200000000
## 561  Role-Playing            Extreme Entertainment Group 0.0100000000
## 562      Fighting                     Falcom Corporation 0.0600000000
## 563  Role-Playing                     Falcom Corporation 0.0566666667
## 564          Misc                                 Fields 0.0300000000
## 565        Action                       Flashpoint Games 0.0000000000
## 566      Platform                       Flashpoint Games 0.0000000000
## 567  Role-Playing                            Flight-Plan 0.0800000000
## 568      Strategy                            Flight-Plan 0.0400000000
## 569        Action                 Focus Home Interactive 0.0000000000
## 570     Adventure                 Focus Home Interactive 0.0000000000
## 571          Misc                 Focus Home Interactive 0.0000000000
## 572      Platform                 Focus Home Interactive 0.0000000000
## 573        Puzzle                 Focus Home Interactive 0.0000000000
## 574        Racing                 Focus Home Interactive 0.0000000000
## 575  Role-Playing                 Focus Home Interactive 0.0016666667
## 576    Simulation                 Focus Home Interactive 0.0033333333
## 577        Sports                 Focus Home Interactive 0.0000000000
## 578      Strategy                 Focus Home Interactive 0.0000000000
## 579          Misc                       Focus Multimedia 0.0000000000
## 580        Puzzle                       Focus Multimedia 0.0000000000
## 581    Simulation                                 fonfun 0.0200000000
## 582     Adventure                    Foreign Media Games 0.0000000000
## 583          Misc                    Foreign Media Games 0.0000000000
## 584        Puzzle                    Foreign Media Games 0.0000000000
## 585    Simulation                    Foreign Media Games 0.0000000000
## 586     Adventure                              Fortyfive 0.0600000000
## 587        Action                        Fox Interactive 0.0000000000
## 588      Platform                        Fox Interactive 0.0000000000
## 589       Shooter                        Fox Interactive 0.0000000000
## 590        Sports                        Fox Interactive 0.0000000000
## 591        Action                          From Software 0.0066666667
## 592     Adventure                          From Software 0.0700000000
## 593  Role-Playing                          From Software 0.0750000000
## 594       Shooter                          From Software 0.0600000000
## 595    Simulation                          From Software 0.0900000000
## 596     Adventure                                   Fuji 0.0300000000
## 597        Action                           Funbox Media 0.0000000000
## 598     Adventure                           Funbox Media 0.0000000000
## 599          Misc                           Funbox Media 0.0000000000
## 600      Strategy                           Funbox Media 0.0000000000
## 601  Role-Playing                                 Funcom 0.0000000000
## 602        Racing                                FunSoft 0.0000000000
## 603        Puzzle                                 Funsta 0.0000000000
## 604       Shooter                                 Funsta 0.0000000000
## 605        Action                                  FuRyu 0.0463636364
## 606     Adventure                                  FuRyu 0.0200000000
## 607          Misc                                  FuRyu 0.0600000000
## 608  Role-Playing                                  FuRyu 0.0412500000
## 609    Simulation                                  FuRyu 0.0300000000
## 610        Action                      FuRyu Corporation 0.0000000000
## 611      Fighting                                  G.Rev 0.0300000000
## 612       Shooter                                  G.Rev 0.0100000000
## 613       Shooter                                   Gaga 0.0200000000
## 614     Adventure                 Gainax Network Systems 0.1100000000
## 615          Misc                 Gainax Network Systems 0.0500000000
## 616          Misc                                 Gakken 0.0200000000
## 617  Role-Playing                              Game Arts 0.1400000000
## 618        Action                           Game Factory 0.0000000000
## 619     Adventure                           Game Factory 0.0000000000
## 620      Fighting                           Game Factory 0.0000000000
## 621          Misc                           Game Factory 0.0000000000
## 622      Platform                           Game Factory 0.0000000000
## 623        Puzzle                           Game Factory 0.0000000000
## 624        Racing                           Game Factory 0.0000000000
## 625  Role-Playing                           Game Factory 0.0000000000
## 626    Simulation                           Game Factory 0.0000000000
## 627          Misc                              Game Life 0.0000000000
## 628    Simulation                              Game Life 0.0000000000
## 629        Action                             Gamebridge 0.1200000000
## 630        Action                               Gamecock 0.0000000000
## 631          Misc                               Gamecock 0.0000000000
## 632      Strategy                               Gamecock 0.0000000000
## 633          Misc                               Gameloft 0.0000000000
## 634        Action                 GameMill Entertainment 0.0000000000
## 635     Adventure                 GameMill Entertainment 0.0000000000
## 636          Misc                 GameMill Entertainment 0.0000000000
## 637        Sports                 GameMill Entertainment 0.0000000000
## 638          Misc                                GameTek 0.0000000000
## 639          Misc                Gathering of Developers 0.0000000000
## 640        Racing                Gathering of Developers 0.0000000000
## 641       Shooter                Gathering of Developers 0.0000000000
## 642      Strategy                Gathering of Developers 0.0000000000
## 643      Strategy                  General Entertainment 0.1300000000
## 644        Action                                  Genki 0.0250000000
## 645        Racing                                  Genki 0.0860000000
## 646        Sports                                  Genki 0.0400000000
## 647        Puzzle                            Genterprise 0.0100000000
## 648  Role-Playing                             Ghostlight 0.0955555556
## 649    Simulation                             Ghostlight 0.0000000000
## 650        Sports                             Ghostlight 0.0000000000
## 651      Strategy                             Ghostlight 0.0150000000
## 652     Adventure                                   Giga 0.0200000000
## 653        Action                                 Giza10 0.0200000000
## 654      Strategy                                  Glams 0.0800000000
## 655          Misc                 Global A Entertainment 0.0100000000
## 656  Role-Playing                 Global A Entertainment 0.0000000000
## 657        Action                            Global Star 0.0000000000
## 658     Adventure                            Global Star 0.0000000000
## 659      Fighting                            Global Star 0.0000000000
## 660      Platform                            Global Star 0.0000000000
## 661        Racing                            Global Star 0.0000000000
## 662       Shooter                            Global Star 0.0000000000
## 663    Simulation                            Global Star 0.0000000000
## 664        Sports                            Global Star 0.0000000000
## 665      Strategy                            Global Star 0.0000000000
## 666     Adventure                            GN Software 0.0166666667
## 667  Role-Playing                                    GOA 0.0000000000
## 668      Fighting                           Gotham Games 0.0000000000
## 669      Platform                           Gotham Games 0.0000000000
## 670       Shooter                           Gotham Games 0.0000000000
## 671        Sports                           Gotham Games 0.0000000000
## 672          Misc                               Graffiti 0.0000000000
## 673  Role-Playing                               Graffiti 0.0000000000
## 674       Shooter                               Graffiti 0.0000000000
## 675    Simulation                               Graffiti 0.0000000000
## 676      Fighting                       Grand Prix Games 0.0600000000
## 677    Simulation                 Graphsim Entertainment 0.0000000000
## 678        Action                Gremlin Interactive Ltd 0.0000000000
## 679      Platform                Gremlin Interactive Ltd 0.0000000000
## 680        Racing                Gremlin Interactive Ltd 0.0000000000
## 681       Shooter                Gremlin Interactive Ltd 0.0000000000
## 682        Sports                Gremlin Interactive Ltd 0.0000000000
## 683        Sports                  Griffin International 0.0000000000
## 684       Shooter                           Groove Games 0.0000000000
## 685     Adventure                                    GSP 0.0000000000
## 686          Misc                                    GSP 0.0000000000
## 687        Puzzle                                    GSP 0.0000000000
## 688    Simulation                                    GSP 0.0000000000
## 689        Action                         GT Interactive 0.0020000000
## 690      Fighting                         GT Interactive 0.0000000000
## 691          Misc                         GT Interactive 0.0000000000
## 692      Platform                         GT Interactive 0.0000000000
## 693        Racing                         GT Interactive 0.0000000000
## 694       Shooter                         GT Interactive 0.0000000000
## 695    Simulation                         GT Interactive 0.0000000000
## 696        Sports                         GT Interactive 0.0000000000
## 697        Action                                 GungHo 0.1050000000
## 698     Adventure                                 GungHo 0.0200000000
## 699          Misc                                 GungHo 0.0400000000
## 700  Role-Playing                                 GungHo 0.2122222222
## 701     Adventure                                   Gust 0.1000000000
## 702  Role-Playing                                   Gust 0.0663636364
## 703      Strategy                                   Gust 0.0100000000
## 704          Misc                              Hackberry 0.0442857143
## 705        Puzzle                         HAL Laboratory 0.0000000000
## 706        Action                    Hamster Corporation 0.0000000000
## 707    Simulation                    Hamster Corporation 0.0200000000
## 708     Adventure                               Happinet 0.0500000000
## 709          Misc                               Happinet 0.0200000000
## 710    Simulation                               Happinet 0.0100000000
## 711          Misc                 Harmonix Music Systems 0.0000000000
## 712        Action                     Hasbro Interactive 0.0000000000
## 713          Misc                     Hasbro Interactive 0.0000000000
## 714      Platform                     Hasbro Interactive 0.0000000000
## 715        Puzzle                     Hasbro Interactive 0.0000000000
## 716        Racing                     Hasbro Interactive 0.0000000000
## 717       Shooter                     Hasbro Interactive 0.0000000000
## 718  Role-Playing                      Havas Interactive 0.0000000000
## 719     Adventure                           Headup Games 0.0000000000
## 720    Simulation                           Hearty Robin 0.0800000000
## 721    Simulation                                   Hect 0.1666666667
## 722        Action                            Hello Games 0.0200000000
## 723     Adventure                        Her Interactive 0.0000000000
## 724        Action                        Hip Interactive 0.0000000000
## 725       Shooter                        Hip Interactive 0.0000000000
## 726     Adventure                        HMH Interactive 0.0000000000
## 727          Misc                        HMH Interactive 0.0000000000
## 728        Sports           Home Entertainment Suppliers 0.0000000000
## 729          Misc                   Hudson Entertainment 0.1466666667
## 730      Platform                   Hudson Entertainment 0.0000000000
## 731        Puzzle                   Hudson Entertainment 0.0150000000
## 732  Role-Playing                   Hudson Entertainment 0.0000000000
## 733       Shooter                   Hudson Entertainment 0.0000000000
## 734    Simulation                   Hudson Entertainment 0.7400000000
## 735        Sports                   Hudson Entertainment 0.0000000000
## 736        Action                            Hudson Soft 0.2366666667
## 737     Adventure                            Hudson Soft 0.0400000000
## 738      Fighting                            Hudson Soft 0.0200000000
## 739          Misc                            Hudson Soft 0.2309523810
## 740      Platform                            Hudson Soft 0.9233333333
## 741        Puzzle                            Hudson Soft 0.4358333333
## 742  Role-Playing                            Hudson Soft 0.1458333333
## 743       Shooter                            Hudson Soft 0.2100000000
## 744    Simulation                            Hudson Soft 0.3066666667
## 745        Sports                            Hudson Soft 0.1025000000
## 746      Strategy                            Hudson Soft 0.0000000000
## 747     Adventure                    Human Entertainment 0.1200000000
## 748      Fighting                    Human Entertainment 0.2416666667
## 749        Racing                    Human Entertainment 0.3600000000
## 750    Simulation                    Human Entertainment 0.3000000000
## 751        Sports                    Human Entertainment 0.2350000000
## 752      Strategy                    Human Entertainment 0.0000000000
## 753        Action                                  HuneX 0.0100000000
## 754     Adventure                                  HuneX 0.0200000000
## 755  Role-Playing                    Iceberg Interactive 0.0000000000
## 756      Strategy                    Iceberg Interactive 0.0000000000
## 757       Shooter                            id Software 0.0000000000
## 758        Action                           Idea Factory 0.0228571429
## 759     Adventure                           Idea Factory 0.0270370370
## 760          Misc                           Idea Factory 0.0300000000
## 761  Role-Playing                           Idea Factory 0.0184615385
## 762      Strategy                           Idea Factory 0.0500000000
## 763        Action             Idea Factory International 0.0275000000
## 764  Role-Playing             Idea Factory International 0.0450000000
## 765        Action                           IE Institute 0.0200000000
## 766          Misc                           IE Institute 0.2350000000
## 767        Action                 Ignition Entertainment 0.0220000000
## 768     Adventure                 Ignition Entertainment 0.0000000000
## 769      Fighting                 Ignition Entertainment 0.0100000000
## 770          Misc                 Ignition Entertainment 0.0025000000
## 771      Platform                 Ignition Entertainment 0.0000000000
## 772        Puzzle                 Ignition Entertainment 0.0225000000
## 773        Racing                 Ignition Entertainment 0.0000000000
## 774  Role-Playing                 Ignition Entertainment 0.0433333333
## 775       Shooter                 Ignition Entertainment 0.0066666667
## 776        Sports                 Ignition Entertainment 0.0000000000
## 777      Strategy                 Ignition Entertainment 0.0000000000
## 778        Action                     Illusion Softworks 0.0000000000
## 779     Adventure                                 Imadio 0.1400000000
## 780  Role-Playing                            Image Epoch 0.1000000000
## 781     Adventure                        imageepoch Inc. 0.0100000000
## 782  Role-Playing                        imageepoch Inc. 0.0300000000
## 783    Simulation                             Imageworks 0.0200000000
## 784        Action                                 Imagic 0.0000000000
## 785       Shooter                                 Imagic 0.0000000000
## 786     Adventure                              Imagineer 0.1333333333
## 787      Fighting                              Imagineer 0.0000000000
## 788        Racing                              Imagineer 0.0000000000
## 789  Role-Playing                              Imagineer 0.3325000000
## 790    Simulation                              Imagineer 0.1600000000
## 791        Sports                              Imagineer 0.1066666667
## 792          Misc                                   Imax 0.0600000000
## 793     Adventure                            Indie Games 0.0000000000
## 794    Simulation                            Indie Games 0.1400000000
## 795        Action                             Infogrames 0.0000000000
## 796     Adventure                             Infogrames 0.0000000000
## 797      Fighting                             Infogrames 0.0000000000
## 798          Misc                             Infogrames 0.0071428571
## 799      Platform                             Infogrames 0.0000000000
## 800        Racing                             Infogrames 0.0113333333
## 801  Role-Playing                             Infogrames 0.0800000000
## 802       Shooter                             Infogrames 0.0000000000
## 803    Simulation                             Infogrames 0.0000000000
## 804        Sports                             Infogrames 0.0000000000
## 805      Strategy                             Infogrames 0.0000000000
## 806        Action                        Insomniac Games 0.0000000000
## 807     Adventure                           Interchannel 0.0250000000
## 808      Strategy                     Interchannel-Holon 0.0100000000
## 809      Platform                              Intergrow 0.0300000000
## 810        Action                              Interplay 0.0000000000
## 811     Adventure                              Interplay 0.0000000000
## 812      Fighting                              Interplay 0.0000000000
## 813          Misc                              Interplay 0.0000000000
## 814      Platform                              Interplay 0.0000000000
## 815        Racing                              Interplay 0.0025000000
## 816  Role-Playing                              Interplay 0.0000000000
## 817       Shooter                              Interplay 0.0000000000
## 818    Simulation                              Interplay 0.0000000000
## 819        Sports                              Interplay 0.0000000000
## 820       Shooter                  Interplay Productions 0.0000000000
## 821        Sports             Interworks Unlimited, Inc. 0.0000000000
## 822        Action                           Inti Creates 0.0100000000
## 823        Action                  Introversion Software 0.0000000000
## 824  Role-Playing                   inXile Entertainment 0.0000000000
## 825        Action              Irem Software Engineering 0.0300000000
## 826      Fighting              Irem Software Engineering 0.0100000000
## 827          Misc              Irem Software Engineering 0.0340000000
## 828  Role-Playing              Irem Software Engineering 0.0100000000
## 829       Shooter              Irem Software Engineering 0.0000000000
## 830      Strategy              Irem Software Engineering 0.0300000000
## 831        Action                       ITT Family Games 0.0000000000
## 832        Puzzle                              Ivolgamus 0.0000000000
## 833        Puzzle                                   iWin 0.0000000000
## 834      Platform                      Jack of All Games 0.0000000000
## 835       Shooter                      Jack of All Games 0.0000000000
## 836        Action                                 Jaleco 0.0200000000
## 837      Fighting                                 Jaleco 0.0000000000
## 838          Misc                                 Jaleco 0.0550000000
## 839        Puzzle                                 Jaleco 0.0000000000
## 840        Racing                                 Jaleco 0.0483333333
## 841       Shooter                                 Jaleco 0.0000000000
## 842        Sports                                 Jaleco 0.0400000000
## 843      Strategy                                 Jaleco 0.0000000000
## 844          Misc                     Jester Interactive 0.0000000000
## 845        Racing                     Jester Interactive 0.0000000000
## 846    Simulation                                Jorudan 0.3100000000
## 847        Action                     JoWood Productions 0.0000000000
## 848     Adventure                     JoWood Productions 0.0000000000
## 849          Misc                     JoWood Productions 0.0000000000
## 850      Platform                     JoWood Productions 0.0000000000
## 851        Puzzle                     JoWood Productions 0.0000000000
## 852  Role-Playing                     JoWood Productions 0.0020000000
## 853    Simulation                     JoWood Productions 0.0000000000
## 854        Sports                     JoWood Productions 0.0000000000
## 855      Strategy                     JoWood Productions 0.0000000000
## 856    Simulation                            Just Flight 0.0000000000
## 857        Action                                    JVC 0.0000000000
## 858      Fighting                                    JVC 0.1200000000
## 859          Misc                                    JVC 0.0000000000
## 860        Puzzle                                    JVC 0.0000000000
## 861        Racing                                    JVC 0.0000000000
## 862       Shooter                                    JVC 0.0000000000
## 863        Action                         Kadokawa Games 0.0540000000
## 864     Adventure                         Kadokawa Games 0.0200000000
## 865          Misc                         Kadokawa Games 0.1200000000
## 866  Role-Playing                         Kadokawa Games 0.0250000000
## 867    Simulation                         Kadokawa Games 0.0200000000
## 868        Action                        Kadokawa Shoten 0.0450000000
## 869     Adventure                        Kadokawa Shoten 0.0515151515
## 870          Misc                        Kadokawa Shoten 0.0200000000
## 871  Role-Playing                        Kadokawa Shoten 0.0854545455
## 872    Simulation                        Kadokawa Shoten 0.0200000000
## 873        Sports                        Kadokawa Shoten 0.1400000000
## 874      Strategy                        Kadokawa Shoten 0.0200000000
## 875        Action                            Kaga Create 0.0233333333
## 876     Adventure                            Kaga Create 0.0100000000
## 877          Misc                            Kaga Create 0.0500000000
## 878        Action                          Kalypso Media 0.0000000000
## 879     Adventure                          Kalypso Media 0.0000000000
## 880          Misc                          Kalypso Media 0.0000000000
## 881    Simulation                          Kalypso Media 0.0071428571
## 882      Strategy                          Kalypso Media 0.0025000000
## 883          Misc                                  Kamui 0.0300000000
## 884    Simulation                            Kando Games 0.0000000000
## 885          Misc                    Karin Entertainment 0.0200000000
## 886        Action                                  Kemco 0.0000000000
## 887     Adventure                                  Kemco 0.0000000000
## 888          Misc                                  Kemco 0.0000000000
## 889      Platform                                  Kemco 0.0000000000
## 890        Puzzle                                  Kemco 0.0000000000
## 891        Racing                                  Kemco 0.0000000000
## 892  Role-Playing                                  Kemco 0.0500000000
## 893       Shooter                                  Kemco 0.0000000000
## 894        Sports                                  Kemco 0.0000000000
## 895     Adventure                                    KID 0.0200000000
## 896     Adventure                           Kids Station 0.0300000000
## 897  Role-Playing                           King Records 0.0200000000
## 898        Action                    Knowledge Adventure 0.0000000000
## 899     Adventure                    Knowledge Adventure 0.0000000000
## 900          Misc                    Knowledge Adventure 0.0000000000
## 901        Sports                    Knowledge Adventure 0.0000000000
## 902        Action                             Koch Media 0.0000000000
## 903     Adventure                             Koch Media 0.0000000000
## 904        Puzzle                             Koch Media 0.0000000000
## 905  Role-Playing                             Koch Media 0.0000000000
## 906    Simulation                             Koch Media 0.0000000000
## 907        Sports                             Koch Media 0.0000000000
## 908      Strategy                             Koch Media 0.0000000000
## 909      Fighting               Kokopeli Digital Studios 0.0000000000
## 910        Action           Konami Digital Entertainment 0.0845945946
## 911     Adventure           Konami Digital Entertainment 0.0507547170
## 912      Fighting           Konami Digital Entertainment 0.0315000000
## 913          Misc           Konami Digital Entertainment 0.0396103896
## 914      Platform           Konami Digital Entertainment 0.1220000000
## 915        Puzzle           Konami Digital Entertainment 0.0180000000
## 916        Racing           Konami Digital Entertainment 0.0030769231
## 917  Role-Playing           Konami Digital Entertainment 0.1537837838
## 918       Shooter           Konami Digital Entertainment 0.0912500000
## 919    Simulation           Konami Digital Entertainment 0.1084883721
## 920        Sports           Konami Digital Entertainment 0.1585357143
## 921      Strategy           Konami Digital Entertainment 0.1517857143
## 922      Strategy                              Kool Kizz 0.0000000000
## 923          Misc                                    KSS 0.0300000000
## 924        Action                                 Laguna 0.3000000000
## 925      Platform                                 Laguna 0.3400000000
## 926  Role-Playing                                 Laguna 0.3600000000
## 927     Adventure                     Legacy Interactive 0.0000000000
## 928        Action                             LEGO Media 0.0000000000
## 929     Adventure                             LEGO Media 0.0000000000
## 930      Platform                             LEGO Media 0.0000000000
## 931        Racing                             LEGO Media 0.0000000000
## 932      Strategy                             LEGO Media 0.0000000000
## 933        Action                                Level 5 0.8066666667
## 934     Adventure                                Level 5 0.0300000000
## 935          Misc                                Level 5 0.0300000000
## 936        Puzzle                                Level 5 0.1966666667
## 937  Role-Playing                                Level 5 0.5163636364
## 938        Sports                                Level 5 0.2600000000
## 939      Strategy                                Level 5 0.1300000000
## 940       Shooter                  Lexicon Entertainment 0.0000000000
## 941    Simulation                  Lexicon Entertainment 0.0000000000
## 942        Action                            Licensed 4U 0.0000000000
## 943        Puzzle                            Licensed 4U 0.0000000000
## 944    Simulation                 Lighthouse Interactive 0.0000000000
## 945        Puzzle                           Liquid Games 0.0000000000
## 946        Racing                           Liquid Games 0.0000000000
## 947        Action                           Little Orbit 0.0000000000
## 948     Adventure                           Little Orbit 0.0000000000
## 949    Simulation                           Little Orbit 0.0000000000
## 950  Role-Playing                                  Locus 0.0700000000
## 951        Action                              LSP Games 0.0000000000
## 952      Platform                              LSP Games 0.0000000000
## 953       Shooter                              LSP Games 0.0000000000
## 954        Action                              LucasArts 0.0012500000
## 955     Adventure                              LucasArts 0.0133333333
## 956        Racing                              LucasArts 0.0000000000
## 957  Role-Playing                              LucasArts 0.0000000000
## 958       Shooter                              LucasArts 0.0036842105
## 959    Simulation                              LucasArts 0.0050000000
## 960      Strategy                              LucasArts 0.0000000000
## 961          Misc                               Mad Catz 0.0000000000
## 962    Simulation                               Mad Catz 0.0000000000
## 963        Sports                               Mad Catz 0.0000000000
## 964        Sports                        Magical Company 0.1200000000
## 965          Misc                                  Magix 0.0000000000
## 966        Action                  Majesco Entertainment 0.0000000000
## 967     Adventure                  Majesco Entertainment 0.0000000000
## 968      Fighting                  Majesco Entertainment 0.0066666667
## 969          Misc                  Majesco Entertainment 0.0000000000
## 970      Platform                  Majesco Entertainment 0.0000000000
## 971        Puzzle                  Majesco Entertainment 0.0000000000
## 972        Racing                  Majesco Entertainment 0.0000000000
## 973  Role-Playing                  Majesco Entertainment 0.0000000000
## 974       Shooter                  Majesco Entertainment 0.0000000000
## 975    Simulation                  Majesco Entertainment 0.0000000000
## 976        Sports                  Majesco Entertainment 0.0000000000
## 977      Strategy                  Majesco Entertainment 0.0000000000
## 978     Adventure                            Mamba Games 0.0000000000
## 979      Strategy                            Mamba Games 0.0000000000
## 980        Action                   Marvel Entertainment 0.0500000000
## 981        Action                Marvelous Entertainment 0.1083333333
## 982      Fighting                Marvelous Entertainment 0.1600000000
## 983          Misc                Marvelous Entertainment 0.0500000000
## 984  Role-Playing                Marvelous Entertainment 0.0800000000
## 985    Simulation                Marvelous Entertainment 0.1000000000
## 986     Adventure                        Marvelous Games 0.0200000000
## 987        Action                  Marvelous Interactive 0.0570000000
## 988     Adventure                  Marvelous Interactive 0.0264285714
## 989      Fighting                  Marvelous Interactive 0.0222222222
## 990          Misc                  Marvelous Interactive 0.0150000000
## 991  Role-Playing                  Marvelous Interactive 0.0484615385
## 992    Simulation                  Marvelous Interactive 0.0550000000
## 993        Sports                  Marvelous Interactive 0.0450000000
## 994    Simulation                      Masque Publishing 0.0000000000
## 995     Adventure                           Mastertronic 0.0000000000
## 996          Misc                           Mastertronic 0.0000000000
## 997        Puzzle                           Mastertronic 0.0000000000
## 998        Racing                           Mastertronic 0.0000000000
## 999       Shooter                           Mastertronic 0.0000000000
## 1000       Sports                           Mastertronic 0.0000000000
## 1001     Strategy                           Mastertronic 0.0000000000
## 1002    Adventure                                Mastiff 0.0000000000
## 1003         Misc                                Mastiff 0.0000000000
## 1004      Shooter                                Mastiff 0.0000000000
## 1005   Simulation                                Mastiff 0.0000000000
## 1006       Sports                                Mastiff 0.0000000000
## 1007       Action                     Mattel Interactive 0.0000000000
## 1008    Adventure                     Mattel Interactive 0.0000000000
## 1009       Puzzle                     Mattel Interactive 0.0000000000
## 1010       Racing                     Mattel Interactive 0.0000000000
## 1011      Shooter                     Mattel Interactive 0.0000000000
## 1012       Sports                     Mattel Interactive 0.0000000000
## 1013 Role-Playing                               Max Five 0.0000000000
## 1014       Action                   Maximum Family Games 0.0000000000
## 1015   Simulation                                  Maxis 0.0000000000
## 1016    Adventure                      MC2 Entertainment 0.0000000000
## 1017      Shooter                      MC2 Entertainment 0.0000000000
## 1018         Misc                    Media Entertainment 0.0100000000
## 1019    Adventure                          Media Factory 0.1400000000
## 1020       Sports                          Media Factory 0.1500000000
## 1021       Racing                            Media Rings 0.1000000000
## 1022 Role-Playing                            Media Rings 0.0000000000
## 1023       Sports                            Media Rings 0.3600000000
## 1024    Adventure                            Media Works 0.0250000000
## 1025         Misc                            Media Works 0.0400000000
## 1026     Strategy                            Media Works 0.0450000000
## 1027       Puzzle                             MediaQuest 0.0000000000
## 1028       Action                           Men-A-Vision 0.0000000000
## 1029         Misc                     Mentor Interactive 0.0000000000
## 1030 Role-Playing                          Mercury Games 0.0100000000
## 1031   Simulation                          Mercury Games 0.0000000000
## 1032    Adventure                            Merscom LLC 0.0000000000
## 1033     Fighting                               Metro 3D 0.0000000000
## 1034     Platform                               Metro 3D 0.0000000000
## 1035       Racing                               Metro 3D 0.0000000000
## 1036 Role-Playing                               Metro 3D 0.0000000000
## 1037      Shooter                               Metro 3D 0.0000000000
## 1038   Simulation                               Metro 3D 0.1400000000
## 1039 Role-Playing                            Michaelsoft 0.0100000000
## 1040       Puzzle                            Micro Cabin 0.0200000000
## 1041 Role-Playing                            Micro Cabin 0.1000000000
## 1042   Simulation                            Micro Cabin 0.0800000000
## 1043       Action                               Microids 0.0000000000
## 1044    Adventure                               Microids 0.0000000000
## 1045       Sports                               Microids 0.0000000000
## 1046         Misc                             Microprose 0.0000000000
## 1047   Simulation                             Microprose 0.0000000000
## 1048     Strategy                             Microprose 0.0000000000
## 1049       Action                 Microsoft Game Studios 0.0180952381
## 1050    Adventure                 Microsoft Game Studios 0.0000000000
## 1051     Fighting                 Microsoft Game Studios 0.0480000000
## 1052         Misc                 Microsoft Game Studios 0.0129411765
## 1053     Platform                 Microsoft Game Studios 0.0000000000
## 1054       Puzzle                 Microsoft Game Studios 0.0000000000
## 1055       Racing                 Microsoft Game Studios 0.0195454545
## 1056 Role-Playing                 Microsoft Game Studios 0.0368750000
## 1057      Shooter                 Microsoft Game Studios 0.0314285714
## 1058   Simulation                 Microsoft Game Studios 0.0027777778
## 1059       Sports                 Microsoft Game Studios 0.0123529412
## 1060     Strategy                 Microsoft Game Studios 0.0022222222
## 1061       Action        Midas Interactive Entertainment 0.0200000000
## 1062     Fighting        Midas Interactive Entertainment 0.0000000000
## 1063         Misc        Midas Interactive Entertainment 0.0000000000
## 1064     Platform        Midas Interactive Entertainment 0.0000000000
## 1065       Puzzle        Midas Interactive Entertainment 0.0166666667
## 1066       Racing        Midas Interactive Entertainment 0.0000000000
## 1067 Role-Playing        Midas Interactive Entertainment 0.0000000000
## 1068      Shooter        Midas Interactive Entertainment 0.0000000000
## 1069   Simulation        Midas Interactive Entertainment 0.0000000000
## 1070       Sports        Midas Interactive Entertainment 0.0000000000
## 1071     Strategy        Midas Interactive Entertainment 0.0200000000
## 1072       Action                           Midway Games 0.0000000000
## 1073    Adventure                           Midway Games 0.0000000000
## 1074     Fighting                           Midway Games 0.0000000000
## 1075         Misc                           Midway Games 0.0000000000
## 1076     Platform                           Midway Games 0.0000000000
## 1077       Puzzle                           Midway Games 0.0000000000
## 1078       Racing                           Midway Games 0.0000000000
## 1079 Role-Playing                           Midway Games 0.0250000000
## 1080      Shooter                           Midway Games 0.0011764706
## 1081       Sports                           Midway Games 0.0000000000
## 1082      Shooter                              Milestone 0.0000000000
## 1083       Racing                        Milestone S.r.l 0.0000000000
## 1084       Racing                       Milestone S.r.l. 0.0062500000
## 1085       Action                         Minato Station 0.0200000000
## 1086    Adventure                         Minato Station 0.0150000000
## 1087       Action                              Mindscape 0.0000000000
## 1088    Adventure                              Mindscape 0.0000000000
## 1089         Misc                              Mindscape 0.0000000000
## 1090       Puzzle                              Mindscape 0.0000000000
## 1091       Racing                              Mindscape 0.0000000000
## 1092 Role-Playing                              Mindscape 0.0000000000
## 1093       Sports                              Mindscape 0.0000000000
## 1094     Strategy                              Mindscape 0.0000000000
## 1095         Misc                          Mirai Shounen 0.0200000000
## 1096       Sports                                 Misawa 0.0350000000
## 1097      Shooter                                 Mitsui 0.0000000000
## 1098       Action                              mixi, Inc 0.8600000000
## 1099       Sports                                MLB.com 0.0000000000
## 1100    Adventure                                 Mojang 0.0000000000
## 1101   Simulation               Monte Christo Multimedia 0.0000000000
## 1102      Shooter                                   Moss 0.0100000000
## 1103       Action                                    MTO 0.0200000000
## 1104       Racing                                    MTO 0.0900000000
## 1105   Simulation                                    MTO 0.0600000000
## 1106         Misc                              MTV Games 0.0002439024
## 1107         Misc                   Mud Duck Productions 0.0000000000
## 1108       Sports                   Mud Duck Productions 0.0000000000
## 1109       Puzzle                            Mumbo Jumbo 0.0000000000
## 1110       Sports                            Mumbo Jumbo 0.0000000000
## 1111     Strategy                            Mumbo Jumbo 0.0000000000
## 1112       Action                                  Mycom 0.0200000000
## 1113         Misc                           Myelin Media 0.0000000000
## 1114       Action                               Mystique 0.0000000000
## 1115       Action                                    N/A 0.0657142857
## 1116    Adventure                                    N/A 0.0200000000
## 1117     Fighting                                    N/A 0.0000000000
## 1118         Misc                                    N/A 0.0014814815
## 1119     Platform                                    N/A 0.0000000000
## 1120       Puzzle                                    N/A 0.0000000000
## 1121       Racing                                    N/A 0.0000000000
## 1122 Role-Playing                                    N/A 0.0250000000
## 1123      Shooter                                    N/A 0.0000000000
## 1124   Simulation                                    N/A 0.0150000000
## 1125       Sports                                    N/A 0.0400000000
## 1126     Strategy                                    N/A 0.0400000000
## 1127       Action                     Namco Bandai Games 0.0850806452
## 1128    Adventure                     Namco Bandai Games 0.0612068966
## 1129     Fighting                     Namco Bandai Games 0.1479850746
## 1130         Misc                     Namco Bandai Games 0.1262886598
## 1131     Platform                     Namco Bandai Games 0.0678947368
## 1132       Puzzle                     Namco Bandai Games 0.1620000000
## 1133       Racing                     Namco Bandai Games 0.0511111111
## 1134 Role-Playing                     Namco Bandai Games 0.1865562914
## 1135      Shooter                     Namco Bandai Games 0.1148648649
## 1136   Simulation                     Namco Bandai Games 0.2544827586
## 1137       Sports                     Namco Bandai Games 0.2586274510
## 1138     Strategy                     Namco Bandai Games 0.1875409836
## 1139    Adventure                                Natsume 0.0000000000
## 1140     Fighting                                Natsume 0.0000000000
## 1141         Misc                                Natsume 0.0000000000
## 1142     Platform                                Natsume 0.0000000000
## 1143       Puzzle                                Natsume 0.0000000000
## 1144 Role-Playing                                Natsume 0.0000000000
## 1145   Simulation                                Natsume 0.0733333333
## 1146       Sports                                Natsume 0.0200000000
## 1147     Strategy                                Natsume 0.0000000000
## 1148       Sports                           Navarre Corp 0.0000000000
## 1149         Misc                             Naxat Soft 0.0100000000
## 1150     Strategy                                    NCS 0.1333333333
## 1151       Action                                 NCSoft 0.0000000000
## 1152 Role-Playing                                 NCSoft 0.0000000000
## 1153      Shooter                        NDA Productions 0.0000000000
## 1154    Adventure                                    NEC 0.1400000000
## 1155 Role-Playing                                    NEC 0.1450000000
## 1156    Adventure                       NEC Interchannel 0.1020000000
## 1157 Role-Playing                       NEC Interchannel 0.1300000000
## 1158   Simulation                       NEC Interchannel 0.0600000000
## 1159     Strategy                       NEC Interchannel 0.0800000000
## 1160       Action                     Neko Entertainment 0.0000000000
## 1161    Adventure                     Neko Entertainment 0.0000000000
## 1162         Misc                     Neko Entertainment 0.0000000000
## 1163       Puzzle                     Neko Entertainment 0.0000000000
## 1164      Shooter                     Neko Entertainment 0.0000000000
## 1165       Action                                NetRevo 0.0100000000
## 1166    Adventure                                NetRevo 0.0200000000
## 1167     Fighting                                    New 0.3300000000
## 1168     Strategy                    New World Computing 0.0000000000
## 1169       Action                               NewKidCo 0.0000000000
## 1170    Adventure                               NewKidCo 0.0000000000
## 1171     Fighting                               NewKidCo 0.0000000000
## 1172         Misc                               NewKidCo 0.0000000000
## 1173     Platform                               NewKidCo 0.0000000000
## 1174 Role-Playing                                  Nexon 0.0300000000
## 1175         Misc                             Nichibutsu 0.2800000000
## 1176       Action               Nihon Falcom Corporation 0.1200000000
## 1177 Role-Playing               Nihon Falcom Corporation 0.0680000000
## 1178       Action                               Nintendo 0.3701265823
## 1179    Adventure                               Nintendo 0.2574285714
## 1180     Fighting                               Nintendo 0.8300000000
## 1181         Misc                               Nintendo 0.5525000000
## 1182     Platform                               Nintendo 0.9139285714
## 1183       Puzzle                               Nintendo 0.5012162162
## 1184       Racing                               Nintendo 0.7897297297
## 1185 Role-Playing                               Nintendo 0.9645283019
## 1186      Shooter                               Nintendo 0.2334615385
## 1187   Simulation                               Nintendo 0.8162068966
## 1188       Sports                               Nintendo 0.6521818182
## 1189     Strategy                               Nintendo 0.3268750000
## 1190         Misc                           Nippon Amuse 0.0900000000
## 1191       Action                        Nippon Columbia 0.1325000000
## 1192         Misc                        Nippon Columbia 0.1400000000
## 1193       Action                   Nippon Ichi Software 0.0430769231
## 1194    Adventure                   Nippon Ichi Software 0.0258333333
## 1195     Fighting                   Nippon Ichi Software 0.0550000000
## 1196         Misc                   Nippon Ichi Software 0.1000000000
## 1197     Platform                   Nippon Ichi Software 0.0166666667
## 1198 Role-Playing                   Nippon Ichi Software 0.0652173913
## 1199      Shooter                   Nippon Ichi Software 0.0000000000
## 1200     Strategy                   Nippon Ichi Software 0.0200000000
## 1201         Misc                         Nippon Telenet 0.1300000000
## 1202    Adventure                              Nitroplus 0.0100000000
## 1203     Fighting                              Nitroplus 0.0100000000
## 1204       Action                                Nobilis 0.0000000000
## 1205    Adventure                                Nobilis 0.0050000000
## 1206         Misc                                Nobilis 0.0000000000
## 1207       Racing                                Nobilis 0.0000000000
## 1208 Role-Playing                                Nobilis 0.0050000000
## 1209   Simulation                                Nobilis 0.0000000000
## 1210       Action                            Nordcurrent 0.0000000000
## 1211         Misc                            Nordcurrent 0.0000000000
## 1212       Puzzle                            Nordcurrent 0.0000000000
## 1213       Sports                            Nordcurrent 0.0000000000
## 1214       Action                           Nordic Games 0.0000000000
## 1215    Adventure                           Nordic Games 0.0000000000
## 1216         Misc                           Nordic Games 0.0000000000
## 1217       Racing                           Nordic Games 0.0000000000
## 1218 Role-Playing                           Nordic Games 0.0000000000
## 1219      Shooter                           Nordic Games 0.0000000000
## 1220       Sports                           Nordic Games 0.0000000000
## 1221     Strategy                           Nordic Games 0.0000000000
## 1222      Shooter                              NovaLogic 0.0000000000
## 1223     Platform                            Number None 0.0000000000
## 1224    Adventure                                O-Games 0.0000000000
## 1225         Misc                                O-Games 0.0000000000
## 1226       Puzzle                                O-Games 0.0000000000
## 1227       Racing                                O-Games 0.0000000000
## 1228      Shooter                                O-Games 0.0000000000
## 1229       Sports                                O-Games 0.0000000000
## 1230       Puzzle                       O3 Entertainment 0.0000000000
## 1231      Shooter                       O3 Entertainment 0.0000000000
## 1232   Simulation                       O3 Entertainment 0.0000000000
## 1233       Action                                  Ocean 0.0066666667
## 1234     Fighting                                  Ocean 0.0000000000
## 1235         Misc                                  Ocean 0.0000000000
## 1236     Platform                                  Ocean 0.0000000000
## 1237       Puzzle                                  Ocean 0.0000000000
## 1238       Racing                                  Ocean 0.0000000000
## 1239      Shooter                                  Ocean 0.1200000000
## 1240       Sports                                  Ocean 0.2800000000
## 1241   Simulation                          Office Create 0.0300000000
## 1242 Role-Playing                              On Demand 0.0000000000
## 1243   Simulation                              Ongakukan 0.0100000000
## 1244   Simulation                         Origin Systems 0.0000000000
## 1245    Adventure                                Otomate 0.0100000000
## 1246       Action                     Oxygen Interactive 0.0000000000
## 1247    Adventure                     Oxygen Interactive 0.0000000000
## 1248         Misc                     Oxygen Interactive 0.0000000000
## 1249     Platform                     Oxygen Interactive 0.0000000000
## 1250       Puzzle                     Oxygen Interactive 0.0000000000
## 1251       Sports                     Oxygen Interactive 0.0000000000
## 1252         Misc                               P2 Games 0.0000000000
## 1253       Puzzle                               P2 Games 0.0000000000
## 1254         Misc            Pacific Century Cyber Works 0.0300000000
## 1255    Adventure                          Pack-In-Video 0.0500000000
## 1256   Simulation                          Pack-In-Video 0.0600000000
## 1257   Simulation                           Pack In Soft 0.1100000000
## 1258       Action                                 Palcom 0.3100000000
## 1259 Role-Playing                       Panther Software 0.1200000000
## 1260         Misc                                   Paon 0.0416666667
## 1261         Misc                       Paon Corporation 0.0300000000
## 1262   Simulation                    Paradox Development 0.0000000000
## 1263         Misc                    Paradox Interactive 0.0000000000
## 1264 Role-Playing                    Paradox Interactive 0.0000000000
## 1265   Simulation                    Paradox Interactive 0.0000000000
## 1266     Strategy                    Paradox Interactive 0.0000000000
## 1267       Action                           Parker Bros. 0.0000000000
## 1268     Platform                           Parker Bros. 0.0000000000
## 1269       Puzzle                           Parker Bros. 0.0000000000
## 1270       Puzzle          Performance Designed Products 0.0000000000
## 1271   Simulation                             Phantagram 0.0100000000
## 1272      Shooter                            Phantom EFX 0.0000000000
## 1273     Platform                             Phenomedia 0.0000000000
## 1274       Puzzle                             Phenomedia 0.0000000000
## 1275       Racing                             Phenomedia 0.0000000000
## 1276      Shooter                          Phoenix Games 0.0000000000
## 1277    Adventure                                 Piacci 0.0100000000
## 1278         Misc                               Pinnacle 0.0000000000
## 1279       Puzzle                               Pinnacle 0.0000000000
## 1280       Sports                               Pinnacle 0.0000000000
## 1281     Strategy                               Pinnacle 0.0000000000
## 1282    Adventure                            Pioneer LDC 0.1066666667
## 1283       Racing                            Pioneer LDC 0.0000000000
## 1284         Misc                                Play It 0.0000000000
## 1285     Platform                                Play It 0.0000000000
## 1286       Racing                                Play It 0.0000000000
## 1287      Shooter                                Play It 0.0000000000
## 1288       Sports                                Play It 0.0000000000
## 1289       Action                 Playlogic Game Factory 0.0000000000
## 1290         Misc                 Playlogic Game Factory 0.0000000000
## 1291       Puzzle                 Playlogic Game Factory 0.0000000000
## 1292      Shooter                 Playlogic Game Factory 0.0000000000
## 1293       Sports                 Playlogic Game Factory 0.0000000000
## 1294     Strategy                 Playlogic Game Factory 0.0000000000
## 1295       Racing                              Playmates 0.0000000000
## 1296     Fighting                               Playmore 0.0400000000
## 1297       Action                                  PlayV 0.0000000000
## 1298         Misc                                  PlayV 0.0000000000
## 1299       Puzzle                                  PlayV 0.0000000000
## 1300         Misc                                 Plenty 0.0200000000
## 1301         Misc                             PM Studios 0.0000000000
## 1302         Misc                            Pony Canyon 0.0000000000
## 1303    Adventure                           PopCap Games 0.0000000000
## 1304         Misc                           PopCap Games 0.0000000000
## 1305       Puzzle                           PopCap Games 0.0000000000
## 1306     Strategy                           PopCap Games 0.0000000000
## 1307       Action                         Popcorn Arcade 0.0000000000
## 1308     Platform                         Popcorn Arcade 0.0000000000
## 1309       Puzzle                         Popcorn Arcade 0.0000000000
## 1310       Racing                         Popcorn Arcade 0.0000000000
## 1311      Shooter                         Popcorn Arcade 0.0000000000
## 1312     Strategy                        PopTop Software 0.0000000000
## 1313       Puzzle                                    Pow 0.0500000000
## 1314       Action                                  PQube 0.0190000000
## 1315    Adventure                                  PQube 0.0340000000
## 1316     Fighting                                  PQube 0.0405882353
## 1317         Misc                                  PQube 0.0000000000
## 1318       Racing                                  PQube 0.0000000000
## 1319      Shooter                                  PQube 0.0000000000
## 1320   Simulation                                  PQube 0.0000000000
## 1321       Sports                                  PQube 0.0000000000
## 1322    Adventure                          Princess Soft 0.0233333333
## 1323       Action                              Prototype 0.0300000000
## 1324    Adventure                              Prototype 0.0223076923
## 1325       Action                              Psygnosis 0.0000000000
## 1326    Adventure                              Psygnosis 0.0116666667
## 1327         Misc                              Psygnosis 0.0000000000
## 1328     Platform                              Psygnosis 0.0000000000
## 1329       Puzzle                              Psygnosis 0.0000000000
## 1330       Racing                              Psygnosis 0.0812500000
## 1331 Role-Playing                              Psygnosis 0.0000000000
## 1332      Shooter                              Psygnosis 0.0000000000
## 1333   Simulation                              Psygnosis 0.0000000000
## 1334       Sports                              Psygnosis 0.0000000000
## 1335         Misc                                 Quelle 0.0000000000
## 1336 Role-Playing                                  Quest 0.7100000000
## 1337       Action                               Quinrose 0.0166666667
## 1338    Adventure                               Quinrose 0.0154545455
## 1339    Adventure                                Quintet 0.0200000000
## 1340     Fighting                          Rage Software 0.0000000000
## 1341       Puzzle                          Rage Software 0.0000000000
## 1342       Racing                          Rage Software 0.0000000000
## 1343      Shooter                          Rage Software 0.0000000000
## 1344     Platform                             Rain Games 0.0000000000
## 1345       Racing                              Rebellion 0.0000000000
## 1346      Shooter                 Rebellion Developments 0.0000000000
## 1347    Adventure                      RED Entertainment 0.0200000000
## 1348    Adventure                                Red Orb 0.0000000000
## 1349       Action                Red Storm Entertainment 0.0000000000
## 1350      Shooter                Red Storm Entertainment 0.0000000000
## 1351         Misc                              RedOctane 0.0075000000
## 1352    Adventure                     Reef Entertainment 0.0000000000
## 1353      Shooter                     Reef Entertainment 0.0000000000
## 1354       Sports                     Reef Entertainment 0.0000000000
## 1355       Sports                           responDESIGN 0.0000000000
## 1356    Adventure                     Revolution (Japan) 0.0200000000
## 1357    Adventure                    Revolution Software 0.0000000000
## 1358       Action                      Rising Star Games 0.0112500000
## 1359    Adventure                      Rising Star Games 0.0060000000
## 1360     Fighting                      Rising Star Games 0.0166666667
## 1361         Misc                      Rising Star Games 0.0050000000
## 1362     Platform                      Rising Star Games 0.0000000000
## 1363       Puzzle                      Rising Star Games 0.0038461538
## 1364 Role-Playing                      Rising Star Games 0.0492307692
## 1365      Shooter                      Rising Star Games 0.0125000000
## 1366   Simulation                      Rising Star Games 0.0763636364
## 1367       Sports                      Rising Star Games 0.0150000000
## 1368     Strategy                      Rising Star Games 0.0125000000
## 1369   Simulation                          Riverhillsoft 0.0400000000
## 1370       Action                         Rocket Company 0.0566666667
## 1371    Adventure                         Rocket Company 0.0300000000
## 1372         Misc                         Rocket Company 0.2300000000
## 1373 Role-Playing                         Rocket Company 0.0600000000
## 1374   Simulation                         Rocket Company 0.0400000000
## 1375       Sports                         Rocket Company 0.0700000000
## 1376       Action                             Rondomedia 0.0000000000
## 1377    Adventure                             Rondomedia 0.0000000000
## 1378         Misc                             Rondomedia 0.0000000000
## 1379       Puzzle                             Rondomedia 0.0000000000
## 1380       Racing                             Rondomedia 0.0000000000
## 1381   Simulation                             Rondomedia 0.0000000000
## 1382       Racing                                    RTL 0.0000000000
## 1383   Simulation                                    RTL 0.0000000000
## 1384       Sports                                    RTL 0.0000000000
## 1385       Action                                 Russel 0.0250000000
## 1386    Adventure                                 Russel 0.0133333333
## 1387       Sports                                 Russel 0.0000000000
## 1388    Adventure                      Sammy Corporation 0.0000000000
## 1389     Fighting                      Sammy Corporation 0.0600000000
## 1390         Misc                      Sammy Corporation 0.4175000000
## 1391   Simulation                      Sammy Corporation 0.0000000000
## 1392       Action                                 Saurus 0.0000000000
## 1393       Action                        Scholastic Inc. 0.0000000000
## 1394    Adventure                        Scholastic Inc. 0.0000000000
## 1395         Misc                        Scholastic Inc. 0.0000000000
## 1396       Puzzle                        Scholastic Inc. 0.0000000000
## 1397       Action                                    SCi 0.0000000000
## 1398     Platform                                    SCi 0.0000000000
## 1399       Racing                                    SCi 0.0000000000
## 1400      Shooter                                    SCi 0.0000000000
## 1401       Action                             Screenlife 0.1733333333
## 1402     Fighting                             Screenlife 0.0700000000
## 1403 Role-Playing                             Screenlife 0.0350000000
## 1404       Action                           SCS Software 0.0000000000
## 1405       Puzzle                                  Sears 0.0000000000
## 1406       Action                                   Sega 0.0613861386
## 1407    Adventure                                   Sega 0.1954838710
## 1408     Fighting                                   Sega 0.1762162162
## 1409         Misc                                   Sega 0.0879032258
## 1410     Platform                                   Sega 0.0653846154
## 1411       Puzzle                                   Sega 0.0740909091
## 1412       Racing                                   Sega 0.0735416667
## 1413 Role-Playing                                   Sega 0.1256250000
## 1414      Shooter                                   Sega 0.0900000000
## 1415   Simulation                                   Sega 0.0900000000
## 1416       Sports                                   Sega 0.0722222222
## 1417     Strategy                                   Sega 0.0505714286
## 1418         Misc                       Seta Corporation 0.0900000000
## 1419 Role-Playing                       Seta Corporation 0.2000000000
## 1420       Sports                       Seta Corporation 0.0300000000
## 1421       Action                          Seventh Chord 0.0800000000
## 1422    Adventure                             Shogakukan 0.0550000000
## 1423         Misc                             Shogakukan 0.1100000000
## 1424       Sports           Simon & Schuster Interactive 0.0000000000
## 1425       Racing                   Slightly Mad Studios 0.0066666667
## 1426     Strategy                    Slitherine Software 0.0000000000
## 1427     Fighting                                    SNK 0.1127272727
## 1428    Adventure                           SNK Playmore 0.0333333333
## 1429     Fighting                           SNK Playmore 0.0375000000
## 1430 Role-Playing                           SNK Playmore 0.0100000000
## 1431      Shooter                           SNK Playmore 0.0000000000
## 1432    Adventure                                Societa 0.0400000000
## 1433       Action                               Sold Out 0.0000000000
## 1434         Misc                                 Sonnet 0.0300000000
## 1435       Action            Sony Computer Entertainment 0.0440000000
## 1436    Adventure            Sony Computer Entertainment 0.0665853659
## 1437     Fighting            Sony Computer Entertainment 0.2413333333
## 1438         Misc            Sony Computer Entertainment 0.0435937500
## 1439     Platform            Sony Computer Entertainment 0.1146969697
## 1440       Puzzle            Sony Computer Entertainment 0.1641666667
## 1441       Racing            Sony Computer Entertainment 0.2136923077
## 1442 Role-Playing            Sony Computer Entertainment 0.3281632653
## 1443      Shooter            Sony Computer Entertainment 0.0549019608
## 1444   Simulation            Sony Computer Entertainment 0.1586666667
## 1445       Sports            Sony Computer Entertainment 0.0714516129
## 1446     Strategy            Sony Computer Entertainment 0.0866666667
## 1447       Sports    Sony Computer Entertainment America 0.0000000000
## 1448       Action     Sony Computer Entertainment Europe 0.2800000000
## 1449    Adventure     Sony Computer Entertainment Europe 0.0166666667
## 1450         Misc     Sony Computer Entertainment Europe 0.2475000000
## 1451     Platform     Sony Computer Entertainment Europe 0.1100000000
## 1452      Shooter     Sony Computer Entertainment Europe 0.0400000000
## 1453   Simulation     Sony Computer Entertainment Europe 0.3500000000
## 1454         Misc               Sony Music Entertainment 0.1400000000
## 1455 Role-Playing              Sony Online Entertainment 0.0000000000
## 1456     Strategy              Sony Online Entertainment 0.0000000000
## 1457       Action                        SouthPeak Games 0.0044444444
## 1458    Adventure                        SouthPeak Games 0.0000000000
## 1459     Fighting                        SouthPeak Games 0.0000000000
## 1460         Misc                        SouthPeak Games 0.0000000000
## 1461       Puzzle                        SouthPeak Games 0.0000000000
## 1462       Racing                        SouthPeak Games 0.0000000000
## 1463 Role-Playing                        SouthPeak Games 0.0150000000
## 1464      Shooter                        SouthPeak Games 0.0000000000
## 1465   Simulation                        SouthPeak Games 0.0000000000
## 1466       Sports                        SouthPeak Games 0.0000000000
## 1467     Strategy                        SouthPeak Games 0.0000000000
## 1468       Action                                  Spike 0.0900000000
## 1469    Adventure                                  Spike 0.0333333333
## 1470     Fighting                                  Spike 0.0600000000
## 1471         Misc                                  Spike 0.1425000000
## 1472 Role-Playing                                  Spike 0.0533333333
## 1473   Simulation                                  Spike 0.0800000000
## 1474       Sports                                  Spike 0.0027272727
## 1475       Sports                                    SPS 0.0000000000
## 1476       Racing                                 Square 0.1500000000
## 1477 Role-Playing                                 Square 0.4900000000
## 1478 Role-Playing                              Square EA 0.0000000000
## 1479       Action                            Square Enix 0.0561538462
## 1480    Adventure                            Square Enix 0.0510000000
## 1481     Fighting                            Square Enix 0.4766666667
## 1482         Misc                            Square Enix 0.1700000000
## 1483       Puzzle                            Square Enix 0.0175000000
## 1484 Role-Playing                            Square Enix 0.3219379845
## 1485      Shooter                            Square Enix 0.0512500000
## 1486   Simulation                            Square Enix 0.1675000000
## 1487     Strategy                            Square Enix 0.1011111111
## 1488     Fighting                             SquareSoft 0.1925000000
## 1489       Racing                             SquareSoft 0.3000000000
## 1490 Role-Playing                             SquareSoft 0.9592105263
## 1491      Shooter                             SquareSoft 0.1300000000
## 1492   Simulation                             SquareSoft 0.2900000000
## 1493       Sports                             SquareSoft 0.2200000000
## 1494     Strategy                             SquareSoft 0.3825000000
## 1495     Strategy                                    SSI 0.0000000000
## 1496       Action                        Stainless Games 0.0000000000
## 1497       Action                               Starfish 0.0000000000
## 1498 Role-Playing                               Starfish 0.0200000000
## 1499      Shooter                               Starfish 0.0000000000
## 1500       Sports                               Starfish 0.0000000000
## 1501       Action                         Starpath Corp. 0.0000000000
## 1502 Role-Playing                                  Sting 0.0166666667
## 1503       Action                       Storm City Games 0.0000000000
## 1504    Adventure                       Storm City Games 0.0000000000
## 1505         Misc                       Storm City Games 0.0000000000
## 1506     Platform                       Storm City Games 0.0000000000
## 1507       Puzzle                       Storm City Games 0.0000000000
## 1508       Racing                       Storm City Games 0.0000000000
## 1509       Sports                       Storm City Games 0.0000000000
## 1510     Strategy                       Storm City Games 0.0000000000
## 1511     Strategy                         Strategy First 0.0000000000
## 1512       Action                                Success 0.0000000000
## 1513    Adventure                                Success 0.0325000000
## 1514         Misc                                Success 0.0200000000
## 1515       Puzzle                                Success 0.0000000000
## 1516 Role-Playing                                Success 0.0057142857
## 1517      Shooter                                Success 0.0000000000
## 1518   Simulation                                Success 0.0100000000
## 1519     Strategy                                Success 0.0000000000
## 1520       Sports                             Summitsoft 0.0000000000
## 1521     Strategy                             Sunflowers 0.0000000000
## 1522       Action                    Sunrise Interactive 0.0700000000
## 1523     Fighting                    Sunrise Interactive 0.0200000000
## 1524       Racing                    Sunrise Interactive 0.0200000000
## 1525 Role-Playing                    Sunrise Interactive 0.0600000000
## 1526    Adventure                                Sunsoft 0.0300000000
## 1527     Fighting                                Sunsoft 0.0300000000
## 1528         Misc                                Sunsoft 0.0300000000
## 1529     Platform                                Sunsoft 0.0000000000
## 1530       Puzzle                                Sunsoft 0.0200000000
## 1531 Role-Playing                                Sunsoft 0.0000000000
## 1532      Shooter                                Sunsoft 0.0000000000
## 1533    Adventure                                 Sweets 0.0250000000
## 1534       Action                   Swing! Entertainment 0.0000000000
## 1535    Adventure                   Swing! Entertainment 0.0000000000
## 1536     Platform                   Swing! Entertainment 0.0000000000
## 1537      Shooter                   Swing! Entertainment 0.0000000000
## 1538   Simulation                   Swing! Entertainment 0.0000000000
## 1539         Misc                                 Syscom 0.1500000000
## 1540       Racing                                 Syscom 0.0000000000
## 1541     Platform                               System 3 0.0000000000
## 1542         Misc               System 3 Arcade Software 0.0000000000
## 1543     Platform               System 3 Arcade Software 0.0000000000
## 1544       Puzzle               System 3 Arcade Software 0.0000000000
## 1545       Racing               System 3 Arcade Software 0.0000000000
## 1546       Sports               System 3 Arcade Software 0.0000000000
## 1547    Adventure                            System Soft 0.0200000000
## 1548     Strategy                            System Soft 0.0100000000
## 1549       Sports                               T&E Soft 0.1200000000
## 1550       Action                                  Taito 0.0000000000
## 1551    Adventure                                  Taito 0.0200000000
## 1552     Fighting                                  Taito 0.0100000000
## 1553         Misc                                  Taito 0.0233333333
## 1554 Role-Playing                                  Taito 0.0000000000
## 1555      Shooter                                  Taito 0.1225000000
## 1556   Simulation                                  Taito 0.2214285714
## 1557       Action                                 Takara 0.0400000000
## 1558     Fighting                                 Takara 0.4500000000
## 1559         Misc                                 Takara 0.1575000000
## 1560       Racing                                 Takara 0.1425000000
## 1561 Role-Playing                                 Takara 0.0200000000
## 1562       Action                            Takara Tomy 0.0400000000
## 1563     Fighting                            Takara Tomy 0.0780000000
## 1564         Misc                            Takara Tomy 0.0583333333
## 1565       Racing                            Takara Tomy 0.0050000000
## 1566 Role-Playing                            Takara Tomy 0.0533333333
## 1567       Sports                            Takara Tomy 0.0233333333
## 1568     Strategy                            Takara Tomy 0.0000000000
## 1569       Action                   Take-Two Interactive 0.0477419355
## 1570    Adventure                   Take-Two Interactive 0.0116666667
## 1571     Fighting                   Take-Two Interactive 0.0000000000
## 1572         Misc                   Take-Two Interactive 0.0018518519
## 1573     Platform                   Take-Two Interactive 0.0000000000
## 1574       Puzzle                   Take-Two Interactive 0.0000000000
## 1575       Racing                   Take-Two Interactive 0.0040000000
## 1576 Role-Playing                   Take-Two Interactive 0.0216666667
## 1577      Shooter                   Take-Two Interactive 0.0103076923
## 1578   Simulation                   Take-Two Interactive 0.0000000000
## 1579       Sports                   Take-Two Interactive 0.0017880795
## 1580     Strategy                   Take-Two Interactive 0.0022727273
## 1581    Adventure                                 Takuyo 0.0100000000
## 1582      Shooter                              TalonSoft 0.0000000000
## 1583       Action                               TDK Core 0.0000000000
## 1584         Misc                               TDK Core 0.1100000000
## 1585   Simulation                               TDK Core 0.0300000000
## 1586       Action                         TDK Mediactive 0.0000000000
## 1587    Adventure                         TDK Mediactive 0.0000000000
## 1588         Misc                         TDK Mediactive 0.0000000000
## 1589     Platform                         TDK Mediactive 0.0000000000
## 1590       Racing                         TDK Mediactive 0.0000000000
## 1591      Shooter                         TDK Mediactive 0.0000000000
## 1592       Sports                         TDK Mediactive 0.0000000000
## 1593     Strategy                        Team17 Software 0.0000000000
## 1594       Sports              Technos Japan Corporation 0.0200000000
## 1595      Shooter                             TechnoSoft 0.0000000000
## 1596       Action                             Tecmo Koei 0.1137226277
## 1597    Adventure                             Tecmo Koei 0.0594117647
## 1598     Fighting                             Tecmo Koei 0.1258333333
## 1599         Misc                             Tecmo Koei 0.0192857143
## 1600     Platform                             Tecmo Koei 0.0500000000
## 1601       Racing                             Tecmo Koei 0.0500000000
## 1602 Role-Playing                             Tecmo Koei 0.0517021277
## 1603      Shooter                             Tecmo Koei 0.0066666667
## 1604   Simulation                             Tecmo Koei 0.0923076923
## 1605       Sports                             Tecmo Koei 0.0720512821
## 1606     Strategy                             Tecmo Koei 0.0816000000
## 1607         Misc                              Telegames 0.0000000000
## 1608       Puzzle                              Telegames 0.0000000000
## 1609   Simulation                              Telegames 0.0000000000
## 1610     Strategy                              Telegames 0.0000000000
## 1611       Action                         Telltale Games 0.0000000000
## 1612    Adventure                         Telltale Games 0.0013043478
## 1613       Action                                Telstar 0.0000000000
## 1614       Racing                                Telstar 0.0000000000
## 1615      Shooter                                Telstar 0.0000000000
## 1616       Puzzle                          Tetris Online 0.0600000000
## 1617    Adventure                                    TGL 0.0250000000
## 1618    Adventure                  The Adventure Company 0.0000000000
## 1619       Puzzle                  The Adventure Company 0.0000000000
## 1620       Racing                   The Learning Company 0.0000000000
## 1621       Action                                    THQ 0.0100000000
## 1622    Adventure                                    THQ 0.0029787234
## 1623     Fighting                                    THQ 0.0090140845
## 1624         Misc                                    THQ 0.0000000000
## 1625     Platform                                    THQ 0.0009411765
## 1626       Puzzle                                    THQ 0.0647058824
## 1627       Racing                                    THQ 0.0001980198
## 1628 Role-Playing                                    THQ 0.0000000000
## 1629      Shooter                                    THQ 0.0069444444
## 1630   Simulation                                    THQ 0.0181481481
## 1631       Sports                                    THQ 0.0045161290
## 1632     Strategy                                    THQ 0.0065625000
## 1633       Action                            Tigervision 0.0000000000
## 1634     Fighting                Time Warner Interactive 0.0000000000
## 1635      Shooter                Time Warner Interactive 0.0000000000
## 1636       Sports                Time Warner Interactive 0.0000000000
## 1637     Strategy                Time Warner Interactive 0.0000000000
## 1638       Action                                  Titus 0.0175000000
## 1639     Fighting                                  Titus 0.0000000000
## 1640         Misc                                  Titus 0.0000000000
## 1641     Platform                                  Titus 0.0000000000
## 1642       Racing                                  Titus 0.0000000000
## 1643 Role-Playing                                  Titus 0.0000000000
## 1644      Shooter                                  Titus 0.0000000000
## 1645   Simulation                                  Titus 0.0000000000
## 1646     Strategy                                  Titus 0.0000000000
## 1647         Misc                                 Tivola 0.0000000000
## 1648 Role-Playing                                   TOHO 0.1100000000
## 1649         Misc                                  Tommo 0.0000000000
## 1650      Shooter                                  Tommo 0.0000000000
## 1651       Sports                                  Tommo 0.0000000000
## 1652       Action                       Tomy Corporation 0.0000000000
## 1653     Fighting                       Tomy Corporation 0.1960000000
## 1654         Misc                       Tomy Corporation 0.0000000000
## 1655       Racing                       Tomy Corporation 0.0000000000
## 1656 Role-Playing                       Tomy Corporation 0.0533333333
## 1657   Simulation                       Tomy Corporation 0.0000000000
## 1658         Misc                    TopWare Interactive 0.0000000000
## 1659 Role-Playing                    TopWare Interactive 0.0000000000
## 1660       Action                             Touchstone 0.0066666667
## 1661   Simulation                             Touchstone 0.0000000000
## 1662       Sports                              Tradewest 0.0000000000
## 1663      Shooter                           Trion Worlds 0.0000000000
## 1664     Strategy                           Trion Worlds 0.0000000000
## 1665      Shooter                   Tripwire Interactive 0.0000000000
## 1666       Action                  Tru Blu Entertainment 0.0000000000
## 1667       Sports                  Tru Blu Entertainment 0.0000000000
## 1668     Fighting                               Tryfirst 0.0300000000
## 1669       Racing                                    TYO 0.0000000000
## 1670    Adventure                              Type-Moon 0.1000000000
## 1671     Platform                              U.S. Gold 0.0000000000
## 1672       Sports                              U.S. Gold 0.0000000000
## 1673       Action                                Ubisoft 0.0109326425
## 1674    Adventure                                Ubisoft 0.0047457627
## 1675     Fighting                                Ubisoft 0.0305263158
## 1676         Misc                                Ubisoft 0.0019205298
## 1677     Platform                                Ubisoft 0.0005714286
## 1678       Puzzle                                Ubisoft 0.0012500000
## 1679       Racing                                Ubisoft 0.0019230769
## 1680 Role-Playing                                Ubisoft 0.0524390244
## 1681      Shooter                                Ubisoft 0.0104347826
## 1682   Simulation                                Ubisoft 0.0066386555
## 1683       Sports                                Ubisoft 0.0011111111
## 1684     Strategy                                Ubisoft 0.0031034483
## 1685       Action                         Ubisoft Annecy 0.2080000000
## 1686     Fighting                         Ubisoft Annecy 0.0500000000
## 1687         Misc                         Ubisoft Annecy 0.0700000000
## 1688 Role-Playing                         Ubisoft Annecy 0.0300000000
## 1689       Sports                            UEP Systems 0.2000000000
## 1690       Action                        UFO Interactive 0.0000000000
## 1691         Misc                        UFO Interactive 0.0000000000
## 1692       Puzzle                        UFO Interactive 0.0000000000
## 1693      Shooter                        UFO Interactive 0.0000000000
## 1694       Sports                        UFO Interactive 0.0000000000
## 1695   Simulation                      UIG Entertainment 0.0000000000
## 1696     Fighting                            Ultravision 0.0000000000
## 1697       Action                        Universal Gamex 0.0000000000
## 1698       Action                  Universal Interactive 0.0000000000
## 1699     Fighting                  Universal Interactive 0.0000000000
## 1700         Misc                  Universal Interactive 0.0000000000
## 1701     Platform                  Universal Interactive 0.0342857143
## 1702      Shooter                  Universal Interactive 0.0000000000
## 1703       Sports                  Universal Interactive 0.0000000000
## 1704       Action                                Unknown 0.0360714286
## 1705    Adventure                                Unknown 0.0229411765
## 1706     Fighting                                Unknown 0.0116666667
## 1707         Misc                                Unknown 0.0361290323
## 1708     Platform                                Unknown 0.0120000000
## 1709       Puzzle                                Unknown 0.0405882353
## 1710       Racing                                Unknown 0.0369230769
## 1711 Role-Playing                                Unknown 0.0959090909
## 1712      Shooter                                Unknown 0.0038461538
## 1713   Simulation                                Unknown 0.0015384615
## 1714       Sports                                Unknown 0.0000000000
## 1715     Strategy                                Unknown 0.0000000000
## 1716    Adventure                           Valcon Games 0.0000000000
## 1717       Racing                           Valcon Games 0.0000000000
## 1718      Shooter                           Valcon Games 0.0000000000
## 1719   Simulation                           Valcon Games 0.0000000000
## 1720       Sports                           Valcon Games 0.0000000000
## 1721    Adventure                               ValuSoft 0.0000000000
## 1722       Puzzle                               ValuSoft 0.0000000000
## 1723       Racing                               ValuSoft 0.0000000000
## 1724      Shooter                                  Valve 0.0200000000
## 1725      Shooter                         Valve Software 0.0033333333
## 1726         Misc                                    Vap 0.0500000000
## 1727       Racing                  Vatical Entertainment 0.0000000000
## 1728     Fighting                              Vic Tokai 0.0000000000
## 1729    Adventure                     Victor Interactive 0.0200000000
## 1730         Misc                     Victor Interactive 0.0200000000
## 1731 Role-Playing                     Victor Interactive 0.0000000000
## 1732   Simulation                     Victor Interactive 0.1550000000
## 1733       Sports                     Victor Interactive 0.0825000000
## 1734       Action                           Video System 0.0000000000
## 1735       Racing                           Video System 0.1233333333
## 1736       Action                                  Views 0.0200000000
## 1737    Adventure                                  Views 0.0100000000
## 1738       Action                          Vir2L Studios 0.0000000000
## 1739       Racing                          Vir2L Studios 0.0000000000
## 1740       Sports                          Vir2L Studios 0.0000000000
## 1741       Action                     Virgin Interactive 0.4383333333
## 1742    Adventure                     Virgin Interactive 0.0000000000
## 1743     Fighting                     Virgin Interactive 0.1763157895
## 1744         Misc                     Virgin Interactive 0.0000000000
## 1745     Platform                     Virgin Interactive 0.0183333333
## 1746       Puzzle                     Virgin Interactive 0.0000000000
## 1747       Racing                     Virgin Interactive 0.0000000000
## 1748 Role-Playing                     Virgin Interactive 0.0000000000
## 1749      Shooter                     Virgin Interactive 0.0000000000
## 1750   Simulation                     Virgin Interactive 0.0000000000
## 1751       Sports                     Virgin Interactive 0.0000000000
## 1752     Strategy                     Virgin Interactive 0.0366666667
## 1753         Misc                     Virtual Play Games 0.0000000000
## 1754       Sports                     Virtual Play Games 0.0000000000
## 1755      Shooter                                  Visco 0.0000000000
## 1756       Action                          Vivendi Games 0.0000000000
## 1757    Adventure                          Vivendi Games 0.0085714286
## 1758     Fighting                          Vivendi Games 0.0000000000
## 1759         Misc                          Vivendi Games 0.0000000000
## 1760     Platform                          Vivendi Games 0.0000000000
## 1761       Puzzle                          Vivendi Games 0.0000000000
## 1762       Racing                          Vivendi Games 0.0000000000
## 1763 Role-Playing                          Vivendi Games 0.0000000000
## 1764      Shooter                          Vivendi Games 0.0056666667
## 1765   Simulation                          Vivendi Games 0.0000000000
## 1766       Sports                          Vivendi Games 0.0000000000
## 1767     Strategy                          Vivendi Games 0.0000000000
## 1768       Action                                Wanadoo 0.0300000000
## 1769     Platform                                Wanadoo 0.0000000000
## 1770       Racing                                Wanadoo 0.0000000000
## 1771      Shooter                                Warashi 0.0200000000
## 1772      Shooter                          Wargaming.net 0.0000000000
## 1773       Action Warner Bros. Interactive Entertainment 0.0058181818
## 1774    Adventure Warner Bros. Interactive Entertainment 0.0000000000
## 1775     Fighting Warner Bros. Interactive Entertainment 0.0009090909
## 1776         Misc Warner Bros. Interactive Entertainment 0.0000000000
## 1777     Platform Warner Bros. Interactive Entertainment 0.0000000000
## 1778       Puzzle Warner Bros. Interactive Entertainment 0.0025000000
## 1779       Racing Warner Bros. Interactive Entertainment 0.0000000000
## 1780      Shooter Warner Bros. Interactive Entertainment 0.0050000000
## 1781     Strategy Warner Bros. Interactive Entertainment 0.0000000000
## 1782    Adventure                                   Warp 0.0700000000
## 1783    Adventure                WayForward Technologies 0.0000000000
## 1784     Strategy                       Westwood Studios 0.0000000000
## 1785       Puzzle                White Park Bay Software 0.0000000000
## 1786       Action                     Wizard Video Games 0.0000000000
## 1787       Racing                      Xicat Interactive 0.0000000000
## 1788 Role-Playing                      Xicat Interactive 0.0000000000
## 1789       Sports                      Xicat Interactive 0.0000000000
## 1790     Fighting                     Xing Entertainment 0.1600000000
## 1791         Misc                                Xplosiv 0.0000000000
## 1792       Puzzle                                Xplosiv 0.0000000000
## 1793       Racing                                Xplosiv 0.0000000000
## 1794         Misc                               XS Games 0.0000000000
## 1795       Racing                               XS Games 0.0000000000
## 1796       Sports                               XS Games 0.0000000000
## 1797       Action                            Xseed Games 0.0400000000
## 1798 Role-Playing                            Xseed Games 0.1650000000
## 1799      Shooter                            Xseed Games 0.0000000000
## 1800     Platform                       Yacht Club Games 0.0033333333
## 1801         Misc                   Yamasa Entertainment 0.0200000000
## 1802       Action                                   Yeti 0.0100000000
## 1803    Adventure                                   Yeti 0.0233333333
## 1804     Fighting                                   Yeti 0.0200000000
## 1805     Fighting                                 Yuke's 0.0250000000
## 1806       Racing                                 Yuke's 0.0000000000
## 1807    Adventure                                Yumedia 0.0600000000
## 1808         Misc                                 Zenrin 0.0300000000
## 1809       Action                 Zoo Digital Publishing 0.0000000000
## 1810    Adventure                 Zoo Digital Publishing 0.0000000000
## 1811     Fighting                 Zoo Digital Publishing 0.0000000000
## 1812         Misc                 Zoo Digital Publishing 0.0000000000
## 1813     Platform                 Zoo Digital Publishing 0.0000000000
## 1814       Puzzle                 Zoo Digital Publishing 0.0000000000
## 1815       Racing                 Zoo Digital Publishing 0.0007692308
## 1816      Shooter                 Zoo Digital Publishing 0.0000000000
## 1817   Simulation                 Zoo Digital Publishing 0.0000000000
## 1818       Sports                 Zoo Digital Publishing 0.0075000000
## 1819     Strategy                 Zoo Digital Publishing 0.0000000000
## 1820       Action                              Zoo Games 0.0000000000
## 1821    Adventure                              Zoo Games 0.0000000000
## 1822         Misc                              Zoo Games 0.0000000000
## 1823       Puzzle                              Zoo Games 0.0000000000
## 1824       Racing                              Zoo Games 0.0000000000
## 1825      Shooter                              Zoo Games 0.0000000000
## 1826   Simulation                              Zoo Games 0.0000000000
## 1827       Sports                              Zoo Games 0.0000000000
## 1828       Action                            Zushi Games 0.0000000000
## 1829    Adventure                            Zushi Games 0.0000000000
## 1830         Misc                            Zushi Games 0.0000000000
## 1831       Puzzle                            Zushi Games 0.0000000000
## 1832       Racing                            Zushi Games 0.0000000000
## 1833 Role-Playing                            Zushi Games 0.0100000000
## 1834      Shooter                            Zushi Games 0.0000000000
## 1835   Simulation                            Zushi Games 0.0000000000
## 1836       Sports                            Zushi Games 0.0000000000
## 1837     Strategy                            Zushi Games 0.0000000000
aggregate(Other_Sales,by=list(Platform = Platform,Year = Year),sum)
##     Platform Year     x
## 1       2600 1980  0.12
## 2       2600 1981  0.32
## 3       2600 1982  0.31
## 4       2600 1983  0.06
## 5        NES 1983  0.08
## 6       2600 1984  0.00
## 7        NES 1984  0.70
## 8       2600 1985  0.00
## 9         DS 1985  0.00
## 10       NES 1985  0.91
## 11        PC 1985  0.01
## 12      2600 1986  0.00
## 13       NES 1986  1.93
## 14      2600 1987  0.01
## 15       NES 1987  0.19
## 16      2600 1988  0.01
## 17        GB 1988  0.03
## 18       NES 1988  0.94
## 19        PC 1988  0.01
## 20      2600 1989  0.01
## 21        GB 1989  1.40
## 22       NES 1989  0.09
## 23        GB 1990  0.43
## 24       GEN 1990  0.08
## 25       NES 1990  0.22
## 26      SNES 1990  0.67
## 27        GB 1991  0.08
## 28       GEN 1991  0.13
## 29       NES 1991  0.16
## 30      SNES 1991  0.37
## 31        GB 1992  0.64
## 32       GEN 1992  0.37
## 33        GG 1992  0.00
## 34       NES 1992  0.03
## 35        PC 1992  0.11
## 36      SNES 1992  0.50
## 37       GEN 1993  0.00
## 38       NES 1993  0.06
## 39        NG 1993  0.00
## 40       SCD 1993  0.05
## 41      SNES 1993  0.78
## 42       3DO 1994  0.00
## 43        GB 1994  0.60
## 44       GEN 1994  0.31
## 45       NES 1994  0.00
## 46        NG 1994  0.00
## 47        PC 1994  0.46
## 48        PS 1994  0.40
## 49       SAT 1994  0.02
## 50       SCD 1994  0.00
## 51      SNES 1994  0.41
## 52       3DO 1995  0.00
## 53        GB 1995  0.05
## 54        NG 1995  0.00
## 55        PC 1995  0.23
## 56        PS 1995  1.96
## 57       SAT 1995  0.05
## 58      SNES 1995  0.35
## 59      TG16 1995  0.00
## 60        GB 1996  1.09
## 61       N64 1996  0.58
## 62        NG 1996  0.00
## 63        PC 1996  0.34
## 64      PCFX 1996  0.00
## 65        PS 1996  5.54
## 66       SAT 1996  0.00
## 67      SNES 1996  0.14
## 68        GB 1997  0.12
## 69       N64 1997  0.91
## 70        PC 1997  0.23
## 71        PS 1997  7.87
## 72       SAT 1997  0.00
## 73      SNES 1997  0.00
## 74        DC 1998  0.08
## 75        GB 1998  0.91
## 76       N64 1998  0.96
## 77        PC 1998  0.03
## 78        PS 1998  9.05
## 79       SAT 1998  0.00
## 80      SNES 1998  0.00
## 81        DC 1999  0.06
## 82        GB 1999  1.13
## 83       N64 1999  0.82
## 84        PC 1999  0.12
## 85        PS 1999  7.92
## 86       SAT 1999  0.00
## 87      SNES 1999  0.00
## 88        WS 1999  0.00
## 89        DC 2000  0.13
## 90        GB 2000  1.49
## 91       GBA 2000  0.00
## 92       N64 2000  0.92
## 93        PC 2000  0.18
## 94        PS 2000  5.28
## 95       PS2 2000  3.58
## 96        WS 2000  0.00
## 97        XB 2000  0.04
## 98        DC 2001  0.00
## 99        GB 2001  0.19
## 100      GBA 2001  1.91
## 101       GC 2001  0.78
## 102      N64 2001  0.12
## 103       PC 2001  0.18
## 104       PS 2001  2.17
## 105      PS2 2001 16.78
## 106       WS 2001  0.00
## 107       XB 2001  0.63
## 108       DC 2002  0.00
## 109      GBA 2002  1.81
## 110       GC 2002  1.33
## 111      N64 2002  0.00
## 112       PC 2002  0.37
## 113       PS 2002  0.36
## 114      PS2 2002 21.72
## 115       XB 2002  1.69
## 116      GBA 2003  1.36
## 117       GC 2003  1.31
## 118       PC 2003  0.60
## 119       PS 2003  0.14
## 120      PS2 2003 20.69
## 121       XB 2003  1.91
## 122       DS 2004  1.37
## 123      GBA 2004  1.81
## 124       GC 2004  0.78
## 125       PC 2004  0.26
## 126      PS2 2004 39.85
## 127      PSP 2004  1.09
## 128       XB 2004  2.13
## 129       DS 2005 10.91
## 130      GBA 2005  0.58
## 131       GC 2005  0.67
## 132       PC 2005  0.35
## 133      PS2 2005 19.15
## 134      PSP 2005  6.56
## 135     X360 2005  0.63
## 136       XB 2005  1.73
## 137       DS 2006  8.28
## 138      GBA 2006  0.09
## 139       GC 2006  0.26
## 140       PC 2006  0.39
## 141      PS2 2006 14.24
## 142      PS3 2006  3.69
## 143      PSP 2006  9.14
## 144      Wii 2006 13.56
## 145     X360 2006  4.46
## 146       XB 2006  0.32
## 147       DC 2007  0.00
## 148       DS 2007 11.27
## 149      GBA 2007  0.05
## 150       GC 2007  0.00
## 151       PC 2007  0.37
## 152      PS2 2007 23.69
## 153      PS3 2007 10.91
## 154      PSP 2007  8.80
## 155      Wii 2007 13.75
## 156     X360 2007  8.74
## 157       XB 2007  0.02
## 158       DC 2008  0.00
## 159       DS 2008 11.16
## 160       PC 2008  2.13
## 161      PS2 2008 19.31
## 162      PS3 2008 17.08
## 163      PSP 2008  4.76
## 164      Wii 2008 15.25
## 165     X360 2008 12.69
## 166       XB 2008  0.01
## 167       DS 2009  8.73
## 168       PC 2009  2.29
## 169      PS2 2009 10.16
## 170      PS3 2009 18.26
## 171      PSP 2009  6.45
## 172      Wii 2009 17.79
## 173     X360 2009 11.09
## 174       DS 2010  5.73
## 175       PC 2010  3.20
## 176      PS2 2010  1.20
## 177      PS3 2010 21.44
## 178      PSP 2010  3.65
## 179      Wii 2010 10.47
## 180     X360 2010 14.21
## 181      3DS 2011  4.38
## 182       DS 2011  2.02
## 183       PC 2011  5.63
## 184      PS2 2011  0.10
## 185      PS3 2011 22.36
## 186      PSP 2011  0.86
## 187      PSV 2011  0.79
## 188      Wii 2011  5.50
## 189     X360 2011 12.75
## 190      3DS 2012  2.55
## 191       DS 2012  0.63
## 192       PC 2012  3.19
## 193      PS3 2012 17.12
## 194      PSP 2012  0.14
## 195      PSV 2012  3.05
## 196      Wii 2012  1.59
## 197     WiiU 2012  1.28
## 198     X360 2012  8.27
## 199      3DS 2013  2.67
## 200       DS 2013  0.17
## 201       PC 2013  1.62
## 202      PS3 2013 19.33
## 203      PS4 2013  2.75
## 204      PSP 2013  0.07
## 205      PSV 2013  1.94
## 206      Wii 2013  0.81
## 207     WiiU 2013  1.52
## 208     X360 2013  7.44
## 209     XOne 2013  1.50
## 210      3DS 2014  1.84
## 211       DS 2014  0.00
## 212       PC 2014  1.31
## 213      PS3 2014  8.05
## 214      PS4 2014 17.02
## 215      PSP 2014  0.00
## 216      PSV 2014  2.01
## 217      Wii 2014  0.36
## 218     WiiU 2014  2.11
## 219     X360 2014  3.18
## 220     XOne 2014  4.14
## 221      3DS 2015  0.99
## 222       PC 2015  0.55
## 223      PS3 2015  2.35
## 224      PS4 2015 17.86
## 225      PSP 2015  0.00
## 226      PSV 2015  0.48
## 227      Wii 2015  0.12
## 228     WiiU 2015  1.29
## 229     X360 2015  1.14
## 230     XOne 2015  5.23
## 231      3DS 2016  0.12
## 232       PC 2016  0.17
## 233      PS3 2016  0.22
## 234      PS4 2016  5.73
## 235      PSV 2016  0.14
## 236     WiiU 2016  0.25
## 237     X360 2016  0.07
## 238     XOne 2016  1.05
## 239      PS4 2017  0.00
## 240      PSV 2017  0.00
## 241       DS 2020  0.02
## 242     2600  N/A  0.07
## 243      3DS  N/A  0.08
## 244       DS  N/A  0.24
## 245       GB  N/A  0.04
## 246      GBA  N/A  0.12
## 247       GC  N/A  0.05
## 248      N64  N/A  0.07
## 249       PC  N/A  0.53
## 250       PS  N/A  0.22
## 251      PS2  N/A  2.97
## 252      PS3  N/A  1.12
## 253      PSP  N/A  0.67
## 254      PSV  N/A  0.04
## 255      Wii  N/A  1.41
## 256     X360  N/A  0.87
## 257       XB  N/A  0.24
aggregate(Other_Sales,by=list(Platform = Platform,Genre = Genre),sum)
##     Platform        Genre     x
## 1       2600       Action  0.22
## 2        3DS       Action  2.84
## 3         DC       Action  0.03
## 4         DS       Action  9.14
## 5         GB       Action  0.26
## 6        GBA       Action  1.36
## 7         GC       Action  0.99
## 8        GEN       Action  0.08
## 9        N64       Action  0.56
## 10       NES       Action  0.45
## 11        PC       Action  3.57
## 12        PS       Action  7.55
## 13       PS2       Action 47.64
## 14       PS3       Action 46.51
## 15       PS4       Action 13.78
## 16       PSP       Action 11.11
## 17       PSV       Action  2.82
## 18       SAT       Action  0.00
## 19      SNES       Action  0.20
## 20       Wii       Action 10.27
## 21      WiiU       Action  1.77
## 22      X360       Action 21.63
## 23        XB       Action  1.79
## 24      XOne       Action  2.81
## 25      2600    Adventure  0.01
## 26       3DO    Adventure  0.00
## 27       3DS    Adventure  0.18
## 28        DC    Adventure  0.04
## 29        DS    Adventure  3.44
## 30        GB    Adventure  0.52
## 31       GBA    Adventure  0.33
## 32        GC    Adventure  0.18
## 33       GEN    Adventure  0.00
## 34       N64    Adventure  0.00
## 35       NES    Adventure  0.08
## 36        PC    Adventure  0.63
## 37        PS    Adventure  1.25
## 38       PS2    Adventure  2.01
## 39       PS3    Adventure  3.33
## 40       PS4    Adventure  0.71
## 41       PSP    Adventure  0.58
## 42       PSV    Adventure  0.48
## 43       SAT    Adventure  0.00
## 44      SNES    Adventure  0.00
## 45      TG16    Adventure  0.00
## 46       Wii    Adventure  1.43
## 47      WiiU    Adventure  0.02
## 48      X360    Adventure  1.32
## 49        XB    Adventure  0.07
## 50      XOne    Adventure  0.20
## 51      2600     Fighting  0.01
## 52       3DS     Fighting  0.62
## 53        DC     Fighting  0.00
## 54        DS     Fighting  0.21
## 55       GBA     Fighting  0.05
## 56        GC     Fighting  0.54
## 57       GEN     Fighting  0.17
## 58       N64     Fighting  0.30
## 59       NES     Fighting  0.10
## 60        NG     Fighting  0.00
## 61        PC     Fighting  0.02
## 62        PS     Fighting  3.87
## 63       PS2     Fighting 12.47
## 64       PS3     Fighting  6.69
## 65       PS4     Fighting  1.21
## 66       PSP     Fighting  3.06
## 67       PSV     Fighting  0.48
## 68       SAT     Fighting  0.05
## 69      SNES     Fighting  0.43
## 70       Wii     Fighting  1.91
## 71      WiiU     Fighting  0.67
## 72      X360     Fighting  3.17
## 73        XB     Fighting  0.42
## 74      XOne     Fighting  0.23
## 75      2600         Misc  0.03
## 76       3DS         Misc  0.40
## 77        DS         Misc  9.75
## 78        GB         Misc  0.32
## 79       GBA         Misc  0.53
## 80        GC         Misc  0.45
## 81       GEN         Misc  0.00
## 82       N64         Misc  0.13
## 83       NES         Misc  0.00
## 84        PC         Misc  0.35
## 85        PS         Misc  2.29
## 86       PS2         Misc 22.42
## 87       PS3         Misc  6.93
## 88       PS4         Misc  1.16
## 89       PSP         Misc  1.15
## 90       PSV         Misc  0.66
## 91       SAT         Misc  0.00
## 92       SCD         Misc  0.00
## 93      SNES         Misc  0.07
## 94       Wii         Misc 19.38
## 95      WiiU         Misc  0.83
## 96      X360         Misc  7.55
## 97        XB         Misc  0.31
## 98      XOne         Misc  0.61
## 99      2600     Platform  0.16
## 100      3DS     Platform  2.26
## 101       DC     Platform  0.08
## 102       DS     Platform  6.54
## 103       GB     Platform  1.95
## 104      GBA     Platform  2.27
## 105       GC     Platform  0.74
## 106      GEN     Platform  0.56
## 107       GG     Platform  0.00
## 108      N64     Platform  0.97
## 109      NES     Platform  1.69
## 110       PC     Platform  0.09
## 111       PS     Platform  3.25
## 112      PS2     Platform  9.15
## 113      PS3     Platform  5.03
## 114      PS4     Platform  1.00
## 115      PSP     Platform  3.27
## 116      PSV     Platform  0.61
## 117      SAT     Platform  0.00
## 118      SCD     Platform  0.05
## 119     SNES     Platform  1.78
## 120      Wii     Platform  7.13
## 121     WiiU     Platform  1.48
## 122     X360     Platform  1.12
## 123       XB     Platform  0.34
## 124     XOne     Platform  0.07
## 125     2600       Puzzle  0.15
## 126      3DO       Puzzle  0.00
## 127      3DS       Puzzle  0.35
## 128       DS       Puzzle  6.41
## 129       GB       Puzzle  1.01
## 130      GBA       Puzzle  0.24
## 131       GC       Puzzle  0.12
## 132      N64       Puzzle  0.07
## 133      NES       Puzzle  0.43
## 134       PC       Puzzle  0.16
## 135       PS       Puzzle  0.60
## 136      PS2       Puzzle  0.72
## 137      PS3       Puzzle  0.05
## 138      PS4       Puzzle  0.00
## 139      PSP       Puzzle  0.83
## 140      PSV       Puzzle  0.02
## 141      SAT       Puzzle  0.00
## 142     SNES       Puzzle  0.01
## 143      Wii       Puzzle  1.21
## 144     WiiU       Puzzle  0.10
## 145     X360       Puzzle  0.06
## 146       XB       Puzzle  0.01
## 147     2600       Racing  0.01
## 148      3DS       Racing  1.06
## 149       DC       Racing  0.08
## 150       DS       Racing  3.13
## 151       GB       Racing  0.44
## 152      GBA       Racing  0.54
## 153       GC       Racing  0.54
## 154      GEN       Racing  0.00
## 155      N64       Racing  0.58
## 156      NES       Racing  0.22
## 157       PC       Racing  0.58
## 158       PS       Racing  5.81
## 159      PS2       Racing 27.37
## 160      PS3       Racing 13.09
## 161      PS4       Racing  1.72
## 162      PSP       Racing  7.01
## 163      PSV       Racing  0.56
## 164      SAT       Racing  0.02
## 165      SCD       Racing  0.00
## 166     SNES       Racing  0.25
## 167      Wii       Racing  5.53
## 168     WiiU       Racing  0.56
## 169     X360       Racing  6.43
## 170       XB       Racing  1.06
## 171     XOne       Racing  0.68
## 172      3DS Role-Playing  2.93
## 173       DC Role-Playing  0.00
## 174       DS Role-Playing  6.46
## 175       GB Role-Playing  3.31
## 176      GBA Role-Playing  1.83
## 177       GC Role-Playing  0.34
## 178      GEN Role-Playing  0.00
## 179      N64 Role-Playing  0.16
## 180      NES Role-Playing  1.53
## 181       PC Role-Playing  5.02
## 182     PCFX Role-Playing  0.00
## 183       PS Role-Playing  4.30
## 184      PS2 Role-Playing  8.27
## 185      PS3 Role-Playing  8.92
## 186      PS4 Role-Playing  3.74
## 187      PSP Role-Playing  2.99
## 188      PSV Role-Playing  1.20
## 189      SAT Role-Playing  0.00
## 190      SCD Role-Playing  0.00
## 191     SNES Role-Playing  0.24
## 192      Wii Role-Playing  0.76
## 193     WiiU Role-Playing  0.13
## 194       WS Role-Playing  0.00
## 195     X360 Role-Playing  6.15
## 196       XB Role-Playing  0.50
## 197     XOne Role-Playing  0.83
## 198     2600      Shooter  0.28
## 199      3DS      Shooter  0.09
## 200       DC      Shooter  0.00
## 201       DS      Shooter  0.55
## 202       GB      Shooter  0.04
## 203      GBA      Shooter  0.02
## 204       GC      Shooter  0.33
## 205      GEN      Shooter  0.00
## 206      N64      Shooter  0.26
## 207      NES      Shooter  0.52
## 208       PC      Shooter  4.39
## 209       PS      Shooter  2.22
## 210      PS2      Shooter 13.42
## 211      PS3      Shooter 30.21
## 212      PS4      Shooter 11.82
## 213      PSP      Shooter  3.70
## 214      PSV      Shooter  0.82
## 215      SAT      Shooter  0.00
## 216     SNES      Shooter  0.12
## 217     TG16      Shooter  0.00
## 218      Wii      Shooter  2.55
## 219     WiiU      Shooter  0.55
## 220     X360      Shooter 24.53
## 221       XB      Shooter  1.89
## 222     XOne      Shooter  4.38
## 223     2600   Simulation  0.00
## 224      3DO   Simulation  0.00
## 225      3DS   Simulation  1.40
## 226       DC   Simulation  0.00
## 227       DS   Simulation 11.36
## 228       GB   Simulation  0.02
## 229      GBA   Simulation  0.16
## 230       GC   Simulation  0.29
## 231      N64   Simulation  0.33
## 232       PC   Simulation  4.50
## 233       PS   Simulation  1.57
## 234      PS2   Simulation  4.46
## 235      PS3   Simulation  1.41
## 236      PS4   Simulation  0.09
## 237      PSP   Simulation  1.24
## 238      PSV   Simulation  0.00
## 239      SAT   Simulation  0.00
## 240     SNES   Simulation  0.06
## 241      Wii   Simulation  3.11
## 242     WiiU   Simulation  0.02
## 243     X360   Simulation  1.23
## 244       XB   Simulation  0.22
## 245     XOne   Simulation  0.05
## 246     2600       Sports  0.04
## 247      3DS       Sports  0.39
## 248       DC       Sports  0.04
## 249       DS       Sports  2.49
## 250       GB       Sports  0.22
## 251      GBA       Sports  0.24
## 252       GC       Sports  0.56
## 253      GEN       Sports  0.08
## 254      N64       Sports  0.70
## 255      NES       Sports  0.29
## 256       NG       Sports  0.00
## 257       PC       Sports  1.58
## 258       PS       Sports  6.75
## 259      PS2       Sports 44.66
## 260      PS3       Sports 19.17
## 261      PS4       Sports  8.07
## 262      PSP       Sports  6.03
## 263      PSV       Sports  0.77
## 264      SAT       Sports  0.00
## 265     SNES       Sports  0.06
## 266      Wii       Sports 27.06
## 267     WiiU       Sports  0.25
## 268     X360       Sports 11.46
## 269       XB       Sports  2.03
## 270     XOne       Sports  2.03
## 271      3DS     Strategy  0.11
## 272       DS     Strategy  1.05
## 273       GB     Strategy  0.11
## 274      GBA     Strategy  0.16
## 275       GC     Strategy  0.10
## 276      GEN     Strategy  0.00
## 277      N64     Strategy  0.32
## 278       PC     Strategy  3.97
## 279       PS     Strategy  1.45
## 280      PS2     Strategy  0.85
## 281      PS3     Strategy  0.59
## 282      PS4     Strategy  0.06
## 283      PSP     Strategy  1.22
## 284      PSV     Strategy  0.03
## 285      SAT     Strategy  0.00
## 286      SCD     Strategy  0.00
## 287     SNES     Strategy  0.00
## 288      Wii     Strategy  0.27
## 289     WiiU     Strategy  0.07
## 290       WS     Strategy  0.00
## 291     X360     Strategy  0.89
## 292       XB     Strategy  0.08
## 293     XOne     Strategy  0.03
aggregate(Other_Sales,by=list(Platform = Platform,Publisher = Publisher),sum)
##      Platform                              Publisher     x
## 1          DS                        10TACLE Studios  0.00
## 2         PS2                        10TACLE Studios  0.00
## 3          PC                             1C Company  0.02
## 4        2600           20th Century Fox Video Games  0.01
## 5          PC                                 2D Boy  0.01
## 6          GC                                    3DO  0.00
## 7         N64                                    3DO  0.01
## 8          PS                                    3DO  0.36
## 9         PS2                                    3DO  0.26
## 10         XB                                    3DO  0.00
## 11       X360                                49Games  0.00
## 12        3DS                              505 Games  0.05
## 13         DS                              505 Games  1.73
## 14         PC                              505 Games  0.04
## 15        PS2                              505 Games  0.24
## 16        PS3                              505 Games  0.79
## 17        PS4                              505 Games  0.28
## 18        PSP                              505 Games  0.12
## 19        PSV                              505 Games  0.02
## 20        Wii                              505 Games  1.39
## 21       WiiU                              505 Games  0.00
## 22       X360                              505 Games  0.73
## 23         XB                              505 Games  0.00
## 24       XOne                              505 Games  0.05
## 25        3DS                                    5pb  0.00
## 26        PS2                                    5pb  0.00
## 27        PS3                                    5pb  0.00
## 28        PS4                                    5pb  0.00
## 29        PSP                                    5pb  0.00
## 30        PSV                                    5pb  0.00
## 31       X360                                    5pb  0.00
## 32       XOne                                    5pb  0.00
## 33         DS                               7G//AMES  0.00
## 34        Wii                               7G//AMES  0.00
## 35         PS                             989 Sports  0.02
## 36         PS                            989 Studios  0.67
## 37        PS3                               Abylight  0.01
## 38         DC                  Acclaim Entertainment  0.00
## 39        GBA                  Acclaim Entertainment  0.00
## 40         GC                  Acclaim Entertainment  0.07
## 41        GEN                  Acclaim Entertainment  0.07
## 42        N64                  Acclaim Entertainment  0.12
## 43         PC                  Acclaim Entertainment  0.00
## 44         PS                  Acclaim Entertainment  1.05
## 45        PS2                  Acclaim Entertainment  1.83
## 46        SAT                  Acclaim Entertainment  0.00
## 47       SNES                  Acclaim Entertainment  0.16
## 48         XB                  Acclaim Entertainment  0.07
## 49         PS                               Accolade  0.07
## 50        3DS                            Ackkstudios  0.00
## 51         DS                            Ackkstudios  0.00
## 52        PS3                            Ackkstudios  0.00
## 53        PSP                            Ackkstudios  0.00
## 54        Wii                            Ackkstudios  0.01
## 55        3DS                                Acquire  0.00
## 56        PS2                                Acquire  0.00
## 57        PS3                                Acquire  0.00
## 58        PS4                                Acquire  0.02
## 59        PSP                                Acquire  0.01
## 60       2600                             Activision  0.20
## 61        3DS                             Activision  0.35
## 62         DC                             Activision  0.00
## 63         DS                             Activision  3.62
## 64         GB                             Activision  0.05
## 65        GBA                             Activision  0.30
## 66         GC                             Activision  0.33
## 67        N64                             Activision  0.07
## 68         PC                             Activision  4.54
## 69         PS                             Activision  1.62
## 70        PS2                             Activision 13.59
## 71        PS3                             Activision 19.07
## 72        PS4                             Activision  6.50
## 73        PSP                             Activision  2.07
## 74        PSV                             Activision  0.34
## 75        Wii                             Activision  5.43
## 76       WiiU                             Activision  0.36
## 77       X360                             Activision 13.76
## 78         XB                             Activision  1.21
## 79       XOne                             Activision  1.93
## 80         PC                    Activision Blizzard  0.04
## 81        GBA                       Activision Value  0.00
## 82         GC                       Activision Value  0.00
## 83         PS                       Activision Value  0.01
## 84        PS2                       Activision Value  0.24
## 85        PS3                       Activision Value  0.07
## 86        PSP                       Activision Value  0.00
## 87        Wii                       Activision Value  0.18
## 88       X360                       Activision Value  0.06
## 89         XB                       Activision Value  0.01
## 90         PS                       Adeline Software  0.01
## 91         PC                               Aerosoft  0.00
## 92        3DS                 Agatsuma Entertainment  0.01
## 93        GBA                 Agatsuma Entertainment  0.00
## 94         PS                                 Agetec  0.01
## 95        PS2                                 Agetec  0.18
## 96        PSP                                 Agetec  0.00
## 97        3DS                            Aksys Games  0.01
## 98         DS                            Aksys Games  0.00
## 99        PS3                            Aksys Games  0.01
## 100       PS4                            Aksys Games  0.00
## 101       PSV                            Aksys Games  0.03
## 102        PC                   Alawar Entertainment  0.01
## 103       3DS                              Alchemist  0.00
## 104        DS                              Alchemist  0.00
## 105       PS2                              Alchemist  0.15
## 106       PS3                              Alchemist  0.00
## 107       PSP                              Alchemist  0.00
## 108      X360                              Alchemist  0.00
## 109        PC                   Alternative Software  0.00
## 110       PS3                   Alternative Software  0.01
## 111       PS4                   Alternative Software  0.01
## 112       Wii                   Alternative Software  0.01
## 113      X360                   Alternative Software  0.00
## 114      XOne                   Alternative Software  0.00
## 115       GBA                                 Altron  0.00
## 116        DS                                 Alvion  0.00
## 117        PS                     American Softworks  0.02
## 118      SNES                          Angel Studios  0.00
## 119      2600                        Answer Software  0.01
## 120        DS                         AQ Interactive  0.03
## 121       PS2                         AQ Interactive  0.02
## 122       PSP                         AQ Interactive  0.00
## 123        PS                              Aqua Plus  0.01
## 124       PS2                              Aqua Plus  0.00
## 125       PS3                              Aqua Plus  0.01
## 126       PS4                              Aqua Plus  0.00
## 127       PSP                              Aqua Plus  0.00
## 128       PSV                              Aqua Plus  0.00
## 129        PS                                  Aques  0.01
## 130       3DS                       Arc System Works  0.00
## 131        DS                       Arc System Works  0.01
## 132       PS3                       Arc System Works  0.04
## 133       PS4                       Arc System Works  0.02
## 134       PSP                       Arc System Works  0.00
## 135       PSV                       Arc System Works  0.05
## 136       GEN                    Arena Entertainment  0.14
## 137       PS2                                   Aria  0.00
## 138        DS                                  Arika  0.00
## 139       PS2                                  Arika  0.01
## 140       3DS                                ArtDink  0.00
## 141        DS                                ArtDink  0.00
## 142        PS                                ArtDink  0.04
## 143       PS2                                ArtDink  0.00
## 144       PSP                                ArtDink  0.00
## 145        PS                             Aruze Corp  0.08
## 146        PS                              ASC Games  0.13
## 147        PC                  Ascaron Entertainment  0.00
## 148        PC             Ascaron Entertainment GmbH  0.02
## 149        GB                    ASCII Entertainment  0.00
## 150       N64                    ASCII Entertainment  0.00
## 151        PS                    ASCII Entertainment  0.35
## 152       PS2                    ASCII Entertainment  0.00
## 153       SAT                    ASCII Entertainment  0.00
## 154      SNES                    ASCII Entertainment  0.01
## 155        DS                      ASCII Media Works  0.00
## 156       PS2                      ASCII Media Works  0.00
## 157       PSP                      ASCII Media Works  0.00
## 158       PSV                      ASCII Media Works  0.00
## 159       PSP                                 Asgard  0.00
## 160       PSV                                 Asgard  0.00
## 161       SAT                                    ASK  0.00
## 162        PS                Asmik Ace Entertainment  0.01
## 163       PS2                Asmik Ace Entertainment  0.00
## 164      SNES                             Asmik Corp  0.00
## 165        DS                                  Aspyr  0.03
## 166       GBA                                  Aspyr  0.00
## 167        PC                                  Aspyr  0.01
## 168      X360                                  Aspyr  0.01
## 169        DS                               Astragon  0.05
## 170        PC                               Astragon  0.01
## 171       3DS                   Asylum Entertainment  0.01
## 172        DS                   Asylum Entertainment  0.03
## 173       Wii                   Asylum Entertainment  0.02
## 174      2600                                  Atari  0.48
## 175       3DS                                  Atari  0.00
## 176        DS                                  Atari  0.38
## 177       GBA                                  Atari  0.21
## 178        GC                                  Atari  0.18
## 179        PC                                  Atari  0.14
## 180        PS                                  Atari  0.52
## 181       PS2                                  Atari  4.90
## 182       PS3                                  Atari  0.37
## 183       PSP                                  Atari  0.39
## 184       Wii                                  Atari  0.63
## 185      X360                                  Atari  0.57
## 186        XB                                  Atari  0.24
## 187       N64                                 Athena  0.00
## 188       PS2                                 Athena  0.00
## 189       3DS                                  Atlus  0.08
## 190        DS                                  Atlus  0.07
## 191       GBA                                  Atlus  0.00
## 192        GC                                  Atlus  0.00
## 193       N64                                  Atlus  0.00
## 194        PS                                  Atlus  0.11
## 195       PS2                                  Atlus  0.11
## 196       PS3                                  Atlus  0.07
## 197       PS4                                  Atlus  0.00
## 198       PSP                                  Atlus  0.07
## 199       PSV                                  Atlus  0.24
## 200       SAT                                  Atlus  0.00
## 201      SNES                                  Atlus  0.00
## 202      WiiU                                  Atlus  0.00
## 203      X360                                  Atlus  0.02
## 204        XB                                  Atlus  0.00
## 205      2600                     Avalon Interactive  0.00
## 206        PS                     Avalon Interactive  0.01
## 207       PS2                     Avalon Interactive  0.02
## 208        XB                     Avalon Interactive  0.00
## 209        DS                              Avanquest  0.22
## 210        PC                              Avanquest  0.01
## 211       PS4                              Avanquest  0.00
## 212       Wii                              Avanquest  0.02
## 213       3DS                     Avanquest Software  0.00
## 214        DS                     Avanquest Software  0.00
## 215        PC                     Avanquest Software  0.01
## 216       PS3                     Avanquest Software  0.11
## 217      X360                     Avanquest Software  0.05
## 218        PS                                  Axela  0.02
## 219       GBA                     BAM! Entertainment  0.03
## 220        GC                     BAM! Entertainment  0.00
## 221       N64                     BAM! Entertainment  0.00
## 222        PS                     BAM! Entertainment  0.03
## 223       PS2                     BAM! Entertainment  0.18
## 224        XB                     BAM! Entertainment  0.00
## 225        DS                              Banpresto  0.01
## 226        GB                              Banpresto  0.00
## 227       GBA                              Banpresto  0.04
## 228       N64                              Banpresto  0.03
## 229        PS                              Banpresto  0.23
## 230       PS2                              Banpresto  0.02
## 231       PSP                              Banpresto  0.00
## 232       SAT                              Banpresto  0.00
## 233      SNES                              Banpresto  0.01
## 234      X360                              Banpresto  0.02
## 235        DS                                Benesse  0.00
## 236        PS                               Berkeley  0.00
## 237        PC                     Bethesda Softworks  1.30
## 238       PS2                     Bethesda Softworks  0.25
## 239       PS3                     Bethesda Softworks  3.20
## 240       PS4                     Bethesda Softworks  2.32
## 241       Wii                     Bethesda Softworks  0.12
## 242      X360                     Bethesda Softworks  2.28
## 243        XB                     Bethesda Softworks  0.01
## 244      XOne                     Bethesda Softworks  0.68
## 245       3DS                    Big Ben Interactive  0.00
## 246        DS                    Big Ben Interactive  0.00
## 247       PS2                    Big Ben Interactive  0.01
## 248       Wii                    Big Ben Interactive  0.06
## 249        PC                         Big Fish Games  0.00
## 250       PS3                     Bigben Interactive  0.05
## 251       PS4                     Bigben Interactive  0.04
## 252       PSV                     Bigben Interactive  0.03
## 253      X360                     Bigben Interactive  0.00
## 254      XOne                     Bigben Interactive  0.01
## 255        PC                      bitComposer Games  0.04
## 256       PS3                      bitComposer Games  0.03
## 257      X360                      bitComposer Games  0.01
## 258        DS                       Black Bean Games  0.01
## 259        PC                       Black Bean Games  0.01
## 260       PS2                       Black Bean Games  0.01
## 261       PS3                       Black Bean Games  0.25
## 262       PSP                       Black Bean Games  0.00
## 263       Wii                       Black Bean Games  0.05
## 264      X360                       Black Bean Games  0.08
## 265       PS2                      Black Label Games  0.15
## 266        DS               Blast! Entertainment Ltd  0.01
## 267       PS2               Blast! Entertainment Ltd  0.02
## 268       Wii               Blast! Entertainment Ltd  0.00
## 269        PC                              Blue Byte  0.00
## 270        PS          BMG Interactive Entertainment  0.07
## 271        PC                    Bohemia Interactive  0.02
## 272      2600                                   Bomb  0.00
## 273       PSP                               Boost On  0.00
## 274       NES                                    BPS  0.00
## 275      SNES                                    BPS  0.00
## 276        DS                    Brash Entertainment  0.02
## 277       PS2                    Brash Entertainment  0.07
## 278       Wii                    Brash Entertainment  0.01
## 279      X360                    Brash Entertainment  0.01
## 280        DS                               Broccoli  0.00
## 281       PS2                               Broccoli  0.00
## 282       PSP                               Broccoli  0.00
## 283       PSV                               Broccoli  0.00
## 284       PSP                              BushiRoad  0.00
## 285       3DS                                 Capcom  0.23
## 286        DC                                 Capcom  0.00
## 287        DS                                 Capcom  0.44
## 288        GB                                 Capcom  0.03
## 289       GBA                                 Capcom  0.09
## 290        GC                                 Capcom  0.19
## 291       GEN                                 Capcom  0.00
## 292       N64                                 Capcom  0.00
## 293       NES                                 Capcom  1.68
## 294        PC                                 Capcom  0.12
## 295        PS                                 Capcom  0.63
## 296       PS2                                 Capcom  3.32
## 297       PS3                                 Capcom  3.67
## 298       PS4                                 Capcom  0.34
## 299       PSP                                 Capcom  0.76
## 300       PSV                                 Capcom  0.10
## 301       SAT                                 Capcom  0.00
## 302      SNES                                 Capcom  0.57
## 303       Wii                                 Capcom  0.69
## 304      WiiU                                 Capcom  0.01
## 305      X360                                 Capcom  1.91
## 306        XB                                 Capcom  0.03
## 307      XOne                                 Capcom  0.03
## 308        DS                                   Cave  0.01
## 309      X360                                   Cave  0.00
## 310      2600                        CBS Electronics  0.00
## 311        PC                                    CCP  0.02
## 312        DS             CDV Software Entertainment  0.00
## 313        PC             CDV Software Entertainment  0.00
## 314       Wii             CDV Software Entertainment  0.01
## 315       3DS                               ChunSoft  0.00
## 316        DS                               ChunSoft  0.03
## 317        GB                               ChunSoft  0.00
## 318       N64                               ChunSoft  0.05
## 319        PS                               ChunSoft  0.01
## 320       PS2                               ChunSoft  0.00
## 321       PSP                               ChunSoft  0.00
## 322       PSV                               ChunSoft  0.00
## 323       SAT                               ChunSoft  0.00
## 324      SNES                               ChunSoft  0.00
## 325      X360                               ChunSoft  0.00
## 326        DS                       City Interactive  0.07
## 327        PC                       City Interactive  0.07
## 328       PS3                       City Interactive  0.22
## 329       Wii                       City Interactive  0.03
## 330      X360                       City Interactive  0.14
## 331       PS3       Cloud Imperium Games Corporation  0.00
## 332      X360       Cloud Imperium Games Corporation  0.00
## 333        PS                         Coconuts Japan  0.00
## 334      SNES                         Coconuts Japan  0.00
## 335       3DS                            Codemasters  0.02
## 336        DS                            Codemasters  0.05
## 337       GBA                            Codemasters  0.00
## 338        GC                            Codemasters  0.00
## 339       N64                            Codemasters  0.00
## 340        PC                            Codemasters  0.18
## 341        PS                            Codemasters  0.74
## 342       PS2                            Codemasters  0.99
## 343       PS3                            Codemasters  2.62
## 344       PS4                            Codemasters  0.18
## 345       PSP                            Codemasters  0.16
## 346       PSV                            Codemasters  0.03
## 347       Wii                            Codemasters  0.21
## 348      X360                            Codemasters  1.08
## 349        XB                            Codemasters  0.00
## 350      XOne                            Codemasters  0.04
## 351        PC                     Codemasters Online  0.00
## 352        DS                      CokeM Interactive  0.02
## 353      2600                                 Coleco  0.03
## 354       PS2                                Comfort  0.00
## 355       PSP                                Comfort  0.00
## 356        DS                               Commseed  0.00
## 357       N64                                Compile  0.03
## 358        PS                                Compile  0.07
## 359       SAT                                Compile  0.00
## 360      SNES                                Compile  0.00
## 361       PS3                          Compile Heart  0.03
## 362       PS4                          Compile Heart  0.00
## 363       PSP                          Compile Heart  0.00
## 364       PSV                          Compile Heart  0.02
## 365      X360                          Compile Heart  0.02
## 366        DS               Conspiracy Entertainment  0.01
## 367       GBA               Conspiracy Entertainment  0.00
## 368        PS               Conspiracy Entertainment  0.02
## 369       PS2               Conspiracy Entertainment  0.01
## 370       PS3               Conspiracy Entertainment  0.00
## 371       PSP               Conspiracy Entertainment  0.00
## 372       Wii               Conspiracy Entertainment  0.00
## 373      X360               Conspiracy Entertainment  0.00
## 374        PS                       Core Design Ltd.  0.02
## 375      2600                           CPG Products  0.01
## 376       3DS                    Crave Entertainment  0.03
## 377        DS                    Crave Entertainment  0.03
## 378       GBA                    Crave Entertainment  0.00
## 379        GC                    Crave Entertainment  0.00
## 380       N64                    Crave Entertainment  0.00
## 381        PS                    Crave Entertainment  0.10
## 382       PS2                    Crave Entertainment  0.28
## 383       PS3                    Crave Entertainment  0.03
## 384       PSP                    Crave Entertainment  0.05
## 385       Wii                    Crave Entertainment  0.09
## 386      X360                    Crave Entertainment  0.03
## 387        XB                    Crave Entertainment  0.03
## 388        DS                          Creative Core  0.00
## 389        PC                            Crimson Cow  0.01
## 390        PS                       Crystal Dynamics  0.12
## 391        PS                                CTO SpA  0.06
## 392        DS                          Culture Brain  0.00
## 393      SNES                          Culture Brain  0.00
## 394        PS                     Culture Publishers  0.01
## 395       PS2                             CyberFront  0.00
## 396       PSP                             CyberFront  0.00
## 397       PSV                             CyberFront  0.00
## 398      X360                             CyberFront  0.00
## 399       PSV                                Cygames  0.00
## 400       3DS                            D3Publisher  0.03
## 401        DS                            D3Publisher  0.54
## 402       GBA                            D3Publisher  0.00
## 403        GC                            D3Publisher  0.00
## 404        PS                            D3Publisher  0.11
## 405       PS2                            D3Publisher  1.06
## 406       PS3                            D3Publisher  0.18
## 407       PS4                            D3Publisher  0.00
## 408       PSP                            D3Publisher  0.40
## 409       PSV                            D3Publisher  0.01
## 410       Wii                            D3Publisher  0.39
## 411      WiiU                            D3Publisher  0.00
## 412      X360                            D3Publisher  0.16
## 413        PC                               Daedalic  0.06
## 414        PC                 Daedalic Entertainment  0.01
## 415       PS2                                  Daito  0.00
## 416       PSP                                  Daito  0.00
## 417      2600                               Data Age  0.00
## 418       Wii                Data Design Interactive  0.02
## 419       SAT                              Data East  0.00
## 420      SNES                              Data East  0.00
## 421       PS2                         Datam Polystar  0.00
## 422       3DS                            Deep Silver  0.01
## 423        DS                            Deep Silver  0.12
## 424        PC                            Deep Silver  0.30
## 425       PS3                            Deep Silver  1.14
## 426       PS4                            Deep Silver  0.30
## 427       PSP                            Deep Silver  0.03
## 428       Wii                            Deep Silver  0.23
## 429      WiiU                            Deep Silver  0.00
## 430      X360                            Deep Silver  0.67
## 431        XB                            Deep Silver  0.02
## 432      XOne                            Deep Silver  0.06
## 433        DS              Destination Software, Inc  0.03
## 434       GBA              Destination Software, Inc  0.00
## 435        DS                              Destineer  0.11
## 436        PC                              Destineer  0.00
## 437       PS2                              Destineer  0.00
## 438       PSP                              Destineer  0.00
## 439       Wii                              Destineer  0.15
## 440       Wii                            Detn8 Games  0.02
## 441        PC                       Devolver Digital  0.00
## 442       PS4                       Devolver Digital  0.00
## 443        DS                        DHM Interactive  0.01
## 444       PSP                        DHM Interactive  0.00
## 445       PS2                               DigiCube  0.00
## 446       3DS             Disney Interactive Studios  0.21
## 447        DS             Disney Interactive Studios  3.40
## 448       GBA             Disney Interactive Studios  0.12
## 449        GC             Disney Interactive Studios  0.02
## 450        PC             Disney Interactive Studios  0.01
## 451       PS2             Disney Interactive Studios  2.81
## 452       PS3             Disney Interactive Studios  1.79
## 453       PS4             Disney Interactive Studios  0.21
## 454       PSP             Disney Interactive Studios  0.49
## 455       PSV             Disney Interactive Studios  0.05
## 456       Wii             Disney Interactive Studios  2.75
## 457      WiiU             Disney Interactive Studios  0.19
## 458      X360             Disney Interactive Studios  1.05
## 459        XB             Disney Interactive Studios  0.01
## 460      XOne             Disney Interactive Studios  0.07
## 461       PSP                                 Dorart  0.00
## 462       PSV                        dramatic create  0.00
## 463        DS               DreamCatcher Interactive  0.04
## 464        PC               DreamCatcher Interactive  0.01
## 465       PS2               DreamCatcher Interactive  0.02
## 466        XB               DreamCatcher Interactive  0.00
## 467        PS                 DreamWorks Interactive  0.01
## 468        DS                              DSI Games  0.01
## 469       GBA                              DSI Games  0.00
## 470       3DS                      DTP Entertainment  0.01
## 471        DS                      DTP Entertainment  0.06
## 472       GBA                      DTP Entertainment  0.00
## 473        PC                      DTP Entertainment  0.09
## 474       PS2                      DTP Entertainment  0.18
## 475       PS3                      DTP Entertainment  0.07
## 476       Wii                      DTP Entertainment  0.02
## 477      X360                      DTP Entertainment  0.06
## 478       PS4               Dusenberry Martin Racing  0.01
## 479      XOne               Dusenberry Martin Racing  0.00
## 480       PS3                               EA Games  0.02
## 481        DS                       Easy Interactive  0.00
## 482       PS2                                  Ecole  0.00
## 483       PSP                                   Edia  0.00
## 484        DC                      Eidos Interactive  0.03
## 485        DS                      Eidos Interactive  0.23
## 486        GB                      Eidos Interactive  0.01
## 487       GBA                      Eidos Interactive  0.02
## 488        GC                      Eidos Interactive  0.05
## 489        PC                      Eidos Interactive  0.51
## 490        PS                      Eidos Interactive  1.96
## 491       PS2                      Eidos Interactive  2.45
## 492       PS3                      Eidos Interactive  1.22
## 493       PSP                      Eidos Interactive  0.30
## 494       Wii                      Eidos Interactive  0.29
## 495      X360                      Eidos Interactive  0.74
## 496        XB                      Eidos Interactive  0.21
## 497       3DS                        Electronic Arts  0.26
## 498        DS                        Electronic Arts  3.14
## 499        GB                        Electronic Arts  0.07
## 500       GBA                        Electronic Arts  0.38
## 501        GC                        Electronic Arts  0.73
## 502       N64                        Electronic Arts  0.25
## 503        PC                        Electronic Arts  6.63
## 504        PS                        Electronic Arts  5.01
## 505       PS2                        Electronic Arts 41.87
## 506       PS3                        Electronic Arts 27.51
## 507       PS4                        Electronic Arts  8.70
## 508       PSP                        Electronic Arts  7.69
## 509       PSV                        Electronic Arts  0.81
## 510       SAT                        Electronic Arts  0.00
## 511       Wii                        Electronic Arts  5.98
## 512      WiiU                        Electronic Arts  0.10
## 513      X360                        Electronic Arts 15.97
## 514        XB                        Electronic Arts  2.22
## 515      XOne                        Electronic Arts  2.45
## 516        PS                 Electronic Arts Victor  0.03
## 517       SAT                                    Elf  0.00
## 518        PS                                  Elite  0.00
## 519        DS                     Empire Interactive  0.08
## 520       GBA                     Empire Interactive  0.00
## 521        GC                     Empire Interactive  0.00
## 522        PC                     Empire Interactive  0.00
## 523        PS                     Empire Interactive  0.13
## 524       PS2                     Empire Interactive  0.73
## 525       PSP                     Empire Interactive  0.12
## 526      X360                     Empire Interactive  0.01
## 527        XB                     Empire Interactive  0.05
## 528        GC                                 Encore  0.00
## 529        PC                                 Encore  0.00
## 530        PS                                 Encore  0.00
## 531        XB                                 Encore  0.00
## 532        GB                       Enix Corporation  0.00
## 533       GBA                       Enix Corporation  0.02
## 534       N64                       Enix Corporation  0.04
## 535       NES                       Enix Corporation  0.01
## 536        PS                       Enix Corporation  0.16
## 537       PS2                       Enix Corporation  0.03
## 538      SNES                       Enix Corporation  0.01
## 539        DS                      Enjoy Gaming ltd.  0.01
## 540        DS                             Enterbrain  0.00
## 541       GBA                             Enterbrain  0.00
## 542        PS                             Enterbrain  0.03
## 543       PS2                             Enterbrain  0.04
## 544       PSP                             Enterbrain  0.00
## 545        PS              EON Digital Entertainment  0.00
## 546       PS4                             Epic Games  0.00
## 547       N64                                  Epoch  0.06
## 548      SNES                                  Epoch  0.00
## 549        DS                                 Ertain  0.00
## 550       GBA                                    ESP  0.00
## 551        PS                                    ESP  0.00
## 552       SAT                                    ESP  0.00
## 553       PS2                        Essential Games  0.00
## 554        PS                        Evolution Games  0.00
## 555        PC                          Evolved Games  0.00
## 556       PS2                          Evolved Games  0.01
## 557       PS3                          Evolved Games  0.01
## 558      X360                          Evolved Games  0.01
## 559        XB                          Evolved Games  0.00
## 560       3DS                   Excalibur Publishing  0.02
## 561        PC                   Excalibur Publishing  0.02
## 562       PSV                        Experience Inc.  0.00
## 563       3DS            Extreme Entertainment Group  0.00
## 564       PS3                     Falcom Corporation  0.00
## 565       PSP                     Falcom Corporation  0.03
## 566       PSV                     Falcom Corporation  0.00
## 567       PS3                                 Fields  0.00
## 568       GBA                       Flashpoint Games  0.00
## 569       Wii                       Flashpoint Games  0.00
## 570       PS2                            Flight-Plan  0.00
## 571        DS                 Focus Home Interactive  0.08
## 572        PC                 Focus Home Interactive  0.50
## 573       PS3                 Focus Home Interactive  0.15
## 574       PS4                 Focus Home Interactive  0.15
## 575       PSV                 Focus Home Interactive  0.00
## 576       Wii                 Focus Home Interactive  0.04
## 577      X360                 Focus Home Interactive  0.10
## 578      XOne                 Focus Home Interactive  0.02
## 579        PC                       Focus Multimedia  0.00
## 580       PSP                                 fonfun  0.00
## 581        DS                    Foreign Media Games  0.05
## 582        DC                              Fortyfive  0.00
## 583       N64                        Fox Interactive  0.00
## 584        PS                        Fox Interactive  0.43
## 585        DS                          From Software  0.00
## 586        PS                          From Software  0.09
## 587       PS2                          From Software  0.01
## 588       PS3                          From Software  0.00
## 589       PSP                          From Software  0.00
## 590        XB                          From Software  0.00
## 591        PS                                   Fuji  0.00
## 592       3DS                           Funbox Media  0.01
## 593       PS3                           Funbox Media  0.01
## 594       PSV                           Funbox Media  0.00
## 595       Wii                           Funbox Media  0.04
## 596        PC                                 Funcom  0.02
## 597        PS                                FunSoft  0.01
## 598        DS                                 Funsta  0.01
## 599       PSP                                 Funsta  0.00
## 600       Wii                                 Funsta  0.00
## 601       3DS                                  FuRyu  0.01
## 602        DS                                  FuRyu  0.00
## 603       PSP                                  FuRyu  0.00
## 604       PSV                                  FuRyu  0.00
## 605       PS4                      FuRyu Corporation  0.01
## 606      X360                                  G.Rev  0.00
## 607       SAT                                   Gaga  0.00
## 608        PS                 Gainax Network Systems  0.01
## 609        DS                                 Gakken  0.00
## 610       GEN                              Game Arts  0.00
## 611        DS                           Game Factory  0.16
## 612       GBA                           Game Factory  0.00
## 613       PS2                           Game Factory  0.01
## 614       PSP                           Game Factory  0.00
## 615       Wii                           Game Factory  0.06
## 616        DS                              Game Life  0.03
## 617       PS3                             Gamebridge  0.04
## 618      X360                             Gamebridge  0.02
## 619        DS                               Gamecock  0.00
## 620        PC                               Gamecock  0.00
## 621       PS3                               Gamecock  0.00
## 622      X360                               Gamecock  0.00
## 623        DS                               Gameloft  0.01
## 624        DS                 GameMill Entertainment  0.04
## 625       Wii                 GameMill Entertainment  0.04
## 626      X360                 GameMill Entertainment  0.01
## 627       N64                                GameTek  0.00
## 628        PC                Gathering of Developers  0.03
## 629       PS2                Gathering of Developers  0.08
## 630        XB                Gathering of Developers  0.01
## 631        PS                  General Entertainment  0.01
## 632       3DS                                  Genki  0.00
## 633        DC                                  Genki  0.00
## 634        DS                                  Genki  0.00
## 635       PS2                                  Genki  0.11
## 636       PS3                                  Genki  0.00
## 637       PSP                                  Genki  0.00
## 638        XB                                  Genki  0.00
## 639        DS                            Genterprise  0.00
## 640       3DS                             Ghostlight  0.02
## 641        DS                             Ghostlight  0.03
## 642       PS2                             Ghostlight  0.07
## 643       PS3                             Ghostlight  0.02
## 644       PSP                             Ghostlight  0.07
## 645       Wii                             Ghostlight  0.01
## 646       PSV                                   Giga  0.00
## 647       PSP                                 Giza10  0.00
## 648       SAT                                  Glams  0.00
## 649        DS                 Global A Entertainment  0.00
## 650       PSP                 Global A Entertainment  0.01
## 651       GBA                            Global Star  0.01
## 652        GC                            Global Star  0.00
## 653       PS2                            Global Star  0.55
## 654        XB                            Global Star  0.07
## 655       PS2                            GN Software  0.00
## 656       PSP                            GN Software  0.00
## 657        PC                                    GOA  0.00
## 658       GBA                           Gotham Games  0.01
## 659        GC                           Gotham Games  0.00
## 660        PS                           Gotham Games  0.03
## 661       PS2                           Gotham Games  0.17
## 662        XB                           Gotham Games  0.01
## 663        DS                               Graffiti  0.00
## 664       PSP                               Graffiti  0.00
## 665       Wii                               Graffiti  0.01
## 666       PSP                       Grand Prix Games  0.00
## 667        PC                 Graphsim Entertainment  0.00
## 668       N64                Gremlin Interactive Ltd  0.00
## 669        PS                Gremlin Interactive Ltd  0.05
## 670      X360                  Griffin International  0.01
## 671        XB                           Groove Games  0.00
## 672        DS                                    GSP  0.34
## 673        PC                                    GSP  0.01
## 674       Wii                                    GSP  0.02
## 675       N64                         GT Interactive  0.06
## 676        PS                         GT Interactive  1.08
## 677       3DS                                 GungHo  0.00
## 678        DS                                 GungHo  0.02
## 679       PS3                                 GungHo  0.01
## 680       PSP                                 GungHo  0.03
## 681       PSV                                 GungHo  0.05
## 682        DS                                   Gust  0.01
## 683        PS                                   Gust  0.02
## 684       PS2                                   Gust  0.02
## 685       PSP                                   Gust  0.00
## 686       PSV                                   Gust  0.00
## 687       PS2                              Hackberry  0.00
## 688       NES                         HAL Laboratory  0.00
## 689        PS                    Hamster Corporation  0.02
## 690       PS2                    Hamster Corporation  0.00
## 691       3DS                               Happinet  0.00
## 692       PS4                 Harmonix Music Systems  0.07
## 693      XOne                 Harmonix Music Systems  0.04
## 694       GBA                     Hasbro Interactive  0.00
## 695       N64                     Hasbro Interactive  0.01
## 696        PC                     Hasbro Interactive  0.10
## 697        PS                     Hasbro Interactive  0.53
## 698        PC                      Havas Interactive  0.02
## 699        PC                           Headup Games  0.00
## 700        PS                           Hearty Robin  0.01
## 701        PS                                   Hect  0.00
## 702      SNES                                   Hect  0.00
## 703       PS4                            Hello Games  0.26
## 704        PC                        Her Interactive  0.00
## 705       GBA                        Hip Interactive  0.00
## 706       PS2                        Hip Interactive  0.00
## 707        XB                        Hip Interactive  0.00
## 708        DS                        HMH Interactive  0.00
## 709        PC                        HMH Interactive  0.02
## 710        PC           Home Entertainment Suppliers  0.01
## 711       PS3           Home Entertainment Suppliers  0.07
## 712      X360           Home Entertainment Suppliers  0.04
## 713        DS                   Hudson Entertainment  0.00
## 714       GBA                   Hudson Entertainment  0.00
## 715       N64                   Hudson Entertainment  0.00
## 716        PS                   Hudson Entertainment  0.08
## 717       PSP                   Hudson Entertainment  0.01
## 718       Wii                   Hudson Entertainment  0.01
## 719       3DS                            Hudson Soft  0.02
## 720        DS                            Hudson Soft  0.02
## 721       GBA                            Hudson Soft  0.00
## 722        GC                            Hudson Soft  0.00
## 723       N64                            Hudson Soft  0.03
## 724       NES                            Hudson Soft  0.11
## 725        NG                            Hudson Soft  0.00
## 726        PS                            Hudson Soft  0.01
## 727       PS2                            Hudson Soft  0.00
## 728       PS3                            Hudson Soft  0.01
## 729       PSP                            Hudson Soft  0.00
## 730       SAT                            Hudson Soft  0.00
## 731      SNES                            Hudson Soft  0.00
## 732      TG16                            Hudson Soft  0.00
## 733       Wii                            Hudson Soft  0.10
## 734      X360                            Hudson Soft  0.02
## 735        XB                            Hudson Soft  0.00
## 736        PS                    Human Entertainment  0.10
## 737       SAT                    Human Entertainment  0.00
## 738      SNES                    Human Entertainment  0.00
## 739       PSV                                  HuneX  0.00
## 740        PC                    Iceberg Interactive  0.00
## 741        PC                            id Software  0.00
## 742        DS                           Idea Factory  0.00
## 743       PS2                           Idea Factory  0.00
## 744       PS3                           Idea Factory  0.00
## 745       PS4                           Idea Factory  0.00
## 746       PSP                           Idea Factory  0.02
## 747       PSV                           Idea Factory  0.07
## 748      X360                           Idea Factory  0.01
## 749       PS4             Idea Factory International  0.00
## 750       PSV             Idea Factory International  0.09
## 751       3DS                           IE Institute  0.00
## 752        DS                           IE Institute  0.00
## 753        DS                 Ignition Entertainment  0.07
## 754       GBA                 Ignition Entertainment  0.00
## 755        GC                 Ignition Entertainment  0.00
## 756       PS2                 Ignition Entertainment  0.25
## 757       PS3                 Ignition Entertainment  0.04
## 758       PSP                 Ignition Entertainment  0.17
## 759       Wii                 Ignition Entertainment  0.04
## 760      X360                 Ignition Entertainment  0.02
## 761        XB                 Ignition Entertainment  0.00
## 762       PS2                     Illusion Softworks  0.09
## 763       SAT                                 Imadio  0.00
## 764       PSP                            Image Epoch  0.00
## 765       3DS                        imageepoch Inc.  0.00
## 766       3DO                             Imageworks  0.00
## 767      2600                                 Imagic  0.04
## 768        GB                              Imagineer  0.00
## 769       N64                              Imagineer  0.00
## 770        PS                              Imagineer  0.00
## 771       SAT                              Imagineer  0.00
## 772      SNES                              Imagineer  0.00
## 773      SNES                                   Imax  0.00
## 774       PS2                            Indie Games  0.02
## 775        DC                             Infogrames  0.00
## 776       GBA                             Infogrames  0.08
## 777        GC                             Infogrames  0.08
## 778       N64                             Infogrames  0.00
## 779        PC                             Infogrames  0.00
## 780        PS                             Infogrames  0.30
## 781       PS2                             Infogrames  0.34
## 782        XB                             Infogrames  0.05
## 783        PC                        Insomniac Games  0.00
## 784       PS4                        Insomniac Games  0.01
## 785      XOne                        Insomniac Games  0.00
## 786       PS2                           Interchannel  0.00
## 787       PS2                     Interchannel-Holon  0.00
## 788       3DS                              Intergrow  0.00
## 789       GBA                              Interplay  0.02
## 790       N64                              Interplay  0.00
## 791        PC                              Interplay  0.01
## 792        PS                              Interplay  0.24
## 793       PS2                              Interplay  0.19
## 794      SNES                              Interplay  0.00
## 795        XB                              Interplay  0.02
## 796        PS                  Interplay Productions  0.01
## 797       PS3             Interworks Unlimited, Inc.  0.00
## 798       3DS                           Inti Creates  0.00
## 799       PS4                  Introversion Software  0.00
## 800        PC                   inXile Entertainment  0.01
## 801       3DS              Irem Software Engineering  0.00
## 802        PS              Irem Software Engineering  0.00
## 803       PS2              Irem Software Engineering  0.00
## 804       PS3              Irem Software Engineering  0.00
## 805       PSP              Irem Software Engineering  0.01
## 806      2600                       ITT Family Games  0.00
## 807       PSP                              Ivolgamus  0.00
## 808        DS                                   iWin  0.01
## 809        DS                      Jack of All Games  0.00
## 810       GBA                      Jack of All Games  0.01
## 811        DS                                 Jaleco  0.01
## 812       GBA                                 Jaleco  0.00
## 813        GC                                 Jaleco  0.00
## 814        PS                                 Jaleco  0.06
## 815       PS2                                 Jaleco  0.03
## 816       SAT                                 Jaleco  0.00
## 817       Wii                                 Jaleco  0.00
## 818        XB                                 Jaleco  0.00
## 819       PS2                     Jester Interactive  0.14
## 820        GB                                Jorudan  0.00
## 821       GBA                                Jorudan  0.02
## 822        DS                     JoWood Productions  0.01
## 823        GC                     JoWood Productions  0.00
## 824        PC                     JoWood Productions  0.07
## 825       PS2                     JoWood Productions  0.01
## 826       Wii                     JoWood Productions  0.04
## 827      X360                     JoWood Productions  0.01
## 828        XB                     JoWood Productions  0.00
## 829        PC                            Just Flight  0.01
## 830        PS                                    JVC  0.07
## 831       SAT                                    JVC  0.00
## 832       3DS                         Kadokawa Games  0.00
## 833       PS3                         Kadokawa Games  0.00
## 834       PSP                         Kadokawa Games  0.00
## 835       PSV                         Kadokawa Games  0.00
## 836       3DS                        Kadokawa Shoten  0.00
## 837        DS                        Kadokawa Shoten  0.00
## 838        PS                        Kadokawa Shoten  0.07
## 839       PS2                        Kadokawa Shoten  0.00
## 840       PSP                        Kadokawa Shoten  0.00
## 841       PSV                        Kadokawa Shoten  0.00
## 842       SAT                        Kadokawa Shoten  0.00
## 843       Wii                        Kadokawa Shoten  0.00
## 844       PS3                            Kaga Create  0.00
## 845       PSP                            Kaga Create  0.00
## 846       PSV                            Kaga Create  0.00
## 847        PC                          Kalypso Media  0.10
## 848       PS3                          Kalypso Media  0.01
## 849       PS4                          Kalypso Media  0.05
## 850      X360                          Kalypso Media  0.09
## 851        DS                                  Kamui  0.00
## 852       PS2                            Kando Games  0.00
## 853       PSP                    Karin Entertainment  0.00
## 854       GBA                                  Kemco  0.00
## 855        GC                                  Kemco  0.00
## 856       N64                                  Kemco  0.00
## 857        PS                                  Kemco  0.01
## 858       PS2                                  Kemco  0.03
## 859      SNES                                  Kemco  0.00
## 860        XB                                  Kemco  0.00
## 861       PS2                                    KID  0.00
## 862       SAT                                    KID  0.00
## 863        DS                           Kids Station  0.00
## 864       GBA                           King Records  0.00
## 865       GBA                    Knowledge Adventure  0.01
## 866       Wii                    Knowledge Adventure  0.06
## 867       3DS                             Koch Media  0.00
## 868        DS                             Koch Media  0.09
## 869        PC                             Koch Media  0.01
## 870       PS2                             Koch Media  0.33
## 871       PS3                             Koch Media  0.09
## 872       PS4                             Koch Media  0.05
## 873       PSP                             Koch Media  0.10
## 874       Wii                             Koch Media  0.08
## 875      X360                             Koch Media  0.05
## 876      XOne                             Koch Media  0.02
## 877        PS               Kokopeli Digital Studios  0.00
## 878       3DO           Konami Digital Entertainment  0.00
## 879       3DS           Konami Digital Entertainment  0.09
## 880        DC           Konami Digital Entertainment  0.00
## 881        DS           Konami Digital Entertainment  0.41
## 882        GB           Konami Digital Entertainment  0.02
## 883       GBA           Konami Digital Entertainment  0.42
## 884        GC           Konami Digital Entertainment  0.05
## 885       GEN           Konami Digital Entertainment  0.00
## 886       N64           Konami Digital Entertainment  0.50
## 887       NES           Konami Digital Entertainment  0.08
## 888        PC           Konami Digital Entertainment  0.07
## 889        PS           Konami Digital Entertainment  1.90
## 890       PS2           Konami Digital Entertainment 16.60
## 891       PS3           Konami Digital Entertainment  3.91
## 892       PS4           Konami Digital Entertainment  0.96
## 893       PSP           Konami Digital Entertainment  2.30
## 894       PSV           Konami Digital Entertainment  0.13
## 895       SAT           Konami Digital Entertainment  0.00
## 896      SNES           Konami Digital Entertainment  0.01
## 897       Wii           Konami Digital Entertainment  1.54
## 898      X360           Konami Digital Entertainment  1.06
## 899        XB           Konami Digital Entertainment  0.16
## 900      XOne           Konami Digital Entertainment  0.10
## 901        XB                              Kool Kizz  0.00
## 902      SNES                                    KSS  0.00
## 903      SNES                                 Laguna  0.01
## 904        DS                     Legacy Interactive  0.00
## 905       GBA                             LEGO Media  0.00
## 906       N64                             LEGO Media  0.01
## 907        PC                             LEGO Media  0.00
## 908        PS                             LEGO Media  0.04
## 909       3DS                                Level 5  0.04
## 910        DS                                Level 5  0.00
## 911       PSP                                Level 5  0.00
## 912       PSV                                Level 5  0.00
## 913       Wii                                Level 5  0.00
## 914      WiiU                                Level 5  0.00
## 915        DS                  Lexicon Entertainment  0.00
## 916       3DS                            Licensed 4U  0.00
## 917        DS                            Licensed 4U  0.00
## 918        PC                 Lighthouse Interactive  0.00
## 919       GBA                           Liquid Games  0.00
## 920       3DS                           Little Orbit  0.03
## 921        DS                           Little Orbit  0.00
## 922       PS3                           Little Orbit  0.05
## 923       PS4                           Little Orbit  0.01
## 924       Wii                           Little Orbit  0.02
## 925      WiiU                           Little Orbit  0.01
## 926      X360                           Little Orbit  0.04
## 927      XOne                           Little Orbit  0.00
## 928        PS                                  Locus  0.00
## 929       GBA                              LSP Games  0.00
## 930       PS2                              LSP Games  0.01
## 931       3DS                              LucasArts  0.09
## 932        DS                              LucasArts  0.91
## 933       GBA                              LucasArts  0.00
## 934        GC                              LucasArts  0.15
## 935       N64                              LucasArts  0.00
## 936        PC                              LucasArts  0.29
## 937        PS                              LucasArts  0.24
## 938       PS2                              LucasArts  3.52
## 939       PS3                              LucasArts  1.27
## 940       PSP                              LucasArts  1.63
## 941       Wii                              LucasArts  1.42
## 942      X360                              LucasArts  0.89
## 943        XB                              LucasArts  0.09
## 944        GC                               Mad Catz  0.01
## 945      X360                               Mad Catz  0.01
## 946        XB                               Mad Catz  0.00
## 947        PS                        Magical Company  0.03
## 948       PS2                                  Magix  0.04
## 949       3DS                  Majesco Entertainment  0.03
## 950        DS                  Majesco Entertainment  0.27
## 951       GBA                  Majesco Entertainment  0.07
## 952       PS2                  Majesco Entertainment  0.01
## 953       PS3                  Majesco Entertainment  0.00
## 954       PSP                  Majesco Entertainment  0.01
## 955       Wii                  Majesco Entertainment  0.52
## 956      X360                  Majesco Entertainment  0.03
## 957        XB                  Majesco Entertainment  0.00
## 958      XOne                  Majesco Entertainment  0.02
## 959        PC                            Mamba Games  0.01
## 960       PSV                   Marvel Entertainment  0.00
## 961       3DS                Marvelous Entertainment  0.07
## 962       PSP                Marvelous Entertainment  0.00
## 963       PSV                Marvelous Entertainment  0.08
## 964       PSV                        Marvelous Games  0.00
## 965       3DS                  Marvelous Interactive  0.01
## 966        DS                  Marvelous Interactive  0.00
## 967       GBA                  Marvelous Interactive  0.00
## 968        GC                  Marvelous Interactive  0.01
## 969       PS2                  Marvelous Interactive  0.00
## 970       PS3                  Marvelous Interactive  0.01
## 971       PS4                  Marvelous Interactive  0.02
## 972       PSP                  Marvelous Interactive  0.03
## 973       PSV                  Marvelous Interactive  0.08
## 974       Wii                  Marvelous Interactive  0.02
## 975      X360                  Marvelous Interactive  0.00
## 976        PC                      Masque Publishing  0.00
## 977        DS                           Mastertronic  0.10
## 978        PC                           Mastertronic  0.03
## 979       PS2                           Mastertronic  0.00
## 980       Wii                           Mastertronic  0.00
## 981      X360                           Mastertronic  0.00
## 982       3DS                                Mastiff  0.00
## 983        DS                                Mastiff  0.02
## 984       GBA                                Mastiff  0.00
## 985        PC                                Mastiff  0.00
## 986       PS2                                Mastiff  0.01
## 987       Wii                                Mastiff  0.11
## 988        XB                                Mastiff  0.00
## 989      2600                     Mattel Interactive  0.02
## 990        PS                     Mattel Interactive  0.03
## 991        PS                               Max Five  0.00
## 992       3DS                   Maximum Family Games  0.00
## 993        PC                                  Maxis  0.11
## 994        PS                                  Maxis  0.08
## 995        PC                      MC2 Entertainment  0.00
## 996        XB                      MC2 Entertainment  0.00
## 997       PS2                    Media Entertainment  0.00
## 998        GB                          Media Factory  0.00
## 999       N64                          Media Factory  0.00
## 1000      GBA                            Media Rings  0.00
## 1001     SNES                            Media Rings  0.00
## 1002       PS                            Media Works  0.00
## 1003      PS2                            Media Works  0.00
## 1004      SAT                            Media Works  0.00
## 1005       PS                             MediaQuest  0.00
## 1006     2600                           Men-A-Vision  0.01
## 1007       DS                     Mentor Interactive  0.07
## 1008       DS                          Mercury Games  0.01
## 1009      PSP                          Mercury Games  0.01
## 1010       PC                            Merscom LLC  0.03
## 1011      PS2                               Metro 3D  0.15
## 1012      Wii                               Metro 3D  0.00
## 1013       XB                               Metro 3D  0.00
## 1014      PS2                            Michaelsoft  0.00
## 1015      3DO                            Micro Cabin  0.00
## 1016      SAT                            Micro Cabin  0.00
## 1017      GBA                               Microids  0.00
## 1018       PC                               Microids  0.00
## 1019      PS2                               Microids  0.01
## 1020      PS4                               Microids  0.00
## 1021       XB                               Microids  0.00
## 1022       PC                             Microprose  0.01
## 1023       PS                             Microprose  0.15
## 1024       PC                 Microsoft Game Studios  0.65
## 1025     WiiU                 Microsoft Game Studios  0.03
## 1026     X360                 Microsoft Game Studios 14.52
## 1027       XB                 Microsoft Game Studios  1.22
## 1028     XOne                 Microsoft Game Studios  2.14
## 1029       DS        Midas Interactive Entertainment  0.00
## 1030       PS        Midas Interactive Entertainment  0.03
## 1031      PS2        Midas Interactive Entertainment  0.23
## 1032      PSP        Midas Interactive Entertainment  0.00
## 1033      Wii        Midas Interactive Entertainment  0.00
## 1034       DS                           Midway Games  0.41
## 1035      GBA                           Midway Games  0.00
## 1036       GC                           Midway Games  0.06
## 1037      N64                           Midway Games  0.05
## 1038       PC                           Midway Games  0.01
## 1039       PS                           Midway Games  0.39
## 1040      PS2                           Midway Games  3.05
## 1041      PS3                           Midway Games  0.46
## 1042      PSP                           Midway Games  0.11
## 1043      Wii                           Midway Games  0.50
## 1044     X360                           Midway Games  0.44
## 1045       XB                           Midway Games  0.26
## 1046      Wii                              Milestone  0.00
## 1047      PS4                        Milestone S.r.l  0.01
## 1048     XOne                        Milestone S.r.l  0.00
## 1049       PC                       Milestone S.r.l.  0.00
## 1050      PS3                       Milestone S.r.l.  0.04
## 1051      PS4                       Milestone S.r.l.  0.10
## 1052      PSV                       Milestone S.r.l.  0.00
## 1053     X360                       Milestone S.r.l.  0.01
## 1054     XOne                       Milestone S.r.l.  0.01
## 1055      PS2                         Minato Station  0.00
## 1056      PS3                         Minato Station  0.00
## 1057      PSV                         Minato Station  0.00
## 1058       DS                              Mindscape  0.22
## 1059      N64                              Mindscape  0.00
## 1060       PS                              Mindscape  0.05
## 1061      PS2                              Mindscape  0.02
## 1062      Wii                              Mindscape  0.25
## 1063     X360                              Mindscape  0.01
## 1064       XB                              Mindscape  0.00
## 1065       DS                          Mirai Shounen  0.00
## 1066     SNES                                 Misawa  0.00
## 1067      N64                                 Mitsui  0.00
## 1068      3DS                              mixi, Inc  0.00
## 1069     XOne                                MLB.com  0.00
## 1070       PC                                 Mojang  0.01
## 1071      PS3                                 Mojang  0.11
## 1072      PS4                                 Mojang  0.11
## 1073     X360                                 Mojang  0.08
## 1074     XOne                                 Mojang  0.05
## 1075       PC               Monte Christo Multimedia  0.01
## 1076     X360                                   Moss  0.01
## 1077       DS                                    MTO  0.00
## 1078       PS                                    MTO  0.01
## 1079       DS                              MTV Games  0.01
## 1080      PS2                              MTV Games  0.22
## 1081      PS3                              MTV Games  0.51
## 1082      PSP                              MTV Games  0.10
## 1083      Wii                              MTV Games  0.65
## 1084     X360                              MTV Games  0.54
## 1085      PS2                   Mud Duck Productions  0.05
## 1086       XB                   Mud Duck Productions  0.01
## 1087       DS                            Mumbo Jumbo  0.02
## 1088       PC                            Mumbo Jumbo  0.00
## 1089      PSP                            Mumbo Jumbo  0.01
## 1090      Wii                            Mumbo Jumbo  0.01
## 1091       DS                                  Mycom  0.00
## 1092      PS2                           Myelin Media  0.01
## 1093      PSP                           Myelin Media  0.00
## 1094       XB                           Myelin Media  0.00
## 1095     2600                               Mystique  0.01
## 1096      3DS                                    N/A  0.00
## 1097       DS                                    N/A  0.00
## 1098      GBA                                    N/A  0.11
## 1099       PC                                    N/A  0.00
## 1100       PS                                    N/A  0.11
## 1101      PS2                                    N/A  0.44
## 1102      PS3                                    N/A  0.00
## 1103      PSP                                    N/A  0.00
## 1104      PSV                                    N/A  0.00
## 1105      Wii                                    N/A  0.01
## 1106     X360                                    N/A  0.00
## 1107      3DS                     Namco Bandai Games  0.22
## 1108       DC                     Namco Bandai Games  0.00
## 1109       DS                     Namco Bandai Games  0.17
## 1110       GB                     Namco Bandai Games  0.02
## 1111      GBA                     Namco Bandai Games  0.07
## 1112       GC                     Namco Bandai Games  0.15
## 1113      N64                     Namco Bandai Games  0.04
## 1114      NES                     Namco Bandai Games  0.10
## 1115       PC                     Namco Bandai Games  0.25
## 1116       PS                     Namco Bandai Games  1.14
## 1117      PS2                     Namco Bandai Games  3.76
## 1118      PS3                     Namco Bandai Games  4.25
## 1119      PS4                     Namco Bandai Games  1.49
## 1120      PSP                     Namco Bandai Games  0.55
## 1121      PSV                     Namco Bandai Games  0.30
## 1122      SAT                     Namco Bandai Games  0.00
## 1123     SNES                     Namco Bandai Games  0.00
## 1124      Wii                     Namco Bandai Games  0.74
## 1125     WiiU                     Namco Bandai Games  0.09
## 1126       WS                     Namco Bandai Games  0.00
## 1127     X360                     Namco Bandai Games  1.07
## 1128       XB                     Namco Bandai Games  0.06
## 1129     XOne                     Namco Bandai Games  0.22
## 1130      3DS                                Natsume  0.01
## 1131       DS                                Natsume  0.04
## 1132      GBA                                Natsume  0.00
## 1133      N64                                Natsume  0.00
## 1134       PS                                Natsume  0.06
## 1135      PS2                                Natsume  0.08
## 1136      PSP                                Natsume  0.00
## 1137      Wii                                Natsume  0.01
## 1138     X360                           Navarre Corp  0.00
## 1139      PS2                             Naxat Soft  0.00
## 1140      SAT                                    NCS  0.00
## 1141       PC                                 NCSoft  0.33
## 1142       GC                        NDA Productions  0.00
## 1143     PCFX                                    NEC  0.00
## 1144      SAT                                    NEC  0.00
## 1145     TG16                                    NEC  0.00
## 1146       DC                       NEC Interchannel  0.00
## 1147      SAT                       NEC Interchannel  0.00
## 1148       DS                     Neko Entertainment  0.00
## 1149      Wii                     Neko Entertainment  0.02
## 1150      PSP                                NetRevo  0.00
## 1151       PS                                    New  0.02
## 1152       PC                    New World Computing  0.00
## 1153      GBA                               NewKidCo  0.00
## 1154       GC                               NewKidCo  0.00
## 1155      N64                               NewKidCo  0.00
## 1156       PS                               NewKidCo  0.04
## 1157       DS                                  Nexon  0.00
## 1158     SNES                             Nichibutsu  0.00
## 1159      PS4               Nihon Falcom Corporation  0.00
## 1160      PSP               Nihon Falcom Corporation  0.00
## 1161      PSV               Nihon Falcom Corporation  0.04
## 1162      3DS                               Nintendo  8.86
## 1163       DS                               Nintendo 25.78
## 1164       GB                               Nintendo  8.00
## 1165      GBA                               Nintendo  3.50
## 1166       GC                               Nintendo  2.23
## 1167      N64                               Nintendo  2.56
## 1168      NES                               Nintendo  3.27
## 1169     SNES                               Nintendo  2.18
## 1170      Wii                               Nintendo 34.40
## 1171     WiiU                               Nintendo  4.55
## 1172      PS2                           Nippon Amuse  0.00
## 1173      3DS                        Nippon Columbia  0.00
## 1174      3DS                   Nippon Ichi Software  0.06
## 1175       DS                   Nippon Ichi Software  0.01
## 1176       PS                   Nippon Ichi Software  0.00
## 1177      PS2                   Nippon Ichi Software  0.02
## 1178      PS3                   Nippon Ichi Software  0.48
## 1179      PS4                   Nippon Ichi Software  0.12
## 1180      PSP                   Nippon Ichi Software  0.08
## 1181      PSV                   Nippon Ichi Software  0.56
## 1182      Wii                   Nippon Ichi Software  0.01
## 1183     WiiU                   Nippon Ichi Software  0.01
## 1184     SNES                         Nippon Telenet  0.00
## 1185      PS3                              Nitroplus  0.00
## 1186      PSV                              Nitroplus  0.00
## 1187       DS                                Nobilis  0.14
## 1188       PC                                Nobilis  0.00
## 1189      Wii                                Nobilis  0.00
## 1190       DS                            Nordcurrent  0.03
## 1191      Wii                            Nordcurrent  0.02
## 1192       DS                           Nordic Games  0.02
## 1193       PC                           Nordic Games  0.04
## 1194      PS3                           Nordic Games  0.02
## 1195      PS4                           Nordic Games  0.08
## 1196      Wii                           Nordic Games  0.33
## 1197     WiiU                           Nordic Games  0.00
## 1198     X360                           Nordic Games  0.01
## 1199     XOne                           Nordic Games  0.01
## 1200       PC                              NovaLogic  0.00
## 1201      PS2                              NovaLogic  0.06
## 1202       XB                              NovaLogic  0.01
## 1203       PC                            Number None  0.01
## 1204       DS                                O-Games  0.04
## 1205      PS3                                O-Games  0.04
## 1206      Wii                                O-Games  0.04
## 1207     X360                                O-Games  0.00
## 1208       DS                       O3 Entertainment  0.01
## 1209       GC                       O3 Entertainment  0.00
## 1210      N64                                  Ocean  0.03
## 1211      NES                                  Ocean  0.01
## 1212       PS                                  Ocean  0.07
## 1213     SNES                                  Ocean  0.00
## 1214      3DS                          Office Create  0.00
## 1215       PS                              On Demand  0.01
## 1216      PS3                              Ongakukan  0.00
## 1217       PS                         Origin Systems  0.01
## 1218      PSP                                Otomate  0.00
## 1219       DS                     Oxygen Interactive  0.05
## 1220      PS2                     Oxygen Interactive  0.26
## 1221      PSP                     Oxygen Interactive  0.02
## 1222      Wii                     Oxygen Interactive  0.03
## 1223     X360                     Oxygen Interactive  0.00
## 1224       DS                               P2 Games  0.04
## 1225      Wii                               P2 Games  0.00
## 1226      PS2            Pacific Century Cyber Works  0.03
## 1227     SNES                          Pack-In-Video  0.00
## 1228      N64                           Pack In Soft  0.06
## 1229      NES                                 Palcom  0.04
## 1230       PS                       Panther Software  0.01
## 1231       DS                                   Paon  0.00
## 1232      PS2                                   Paon  0.00
## 1233      PSP                                   Paon  0.00
## 1234      PS3                       Paon Corporation  0.00
## 1235       PC                    Paradox Development  0.00
## 1236       PC                    Paradox Interactive  0.08
## 1237     2600                           Parker Bros.  0.05
## 1238       DS          Performance Designed Products  0.01
## 1239      Wii          Performance Designed Products  0.01
## 1240       XB                             Phantagram  0.00
## 1241     X360                            Phantom EFX  0.01
## 1242       DS                             Phenomedia  0.00
## 1243       DS                          Phoenix Games  0.00
## 1244      PSP                                 Piacci  0.00
## 1245       DS                               Pinnacle  0.06
## 1246       PC                               Pinnacle  0.01
## 1247      Wii                               Pinnacle  0.03
## 1248       PS                            Pioneer LDC  0.04
## 1249      GBA                                Play It  0.00
## 1250      PS2                                Play It  0.53
## 1251      PSP                                Play It  0.02
## 1252       DS                 Playlogic Game Factory  0.01
## 1253       PC                 Playlogic Game Factory  0.00
## 1254      PS2                 Playlogic Game Factory  0.02
## 1255      PS3                 Playlogic Game Factory  0.02
## 1256      PSP                 Playlogic Game Factory  0.02
## 1257      Wii                 Playlogic Game Factory  0.02
## 1258     X360                 Playlogic Game Factory  0.02
## 1259       PS                              Playmates  0.02
## 1260      PS2                               Playmore  0.00
## 1261       DS                                  PlayV  0.05
## 1262       DS                                 Plenty  0.00
## 1263      PSP                             PM Studios  0.01
## 1264       PS                            Pony Canyon  0.00
## 1265       DS                           PopCap Games  0.06
## 1266       PC                           PopCap Games  0.03
## 1267      PS3                           PopCap Games  0.01
## 1268     X360                           PopCap Games  0.02
## 1269      Wii                         Popcorn Arcade  0.01
## 1270       PS                        PopTop Software  0.01
## 1271     SNES                                    Pow  0.00
## 1272      3DS                                  PQube  0.01
## 1273       DS                                  PQube  0.01
## 1274       PC                                  PQube  0.00
## 1275      PS2                                  PQube  0.01
## 1276      PS3                                  PQube  0.16
## 1277      PS4                                  PQube  0.02
## 1278      PSP                                  PQube  0.04
## 1279      PSV                                  PQube  0.09
## 1280      Wii                                  PQube  0.00
## 1281     X360                                  PQube  0.05
## 1282     XOne                                  PQube  0.01
## 1283      PS2                          Princess Soft  0.00
## 1284      PS2                              Prototype  0.00
## 1285      PS3                              Prototype  0.00
## 1286      PSP                              Prototype  0.00
## 1287      PSV                              Prototype  0.00
## 1288     X360                              Prototype  0.00
## 1289       PS                              Psygnosis  0.45
## 1290     2600                                 Quelle  0.01
## 1291     SNES                                  Quest  0.00
## 1292      PSP                               Quinrose  0.00
## 1293      SAT                                Quintet  0.00
## 1294      GBA                          Rage Software  0.00
## 1295       GC                          Rage Software  0.00
## 1296      PS2                          Rage Software  0.12
## 1297       XB                          Rage Software  0.01
## 1298      PSV                             Rain Games  0.00
## 1299      GBA                              Rebellion  0.01
## 1300      PS4                 Rebellion Developments  0.03
## 1301     XOne                 Rebellion Developments  0.01
## 1302      PS2                      RED Entertainment  0.00
## 1303       PC                                Red Orb  0.10
## 1304      N64                Red Storm Entertainment  0.01
## 1305       PS                Red Storm Entertainment  0.08
## 1306      PS2                              RedOctane  0.91
## 1307       DS                     Reef Entertainment  0.00
## 1308       PC                     Reef Entertainment  0.00
## 1309      PS3                     Reef Entertainment  0.01
## 1310      Wii                     Reef Entertainment  0.02
## 1311      PS2                           responDESIGN  0.01
## 1312       XB                           responDESIGN  0.00
## 1313      PS2                     Revolution (Japan)  0.00
## 1314      PS4                    Revolution Software  0.01
## 1315     XOne                    Revolution Software  0.00
## 1316      3DS                      Rising Star Games  0.05
## 1317       DS                      Rising Star Games  0.48
## 1318       PC                      Rising Star Games  0.01
## 1319      PS2                      Rising Star Games  0.04
## 1320      PS3                      Rising Star Games  0.05
## 1321      PS4                      Rising Star Games  0.00
## 1322      PSP                      Rising Star Games  0.09
## 1323      PSV                      Rising Star Games  0.00
## 1324      Wii                      Rising Star Games  0.41
## 1325     X360                      Rising Star Games  0.09
## 1326       PS                          Riverhillsoft  0.00
## 1327      3DS                         Rocket Company  0.00
## 1328       DS                         Rocket Company  0.00
## 1329      Wii                         Rocket Company  0.00
## 1330       DS                             Rondomedia  0.09
## 1331       PC                             Rondomedia  0.12
## 1332      Wii                             Rondomedia  0.05
## 1333       DS                                    RTL  0.02
## 1334      Wii                                    RTL  0.17
## 1335     X360                                    RTL  0.01
## 1336       DS                                 Russel  0.00
## 1337       PC                                 Russel  0.00
## 1338      PS2                                 Russel  0.00
## 1339      PSP                                 Russel  0.00
## 1340      GBA                      Sammy Corporation  0.00
## 1341      PS2                      Sammy Corporation  0.10
## 1342     SNES                      Sammy Corporation  0.00
## 1343       PS                                 Saurus  0.00
## 1344       DS                        Scholastic Inc.  0.13
## 1345      PS2                        Scholastic Inc.  0.01
## 1346      Wii                        Scholastic Inc.  0.04
## 1347       GC                                    SCi  0.00
## 1348       PC                                    SCi  0.01
## 1349      PS2                                    SCi  0.21
## 1350       XB                                    SCi  0.04
## 1351      3DS                             Screenlife  0.01
## 1352      PSV                             Screenlife  0.02
## 1353       PC                           SCS Software  0.02
## 1354     2600                                  Sears  0.00
## 1355     2600                                   Sega  0.00
## 1356      3DS                                   Sega  0.39
## 1357       DC                                   Sega  0.24
## 1358       DS                                   Sega  2.44
## 1359      GBA                                   Sega  0.22
## 1360       GC                                   Sega  0.23
## 1361      GEN                                   Sega  0.63
## 1362       GG                                   Sega  0.00
## 1363       PC                                   Sega  1.65
## 1364      PS2                                   Sega  4.15
## 1365      PS3                                   Sega  4.72
## 1366      PS4                                   Sega  0.21
## 1367      PSP                                   Sega  2.16
## 1368      PSV                                   Sega  0.36
## 1369      SAT                                   Sega  0.07
## 1370      SCD                                   Sega  0.05
## 1371      Wii                                   Sega  4.28
## 1372     WiiU                                   Sega  0.11
## 1373     X360                                   Sega  2.19
## 1374       XB                                   Sega  0.38
## 1375     XOne                                   Sega  0.04
## 1376      N64                       Seta Corporation  0.03
## 1377       PS                       Seta Corporation  0.01
## 1378      SAT                       Seta Corporation  0.00
## 1379      3DS                          Seventh Chord  0.00
## 1380      3DS                             Shogakukan  0.00
## 1381       DS                             Shogakukan  0.00
## 1382      SAT                             Shogakukan  0.00
## 1383       XB           Simon & Schuster Interactive  0.00
## 1384       PC                   Slightly Mad Studios  0.01
## 1385      PS4                   Slightly Mad Studios  0.15
## 1386     XOne                   Slightly Mad Studios  0.02
## 1387       DS                    Slitherine Software  0.00
## 1388      PS3                    Slitherine Software  0.01
## 1389      PSP                    Slitherine Software  0.01
## 1390     X360                    Slitherine Software  0.01
## 1391       DC                                    SNK  0.00
## 1392       NG                                    SNK  0.00
## 1393       PS                                    SNK  0.03
## 1394      PS2                                    SNK  0.01
## 1395      SAT                                    SNK  0.00
## 1396       DS                           SNK Playmore  0.00
## 1397       PS                           SNK Playmore  0.01
## 1398      PS2                           SNK Playmore  0.02
## 1399      PSP                           SNK Playmore  0.00
## 1400      SAT                           SNK Playmore  0.00
## 1401       XB                           SNK Playmore  0.00
## 1402      SAT                                Societa  0.00
## 1403      PS4                               Sold Out  0.00
## 1404      SAT                                 Sonnet  0.00
## 1405       PS            Sony Computer Entertainment 10.14
## 1406      PS2            Sony Computer Entertainment 32.11
## 1407      PS3            Sony Computer Entertainment 21.75
## 1408      PS4            Sony Computer Entertainment  4.91
## 1409      PSP            Sony Computer Entertainment  9.92
## 1410      PSV            Sony Computer Entertainment  1.62
## 1411      PS3    Sony Computer Entertainment America  0.04
## 1412      PS4    Sony Computer Entertainment America  0.07
## 1413      PSV    Sony Computer Entertainment America  0.02
## 1414      PS2     Sony Computer Entertainment Europe  0.35
## 1415      PS3     Sony Computer Entertainment Europe  1.21
## 1416      PS4     Sony Computer Entertainment Europe  1.08
## 1417      PSV     Sony Computer Entertainment Europe  0.78
## 1418      PS2               Sony Music Entertainment  0.00
## 1419       PC              Sony Online Entertainment  0.02
## 1420      PS2              Sony Online Entertainment  0.31
## 1421      PS3              Sony Online Entertainment  0.06
## 1422      PSP              Sony Online Entertainment  0.01
## 1423       DS                        SouthPeak Games  0.09
## 1424       PC                        SouthPeak Games  0.00
## 1425       PS                        SouthPeak Games  0.01
## 1426      PS2                        SouthPeak Games  0.17
## 1427      PS3                        SouthPeak Games  0.10
## 1428      PSP                        SouthPeak Games  0.04
## 1429      Wii                        SouthPeak Games  0.03
## 1430     X360                        SouthPeak Games  0.12
## 1431       DS                                  Spike  0.01
## 1432      GBA                                  Spike  0.00
## 1433      PS2                                  Spike  0.16
## 1434      PS3                                  Spike  0.05
## 1435      PSP                                  Spike  0.02
## 1436     X360                                  Spike  0.13
## 1437       PS                                    SPS  0.01
## 1438      NES                                 Square  0.00
## 1439       PS                                 Square  0.11
## 1440     SNES                                 Square  0.12
## 1441       PS                              Square EA  0.05
## 1442      3DS                            Square Enix  0.19
## 1443       DS                            Square Enix  0.88
## 1444      GBA                            Square Enix  0.07
## 1445       PC                            Square Enix  0.52
## 1446      PS2                            Square Enix  2.84
## 1447      PS3                            Square Enix  4.12
## 1448      PS4                            Square Enix  1.47
## 1449      PSP                            Square Enix  1.67
## 1450      PSV                            Square Enix  0.21
## 1451      Wii                            Square Enix  0.08
## 1452     WiiU                            Square Enix  0.01
## 1453     X360                            Square Enix  1.48
## 1454     XOne                            Square Enix  0.35
## 1455       GB                             SquareSoft  0.00
## 1456      GBA                             SquareSoft  0.05
## 1457      NES                             SquareSoft  0.01
## 1458       PS                             SquareSoft  1.40
## 1459      PS2                             SquareSoft  0.00
## 1460     SNES                             SquareSoft  0.08
## 1461       WS                             SquareSoft  0.00
## 1462       PS                                    SSI  0.01
## 1463     XOne                        Stainless Games  0.00
## 1464       DS                               Starfish  0.00
## 1465      GBA                               Starfish  0.00
## 1466       PS                               Starfish  0.03
## 1467      PSP                               Starfish  0.00
## 1468      Wii                               Starfish  0.00
## 1469     2600                         Starpath Corp.  0.00
## 1470       DS                                  Sting  0.00
## 1471      GBA                                  Sting  0.00
## 1472      PS2                                  Sting  0.01
## 1473      PSP                                  Sting  0.01
## 1474      Wii                                  Sting  0.01
## 1475       DS                       Storm City Games  0.06
## 1476      Wii                       Storm City Games  0.02
## 1477       PC                         Strategy First  0.00
## 1478      3DS                                Success  0.00
## 1479       DS                                Success  0.01
## 1480       PS                                Success  0.08
## 1481      PS2                                Success  0.00
## 1482      PSP                                Success  0.00
## 1483     X360                                Success  0.00
## 1484      GBA                             Summitsoft  0.00
## 1485       PC                             Sunflowers  0.01
## 1486      PS2                    Sunrise Interactive  0.00
## 1487      3DS                                Sunsoft  0.00
## 1488      N64                                Sunsoft  0.00
## 1489       PS                                Sunsoft  0.04
## 1490      SAT                                Sunsoft  0.00
## 1491     SNES                                Sunsoft  0.00
## 1492      PS2                                 Sweets  0.00
## 1493      GBA                   Swing! Entertainment  0.00
## 1494       PS                   Swing! Entertainment  0.00
## 1495      PS2                   Swing! Entertainment  0.03
## 1496       XB                   Swing! Entertainment  0.01
## 1497       PS                                 Syscom  0.02
## 1498      PS3                               System 3  0.00
## 1499      PS4                               System 3  0.02
## 1500      PSV                               System 3  0.01
## 1501       DS               System 3 Arcade Software  0.01
## 1502      PS2               System 3 Arcade Software  0.02
## 1503      PS3               System 3 Arcade Software  0.02
## 1504      PSP               System 3 Arcade Software  0.03
## 1505      Wii               System 3 Arcade Software  0.12
## 1506      PSP                            System Soft  0.00
## 1507     SNES                               T&E Soft  0.00
## 1508     2600                                  Taito  0.00
## 1509       DS                                  Taito  0.00
## 1510      GBA                                  Taito  0.00
## 1511       GC                                  Taito  0.00
## 1512      N64                                  Taito  0.07
## 1513       PS                                  Taito  0.10
## 1514      PS2                                  Taito  0.02
## 1515      SAT                                  Taito  0.00
## 1516     SNES                                  Taito  0.00
## 1517      Wii                                  Taito  0.00
## 1518      GBA                                 Takara  0.00
## 1519      N64                                 Takara  0.00
## 1520       PS                                 Takara  0.08
## 1521      PS2                                 Takara  0.00
## 1522     SNES                                 Takara  0.00
## 1523      3DS                            Takara Tomy  0.00
## 1524       DS                            Takara Tomy  0.05
## 1525      PSP                            Takara Tomy  0.01
## 1526      Wii                            Takara Tomy  0.01
## 1527     X360                            Takara Tomy  0.01
## 1528      3DS                   Take-Two Interactive  0.01
## 1529       DS                   Take-Two Interactive  0.78
## 1530      GBA                   Take-Two Interactive  0.00
## 1531       GC                   Take-Two Interactive  0.00
## 1532      N64                   Take-Two Interactive  0.00
## 1533       PC                   Take-Two Interactive  1.38
## 1534       PS                   Take-Two Interactive  0.82
## 1535      PS2                   Take-Two Interactive 18.74
## 1536      PS3                   Take-Two Interactive 13.18
## 1537      PS4                   Take-Two Interactive  4.17
## 1538      PSP                   Take-Two Interactive  4.59
## 1539      PSV                   Take-Two Interactive  0.19
## 1540      Wii                   Take-Two Interactive  1.61
## 1541     WiiU                   Take-Two Interactive  0.01
## 1542     X360                   Take-Two Interactive  8.17
## 1543       XB                   Take-Two Interactive  0.45
## 1544     XOne                   Take-Two Interactive  1.14
## 1545      PSP                                 Takuyo  0.00
## 1546       PS                              TalonSoft  0.06
## 1547       DS                               TDK Core  0.00
## 1548      GBA                               TDK Core  0.00
## 1549       PS                               TDK Core  0.01
## 1550      GBA                         TDK Mediactive  0.05
## 1551       GC                         TDK Mediactive  0.00
## 1552       PS                         TDK Mediactive  0.02
## 1553      PS2                         TDK Mediactive  0.34
## 1554       XB                         TDK Mediactive  0.04
## 1555       PC                        Team17 Software  0.01
## 1556       NG              Technos Japan Corporation  0.00
## 1557       PS                             TechnoSoft  0.00
## 1558      3DS                             Tecmo Koei  0.01
## 1559       DS                             Tecmo Koei  0.06
## 1560      GBA                             Tecmo Koei  0.00
## 1561       GC                             Tecmo Koei  0.00
## 1562       PS                             Tecmo Koei  0.21
## 1563      PS2                             Tecmo Koei  1.26
## 1564      PS3                             Tecmo Koei  0.65
## 1565      PS4                             Tecmo Koei  0.27
## 1566      PSP                             Tecmo Koei  0.07
## 1567      PSV                             Tecmo Koei  0.19
## 1568      SAT                             Tecmo Koei  0.00
## 1569     SNES                             Tecmo Koei  0.00
## 1570      Wii                             Tecmo Koei  0.04
## 1571     WiiU                             Tecmo Koei  0.01
## 1572     X360                             Tecmo Koei  0.36
## 1573       XB                             Tecmo Koei  0.03
## 1574     XOne                             Tecmo Koei  0.02
## 1575       DS                              Telegames  0.06
## 1576      GBA                              Telegames  0.00
## 1577       PS                              Telegames  0.00
## 1578      PS3                         Telltale Games  0.08
## 1579      PS4                         Telltale Games  0.22
## 1580      PSV                         Telltale Games  0.05
## 1581      Wii                         Telltale Games  0.00
## 1582     X360                         Telltale Games  0.01
## 1583     XOne                         Telltale Games  0.03
## 1584       PS                                Telstar  0.02
## 1585      3DS                          Tetris Online  0.03
## 1586      PSP                                    TGL  0.00
## 1587      PSV                                    TGL  0.00
## 1588       DS                  The Adventure Company  0.01
## 1589      Wii                  The Adventure Company  0.04
## 1590       PS                   The Learning Company  0.00
## 1591      3DS                                    THQ  0.05
## 1592       DS                                    THQ  3.04
## 1593      GBA                                    THQ  1.18
## 1594       GC                                    THQ  0.36
## 1595      N64                                    THQ  0.12
## 1596       PC                                    THQ  0.45
## 1597       PS                                    THQ  1.58
## 1598      PS2                                    THQ 12.03
## 1599      PS3                                    THQ  4.10
## 1600      PSP                                    THQ  2.74
## 1601     SNES                                    THQ  0.00
## 1602      Wii                                    THQ  2.76
## 1603     WiiU                                    THQ  0.01
## 1604     X360                                    THQ  3.42
## 1605       XB                                    THQ  0.30
## 1606     2600                            Tigervision  0.01
## 1607       PS                Time Warner Interactive  0.03
## 1608      GBA                                  Titus  0.00
## 1609       GC                                  Titus  0.00
## 1610      N64                                  Titus  0.02
## 1611       PS                                  Titus  0.03
## 1612      PS2                                  Titus  0.15
## 1613     SNES                                  Titus  0.00
## 1614       XB                                  Titus  0.00
## 1615       DS                                 Tivola  0.02
## 1616     SNES                                   TOHO  0.00
## 1617       DS                                  Tommo  0.00
## 1618      Wii                                  Tommo  0.00
## 1619       DS                       Tomy Corporation  0.01
## 1620      GBA                       Tomy Corporation  0.00
## 1621       GC                       Tomy Corporation  0.05
## 1622       PS                       Tomy Corporation  0.05
## 1623      Wii                       Tomy Corporation  0.14
## 1624       PC                    TopWare Interactive  0.01
## 1625      PS3                    TopWare Interactive  0.01
## 1626      PS4                    TopWare Interactive  0.00
## 1627     X360                    TopWare Interactive  0.00
## 1628       DS                             Touchstone  0.02
## 1629       PC                             Touchstone  0.00
## 1630      PS3                             Touchstone  0.10
## 1631     X360                             Touchstone  0.07
## 1632      PS3                              Tradewest  0.01
## 1633      Wii                              Tradewest  0.00
## 1634     X360                              Tradewest  0.00
## 1635       PC                           Trion Worlds  0.02
## 1636      PS3                           Trion Worlds  0.05
## 1637     X360                           Trion Worlds  0.04
## 1638       PC                   Tripwire Interactive  0.02
## 1639      PS3                  Tru Blu Entertainment  0.00
## 1640      PS4                  Tru Blu Entertainment  0.02
## 1641     X360                  Tru Blu Entertainment  0.00
## 1642     XOne                  Tru Blu Entertainment  0.00
## 1643      PS2                               Tryfirst  0.00
## 1644       PS                                    TYO  0.03
## 1645      PSV                              Type-Moon  0.00
## 1646       PS                              U.S. Gold  0.02
## 1647      3DS                                Ubisoft  0.36
## 1648       DC                                Ubisoft  0.00
## 1649       DS                                Ubisoft  5.27
## 1650       GB                                Ubisoft  0.00
## 1651      GBA                                Ubisoft  0.12
## 1652       GC                                Ubisoft  0.08
## 1653      N64                                Ubisoft  0.03
## 1654       PC                                Ubisoft  2.11
## 1655       PS                                Ubisoft  0.51
## 1656      PS2                                Ubisoft  4.16
## 1657      PS3                                Ubisoft 11.72
## 1658      PS4                                Ubisoft  5.10
## 1659      PSP                                Ubisoft  1.60
## 1660      PSV                                Ubisoft  0.64
## 1661      Wii                                Ubisoft  8.31
## 1662     WiiU                                Ubisoft  0.50
## 1663     X360                                Ubisoft  7.33
## 1664       XB                                Ubisoft  0.87
## 1665     XOne                                Ubisoft  1.55
## 1666      3DS                         Ubisoft Annecy  0.03
## 1667      PS3                         Ubisoft Annecy  0.15
## 1668      PSP                         Ubisoft Annecy  0.05
## 1669     X360                         Ubisoft Annecy  0.04
## 1670       PS                            UEP Systems  0.08
## 1671      3DS                        UFO Interactive  0.00
## 1672       DS                        UFO Interactive  0.03
## 1673      Wii                        UFO Interactive  0.01
## 1674      PS4                      UIG Entertainment  0.00
## 1675     2600                            Ultravision  0.00
## 1676     2600                        Universal Gamex  0.01
## 1677      GBA                  Universal Interactive  0.11
## 1678       GC                  Universal Interactive  0.05
## 1679      PS2                  Universal Interactive  1.46
## 1680       XB                  Universal Interactive  0.13
## 1681     2600                                Unknown  0.00
## 1682      3DS                                Unknown  0.04
## 1683       DS                                Unknown  0.12
## 1684      GBA                                Unknown  0.05
## 1685       GC                                Unknown  0.02
## 1686      N64                                Unknown  0.00
## 1687       PC                                Unknown  0.21
## 1688       PS                                Unknown  0.09
## 1689      PS2                                Unknown  1.31
## 1690      PS3                                Unknown  0.17
## 1691      PS4                                Unknown  0.01
## 1692      PSP                                Unknown  0.05
## 1693      PSV                                Unknown  0.00
## 1694      Wii                                Unknown  0.19
## 1695     X360                                Unknown  0.13
## 1696       XB                                Unknown  0.09
## 1697     XOne                                Unknown  0.00
## 1698       DS                           Valcon Games  0.00
## 1699      PS2                           Valcon Games  0.01
## 1700      Wii                           Valcon Games  0.01
## 1701     X360                           Valcon Games  0.01
## 1702       DS                               ValuSoft  0.01
## 1703       PC                               ValuSoft  0.00
## 1704      PS2                               ValuSoft  0.03
## 1705      PS3                                  Valve  0.25
## 1706       PC                         Valve Software  0.15
## 1707     X360                         Valve Software  0.17
## 1708     SNES                                    Vap  0.00
## 1709      N64                  Vatical Entertainment  0.00
## 1710       PS                  Vatical Entertainment  0.01
## 1711      N64                              Vic Tokai  0.00
## 1712       PS                              Vic Tokai  0.01
## 1713       GB                     Victor Interactive  0.00
## 1714      GBA                     Victor Interactive  0.00
## 1715       PS                     Victor Interactive  0.02
## 1716      PS2                     Victor Interactive  0.00
## 1717      SAT                     Victor Interactive  0.00
## 1718     SNES                     Victor Interactive  0.00
## 1719      N64                           Video System  0.08
## 1720       PS                           Video System  0.01
## 1721     SNES                           Video System  0.00
## 1722      PS3                                  Views  0.00
## 1723      PSP                                  Views  0.00
## 1724       DS                          Vir2L Studios  0.00
## 1725      Wii                          Vir2L Studios  0.01
## 1726       DC                     Virgin Interactive  0.00
## 1727       GC                     Virgin Interactive  0.00
## 1728      GEN                     Virgin Interactive  0.05
## 1729      N64                     Virgin Interactive  0.01
## 1730       PC                     Virgin Interactive  0.30
## 1731       PS                     Virgin Interactive  2.15
## 1732      PS2                     Virgin Interactive  0.45
## 1733      SAT                     Virgin Interactive  0.00
## 1734     SNES                     Virgin Interactive  0.06
## 1735       XB                     Virgin Interactive  0.01
## 1736      Wii                     Virtual Play Games  0.00
## 1737       PC                                  Visco  0.00
## 1738       DS                          Vivendi Games  0.26
## 1739      GBA                          Vivendi Games  0.30
## 1740       GC                          Vivendi Games  0.08
## 1741       PC                          Vivendi Games  0.11
## 1742       PS                          Vivendi Games  0.04
## 1743      PS2                          Vivendi Games  2.73
## 1744      PS3                          Vivendi Games  0.29
## 1745      PSP                          Vivendi Games  0.41
## 1746      Wii                          Vivendi Games  0.19
## 1747     X360                          Vivendi Games  0.24
## 1748       XB                          Vivendi Games  0.23
## 1749      GBA                                Wanadoo  0.00
## 1750       GC                                Wanadoo  0.00
## 1751      PS2                                Wanadoo  0.07
## 1752       XB                                Wanadoo  0.00
## 1753       DC                                Warashi  0.00
## 1754       PC                          Wargaming.net  0.06
## 1755      3DS Warner Bros. Interactive Entertainment  0.50
## 1756       DS Warner Bros. Interactive Entertainment  1.73
## 1757       GC Warner Bros. Interactive Entertainment  0.00
## 1758       PC Warner Bros. Interactive Entertainment  0.39
## 1759      PS2 Warner Bros. Interactive Entertainment  0.92
## 1760      PS3 Warner Bros. Interactive Entertainment  4.64
## 1761      PS4 Warner Bros. Interactive Entertainment  3.15
## 1762      PSP Warner Bros. Interactive Entertainment  0.61
## 1763      PSV Warner Bros. Interactive Entertainment  1.11
## 1764      Wii Warner Bros. Interactive Entertainment  1.46
## 1765     WiiU Warner Bros. Interactive Entertainment  0.44
## 1766     X360 Warner Bros. Interactive Entertainment  2.81
## 1767     XOne Warner Bros. Interactive Entertainment  0.80
## 1768      SAT                                   Warp  0.00
## 1769      3DS                WayForward Technologies  0.01
## 1770       PC                       Westwood Studios  0.00
## 1771       DS                White Park Bay Software  0.01
## 1772     2600                     Wizard Video Games  0.01
## 1773      PS2                      Xicat Interactive  0.01
## 1774       XB                      Xicat Interactive  0.00
## 1775       PS                     Xing Entertainment  0.02
## 1776      PS2                                Xplosiv  0.11
## 1777      PSP                                Xplosiv  0.04
## 1778      Wii                                Xplosiv  0.02
## 1779      GBA                               XS Games  0.00
## 1780       PS                               XS Games  0.02
## 1781      PS2                               XS Games  0.02
## 1782      Wii                               XS Games  0.05
## 1783     X360                               XS Games  0.02
## 1784       XB                               XS Games  0.00
## 1785      3DS                            Xseed Games  0.03
## 1786      PS4                            Xseed Games  0.01
## 1787      PSV                            Xseed Games  0.03
## 1788      3DS                       Yacht Club Games  0.01
## 1789      PS4                       Yacht Club Games  0.01
## 1790     WiiU                       Yacht Club Games  0.01
## 1791      PS2                   Yamasa Entertainment  0.00
## 1792      PSP                   Yamasa Entertainment  0.00
## 1793      PS2                                   Yeti  0.00
## 1794      PS4                                   Yeti  0.00
## 1795      PSP                                   Yeti  0.00
## 1796     X360                                   Yeti  0.00
## 1797      PS2                                 Yuke's  0.00
## 1798      SAT                                Yumedia  0.00
## 1799      PSP                                 Zenrin  0.00
## 1800       DS                 Zoo Digital Publishing  0.15
## 1801      GBA                 Zoo Digital Publishing  0.03
## 1802       GC                 Zoo Digital Publishing  0.00
## 1803      PS2                 Zoo Digital Publishing  0.39
## 1804      Wii                 Zoo Digital Publishing  0.16
## 1805       XB                 Zoo Digital Publishing  0.05
## 1806       DS                              Zoo Games  0.05
## 1807      Wii                              Zoo Games  0.20
## 1808     X360                              Zoo Games  0.02
## 1809       DS                            Zushi Games  0.00
## 1810      PSP                            Zushi Games  0.01
## 1811      Wii                            Zushi Games  0.09
## 1812     X360                            Zushi Games  0.01
aggregate(Other_Sales,by=list(Year = Year,Genre = Genre),sum)
##     Year        Genre     x
## 1   1980       Action  0.00
## 2   1981       Action  0.12
## 3   1982       Action  0.05
## 4   1983       Action  0.02
## 5   1984       Action  0.03
## 6   1985       Action  0.06
## 7   1986       Action  0.25
## 8   1987       Action  0.01
## 9   1988       Action  0.01
## 10  1989       Action  0.05
## 11  1990       Action  0.14
## 12  1991       Action  0.15
## 13  1992       Action  0.13
## 14  1993       Action  0.03
## 15  1994       Action  0.02
## 16  1995       Action  0.14
## 17  1996       Action  1.45
## 18  1997       Action  1.43
## 19  1998       Action  1.81
## 20  1999       Action  1.24
## 21  2000       Action  1.61
## 22  2001       Action  4.33
## 23  2002       Action  6.73
## 24  2003       Action  5.17
## 25  2004       Action 16.22
## 26  2005       Action  7.63
## 27  2006       Action  7.06
## 28  2007       Action 15.40
## 29  2008       Action 18.55
## 30  2009       Action 16.67
## 31  2010       Action 12.85
## 32  2011       Action 13.41
## 33  2012       Action 14.36
## 34  2013       Action 15.33
## 35  2014       Action 13.30
## 36  2015       Action  7.33
## 37  2016       Action  1.83
## 38  2017       Action  0.00
## 39   N/A       Action  2.46
## 40  1983    Adventure  0.00
## 41  1987    Adventure  0.08
## 42  1991    Adventure  0.04
## 43  1992    Adventure  0.29
## 44  1993    Adventure  0.00
## 45  1994    Adventure  0.00
## 46  1995    Adventure  0.01
## 47  1996    Adventure  0.12
## 48  1997    Adventure  0.22
## 49  1998    Adventure  0.44
## 50  1999    Adventure  0.40
## 51  2000    Adventure  0.15
## 52  2001    Adventure  0.48
## 53  2002    Adventure  0.63
## 54  2003    Adventure  0.16
## 55  2004    Adventure  0.31
## 56  2005    Adventure  0.64
## 57  2006    Adventure  1.06
## 58  2007    Adventure  2.27
## 59  2008    Adventure  1.94
## 60  2009    Adventure  1.62
## 61  2010    Adventure  1.45
## 62  2011    Adventure  1.52
## 63  2012    Adventure  0.44
## 64  2013    Adventure  0.79
## 65  2014    Adventure  0.68
## 66  2015    Adventure  0.85
## 67  2016    Adventure  0.11
## 68   N/A    Adventure  0.11
## 69  1980     Fighting  0.01
## 70  1985     Fighting  0.00
## 71  1987     Fighting  0.10
## 72  1991     Fighting  0.00
## 73  1992     Fighting  0.32
## 74  1993     Fighting  0.09
## 75  1994     Fighting  0.20
## 76  1995     Fighting  0.56
## 77  1996     Fighting  0.75
## 78  1997     Fighting  0.52
## 79  1998     Fighting  1.27
## 80  1999     Fighting  0.32
## 81  2000     Fighting  1.21
## 82  2001     Fighting  1.18
## 83  2002     Fighting  1.57
## 84  2003     Fighting  1.74
## 85  2004     Fighting  1.36
## 86  2005     Fighting  1.81
## 87  2006     Fighting  2.71
## 88  2007     Fighting  4.10
## 89  2008     Fighting  3.86
## 90  2009     Fighting  4.02
## 91  2010     Fighting  1.68
## 92  2011     Fighting  2.16
## 93  2012     Fighting  0.97
## 94  2013     Fighting  0.82
## 95  2014     Fighting  1.39
## 96  2015     Fighting  1.01
## 97  2016     Fighting  0.46
## 98   N/A     Fighting  0.49
## 99  1980         Misc  0.02
## 100 1982         Misc  0.01
## 101 1983         Misc  0.00
## 102 1984         Misc  0.00
## 103 1989         Misc  0.00
## 104 1991         Misc  0.00
## 105 1992         Misc  0.12
## 106 1993         Misc  0.00
## 107 1994         Misc  0.10
## 108 1995         Misc  0.09
## 109 1996         Misc  0.36
## 110 1997         Misc  0.20
## 111 1998         Misc  0.58
## 112 1999         Misc  0.68
## 113 2000         Misc  0.73
## 114 2001         Misc  0.92
## 115 2002         Misc  0.68
## 116 2003         Misc  2.04
## 117 2004         Misc  2.14
## 118 2005         Misc  6.05
## 119 2006         Misc  6.09
## 120 2007         Misc 11.95
## 121 2008         Misc 11.00
## 122 2009         Misc  9.36
## 123 2010         Misc  8.12
## 124 2011         Misc  4.94
## 125 2012         Misc  1.65
## 126 2013         Misc  2.05
## 127 2014         Misc  3.07
## 128 2015         Misc  1.04
## 129 2016         Misc  0.03
## 130  N/A         Misc  1.30
## 131 1981     Platform  0.08
## 132 1982     Platform  0.06
## 133 1983     Platform  0.08
## 134 1984     Platform  0.00
## 135 1985     Platform  0.80
## 136 1986     Platform  0.03
## 137 1987     Platform  0.01
## 138 1988     Platform  0.70
## 139 1989     Platform  0.47
## 140 1990     Platform  0.57
## 141 1991     Platform  0.17
## 142 1992     Platform  0.34
## 143 1993     Platform  0.65
## 144 1994     Platform  1.13
## 145 1995     Platform  0.50
## 146 1996     Platform  0.83
## 147 1997     Platform  0.89
## 148 1998     Platform  1.30
## 149 1999     Platform  0.80
## 150 2000     Platform  0.98
## 151 2001     Platform  2.56
## 152 2002     Platform  2.40
## 153 2003     Platform  2.79
## 154 2004     Platform  2.83
## 155 2005     Platform  1.43
## 156 2006     Platform  5.20
## 157 2007     Platform  3.76
## 158 2008     Platform  4.94
## 159 2009     Platform  4.37
## 160 2010     Platform  2.59
## 161 2011     Platform  2.71
## 162 2012     Platform  1.52
## 163 2013     Platform  2.30
## 164 2014     Platform  0.96
## 165 2015     Platform  0.45
## 166 2016     Platform  0.31
## 167  N/A     Platform  0.08
## 168 1981       Puzzle  0.03
## 169 1982       Puzzle  0.11
## 170 1983       Puzzle  0.01
## 171 1984       Puzzle  0.04
## 172 1985       Puzzle  0.03
## 173 1988       Puzzle  0.11
## 174 1989       Puzzle  0.83
## 175 1990       Puzzle  0.13
## 176 1991       Puzzle  0.11
## 177 1992       Puzzle  0.08
## 178 1993       Puzzle  0.03
## 179 1994       Puzzle  0.00
## 180 1995       Puzzle  0.01
## 181 1996       Puzzle  0.09
## 182 1997       Puzzle  0.17
## 183 1998       Puzzle  0.34
## 184 1999       Puzzle  0.06
## 185 2000       Puzzle  0.19
## 186 2001       Puzzle  0.18
## 187 2002       Puzzle  0.34
## 188 2003       Puzzle  0.07
## 189 2004       Puzzle  0.54
## 190 2005       Puzzle  1.57
## 191 2006       Puzzle  0.89
## 192 2007       Puzzle  1.94
## 193 2008       Puzzle  1.30
## 194 2009       Puzzle  1.65
## 195 2010       Puzzle  0.91
## 196 2011       Puzzle  0.46
## 197 2012       Puzzle  0.06
## 198 2013       Puzzle  0.08
## 199 2014       Puzzle  0.10
## 200 2015       Puzzle  0.01
## 201  N/A       Puzzle  0.08
## 202 1981       Racing  0.00
## 203 1982       Racing  0.01
## 204 1984       Racing  0.07
## 205 1986       Racing  0.05
## 206 1988       Racing  0.10
## 207 1990       Racing  0.47
## 208 1991       Racing  0.04
## 209 1992       Racing  0.18
## 210 1993       Racing  0.00
## 211 1994       Racing  0.05
## 212 1995       Racing  0.31
## 213 1996       Racing  0.84
## 214 1997       Racing  1.49
## 215 1998       Racing  1.33
## 216 1999       Racing  1.58
## 217 2000       Racing  1.35
## 218 2001       Racing  4.54
## 219 2002       Racing  2.57
## 220 2003       Racing  4.47
## 221 2004       Racing 11.24
## 222 2005       Racing  5.42
## 223 2006       Racing  4.01
## 224 2007       Racing  6.53
## 225 2008       Racing  8.70
## 226 2009       Racing  5.47
## 227 2010       Racing  5.11
## 228 2011       Racing  3.72
## 229 2012       Racing  2.27
## 230 2013       Racing  1.95
## 231 2014       Racing  1.69
## 232 2015       Racing  0.93
## 233 2016       Racing  0.19
## 234  N/A       Racing  0.59
## 235 1986 Role-Playing  1.51
## 236 1987 Role-Playing  0.00
## 237 1988 Role-Playing  0.00
## 238 1989 Role-Playing  0.00
## 239 1990 Role-Playing  0.02
## 240 1991 Role-Playing  0.12
## 241 1992 Role-Playing  0.03
## 242 1993 Role-Playing  0.02
## 243 1994 Role-Playing  0.04
## 244 1995 Role-Playing  0.17
## 245 1996 Role-Playing  1.39
## 246 1997 Role-Playing  1.51
## 247 1998 Role-Playing  1.16
## 248 1999 Role-Playing  1.93
## 249 2000 Role-Playing  1.84
## 250 2001 Role-Playing  0.87
## 251 2002 Role-Playing  1.68
## 252 2003 Role-Playing  1.16
## 253 2004 Role-Playing  2.18
## 254 2005 Role-Playing  2.07
## 255 2006 Role-Playing  5.44
## 256 2007 Role-Playing  3.26
## 257 2008 Role-Playing  5.63
## 258 2009 Role-Playing  3.47
## 259 2010 Role-Playing  4.64
## 260 2011 Role-Playing  5.01
## 261 2012 Role-Playing  3.56
## 262 2013 Role-Playing  3.00
## 263 2014 Role-Playing  3.38
## 264 2015 Role-Playing  3.85
## 265 2016 Role-Playing  0.44
## 266 2017 Role-Playing  0.00
## 267  N/A Role-Playing  0.23
## 268 1980      Shooter  0.08
## 269 1981      Shooter  0.09
## 270 1982      Shooter  0.05
## 271 1983      Shooter  0.01
## 272 1984      Shooter  0.50
## 273 1985      Shooter  0.00
## 274 1986      Shooter  0.02
## 275 1987      Shooter  0.00
## 276 1988      Shooter  0.01
## 277 1989      Shooter  0.04
## 278 1991      Shooter  0.05
## 279 1992      Shooter  0.00
## 280 1993      Shooter  0.07
## 281 1994      Shooter  0.35
## 282 1995      Shooter  0.12
## 283 1996      Shooter  0.37
## 284 1997      Shooter  0.49
## 285 1998      Shooter  0.47
## 286 1999      Shooter  0.44
## 287 2000      Shooter  0.46
## 288 2001      Shooter  1.67
## 289 2002      Shooter  3.78
## 290 2003      Shooter  2.23
## 291 2004      Shooter  3.19
## 292 2005      Shooter  3.22
## 293 2006      Shooter  4.61
## 294 2007      Shooter  8.49
## 295 2008      Shooter  7.50
## 296 2009      Shooter  8.56
## 297 2010      Shooter  8.32
## 298 2011      Shooter 11.53
## 299 2012      Shooter  8.82
## 300 2013      Shooter  7.15
## 301 2014      Shooter  8.38
## 302 2015      Shooter  8.41
## 303 2016      Shooter  2.42
## 304  N/A      Shooter  0.79
## 305 1981   Simulation  0.00
## 306 1985   Simulation  0.01
## 307 1988   Simulation  0.01
## 308 1990   Simulation  0.02
## 309 1991   Simulation  0.04
## 310 1992   Simulation  0.10
## 311 1993   Simulation  0.00
## 312 1994   Simulation  0.05
## 313 1995   Simulation  0.15
## 314 1996   Simulation  0.48
## 315 1997   Simulation  0.54
## 316 1998   Simulation  0.19
## 317 1999   Simulation  0.60
## 318 2000   Simulation  0.22
## 319 2001   Simulation  1.12
## 320 2002   Simulation  0.53
## 321 2003   Simulation  1.22
## 322 2004   Simulation  1.00
## 323 2005   Simulation  4.54
## 324 2006   Simulation  2.47
## 325 2007   Simulation  4.73
## 326 2008   Simulation  4.03
## 327 2009   Simulation  3.30
## 328 2010   Simulation  2.23
## 329 2011   Simulation  1.40
## 330 2012   Simulation  0.80
## 331 2013   Simulation  0.66
## 332 2014   Simulation  0.51
## 333 2015   Simulation  0.39
## 334 2016   Simulation  0.00
## 335 2020   Simulation  0.02
## 336  N/A   Simulation  0.16
## 337 1980       Sports  0.01
## 338 1981       Sports  0.00
## 339 1982       Sports  0.02
## 340 1983       Sports  0.02
## 341 1984       Sports  0.06
## 342 1985       Sports  0.02
## 343 1986       Sports  0.07
## 344 1987       Sports  0.00
## 345 1988       Sports  0.05
## 346 1989       Sports  0.11
## 347 1990       Sports  0.05
## 348 1991       Sports  0.02
## 349 1992       Sports  0.05
## 350 1993       Sports  0.00
## 351 1994       Sports  0.13
## 352 1995       Sports  0.28
## 353 1996       Sports  0.78
## 354 1997       Sports  1.43
## 355 1998       Sports  1.78
## 356 1999       Sports  1.26
## 357 2000       Sports  2.36
## 358 2001       Sports  4.63
## 359 2002       Sports  6.21
## 360 2003       Sports  4.55
## 361 2004       Sports  5.81
## 362 2005       Sports  5.83
## 363 2006       Sports 14.32
## 364 2007       Sports 14.32
## 365 2008       Sports 13.99
## 366 2009       Sports 15.14
## 367 2010       Sports 10.49
## 368 2011       Sports  6.67
## 369 2012       Sports  3.08
## 370 2013       Sports  5.05
## 371 2014       Sports  6.52
## 372 2015       Sports  5.62
## 373 2016       Sports  1.92
## 374  N/A       Sports  2.32
## 375 1991     Strategy  0.00
## 376 1992     Strategy  0.01
## 377 1993     Strategy  0.00
## 378 1994     Strategy  0.13
## 379 1995     Strategy  0.30
## 380 1996     Strategy  0.23
## 381 1997     Strategy  0.24
## 382 1998     Strategy  0.36
## 383 1999     Strategy  0.74
## 384 2000     Strategy  0.52
## 385 2001     Strategy  0.28
## 386 2002     Strategy  0.16
## 387 2003     Strategy  0.41
## 388 2004     Strategy  0.47
## 389 2005     Strategy  0.37
## 390 2006     Strategy  0.57
## 391 2007     Strategy  0.85
## 392 2008     Strategy  0.95
## 393 2009     Strategy  1.14
## 394 2010     Strategy  1.51
## 395 2011     Strategy  0.86
## 396 2012     Strategy  0.29
## 397 2013     Strategy  0.64
## 398 2014     Strategy  0.04
## 399 2015     Strategy  0.12
## 400 2016     Strategy  0.04
## 401  N/A     Strategy  0.13
aggregate(Other_Sales,by=list(Year = Year,Publisher = Publisher),sum)
##      Year                              Publisher     x
## 1    2006                        10TACLE Studios  0.00
## 2    2007                        10TACLE Studios  0.00
## 3    2009                             1C Company  0.00
## 4    2011                             1C Company  0.02
## 5    1981           20th Century Fox Video Games  0.01
## 6    1982           20th Century Fox Video Games  0.00
## 7    2008                                 2D Boy  0.01
## 8    1998                                    3DO  0.00
## 9    1999                                    3DO  0.17
## 10   2000                                    3DO  0.18
## 11   2001                                    3DO  0.15
## 12   2002                                    3DO  0.08
## 13   2003                                    3DO  0.05
## 14   2009                                49Games  0.00
## 15   2002                              505 Games  0.01
## 16   2003                              505 Games  0.01
## 17   2004                              505 Games  0.09
## 18   2005                              505 Games  0.09
## 19   2006                              505 Games  0.69
## 20   2007                              505 Games  0.97
## 21   2008                              505 Games  0.20
## 22   2009                              505 Games  0.72
## 23   2010                              505 Games  1.34
## 24   2011                              505 Games  0.35
## 25   2012                              505 Games  0.29
## 26   2013                              505 Games  0.26
## 27   2014                              505 Games  0.26
## 28   2015                              505 Games  0.07
## 29   2016                              505 Games  0.09
## 30   2008                                    5pb  0.00
## 31   2009                                    5pb  0.00
## 32   2010                                    5pb  0.00
## 33   2011                                    5pb  0.00
## 34   2012                                    5pb  0.00
## 35   2013                                    5pb  0.00
## 36   2014                                    5pb  0.00
## 37   2015                                    5pb  0.00
## 38   2016                                    5pb  0.00
## 39   2010                               7G//AMES  0.00
## 40   2011                               7G//AMES  0.00
## 41   1999                             989 Sports  0.02
## 42   1997                            989 Studios  0.04
## 43   1998                            989 Studios  0.32
## 44   1999                            989 Studios  0.31
## 45   2010                               Abylight  0.01
## 46   1993                  Acclaim Entertainment  0.06
## 47   1994                  Acclaim Entertainment  0.16
## 48   1995                  Acclaim Entertainment  0.09
## 49   1996                  Acclaim Entertainment  0.20
## 50   1997                  Acclaim Entertainment  0.11
## 51   1998                  Acclaim Entertainment  0.44
## 52   1999                  Acclaim Entertainment  0.06
## 53   2000                  Acclaim Entertainment  0.29
## 54   2001                  Acclaim Entertainment  0.94
## 55   2002                  Acclaim Entertainment  0.58
## 56   2003                  Acclaim Entertainment  0.36
## 57   2004                  Acclaim Entertainment  0.08
## 58   1996                               Accolade  0.01
## 59   1997                               Accolade  0.05
## 60   1999                               Accolade  0.01
## 61   2009                            Ackkstudios  0.00
## 62   2010                            Ackkstudios  0.01
## 63   2011                            Ackkstudios  0.00
## 64   2012                            Ackkstudios  0.00
## 65   2006                                Acquire  0.00
## 66   2008                                Acquire  0.01
## 67   2009                                Acquire  0.00
## 68   2010                                Acquire  0.00
## 69   2011                                Acquire  0.00
## 70   2012                                Acquire  0.00
## 71   2014                                Acquire  0.02
## 72   1980                             Activision  0.03
## 73   1981                             Activision  0.08
## 74   1982                             Activision  0.03
## 75   1983                             Activision  0.02
## 76   1984                             Activision  0.00
## 77   1985                             Activision  0.01
## 78   1987                             Activision  0.01
## 79   1988                             Activision  0.01
## 80   1989                             Activision  0.01
## 81   1994                             Activision  0.11
## 82   1995                             Activision  0.23
## 83   1996                             Activision  0.01
## 84   1997                             Activision  0.15
## 85   1998                             Activision  0.42
## 86   1999                             Activision  0.28
## 87   2000                             Activision  0.63
## 88   2001                             Activision  1.29
## 89   2002                             Activision  1.66
## 90   2003                             Activision  1.48
## 91   2004                             Activision  2.15
## 92   2005                             Activision  2.66
## 93   2006                             Activision  1.74
## 94   2007                             Activision  7.51
## 95   2008                             Activision 10.32
## 96   2009                             Activision  9.98
## 97   2010                             Activision  6.25
## 98   2011                             Activision  5.45
## 99   2012                             Activision  6.61
## 100  2013                             Activision  4.76
## 101  2014                             Activision  5.76
## 102  2015                             Activision  4.70
## 103  2016                             Activision  0.44
## 104   N/A                             Activision  0.55
## 105  2014                    Activision Blizzard  0.04
## 106  2001                       Activision Value  0.01
## 107  2002                       Activision Value  0.00
## 108  2003                       Activision Value  0.11
## 109  2004                       Activision Value  0.00
## 110  2005                       Activision Value  0.00
## 111  2006                       Activision Value  0.01
## 112  2007                       Activision Value  0.07
## 113  2008                       Activision Value  0.12
## 114  2009                       Activision Value  0.25
## 115  1996                       Adeline Software  0.01
## 116  2010                               Aerosoft  0.00
## 117  2013                               Aerosoft  0.00
## 118  2004                 Agatsuma Entertainment  0.00
## 119  2012                 Agatsuma Entertainment  0.01
## 120  2013                 Agatsuma Entertainment  0.00
## 121  1997                                 Agetec  0.00
## 122  1998                                 Agetec  0.01
## 123  2002                                 Agetec  0.15
## 124  2003                                 Agetec  0.03
## 125  2009                                 Agetec  0.00
## 126  2008                            Aksys Games  0.00
## 127  2014                            Aksys Games  0.03
## 128  2015                            Aksys Games  0.00
## 129  2016                            Aksys Games  0.02
## 130  2009                   Alawar Entertainment  0.01
## 131  2015                   Alawar Entertainment  0.00
## 132  2006                              Alchemist  0.15
## 133  2007                              Alchemist  0.00
## 134  2008                              Alchemist  0.00
## 135  2009                              Alchemist  0.00
## 136  2010                              Alchemist  0.00
## 137  2011                              Alchemist  0.00
## 138  2012                              Alchemist  0.00
## 139  2013                              Alchemist  0.00
## 140  2015                              Alchemist  0.00
## 141  2010                   Alternative Software  0.01
## 142  2015                   Alternative Software  0.00
## 143  2016                   Alternative Software  0.02
## 144  2001                                 Altron  0.00
## 145  2009                                 Alvion  0.00
## 146  2010                                 Alvion  0.00
## 147  1996                     American Softworks  0.02
## 148  1991                          Angel Studios  0.00
## 149  1994                          Angel Studios  0.00
## 150  1995                          Angel Studios  0.00
## 151  1982                        Answer Software  0.01
## 152  2007                         AQ Interactive  0.02
## 153  2008                         AQ Interactive  0.02
## 154  2009                         AQ Interactive  0.01
## 155  1999                              Aqua Plus  0.01
## 156  2006                              Aqua Plus  0.00
## 157  2007                              Aqua Plus  0.00
## 158  2008                              Aqua Plus  0.00
## 159  2009                              Aqua Plus  0.00
## 160  2010                              Aqua Plus  0.00
## 161  2011                              Aqua Plus  0.00
## 162  2012                              Aqua Plus  0.01
## 163  2013                              Aqua Plus  0.00
## 164  2015                              Aqua Plus  0.00
## 165  2016                              Aqua Plus  0.00
## 166  1997                                  Aques  0.01
## 167  2008                       Arc System Works  0.01
## 168  2009                       Arc System Works  0.00
## 169  2010                       Arc System Works  0.00
## 170  2012                       Arc System Works  0.00
## 171  2013                       Arc System Works  0.03
## 172  2014                       Arc System Works  0.07
## 173  2015                       Arc System Works  0.01
## 174  1992                    Arena Entertainment  0.14
## 175  2006                                   Aria  0.00
## 176  2002                                  Arika  0.00
## 177  2004                                  Arika  0.01
## 178  2008                                  Arika  0.00
## 179  1994                                ArtDink  0.02
## 180  1996                                ArtDink  0.01
## 181  1998                                ArtDink  0.01
## 182  2001                                ArtDink  0.00
## 183  2009                                ArtDink  0.00
## 184  2010                                ArtDink  0.00
## 185  2014                                ArtDink  0.00
## 186  1999                             Aruze Corp  0.04
## 187  2000                             Aruze Corp  0.04
## 188  1996                              ASC Games  0.09
## 189  1998                              ASC Games  0.04
## 190  1999                              ASC Games  0.00
## 191  2012                  Ascaron Entertainment  0.00
## 192  2004             Ascaron Entertainment GmbH  0.01
## 193  2008             Ascaron Entertainment GmbH  0.01
## 194  1994                    ASCII Entertainment  0.00
## 195  1995                    ASCII Entertainment  0.00
## 196  1996                    ASCII Entertainment  0.04
## 197  1997                    ASCII Entertainment  0.19
## 198  1998                    ASCII Entertainment  0.02
## 199  1999                    ASCII Entertainment  0.11
## 200  2001                    ASCII Entertainment  0.00
## 201  2008                      ASCII Media Works  0.00
## 202  2009                      ASCII Media Works  0.00
## 203  2010                      ASCII Media Works  0.00
## 204  2011                      ASCII Media Works  0.00
## 205  2014                      ASCII Media Works  0.00
## 206  2010                                 Asgard  0.00
## 207  2011                                 Asgard  0.00
## 208  2012                                 Asgard  0.00
## 209  2013                                 Asgard  0.00
## 210  2015                                 Asgard  0.00
## 211  1996                                    ASK  0.00
## 212  1996                Asmik Ace Entertainment  0.01
## 213  2000                Asmik Ace Entertainment  0.00
## 214  2006                Asmik Ace Entertainment  0.00
## 215  1994                             Asmik Corp  0.00
## 216  1995                             Asmik Corp  0.00
## 217  2003                                  Aspyr  0.00
## 218  2007                                  Aspyr  0.00
## 219  2008                                  Aspyr  0.01
## 220  2009                                  Aspyr  0.04
## 221  2009                               Astragon  0.00
## 222  2010                               Astragon  0.05
## 223  2011                               Astragon  0.01
## 224  2016                               Astragon  0.00
## 225  2010                   Asylum Entertainment  0.05
## 226  2011                   Asylum Entertainment  0.01
## 227  1980                                  Atari  0.09
## 228  1981                                  Atari  0.08
## 229  1982                                  Atari  0.21
## 230  1983                                  Atari  0.04
## 231  1986                                  Atari  0.00
## 232  1987                                  Atari  0.00
## 233  1989                                  Atari  0.00
## 234  1998                                  Atari  0.09
## 235  1999                                  Atari  0.15
## 236  2000                                  Atari  0.25
## 237  2001                                  Atari  0.33
## 238  2002                                  Atari  1.29
## 239  2003                                  Atari  0.89
## 240  2004                                  Atari  0.81
## 241  2005                                  Atari  0.46
## 242  2006                                  Atari  0.44
## 243  2007                                  Atari  2.05
## 244  2008                                  Atari  0.81
## 245  2009                                  Atari  0.64
## 246  2010                                  Atari  0.10
## 247  2011                                  Atari  0.00
## 248  2012                                  Atari  0.00
## 249  2016                                  Atari  0.00
## 250   N/A                                  Atari  0.28
## 251  1999                                 Athena  0.00
## 252  2001                                 Athena  0.00
## 253  1994                                  Atlus  0.00
## 254  1995                                  Atlus  0.04
## 255  1996                                  Atlus  0.00
## 256  1997                                  Atlus  0.01
## 257  1998                                  Atlus  0.02
## 258  1999                                  Atlus  0.01
## 259  2000                                  Atlus  0.02
## 260  2001                                  Atlus  0.01
## 261  2002                                  Atlus  0.00
## 262  2003                                  Atlus  0.01
## 263  2004                                  Atlus  0.00
## 264  2006                                  Atlus  0.00
## 265  2007                                  Atlus  0.00
## 266  2008                                  Atlus  0.12
## 267  2009                                  Atlus  0.04
## 268  2010                                  Atlus  0.04
## 269  2011                                  Atlus  0.04
## 270  2012                                  Atlus  0.31
## 271  2013                                  Atlus  0.03
## 272  2014                                  Atlus  0.05
## 273  2015                                  Atlus  0.02
## 274  2016                                  Atlus  0.00
## 275  1982                     Avalon Interactive  0.00
## 276  1999                     Avalon Interactive  0.01
## 277  2002                     Avalon Interactive  0.01
## 278  2003                     Avalon Interactive  0.00
## 279  2004                     Avalon Interactive  0.01
## 280  2007                              Avanquest  0.02
## 281  2008                              Avanquest  0.01
## 282  2009                              Avanquest  0.07
## 283  2010                              Avanquest  0.08
## 284  2011                              Avanquest  0.06
## 285  2016                              Avanquest  0.00
## 286   N/A                              Avanquest  0.01
## 287  2012                     Avanquest Software  0.17
## 288  2013                     Avanquest Software  0.00
## 289  2015                     Avanquest Software  0.00
## 290  1998                                  Axela  0.02
## 291  2000                     BAM! Entertainment  0.01
## 292  2001                     BAM! Entertainment  0.05
## 293  2002                     BAM! Entertainment  0.14
## 294  2003                     BAM! Entertainment  0.03
## 295  2004                     BAM! Entertainment  0.01
## 296  1991                              Banpresto  0.00
## 297  1992                              Banpresto  0.00
## 298  1993                              Banpresto  0.01
## 299  1994                              Banpresto  0.00
## 300  1995                              Banpresto  0.00
## 301  1996                              Banpresto  0.07
## 302  1997                              Banpresto  0.02
## 303  1998                              Banpresto  0.04
## 304  1999                              Banpresto  0.03
## 305  2000                              Banpresto  0.05
## 306  2001                              Banpresto  0.06
## 307  2002                              Banpresto  0.01
## 308  2003                              Banpresto  0.01
## 309  2004                              Banpresto  0.01
## 310  2005                              Banpresto  0.00
## 311  2006                              Banpresto  0.00
## 312  2007                              Banpresto  0.01
## 313  2008                              Banpresto  0.02
## 314  2009                              Banpresto  0.02
## 315  2011                              Banpresto  0.00
## 316  2007                                Benesse  0.00
## 317  2008                                Benesse  0.00
## 318  2001                               Berkeley  0.00
## 319  2002                     Bethesda Softworks  0.17
## 320  2003                     Bethesda Softworks  0.01
## 321  2004                     Bethesda Softworks  0.02
## 322  2005                     Bethesda Softworks  0.02
## 323  2006                     Bethesda Softworks  0.01
## 324  2007                     Bethesda Softworks  0.08
## 325  2008                     Bethesda Softworks  1.23
## 326  2009                     Bethesda Softworks  0.17
## 327  2010                     Bethesda Softworks  0.94
## 328  2011                     Bethesda Softworks  3.27
## 329  2012                     Bethesda Softworks  0.60
## 330  2014                     Bethesda Softworks  1.18
## 331  2015                     Bethesda Softworks  2.11
## 332  2016                     Bethesda Softworks  0.29
## 333   N/A                     Bethesda Softworks  0.06
## 334  2002                    Big Ben Interactive  0.01
## 335  2004                    Big Ben Interactive  0.00
## 336  2008                    Big Ben Interactive  0.00
## 337  2009                    Big Ben Interactive  0.06
## 338  2011                    Big Ben Interactive  0.00
## 339  2013                    Big Ben Interactive  0.00
## 340  2008                         Big Fish Games  0.00
## 341  2014                         Big Fish Games  0.00
## 342  2015                     Bigben Interactive  0.13
## 343  2009                      bitComposer Games  0.01
## 344  2011                      bitComposer Games  0.07
## 345  2005                       Black Bean Games  0.00
## 346  2007                       Black Bean Games  0.01
## 347  2008                       Black Bean Games  0.04
## 348  2009                       Black Bean Games  0.03
## 349  2010                       Black Bean Games  0.16
## 350  2011                       Black Bean Games  0.09
## 351   N/A                       Black Bean Games  0.08
## 352  2002                      Black Label Games  0.15
## 353  2007               Blast! Entertainment Ltd  0.02
## 354  2008               Blast! Entertainment Ltd  0.00
## 355  2009               Blast! Entertainment Ltd  0.01
## 356  2001                              Blue Byte  0.00
## 357  1996          BMG Interactive Entertainment  0.01
## 358  1997          BMG Interactive Entertainment  0.02
## 359  1998          BMG Interactive Entertainment  0.04
## 360  2013                    Bohemia Interactive  0.02
## 361  1982                                   Bomb  0.00
## 362  2013                               Boost On  0.00
## 363  1991                                    BPS  0.00
## 364  1994                                    BPS  0.00
## 365  2007                    Brash Entertainment  0.02
## 366  2008                    Brash Entertainment  0.09
## 367  2006                               Broccoli  0.00
## 368  2007                               Broccoli  0.00
## 369  2008                               Broccoli  0.00
## 370  2009                               Broccoli  0.00
## 371  2010                               Broccoli  0.00
## 372  2011                               Broccoli  0.00
## 373  2012                               Broccoli  0.00
## 374  2013                               Broccoli  0.00
## 375  2015                               Broccoli  0.00
## 376  2016                               Broccoli  0.00
## 377  2012                              BushiRoad  0.00
## 378  1985                                 Capcom  0.00
## 379  1986                                 Capcom  1.57
## 380  1987                                 Capcom  0.01
## 381  1988                                 Capcom  0.04
## 382  1989                                 Capcom  0.04
## 383  1990                                 Capcom  0.05
## 384  1991                                 Capcom  0.03
## 385  1992                                 Capcom  0.23
## 386  1993                                 Capcom  0.31
## 387  1994                                 Capcom  0.00
## 388  1996                                 Capcom  0.06
## 389  1997                                 Capcom  0.17
## 390  1998                                 Capcom  0.20
## 391  1999                                 Capcom  0.05
## 392  2000                                 Capcom  0.12
## 393  2001                                 Capcom  0.54
## 394  2002                                 Capcom  0.48
## 395  2003                                 Capcom  0.53
## 396  2004                                 Capcom  0.51
## 397  2005                                 Capcom  0.80
## 398  2006                                 Capcom  1.24
## 399  2007                                 Capcom  0.68
## 400  2008                                 Capcom  1.32
## 401  2009                                 Capcom  2.07
## 402  2010                                 Capcom  0.87
## 403  2011                                 Capcom  0.50
## 404  2012                                 Capcom  1.44
## 405  2013                                 Capcom  0.48
## 406  2014                                 Capcom  0.00
## 407  2015                                 Capcom  0.24
## 408  2016                                 Capcom  0.24
## 409   N/A                                 Capcom  0.02
## 410  2008                                   Cave  0.01
## 411  2009                                   Cave  0.00
## 412  2010                                   Cave  0.00
## 413  2011                                   Cave  0.00
## 414  2012                                   Cave  0.00
## 415  2013                                   Cave  0.00
## 416  1982                        CBS Electronics  0.00
## 417  2003                                    CCP  0.02
## 418  2005             CDV Software Entertainment  0.00
## 419  2008             CDV Software Entertainment  0.01
## 420  2009             CDV Software Entertainment  0.00
## 421  2011             CDV Software Entertainment  0.00
## 422  1992                               ChunSoft  0.00
## 423  1993                               ChunSoft  0.00
## 424  1994                               ChunSoft  0.00
## 425  1995                               ChunSoft  0.00
## 426  1996                               ChunSoft  0.00
## 427  1998                               ChunSoft  0.00
## 428  1999                               ChunSoft  0.01
## 429  2000                               ChunSoft  0.05
## 430  2002                               ChunSoft  0.00
## 431  2006                               ChunSoft  0.00
## 432  2009                               ChunSoft  0.03
## 433  2010                               ChunSoft  0.00
## 434  2011                               ChunSoft  0.00
## 435  2012                               ChunSoft  0.00
## 436  2008                       City Interactive  0.03
## 437  2009                       City Interactive  0.03
## 438  2010                       City Interactive  0.19
## 439  2011                       City Interactive  0.17
## 440  2013                       City Interactive  0.10
## 441  2014                       City Interactive  0.01
## 442   N/A                       City Interactive  0.00
## 443  2012       Cloud Imperium Games Corporation  0.00
## 444  1993                         Coconuts Japan  0.00
## 445  1996                         Coconuts Japan  0.00
## 446  1997                            Codemasters  0.19
## 447  1998                            Codemasters  0.44
## 448  1999                            Codemasters  0.03
## 449  2000                            Codemasters  0.08
## 450  2001                            Codemasters  0.20
## 451  2002                            Codemasters  0.33
## 452  2003                            Codemasters  0.36
## 453  2004                            Codemasters  0.05
## 454  2005                            Codemasters  0.04
## 455  2006                            Codemasters  0.01
## 456  2007                            Codemasters  0.40
## 457  2008                            Codemasters  0.42
## 458  2009                            Codemasters  1.22
## 459  2010                            Codemasters  0.45
## 460  2011                            Codemasters  0.87
## 461  2012                            Codemasters  0.51
## 462  2013                            Codemasters  0.31
## 463  2014                            Codemasters  0.16
## 464  2015                            Codemasters  0.11
## 465  2016                            Codemasters  0.11
## 466   N/A                            Codemasters  0.01
## 467  2008                     Codemasters Online  0.00
## 468  2007                      CokeM Interactive  0.02
## 469  1981                                 Coleco  0.03
## 470  1982                                 Coleco  0.00
## 471  2010                                Comfort  0.00
## 472  2011                                Comfort  0.00
## 473  2012                                Comfort  0.00
## 474  2013                                Comfort  0.00
## 475  2008                               Commseed  0.00
## 476  1995                                Compile  0.00
## 477  1996                                Compile  0.00
## 478  1997                                Compile  0.10
## 479  1998                                Compile  0.00
## 480  2008                          Compile Heart  0.01
## 481  2009                          Compile Heart  0.00
## 482  2010                          Compile Heart  0.02
## 483  2011                          Compile Heart  0.00
## 484  2012                          Compile Heart  0.02
## 485  2013                          Compile Heart  0.02
## 486  2014                          Compile Heart  0.00
## 487  2015                          Compile Heart  0.00
## 488  2016                          Compile Heart  0.00
## 489  2001               Conspiracy Entertainment  0.02
## 490  2002               Conspiracy Entertainment  0.00
## 491  2007               Conspiracy Entertainment  0.00
## 492  2008               Conspiracy Entertainment  0.01
## 493  2009               Conspiracy Entertainment  0.00
## 494  2010               Conspiracy Entertainment  0.01
## 495  1994                       Core Design Ltd.  0.01
## 496  1995                       Core Design Ltd.  0.01
## 497  1982                           CPG Products  0.01
## 498  1998                    Crave Entertainment  0.02
## 499  1999                    Crave Entertainment  0.02
## 500  2000                    Crave Entertainment  0.23
## 501  2002                    Crave Entertainment  0.04
## 502  2003                    Crave Entertainment  0.00
## 503  2004                    Crave Entertainment  0.03
## 504  2005                    Crave Entertainment  0.03
## 505  2006                    Crave Entertainment  0.02
## 506  2007                    Crave Entertainment  0.03
## 507  2008                    Crave Entertainment  0.06
## 508  2009                    Crave Entertainment  0.05
## 509  2010                    Crave Entertainment  0.06
## 510  2011                    Crave Entertainment  0.08
## 511  2008                          Creative Core  0.00
## 512  2009                          Creative Core  0.00
## 513  2008                            Crimson Cow  0.00
## 514  2011                            Crimson Cow  0.01
## 515  1995                       Crystal Dynamics  0.08
## 516  1996                       Crystal Dynamics  0.04
## 517  1996                                CTO SpA  0.06
## 518  1997                                CTO SpA  0.00
## 519  1991                          Culture Brain  0.00
## 520  1994                          Culture Brain  0.00
## 521  2008                          Culture Brain  0.00
## 522  2010                          Culture Brain  0.00
## 523  1998                     Culture Publishers  0.01
## 524  2007                             CyberFront  0.00
## 525  2008                             CyberFront  0.00
## 526  2009                             CyberFront  0.00
## 527  2010                             CyberFront  0.00
## 528  2011                             CyberFront  0.00
## 529  2012                             CyberFront  0.00
## 530  2013                             CyberFront  0.00
## 531  2015                                Cygames  0.00
## 532  1998                            D3Publisher  0.07
## 533  2000                            D3Publisher  0.00
## 534  2001                            D3Publisher  0.04
## 535  2005                            D3Publisher  0.02
## 536  2006                            D3Publisher  0.05
## 537  2007                            D3Publisher  1.34
## 538  2008                            D3Publisher  0.17
## 539  2009                            D3Publisher  0.55
## 540  2010                            D3Publisher  0.41
## 541  2011                            D3Publisher  0.13
## 542  2012                            D3Publisher  0.01
## 543  2013                            D3Publisher  0.08
## 544  2014                            D3Publisher  0.00
## 545  2015                            D3Publisher  0.00
## 546  2016                            D3Publisher  0.00
## 547   N/A                            D3Publisher  0.01
## 548  2009                               Daedalic  0.02
## 549  2010                               Daedalic  0.01
## 550  2012                               Daedalic  0.03
## 551  2012                 Daedalic Entertainment  0.00
## 552  2013                 Daedalic Entertainment  0.01
## 553  2006                                  Daito  0.00
## 554  1981                               Data Age  0.00
## 555  1982                               Data Age  0.00
## 556  2007                Data Design Interactive  0.01
## 557  2008                Data Design Interactive  0.01
## 558  2009                Data Design Interactive  0.00
## 559  1995                              Data East  0.00
## 560  1998                              Data East  0.00
## 561  2002                         Datam Polystar  0.00
## 562  2007                         Datam Polystar  0.00
## 563  2004                            Deep Silver  0.01
## 564  2005                            Deep Silver  0.02
## 565  2006                            Deep Silver  0.05
## 566  2007                            Deep Silver  0.00
## 567  2008                            Deep Silver  0.25
## 568  2009                            Deep Silver  0.28
## 569  2010                            Deep Silver  0.26
## 570  2011                            Deep Silver  0.71
## 571  2012                            Deep Silver  0.10
## 572  2013                            Deep Silver  0.70
## 573  2014                            Deep Silver  0.26
## 574  2015                            Deep Silver  0.14
## 575  2016                            Deep Silver  0.09
## 576   N/A                            Deep Silver  0.01
## 577  2001              Destination Software, Inc  0.00
## 578  2002              Destination Software, Inc  0.00
## 579  2003              Destination Software, Inc  0.00
## 580  2004              Destination Software, Inc  0.00
## 581  2005              Destination Software, Inc  0.00
## 582  2006              Destination Software, Inc  0.00
## 583  2007              Destination Software, Inc  0.02
## 584  2008              Destination Software, Inc  0.01
## 585  2007                              Destineer  0.02
## 586  2008                              Destineer  0.09
## 587  2009                              Destineer  0.13
## 588  2010                              Destineer  0.02
## 589  2011                              Destineer  0.00
## 590  2007                            Detn8 Games  0.02
## 591  2010                       Devolver Digital  0.00
## 592  2015                       Devolver Digital  0.00
## 593  2007                        DHM Interactive  0.01
## 594  2009                        DHM Interactive  0.00
## 595  2002                               DigiCube  0.00
## 596  1999             Disney Interactive Studios  0.00
## 597  2002             Disney Interactive Studios  0.00
## 598  2003             Disney Interactive Studios  0.04
## 599  2004             Disney Interactive Studios  0.08
## 600  2005             Disney Interactive Studios  0.23
## 601  2006             Disney Interactive Studios  0.50
## 602  2007             Disney Interactive Studios  2.82
## 603  2008             Disney Interactive Studios  2.78
## 604  2009             Disney Interactive Studios  1.53
## 605  2010             Disney Interactive Studios  1.96
## 606  2011             Disney Interactive Studios  1.45
## 607  2012             Disney Interactive Studios  0.26
## 608  2013             Disney Interactive Studios  0.68
## 609  2014             Disney Interactive Studios  0.49
## 610  2015             Disney Interactive Studios  0.33
## 611   N/A             Disney Interactive Studios  0.03
## 612  2008                                 Dorart  0.00
## 613  2010                                 Dorart  0.00
## 614  2015                        dramatic create  0.00
## 615  2016                        dramatic create  0.00
## 616  2001               DreamCatcher Interactive  0.01
## 617  2003               DreamCatcher Interactive  0.01
## 618  2004               DreamCatcher Interactive  0.00
## 619  2005               DreamCatcher Interactive  0.00
## 620  2006               DreamCatcher Interactive  0.01
## 621  2008               DreamCatcher Interactive  0.00
## 622  2009               DreamCatcher Interactive  0.04
## 623  2010               DreamCatcher Interactive  0.00
## 624  1998                 DreamWorks Interactive  0.01
## 625  2005                              DSI Games  0.00
## 626  2006                              DSI Games  0.00
## 627  2007                              DSI Games  0.00
## 628  2008                              DSI Games  0.01
## 629  2005                      DTP Entertainment  0.00
## 630  2007                      DTP Entertainment  0.00
## 631  2008                      DTP Entertainment  0.20
## 632  2009                      DTP Entertainment  0.09
## 633  2010                      DTP Entertainment  0.05
## 634  2011                      DTP Entertainment  0.14
## 635  2012                      DTP Entertainment  0.01
## 636   N/A                      DTP Entertainment  0.00
## 637  2016               Dusenberry Martin Racing  0.01
## 638  2012                               EA Games  0.02
## 639  2012                       Easy Interactive  0.00
## 640  2009                                  Ecole  0.00
## 641  2006                                   Edia  0.00
## 642  2009                                   Edia  0.00
## 643  1996                      Eidos Interactive  0.25
## 644  1997                      Eidos Interactive  0.76
## 645  1998                      Eidos Interactive  0.25
## 646  1999                      Eidos Interactive  0.65
## 647  2000                      Eidos Interactive  0.29
## 648  2001                      Eidos Interactive  0.23
## 649  2002                      Eidos Interactive  0.72
## 650  2003                      Eidos Interactive  0.58
## 651  2004                      Eidos Interactive  0.30
## 652  2005                      Eidos Interactive  0.59
## 653  2006                      Eidos Interactive  0.48
## 654  2007                      Eidos Interactive  0.85
## 655  2008                      Eidos Interactive  0.63
## 656  2009                      Eidos Interactive  1.32
## 657   N/A                      Eidos Interactive  0.12
## 658  1992                        Electronic Arts  0.01
## 659  1994                        Electronic Arts  0.04
## 660  1995                        Electronic Arts  0.21
## 661  1996                        Electronic Arts  0.46
## 662  1997                        Electronic Arts  1.09
## 663  1998                        Electronic Arts  1.26
## 664  1999                        Electronic Arts  0.90
## 665  2000                        Electronic Arts  1.68
## 666  2001                        Electronic Arts  3.98
## 667  2002                        Electronic Arts  7.10
## 668  2003                        Electronic Arts  5.82
## 669  2004                        Electronic Arts  6.06
## 670  2005                        Electronic Arts  6.35
## 671  2006                        Electronic Arts  7.40
## 672  2007                        Electronic Arts 13.27
## 673  2008                        Electronic Arts 12.65
## 674  2009                        Electronic Arts 11.53
## 675  2010                        Electronic Arts 10.36
## 676  2011                        Electronic Arts  9.37
## 677  2012                        Electronic Arts  7.02
## 678  2013                        Electronic Arts  6.98
## 679  2014                        Electronic Arts  6.43
## 680  2015                        Electronic Arts  6.03
## 681  2016                        Electronic Arts  1.63
## 682   N/A                        Electronic Arts  2.14
## 683  1996                 Electronic Arts Victor  0.03
## 684  1996                                    Elf  0.00
## 685  1997                                    Elf  0.00
## 686  1996                                  Elite  0.00
## 687  1996                     Empire Interactive  0.03
## 688  1998                     Empire Interactive  0.00
## 689  1999                     Empire Interactive  0.00
## 690  2000                     Empire Interactive  0.06
## 691  2001                     Empire Interactive  0.07
## 692  2002                     Empire Interactive  0.15
## 693  2003                     Empire Interactive  0.27
## 694  2004                     Empire Interactive  0.22
## 695  2005                     Empire Interactive  0.01
## 696  2006                     Empire Interactive  0.02
## 697  2007                     Empire Interactive  0.12
## 698  2008                     Empire Interactive  0.15
## 699   N/A                     Empire Interactive  0.02
## 700  2001                                 Encore  0.00
## 701  2003                                 Encore  0.00
## 702  2005                                 Encore  0.00
## 703  1987                       Enix Corporation  0.00
## 704  1988                       Enix Corporation  0.00
## 705  1990                       Enix Corporation  0.01
## 706  1992                       Enix Corporation  0.01
## 707  1993                       Enix Corporation  0.00
## 708  1994                       Enix Corporation  0.00
## 709  1995                       Enix Corporation  0.00
## 710  1996                       Enix Corporation  0.04
## 711  1999                       Enix Corporation  0.11
## 712  2000                       Enix Corporation  0.02
## 713  2001                       Enix Corporation  0.01
## 714  2002                       Enix Corporation  0.05
## 715  2003                       Enix Corporation  0.02
## 716  2004                       Enix Corporation  0.00
## 717  2009                      Enjoy Gaming ltd.  0.01
## 718  2001                             Enterbrain  0.03
## 719  2002                             Enterbrain  0.03
## 720  2004                             Enterbrain  0.01
## 721  2006                             Enterbrain  0.00
## 722  2007                             Enterbrain  0.00
## 723  2008                             Enterbrain  0.00
## 724  2009                             Enterbrain  0.00
## 725  2010                             Enterbrain  0.00
## 726  1999              EON Digital Entertainment  0.00
## 727  2016                             Epic Games  0.00
## 728  1991                                  Epoch  0.00
## 729  1992                                  Epoch  0.00
## 730  1993                                  Epoch  0.00
## 731  1995                                  Epoch  0.00
## 732  1996                                  Epoch  0.00
## 733  2000                                  Epoch  0.06
## 734  2007                                 Ertain  0.00
## 735  1997                                    ESP  0.00
## 736  1998                                    ESP  0.00
## 737  2002                                    ESP  0.00
## 738  2005                        Essential Games  0.00
## 739  2006                        Essential Games  0.00
## 740  1998                        Evolution Games  0.00
## 741  2004                          Evolved Games  0.01
## 742  2009                          Evolved Games  0.01
## 743  2011                          Evolved Games  0.01
## 744  2011                   Excalibur Publishing  0.02
## 745  2012                   Excalibur Publishing  0.02
## 746  2014                        Experience Inc.  0.00
## 747  2015                        Experience Inc.  0.00
## 748  2016                        Experience Inc.  0.00
## 749  2015            Extreme Entertainment Group  0.00
## 750  2007                     Falcom Corporation  0.00
## 751  2008                     Falcom Corporation  0.00
## 752  2009                     Falcom Corporation  0.02
## 753  2010                     Falcom Corporation  0.01
## 754  2011                     Falcom Corporation  0.00
## 755  2012                     Falcom Corporation  0.00
## 756  2013                     Falcom Corporation  0.00
## 757  2012                                 Fields  0.00
## 758  2005                       Flashpoint Games  0.00
## 759  2010                       Flashpoint Games  0.00
## 760  2007                            Flight-Plan  0.00
## 761  2009                            Flight-Plan  0.00
## 762  2006                 Focus Home Interactive  0.00
## 763  2007                 Focus Home Interactive  0.01
## 764  2008                 Focus Home Interactive  0.01
## 765  2009                 Focus Home Interactive  0.09
## 766  2010                 Focus Home Interactive  0.08
## 767  2011                 Focus Home Interactive  0.13
## 768  2012                 Focus Home Interactive  0.32
## 769  2013                 Focus Home Interactive  0.07
## 770  2014                 Focus Home Interactive  0.25
## 771  2015                 Focus Home Interactive  0.05
## 772  2016                 Focus Home Interactive  0.02
## 773   N/A                 Focus Home Interactive  0.01
## 774  2012                       Focus Multimedia  0.00
## 775  2015                       Focus Multimedia  0.00
## 776  2008                                 fonfun  0.00
## 777  2010                    Foreign Media Games  0.05
## 778  1998                              Fortyfive  0.00
## 779  1996                        Fox Interactive  0.10
## 780  1997                        Fox Interactive  0.23
## 781  1998                        Fox Interactive  0.01
## 782  1999                        Fox Interactive  0.08
## 783  2000                        Fox Interactive  0.01
## 784  1994                          From Software  0.01
## 785  1996                          From Software  0.02
## 786  1997                          From Software  0.02
## 787  1998                          From Software  0.02
## 788  1999                          From Software  0.02
## 789  2001                          From Software  0.01
## 790  2002                          From Software  0.00
## 791  2006                          From Software  0.00
## 792  2009                          From Software  0.00
## 793  2010                          From Software  0.00
## 794  2013                          From Software  0.00
## 795  1995                                   Fuji  0.00
## 796  2011                           Funbox Media  0.06
## 797  2012                           Funbox Media  0.00
## 798  2015                           Funbox Media  0.00
## 799  2010                                 Funcom  0.00
## 800  2012                                 Funcom  0.02
## 801  1996                                FunSoft  0.01
## 802  2006                                 Funsta  0.00
## 803  2007                                 Funsta  0.01
## 804   N/A                                 Funsta  0.00
## 805  2010                                  FuRyu  0.00
## 806  2011                                  FuRyu  0.00
## 807  2012                                  FuRyu  0.00
## 808  2013                                  FuRyu  0.00
## 809  2014                                  FuRyu  0.00
## 810  2015                                  FuRyu  0.01
## 811  2016                                  FuRyu  0.00
## 812  2015                      FuRyu Corporation  0.01
## 813  2009                                  G.Rev  0.00
## 814  2010                                  G.Rev  0.00
## 815  1996                                   Gaga  0.00
## 816  1998                 Gainax Network Systems  0.01
## 817  2007                                 Gakken  0.00
## 818  1994                              Game Arts  0.00
## 819  2003                           Game Factory  0.00
## 820  2004                           Game Factory  0.00
## 821  2005                           Game Factory  0.00
## 822  2006                           Game Factory  0.01
## 823  2007                           Game Factory  0.10
## 824  2008                           Game Factory  0.11
## 825  2010                           Game Factory  0.01
## 826  2007                              Game Life  0.01
## 827  2009                              Game Life  0.02
## 828  2008                             Gamebridge  0.04
## 829  2009                             Gamebridge  0.02
## 830  2008                               Gamecock  0.00
## 831  2007                               Gameloft  0.01
## 832  2010                 GameMill Entertainment  0.01
## 833  2011                 GameMill Entertainment  0.07
## 834  2012                 GameMill Entertainment  0.01
## 835  1998                                GameTek  0.00
## 836  2001                Gathering of Developers  0.07
## 837  2003                Gathering of Developers  0.01
## 838  2004                Gathering of Developers  0.04
## 839  1998                  General Entertainment  0.01
## 840  1999                                  Genki  0.00
## 841  2001                                  Genki  0.00
## 842  2003                                  Genki  0.11
## 843  2007                                  Genki  0.00
## 844  2012                                  Genki  0.00
## 845  2009                            Genterprise  0.00
## 846  2003                             Ghostlight  0.02
## 847  2004                             Ghostlight  0.02
## 848  2005                             Ghostlight  0.03
## 849  2006                             Ghostlight  0.03
## 850  2007                             Ghostlight  0.02
## 851  2008                             Ghostlight  0.01
## 852  2009                             Ghostlight  0.04
## 853  2010                             Ghostlight  0.01
## 854  2011                             Ghostlight  0.03
## 855   N/A                             Ghostlight  0.01
## 856  2014                                   Giga  0.00
## 857  2012                                 Giza10  0.00
## 858  1995                                  Glams  0.00
## 859  2006                 Global A Entertainment  0.00
## 860  2007                 Global A Entertainment  0.01
## 861  2008                 Global A Entertainment  0.00
## 862  2004                            Global Star  0.49
## 863  2005                            Global Star  0.13
## 864  2006                            Global Star  0.01
## 865  2006                            GN Software  0.00
## 866  2008                            GN Software  0.00
## 867  2010                            GN Software  0.00
## 868  2008                                    GOA  0.00
## 869  2002                           Gotham Games  0.06
## 870  2003                           Gotham Games  0.15
## 871  2004                           Gotham Games  0.01
## 872  2008                               Graffiti  0.00
## 873  2009                               Graffiti  0.00
## 874  2010                               Graffiti  0.01
## 875  2007                       Grand Prix Games  0.00
## 876  2005                 Graphsim Entertainment  0.00
## 877  1996                Gremlin Interactive Ltd  0.02
## 878  1997                Gremlin Interactive Ltd  0.02
## 879  1998                Gremlin Interactive Ltd  0.01
## 880  2010                  Griffin International  0.01
## 881  2005                           Groove Games  0.00
## 882  2006                           Groove Games  0.00
## 883  2008                                    GSP  0.11
## 884  2009                                    GSP  0.16
## 885  2010                                    GSP  0.06
## 886  2011                                    GSP  0.04
## 887  1995                         GT Interactive  0.02
## 888  1996                         GT Interactive  0.25
## 889  1997                         GT Interactive  0.28
## 890  1998                         GT Interactive  0.24
## 891  1999                         GT Interactive  0.35
## 892  2008                                 GungHo  0.02
## 893  2009                                 GungHo  0.03
## 894  2011                                 GungHo  0.00
## 895  2012                                 GungHo  0.03
## 896  2013                                 GungHo  0.02
## 897  2014                                 GungHo  0.01
## 898  2016                                 GungHo  0.00
## 899  1996                                   Gust  0.00
## 900  1997                                   Gust  0.02
## 901  2001                                   Gust  0.00
## 902  2002                                   Gust  0.00
## 903  2007                                   Gust  0.00
## 904  2008                                   Gust  0.02
## 905  2009                                   Gust  0.01
## 906  2010                                   Gust  0.00
## 907  2011                                   Gust  0.00
## 908  2012                                   Gust  0.00
## 909  2013                                   Gust  0.00
## 910  2007                              Hackberry  0.00
## 911  2008                              Hackberry  0.00
## 912  2010                              Hackberry  0.00
## 913  1989                         HAL Laboratory  0.00
## 914  2002                    Hamster Corporation  0.02
## 915  2006                    Hamster Corporation  0.00
## 916  2014                               Happinet  0.00
## 917  2015                               Happinet  0.00
## 918  2016                               Happinet  0.00
## 919  2015                 Harmonix Music Systems  0.11
## 920  1994                     Hasbro Interactive  0.10
## 921  1997                     Hasbro Interactive  0.21
## 922  1998                     Hasbro Interactive  0.12
## 923  1999                     Hasbro Interactive  0.10
## 924  2000                     Hasbro Interactive  0.10
## 925  2001                     Hasbro Interactive  0.01
## 926  2006                     Hasbro Interactive  0.00
## 927  2000                      Havas Interactive  0.02
## 928  2013                           Headup Games  0.00
## 929  1996                           Hearty Robin  0.01
## 930  1993                                   Hect  0.00
## 931  1994                                   Hect  0.00
## 932  1995                                   Hect  0.00
## 933  2016                            Hello Games  0.26
## 934  2011                        Her Interactive  0.00
## 935  2004                        Hip Interactive  0.00
## 936  2005                        Hip Interactive  0.00
## 937  2008                        HMH Interactive  0.00
## 938  2009                        HMH Interactive  0.02
## 939  2010           Home Entertainment Suppliers  0.01
## 940  2011           Home Entertainment Suppliers  0.05
## 941   N/A           Home Entertainment Suppliers  0.06
## 942  1997                   Hudson Entertainment  0.05
## 943  1998                   Hudson Entertainment  0.00
## 944  1999                   Hudson Entertainment  0.03
## 945  2001                   Hudson Entertainment  0.00
## 946  2003                   Hudson Entertainment  0.00
## 947  2006                   Hudson Entertainment  0.00
## 948  2007                   Hudson Entertainment  0.01
## 949  2008                   Hudson Entertainment  0.00
## 950  2009                   Hudson Entertainment  0.01
## 951  1984                            Hudson Soft  0.00
## 952  1985                            Hudson Soft  0.00
## 953  1986                            Hudson Soft  0.01
## 954  1991                            Hudson Soft  0.10
## 955  1992                            Hudson Soft  0.00
## 956  1993                            Hudson Soft  0.00
## 957  1994                            Hudson Soft  0.00
## 958  1995                            Hudson Soft  0.00
## 959  1996                            Hudson Soft  0.00
## 960  1997                            Hudson Soft  0.03
## 961  1998                            Hudson Soft  0.00
## 962  1999                            Hudson Soft  0.00
## 963  2000                            Hudson Soft  0.01
## 964  2001                            Hudson Soft  0.00
## 965  2002                            Hudson Soft  0.00
## 966  2003                            Hudson Soft  0.00
## 967  2004                            Hudson Soft  0.00
## 968  2005                            Hudson Soft  0.00
## 969  2006                            Hudson Soft  0.00
## 970  2007                            Hudson Soft  0.00
## 971  2008                            Hudson Soft  0.01
## 972  2009                            Hudson Soft  0.10
## 973  2010                            Hudson Soft  0.04
## 974  2011                            Hudson Soft  0.02
## 975  1991                    Human Entertainment  0.00
## 976  1994                    Human Entertainment  0.00
## 977  1995                    Human Entertainment  0.01
## 978  1996                    Human Entertainment  0.00
## 979  1997                    Human Entertainment  0.03
## 980  1998                    Human Entertainment  0.04
## 981  1999                    Human Entertainment  0.02
## 982  2015                                  HuneX  0.00
## 983  2011                    Iceberg Interactive  0.00
## 984  2012                    Iceberg Interactive  0.00
## 985  1992                            id Software  0.00
## 986  2002                           Idea Factory  0.00
## 987  2005                           Idea Factory  0.00
## 988  2006                           Idea Factory  0.01
## 989  2007                           Idea Factory  0.00
## 990  2008                           Idea Factory  0.01
## 991  2009                           Idea Factory  0.01
## 992  2010                           Idea Factory  0.00
## 993  2011                           Idea Factory  0.00
## 994  2012                           Idea Factory  0.00
## 995  2013                           Idea Factory  0.00
## 996  2014                           Idea Factory  0.07
## 997  2015                           Idea Factory  0.00
## 998  2016                           Idea Factory  0.00
## 999  2017                           Idea Factory  0.00
## 1000  N/A                           Idea Factory  0.00
## 1001 2014             Idea Factory International  0.08
## 1002 2015             Idea Factory International  0.01
## 1003 2006                           IE Institute  0.00
## 1004 2007                           IE Institute  0.00
## 1005 2008                           IE Institute  0.00
## 1006 2012                           IE Institute  0.00
## 1007 2002                 Ignition Entertainment  0.06
## 1008 2003                 Ignition Entertainment  0.01
## 1009 2004                 Ignition Entertainment  0.05
## 1010 2005                 Ignition Entertainment  0.18
## 1011 2006                 Ignition Entertainment  0.07
## 1012 2007                 Ignition Entertainment  0.05
## 1013 2008                 Ignition Entertainment  0.10
## 1014 2009                 Ignition Entertainment  0.02
## 1015 2011                 Ignition Entertainment  0.04
## 1016  N/A                 Ignition Entertainment  0.01
## 1017 2004                     Illusion Softworks  0.09
## 1018 1997                                 Imadio  0.00
## 1019 2012                            Image Epoch  0.00
## 1020 2014                        imageepoch Inc.  0.00
## 1021 1995                             Imageworks  0.00
## 1022 1981                                 Imagic  0.04
## 1023 1991                              Imagineer  0.00
## 1024 1996                              Imagineer  0.00
## 1025 1997                              Imagineer  0.00
## 1026 1998                              Imagineer  0.00
## 1027 1999                              Imagineer  0.00
## 1028 2000                              Imagineer  0.00
## 1029 2001                              Imagineer  0.00
## 1030 1993                                   Imax  0.00
## 1031 2004                            Indie Games  0.02
## 1032 1994                             Infogrames  0.05
## 1033 1996                             Infogrames  0.02
## 1034 1997                             Infogrames  0.06
## 1035 1998                             Infogrames  0.02
## 1036 1999                             Infogrames  0.07
## 1037 2000                             Infogrames  0.12
## 1038 2001                             Infogrames  0.15
## 1039 2002                             Infogrames  0.35
## 1040 2003                             Infogrames  0.00
## 1041  N/A                             Infogrames  0.01
## 1042 2016                        Insomniac Games  0.01
## 1043 2006                           Interchannel  0.00
## 1044 2008                           Interchannel  0.00
## 1045 2007                     Interchannel-Holon  0.00
## 1046 2015                              Intergrow  0.00
## 1047 1993                              Interplay  0.00
## 1048 1995                              Interplay  0.03
## 1049 1996                              Interplay  0.06
## 1050 1997                              Interplay  0.04
## 1051 1998                              Interplay  0.07
## 1052 1999                              Interplay  0.00
## 1053 2000                              Interplay  0.08
## 1054 2001                              Interplay  0.03
## 1055 2002                              Interplay  0.01
## 1056 2003                              Interplay  0.07
## 1057 2004                              Interplay  0.09
## 1058 1997                  Interplay Productions  0.01
## 1059 2012             Interworks Unlimited, Inc.  0.00
## 1060 2016                           Inti Creates  0.00
## 1061 2016                  Introversion Software  0.00
## 1062 2015                   inXile Entertainment  0.01
## 1063 1998              Irem Software Engineering  0.00
## 1064 2006              Irem Software Engineering  0.00
## 1065 2007              Irem Software Engineering  0.00
## 1066 2008              Irem Software Engineering  0.01
## 1067 2009              Irem Software Engineering  0.00
## 1068 2010              Irem Software Engineering  0.00
## 1069 2011              Irem Software Engineering  0.00
## 1070 2012              Irem Software Engineering  0.00
## 1071 1982                       ITT Family Games  0.00
## 1072 2008                              Ivolgamus  0.00
## 1073 2011                                   iWin  0.01
## 1074 2005                      Jack of All Games  0.01
## 1075 2011                      Jack of All Games  0.00
## 1076 1995                                 Jaleco  0.03
## 1077 1996                                 Jaleco  0.02
## 1078 1998                                 Jaleco  0.01
## 1079 1999                                 Jaleco  0.00
## 1080 2002                                 Jaleco  0.00
## 1081 2003                                 Jaleco  0.02
## 1082 2004                                 Jaleco  0.01
## 1083 2007                                 Jaleco  0.01
## 1084 2008                                 Jaleco  0.00
## 1085 2002                     Jester Interactive  0.09
## 1086 2003                     Jester Interactive  0.00
## 1087 2005                     Jester Interactive  0.05
## 1088 1999                                Jorudan  0.00
## 1089 2002                                Jorudan  0.01
## 1090 2003                                Jorudan  0.01
## 1091 2002                     JoWood Productions  0.00
## 1092 2004                     JoWood Productions  0.00
## 1093 2005                     JoWood Productions  0.01
## 1094 2006                     JoWood Productions  0.01
## 1095 2007                     JoWood Productions  0.01
## 1096 2008                     JoWood Productions  0.03
## 1097 2009                     JoWood Productions  0.05
## 1098 2010                     JoWood Productions  0.03
## 1099 2010                            Just Flight  0.01
## 1100 1994                                    JVC  0.00
## 1101 1996                                    JVC  0.07
## 1102 1997                                    JVC  0.00
## 1103 1998                                    JVC  0.00
## 1104 1999                                    JVC  0.00
## 1105 2000                                    JVC  0.00
## 1106 2012                         Kadokawa Games  0.00
## 1107 2013                         Kadokawa Games  0.00
## 1108 2014                         Kadokawa Games  0.00
## 1109 2015                         Kadokawa Games  0.00
## 1110 2016                         Kadokawa Games  0.00
## 1111 1996                        Kadokawa Shoten  0.00
## 1112 1997                        Kadokawa Shoten  0.00
## 1113 1998                        Kadokawa Shoten  0.05
## 1114 1999                        Kadokawa Shoten  0.02
## 1115 2004                        Kadokawa Shoten  0.00
## 1116 2005                        Kadokawa Shoten  0.00
## 1117 2006                        Kadokawa Shoten  0.00
## 1118 2007                        Kadokawa Shoten  0.00
## 1119 2008                        Kadokawa Shoten  0.00
## 1120 2009                        Kadokawa Shoten  0.00
## 1121 2010                        Kadokawa Shoten  0.00
## 1122 2011                        Kadokawa Shoten  0.00
## 1123 2012                        Kadokawa Shoten  0.00
## 1124 2013                        Kadokawa Shoten  0.00
## 1125 2014                        Kadokawa Shoten  0.00
## 1126 2015                        Kadokawa Shoten  0.00
## 1127 2013                            Kaga Create  0.00
## 1128 2015                            Kaga Create  0.00
## 1129 2007                          Kalypso Media  0.00
## 1130 2008                          Kalypso Media  0.00
## 1131 2009                          Kalypso Media  0.03
## 1132 2010                          Kalypso Media  0.03
## 1133 2011                          Kalypso Media  0.08
## 1134 2012                          Kalypso Media  0.00
## 1135 2014                          Kalypso Media  0.02
## 1136 2015                          Kalypso Media  0.05
## 1137  N/A                          Kalypso Media  0.04
## 1138 2010                                  Kamui  0.00
## 1139 2006                            Kando Games  0.00
## 1140 2010                    Karin Entertainment  0.00
## 1141 1991                                  Kemco  0.00
## 1142 1997                                  Kemco  0.01
## 1143 1998                                  Kemco  0.00
## 1144 1999                                  Kemco  0.00
## 1145 2001                                  Kemco  0.00
## 1146 2002                                  Kemco  0.00
## 1147 2003                                  Kemco  0.03
## 1148 2005                                  Kemco  0.00
## 1149 1998                                    KID  0.00
## 1150 2006                                    KID  0.00
## 1151 2007                           Kids Station  0.00
## 1152 2002                           King Records  0.00
## 1153 2003                    Knowledge Adventure  0.01
## 1154 2009                    Knowledge Adventure  0.06
## 1155 2008                             Koch Media  0.60
## 1156 2011                             Koch Media  0.03
## 1157 2013                             Koch Media  0.01
## 1158 2015                             Koch Media  0.18
## 1159 2016                             Koch Media  0.00
## 1160 1995               Kokopeli Digital Studios  0.00
## 1161 1986           Konami Digital Entertainment  0.02
## 1162 1987           Konami Digital Entertainment  0.00
## 1163 1989           Konami Digital Entertainment  0.01
## 1164 1990           Konami Digital Entertainment  0.03
## 1165 1991           Konami Digital Entertainment  0.03
## 1166 1992           Konami Digital Entertainment  0.00
## 1167 1993           Konami Digital Entertainment  0.00
## 1168 1994           Konami Digital Entertainment  0.03
## 1169 1995           Konami Digital Entertainment  0.11
## 1170 1996           Konami Digital Entertainment  0.16
## 1171 1997           Konami Digital Entertainment  0.31
## 1172 1998           Konami Digital Entertainment  0.71
## 1173 1999           Konami Digital Entertainment  0.81
## 1174 2000           Konami Digital Entertainment  0.33
## 1175 2001           Konami Digital Entertainment  2.03
## 1176 2002           Konami Digital Entertainment  0.80
## 1177 2003           Konami Digital Entertainment  1.25
## 1178 2004           Konami Digital Entertainment  3.60
## 1179 2005           Konami Digital Entertainment  1.53
## 1180 2006           Konami Digital Entertainment  1.31
## 1181 2007           Konami Digital Entertainment  4.12
## 1182 2008           Konami Digital Entertainment  4.63
## 1183 2009           Konami Digital Entertainment  2.59
## 1184 2010           Konami Digital Entertainment  2.00
## 1185 2011           Konami Digital Entertainment  0.89
## 1186 2012           Konami Digital Entertainment  0.81
## 1187 2013           Konami Digital Entertainment  0.35
## 1188 2014           Konami Digital Entertainment  0.58
## 1189 2015           Konami Digital Entertainment  0.80
## 1190 2016           Konami Digital Entertainment  0.07
## 1191  N/A           Konami Digital Entertainment  0.40
## 1192 2003                              Kool Kizz  0.00
## 1193 1996                                    KSS  0.00
## 1194 1993                                 Laguna  0.00
## 1195 1994                                 Laguna  0.00
## 1196 1995                                 Laguna  0.01
## 1197 2008                     Legacy Interactive  0.00
## 1198 1999                             LEGO Media  0.04
## 1199 2001                             LEGO Media  0.01
## 1200 2002                             LEGO Media  0.00
## 1201 2009                                Level 5  0.00
## 1202 2010                                Level 5  0.00
## 1203 2011                                Level 5  0.00
## 1204 2012                                Level 5  0.04
## 1205 2013                                Level 5  0.00
## 1206 2014                                Level 5  0.00
## 1207 2015                                Level 5  0.00
## 1208 2016                                Level 5  0.00
## 1209 2007                  Lexicon Entertainment  0.00
## 1210 2008                  Lexicon Entertainment  0.00
## 1211 2012                            Licensed 4U  0.00
## 1212 2007                 Lighthouse Interactive  0.00
## 1213 2002                           Liquid Games  0.00
## 1214 2006                           Liquid Games  0.00
## 1215 2010                           Little Orbit  0.00
## 1216 2013                           Little Orbit  0.00
## 1217 2014                           Little Orbit  0.10
## 1218 2015                           Little Orbit  0.06
## 1219 1998                                  Locus  0.00
## 1220 2002                              LSP Games  0.00
## 1221 2003                              LSP Games  0.01
## 1222 1994                              LucasArts  0.09
## 1223 1996                              LucasArts  0.04
## 1224 1997                              LucasArts  0.04
## 1225 1999                              LucasArts  0.16
## 1226 2000                              LucasArts  0.00
## 1227 2001                              LucasArts  0.14
## 1228 2002                              LucasArts  0.25
## 1229 2003                              LucasArts  0.13
## 1230 2004                              LucasArts  0.47
## 1231 2005                              LucasArts  1.09
## 1232 2006                              LucasArts  0.71
## 1233 2007                              LucasArts  2.05
## 1234 2008                              LucasArts  3.24
## 1235 2009                              LucasArts  0.59
## 1236 2010                              LucasArts  0.42
## 1237 2011                              LucasArts  0.86
## 1238  N/A                              LucasArts  0.22
## 1239 2004                               Mad Catz  0.01
## 1240 2006                               Mad Catz  0.00
## 1241 2012                               Mad Catz  0.01
## 1242 1998                        Magical Company  0.03
## 1243 2001                                  Magix  0.04
## 1244 2009                                  Magix  0.00
## 1245 2001                  Majesco Entertainment  0.02
## 1246 2002                  Majesco Entertainment  0.00
## 1247 2003                  Majesco Entertainment  0.01
## 1248 2004                  Majesco Entertainment  0.04
## 1249 2005                  Majesco Entertainment  0.03
## 1250 2006                  Majesco Entertainment  0.02
## 1251 2007                  Majesco Entertainment  0.06
## 1252 2008                  Majesco Entertainment  0.08
## 1253 2009                  Majesco Entertainment  0.28
## 1254 2010                  Majesco Entertainment  0.04
## 1255 2011                  Majesco Entertainment  0.32
## 1256 2013                  Majesco Entertainment  0.05
## 1257  N/A                  Majesco Entertainment  0.01
## 1258 2008                            Mamba Games  0.01
## 1259 2010                            Mamba Games  0.00
## 1260 2015                   Marvel Entertainment  0.00
## 1261 2012                Marvelous Entertainment  0.05
## 1262 2013                Marvelous Entertainment  0.08
## 1263 2014                Marvelous Entertainment  0.01
## 1264 2015                Marvelous Entertainment  0.01
## 1265 2016                Marvelous Entertainment  0.00
## 1266 2015                        Marvelous Games  0.00
## 1267 2002                  Marvelous Interactive  0.00
## 1268 2003                  Marvelous Interactive  0.00
## 1269 2004                  Marvelous Interactive  0.01
## 1270 2005                  Marvelous Interactive  0.01
## 1271 2006                  Marvelous Interactive  0.00
## 1272 2007                  Marvelous Interactive  0.00
## 1273 2008                  Marvelous Interactive  0.00
## 1274 2009                  Marvelous Interactive  0.01
## 1275 2010                  Marvelous Interactive  0.02
## 1276 2011                  Marvelous Interactive  0.03
## 1277 2014                  Marvelous Interactive  0.05
## 1278 2015                  Marvelous Interactive  0.05
## 1279 2016                  Marvelous Interactive  0.00
## 1280 2011                      Masque Publishing  0.00
## 1281 2006                           Mastertronic  0.00
## 1282 2009                           Mastertronic  0.01
## 1283 2010                           Mastertronic  0.01
## 1284 2011                           Mastertronic  0.11
## 1285 2012                           Mastertronic  0.00
## 1286 2004                                Mastiff  0.00
## 1287 2005                                Mastiff  0.01
## 1288 2009                                Mastiff  0.04
## 1289 2010                                Mastiff  0.07
## 1290 2011                                Mastiff  0.02
## 1291 1981                     Mattel Interactive  0.02
## 1292 1982                     Mattel Interactive  0.00
## 1293 1999                     Mattel Interactive  0.02
## 1294 2000                     Mattel Interactive  0.01
## 1295 2001                               Max Five  0.00
## 1296 2012                   Maximum Family Games  0.00
## 1297 1988                                  Maxis  0.01
## 1298 1992                                  Maxis  0.10
## 1299 1996                                  Maxis  0.08
## 1300 2004                      MC2 Entertainment  0.00
## 1301 2005                      MC2 Entertainment  0.00
## 1302 2002                    Media Entertainment  0.00
## 1303 2000                          Media Factory  0.00
## 1304 2001                          Media Factory  0.00
## 1305 1994                            Media Rings  0.00
## 1306 1995                            Media Rings  0.00
## 1307 2002                            Media Rings  0.00
## 1308 1996                            Media Works  0.00
## 1309 1998                            Media Works  0.00
## 1310 2006                            Media Works  0.00
## 1311 2007                            Media Works  0.00
## 1312 1995                             MediaQuest  0.00
## 1313 1981                           Men-A-Vision  0.01
## 1314 2009                     Mentor Interactive  0.07
## 1315 2010                     Mentor Interactive  0.00
## 1316 2011                     Mentor Interactive  0.00
## 1317 2007                          Mercury Games  0.01
## 1318 2008                          Mercury Games  0.01
## 1319 2009                            Merscom LLC  0.03
## 1320 2001                               Metro 3D  0.05
## 1321 2002                               Metro 3D  0.07
## 1322 2003                               Metro 3D  0.03
## 1323 2007                               Metro 3D  0.00
## 1324 2008                               Metro 3D  0.00
## 1325 2006                            Michaelsoft  0.00
## 1326 1994                            Micro Cabin  0.00
## 1327 1995                            Micro Cabin  0.00
## 1328 1996                            Micro Cabin  0.00
## 1329 2002                               Microids  0.00
## 1330 2003                               Microids  0.00
## 1331 2004                               Microids  0.01
## 1332 2005                               Microids  0.00
## 1333 2016                               Microids  0.00
## 1334 1995                             Microprose  0.01
## 1335 1996                             Microprose  0.06
## 1336 1997                             Microprose  0.00
## 1337 1999                             Microprose  0.08
## 1338  N/A                             Microprose  0.01
## 1339 1996                 Microsoft Game Studios  0.20
## 1340 1999                 Microsoft Game Studios  0.02
## 1341 2000                 Microsoft Game Studios  0.04
## 1342 2001                 Microsoft Game Studios  0.34
## 1343 2002                 Microsoft Game Studios  0.21
## 1344 2003                 Microsoft Game Studios  0.36
## 1345 2004                 Microsoft Game Studios  0.26
## 1346 2005                 Microsoft Game Studios  0.32
## 1347 2006                 Microsoft Game Studios  1.03
## 1348 2007                 Microsoft Game Studios  2.62
## 1349 2008                 Microsoft Game Studios  1.53
## 1350 2009                 Microsoft Game Studios  1.50
## 1351 2010                 Microsoft Game Studios  3.89
## 1352 2011                 Microsoft Game Studios  1.87
## 1353 2012                 Microsoft Game Studios  1.18
## 1354 2013                 Microsoft Game Studios  1.35
## 1355 2014                 Microsoft Game Studios  0.80
## 1356 2015                 Microsoft Game Studios  0.93
## 1357 2016                 Microsoft Game Studios  0.11
## 1358 1997        Midas Interactive Entertainment  0.00
## 1359 1998        Midas Interactive Entertainment  0.01
## 1360 1999        Midas Interactive Entertainment  0.00
## 1361 2000        Midas Interactive Entertainment  0.11
## 1362 2001        Midas Interactive Entertainment  0.07
## 1363 2002        Midas Interactive Entertainment  0.07
## 1364 2005        Midas Interactive Entertainment  0.00
## 1365 2006        Midas Interactive Entertainment  0.00
## 1366 2007        Midas Interactive Entertainment  0.00
## 1367 2008        Midas Interactive Entertainment  0.00
## 1368 2009        Midas Interactive Entertainment  0.00
## 1369 1996                           Midway Games  0.00
## 1370 1997                           Midway Games  0.01
## 1371 1998                           Midway Games  0.20
## 1372 1999                           Midway Games  0.10
## 1373 2000                           Midway Games  0.22
## 1374 2001                           Midway Games  0.56
## 1375 2002                           Midway Games  0.53
## 1376 2003                           Midway Games  0.42
## 1377 2004                           Midway Games  0.80
## 1378 2005                           Midway Games  0.49
## 1379 2006                           Midway Games  0.47
## 1380 2007                           Midway Games  0.88
## 1381 2008                           Midway Games  1.01
## 1382  N/A                           Midway Games  0.05
## 1383 2008                              Milestone  0.00
## 1384 2016                        Milestone S.r.l  0.01
## 1385 2014                       Milestone S.r.l.  0.07
## 1386 2015                       Milestone S.r.l.  0.08
## 1387 2016                       Milestone S.r.l.  0.01
## 1388 2008                         Minato Station  0.00
## 1389 2012                         Minato Station  0.00
## 1390 2015                         Minato Station  0.00
## 1391 1995                              Mindscape  0.02
## 1392 1996                              Mindscape  0.01
## 1393 1997                              Mindscape  0.01
## 1394 1998                              Mindscape  0.01
## 1395 1999                              Mindscape  0.00
## 1396 2000                              Mindscape  0.00
## 1397 2003                              Mindscape  0.02
## 1398 2007                              Mindscape  0.19
## 1399 2008                              Mindscape  0.01
## 1400 2009                              Mindscape  0.21
## 1401 2010                              Mindscape  0.07
## 1402 2008                          Mirai Shounen  0.00
## 1403 1993                                 Misawa  0.00
## 1404 1994                                 Misawa  0.00
## 1405 1998                                 Mitsui  0.00
## 1406 2015                              mixi, Inc  0.00
## 1407 2016                                MLB.com  0.00
## 1408 2015                                 Mojang  0.36
## 1409 2007               Monte Christo Multimedia  0.01
## 1410 2008                                   Moss  0.01
## 1411 2013                                   Moss  0.00
## 1412 1998                                    MTO  0.01
## 1413 2006                                    MTO  0.00
## 1414 2007                                    MTO  0.00
## 1415 2008                                    MTO  0.00
## 1416 2010                                    MTO  0.00
## 1417 2008                              MTV Games  0.50
## 1418 2009                              MTV Games  0.73
## 1419 2010                              MTV Games  0.58
## 1420 2011                              MTV Games  0.02
## 1421  N/A                              MTV Games  0.20
## 1422 2003                   Mud Duck Productions  0.01
## 1423 2004                   Mud Duck Productions  0.05
## 1424 2006                            Mumbo Jumbo  0.00
## 1425 2007                            Mumbo Jumbo  0.03
## 1426 2008                            Mumbo Jumbo  0.01
## 1427 1985                                  Mycom  0.00
## 1428 2006                           Myelin Media  0.01
## 1429 1981                               Mystique  0.01
## 1430 2004                                    N/A  0.05
## 1431 2005                                    N/A  0.03
## 1432 2007                                    N/A  0.02
## 1433 2010                                    N/A  0.00
## 1434 2011                                    N/A  0.00
## 1435 2012                                    N/A  0.00
## 1436 2014                                    N/A  0.00
## 1437 2016                                    N/A  0.00
## 1438  N/A                                    N/A  0.57
## 1439 1984                     Namco Bandai Games  0.03
## 1440 1985                     Namco Bandai Games  0.00
## 1441 1986                     Namco Bandai Games  0.07
## 1442 1987                     Namco Bandai Games  0.00
## 1443 1988                     Namco Bandai Games  0.00
## 1444 1989                     Namco Bandai Games  0.00
## 1445 1990                     Namco Bandai Games  0.00
## 1446 1991                     Namco Bandai Games  0.00
## 1447 1992                     Namco Bandai Games  0.00
## 1448 1993                     Namco Bandai Games  0.00
## 1449 1994                     Namco Bandai Games  0.00
## 1450 1995                     Namco Bandai Games  0.03
## 1451 1996                     Namco Bandai Games  0.07
## 1452 1997                     Namco Bandai Games  0.29
## 1453 1998                     Namco Bandai Games  0.31
## 1454 1999                     Namco Bandai Games  0.17
## 1455 2000                     Namco Bandai Games  0.66
## 1456 2001                     Namco Bandai Games  0.22
## 1457 2002                     Namco Bandai Games  0.80
## 1458 2003                     Namco Bandai Games  0.52
## 1459 2004                     Namco Bandai Games  0.42
## 1460 2005                     Namco Bandai Games  1.49
## 1461 2006                     Namco Bandai Games  0.74
## 1462 2007                     Namco Bandai Games  0.24
## 1463 2008                     Namco Bandai Games  0.49
## 1464 2009                     Namco Bandai Games  1.30
## 1465 2010                     Namco Bandai Games  1.20
## 1466 2011                     Namco Bandai Games  1.53
## 1467 2012                     Namco Bandai Games  0.81
## 1468 2013                     Namco Bandai Games  0.55
## 1469 2014                     Namco Bandai Games  0.66
## 1470 2015                     Namco Bandai Games  1.46
## 1471 2016                     Namco Bandai Games  0.58
## 1472  N/A                     Namco Bandai Games  0.05
## 1473 1996                                Natsume  0.04
## 1474 1997                                Natsume  0.00
## 1475 2000                                Natsume  0.02
## 1476 2001                                Natsume  0.01
## 1477 2002                                Natsume  0.02
## 1478 2003                                Natsume  0.05
## 1479 2006                                Natsume  0.00
## 1480 2007                                Natsume  0.01
## 1481 2009                                Natsume  0.01
## 1482 2010                                Natsume  0.03
## 1483 2014                                Natsume  0.01
## 1484 2008                           Navarre Corp  0.00
## 1485 2008                             Naxat Soft  0.00
## 1486 1996                                    NCS  0.00
## 1487 1997                                    NCS  0.00
## 1488 1998                                    NCS  0.00
## 1489 2005                                 NCSoft  0.01
## 1490 2006                                 NCSoft  0.01
## 1491 2012                                 NCSoft  0.29
## 1492 2014                                 NCSoft  0.02
## 1493 2002                        NDA Productions  0.00
## 1494 1995                                    NEC  0.00
## 1495 1996                                    NEC  0.00
## 1496 1996                       NEC Interchannel  0.00
## 1497 1997                       NEC Interchannel  0.00
## 1498 1998                       NEC Interchannel  0.00
## 1499 2000                       NEC Interchannel  0.00
## 1500 2008                       NEC Interchannel  0.00
## 1501 2007                     Neko Entertainment  0.00
## 1502 2008                     Neko Entertainment  0.00
## 1503 2009                     Neko Entertainment  0.00
## 1504 2010                     Neko Entertainment  0.02
## 1505 2010                                NetRevo  0.00
## 1506 2012                                NetRevo  0.00
## 1507 1995                                    New  0.02
## 1508 1992                    New World Computing  0.00
## 1509 1998                               NewKidCo  0.04
## 1510 1999                               NewKidCo  0.00
## 1511 2001                               NewKidCo  0.00
## 1512 2002                               NewKidCo  0.00
## 1513 2003                               NewKidCo  0.00
## 1514 2010                                  Nexon  0.00
## 1515 1995                             Nichibutsu  0.00
## 1516 2012               Nihon Falcom Corporation  0.04
## 1517 2014               Nihon Falcom Corporation  0.00
## 1518 2015               Nihon Falcom Corporation  0.00
## 1519 2016               Nihon Falcom Corporation  0.00
## 1520 1983                               Nintendo  0.08
## 1521 1984                               Nintendo  0.67
## 1522 1985                               Nintendo  0.91
## 1523 1986                               Nintendo  0.26
## 1524 1987                               Nintendo  0.18
## 1525 1988                               Nintendo  0.93
## 1526 1989                               Nintendo  1.40
## 1527 1990                               Nintendo  1.22
## 1528 1991                               Nintendo  0.33
## 1529 1992                               Nintendo  0.91
## 1530 1993                               Nintendo  0.43
## 1531 1994                               Nintendo  0.85
## 1532 1995                               Nintendo  0.35
## 1533 1996                               Nintendo  1.70
## 1534 1997                               Nintendo  0.57
## 1535 1998                               Nintendo  1.39
## 1536 1999                               Nintendo  1.51
## 1537 2000                               Nintendo  2.07
## 1538 2001                               Nintendo  1.58
## 1539 2002                               Nintendo  1.48
## 1540 2003                               Nintendo  1.09
## 1541 2004                               Nintendo  2.46
## 1542 2005                               Nintendo 10.13
## 1543 2006                               Nintendo 18.16
## 1544 2007                               Nintendo  8.60
## 1545 2008                               Nintendo  7.22
## 1546 2009                               Nintendo  9.71
## 1547 2010                               Nintendo  4.07
## 1548 2011                               Nintendo  3.48
## 1549 2012                               Nintendo  3.13
## 1550 2013                               Nintendo  3.18
## 1551 2014                               Nintendo  3.17
## 1552 2015                               Nintendo  1.77
## 1553 2016                               Nintendo  0.20
## 1554  N/A                               Nintendo  0.14
## 1555 2002                           Nippon Amuse  0.00
## 1556 2012                        Nippon Columbia  0.00
## 1557 2013                        Nippon Columbia  0.00
## 1558 2014                        Nippon Columbia  0.00
## 1559 2015                        Nippon Columbia  0.00
## 1560 2016                        Nippon Columbia  0.00
## 1561 1998                   Nippon Ichi Software  0.00
## 1562 2007                   Nippon Ichi Software  0.02
## 1563 2008                   Nippon Ichi Software  0.04
## 1564 2009                   Nippon Ichi Software  0.11
## 1565 2010                   Nippon Ichi Software  0.08
## 1566 2011                   Nippon Ichi Software  0.14
## 1567 2012                   Nippon Ichi Software  0.03
## 1568 2013                   Nippon Ichi Software  0.36
## 1569 2014                   Nippon Ichi Software  0.32
## 1570 2015                   Nippon Ichi Software  0.16
## 1571 2016                   Nippon Ichi Software  0.05
## 1572  N/A                   Nippon Ichi Software  0.04
## 1573 1996                         Nippon Telenet  0.00
## 1574 2014                              Nitroplus  0.00
## 1575 2015                              Nitroplus  0.00
## 1576 2007                                Nobilis  0.00
## 1577 2008                                Nobilis  0.13
## 1578 2009                                Nobilis  0.00
## 1579 2010                                Nobilis  0.01
## 1580 2007                            Nordcurrent  0.00
## 1581 2008                            Nordcurrent  0.02
## 1582 2009                            Nordcurrent  0.02
## 1583 2010                            Nordcurrent  0.01
## 1584 2008                           Nordic Games  0.02
## 1585 2009                           Nordic Games  0.11
## 1586 2010                           Nordic Games  0.09
## 1587 2011                           Nordic Games  0.10
## 1588 2012                           Nordic Games  0.07
## 1589 2013                           Nordic Games  0.01
## 1590 2014                           Nordic Games  0.02
## 1591 2015                           Nordic Games  0.09
## 1592 2016                           Nordic Games  0.00
## 1593 2005                              NovaLogic  0.07
## 1594 2009                              NovaLogic  0.00
## 1595 2009                            Number None  0.01
## 1596 2009                                O-Games  0.00
## 1597 2010                                O-Games  0.10
## 1598 2011                                O-Games  0.02
## 1599 2004                       O3 Entertainment  0.00
## 1600 2006                       O3 Entertainment  0.00
## 1601 2007                       O3 Entertainment  0.01
## 1602 1992                                  Ocean  0.00
## 1603 1993                                  Ocean  0.01
## 1604 1995                                  Ocean  0.01
## 1605 1996                                  Ocean  0.01
## 1606 1997                                  Ocean  0.04
## 1607 1998                                  Ocean  0.04
## 1608 2013                          Office Create  0.00
## 1609 2014                          Office Create  0.00
## 1610 1997                              On Demand  0.01
## 1611 2006                              Ongakukan  0.00
## 1612 1997                         Origin Systems  0.01
## 1613 2013                                Otomate  0.00
## 1614 2005                     Oxygen Interactive  0.04
## 1615 2006                     Oxygen Interactive  0.23
## 1616 2007                     Oxygen Interactive  0.01
## 1617 2008                     Oxygen Interactive  0.05
## 1618 2009                     Oxygen Interactive  0.03
## 1619  N/A                     Oxygen Interactive  0.00
## 1620 2009                               P2 Games  0.00
## 1621 2011                               P2 Games  0.04
## 1622 2002            Pacific Century Cyber Works  0.03
## 1623 1995                          Pack-In-Video  0.00
## 1624 1999                           Pack In Soft  0.06
## 1625 1989                                 Palcom  0.04
## 1626 1995                       Panther Software  0.01
## 1627 2007                                   Paon  0.00
## 1628 2008                                   Paon  0.00
## 1629 2010                                   Paon  0.00
## 1630 2011                                   Paon  0.00
## 1631 2013                       Paon Corporation  0.00
## 1632 2016                    Paradox Development  0.00
## 1633 2007                    Paradox Interactive  0.01
## 1634 2008                    Paradox Interactive  0.00
## 1635 2009                    Paradox Interactive  0.01
## 1636 2010                    Paradox Interactive  0.02
## 1637 2011                    Paradox Interactive  0.03
## 1638 2012                    Paradox Interactive  0.00
## 1639 2014                    Paradox Interactive  0.00
## 1640 2015                    Paradox Interactive  0.01
## 1641 2016                    Paradox Interactive  0.00
## 1642 1981                           Parker Bros.  0.03
## 1643 1982                           Parker Bros.  0.02
## 1644 1983                           Parker Bros.  0.00
## 1645 2009          Performance Designed Products  0.02
## 1646 2002                             Phantagram  0.00
## 1647 2009                            Phantom EFX  0.01
## 1648 2007                             Phenomedia  0.00
## 1649 2008                             Phenomedia  0.00
## 1650 2009                             Phenomedia  0.00
## 1651 2007                          Phoenix Games  0.00
## 1652 2010                                 Piacci  0.00
## 1653 2008                               Pinnacle  0.07
## 1654 2009                               Pinnacle  0.03
## 1655 1996                            Pioneer LDC  0.04
## 1656 1998                            Pioneer LDC  0.00
## 1657 2001                            Pioneer LDC  0.00
## 1658 2002                                Play It  0.15
## 1659 2003                                Play It  0.04
## 1660 2004                                Play It  0.32
## 1661 2005                                Play It  0.04
## 1662 2005                 Playlogic Game Factory  0.02
## 1663 2008                 Playlogic Game Factory  0.02
## 1664 2009                 Playlogic Game Factory  0.07
## 1665 1997                              Playmates  0.02
## 1666 2002                               Playmore  0.00
## 1667 2009                                  PlayV  0.00
## 1668 2010                                  PlayV  0.05
## 1669 2011                                 Plenty  0.00
## 1670 2009                             PM Studios  0.01
## 1671 2000                            Pony Canyon  0.00
## 1672 2006                           PopCap Games  0.00
## 1673 2007                           PopCap Games  0.00
## 1674 2008                           PopCap Games  0.03
## 1675 2009                           PopCap Games  0.04
## 1676 2010                           PopCap Games  0.04
## 1677 2011                           PopCap Games  0.01
## 1678 2007                         Popcorn Arcade  0.01
## 1679 2008                         Popcorn Arcade  0.00
## 1680 1999                        PopTop Software  0.01
## 1681 1995                                    Pow  0.00
## 1682 2007                                  PQube  0.00
## 1683 2008                                  PQube  0.02
## 1684 2009                                  PQube  0.10
## 1685 2010                                  PQube  0.08
## 1686 2011                                  PQube  0.08
## 1687 2012                                  PQube  0.01
## 1688 2013                                  PQube  0.05
## 1689 2015                                  PQube  0.04
## 1690 2016                                  PQube  0.02
## 1691 2002                          Princess Soft  0.00
## 1692 2006                          Princess Soft  0.00
## 1693 2008                          Princess Soft  0.00
## 1694 2007                              Prototype  0.00
## 1695 2008                              Prototype  0.00
## 1696 2009                              Prototype  0.00
## 1697 2010                              Prototype  0.00
## 1698 2011                              Prototype  0.00
## 1699 2012                              Prototype  0.00
## 1700 2013                              Prototype  0.00
## 1701 2014                              Prototype  0.00
## 1702 2015                              Prototype  0.00
## 1703 2016                              Prototype  0.00
## 1704 1994                              Psygnosis  0.00
## 1705 1995                              Psygnosis  0.09
## 1706 1996                              Psygnosis  0.15
## 1707 1997                              Psygnosis  0.12
## 1708 1998                              Psygnosis  0.05
## 1709 1999                              Psygnosis  0.03
## 1710 2000                              Psygnosis  0.01
## 1711 1982                                 Quelle  0.01
## 1712 1995                                  Quest  0.00
## 1713 2011                               Quinrose  0.00
## 1714 2012                               Quinrose  0.00
## 1715 2013                               Quinrose  0.00
## 1716 2014                               Quinrose  0.00
## 1717 1998                                Quintet  0.00
## 1718 2001                          Rage Software  0.01
## 1719 2002                          Rage Software  0.12
## 1720 2015                             Rain Games  0.00
## 1721 2001                              Rebellion  0.01
## 1722 2002                              Rebellion  0.00
## 1723 2015                 Rebellion Developments  0.04
## 1724 2010                      RED Entertainment  0.00
## 1725 1994                                Red Orb  0.00
## 1726 1997                                Red Orb  0.10
## 1727 1999                Red Storm Entertainment  0.09
## 1728 2001                Red Storm Entertainment  0.00
## 1729 2005                              RedOctane  0.08
## 1730 2006                              RedOctane  0.68
## 1731 2007                              RedOctane  0.15
## 1732 2009                     Reef Entertainment  0.01
## 1733 2010                     Reef Entertainment  0.01
## 1734 2012                     Reef Entertainment  0.01
## 1735 2004                           responDESIGN  0.00
## 1736 2005                           responDESIGN  0.01
## 1737 2009                     Revolution (Japan)  0.00
## 1738 2015                    Revolution Software  0.01
## 1739 2005                      Rising Star Games  0.01
## 1740 2006                      Rising Star Games  0.10
## 1741 2007                      Rising Star Games  0.35
## 1742 2008                      Rising Star Games  0.30
## 1743 2009                      Rising Star Games  0.21
## 1744 2010                      Rising Star Games  0.08
## 1745 2011                      Rising Star Games  0.12
## 1746 2012                      Rising Star Games  0.01
## 1747 2013                      Rising Star Games  0.04
## 1748 2016                      Rising Star Games  0.00
## 1749  N/A                      Rising Star Games  0.00
## 1750 1995                          Riverhillsoft  0.00
## 1751 2006                         Rocket Company  0.00
## 1752 2007                         Rocket Company  0.00
## 1753 2008                         Rocket Company  0.00
## 1754 2009                         Rocket Company  0.00
## 1755 2010                         Rocket Company  0.00
## 1756 2011                         Rocket Company  0.00
## 1757 2012                         Rocket Company  0.00
## 1758 2013                         Rocket Company  0.00
## 1759 2014                         Rocket Company  0.00
## 1760 2015                         Rocket Company  0.00
## 1761 2016                         Rocket Company  0.00
## 1762 2008                             Rondomedia  0.10
## 1763 2009                             Rondomedia  0.13
## 1764 2010                             Rondomedia  0.01
## 1765 2011                             Rondomedia  0.02
## 1766 2015                             Rondomedia  0.00
## 1767 2007                                    RTL  0.12
## 1768 2008                                    RTL  0.07
## 1769 2009                                    RTL  0.01
## 1770 2007                                 Russel  0.00
## 1771 2008                                 Russel  0.00
## 1772 2009                                 Russel  0.00
## 1773 2010                                 Russel  0.00
## 1774 1993                      Sammy Corporation  0.00
## 1775 2001                      Sammy Corporation  0.05
## 1776 2002                      Sammy Corporation  0.03
## 1777 2003                      Sammy Corporation  0.02
## 1778 2004                      Sammy Corporation  0.00
## 1779 2006                      Sammy Corporation  0.00
## 1780 1998                                 Saurus  0.00
## 1781 2007                        Scholastic Inc.  0.06
## 1782 2008                        Scholastic Inc.  0.07
## 1783 2010                        Scholastic Inc.  0.03
## 1784 2011                        Scholastic Inc.  0.02
## 1785 2002                                    SCi  0.02
## 1786 2003                                    SCi  0.14
## 1787 2004                                    SCi  0.09
## 1788 2005                                    SCi  0.01
## 1789 2013                             Screenlife  0.03
## 1790 2015                             Screenlife  0.00
## 1791 2016                             Screenlife  0.00
## 1792 2012                           SCS Software  0.02
## 1793  N/A                                  Sears  0.00
## 1794 1982                                   Sega  0.00
## 1795 1990                                   Sega  0.08
## 1796 1991                                   Sega  0.13
## 1797 1992                                   Sega  0.23
## 1798 1993                                   Sega  0.05
## 1799 1994                                   Sega  0.21
## 1800 1995                                   Sega  0.05
## 1801 1996                                   Sega  0.00
## 1802 1997                                   Sega  0.00
## 1803 1998                                   Sega  0.08
## 1804 1999                                   Sega  0.06
## 1805 2000                                   Sega  0.10
## 1806 2001                                   Sega  0.31
## 1807 2002                                   Sega  0.68
## 1808 2003                                   Sega  1.02
## 1809 2004                                   Sega  0.98
## 1810 2005                                   Sega  0.84
## 1811 2006                                   Sega  2.22
## 1812 2007                                   Sega  3.30
## 1813 2008                                   Sega  4.39
## 1814 2009                                   Sega  2.54
## 1815 2010                                   Sega  2.73
## 1816 2011                                   Sega  2.07
## 1817 2012                                   Sega  1.02
## 1818 2013                                   Sega  0.54
## 1819 2014                                   Sega  0.58
## 1820 2015                                   Sega  0.06
## 1821 2016                                   Sega  0.03
## 1822 2017                                   Sega  0.00
## 1823  N/A                                   Sega  0.22
## 1824 1995                       Seta Corporation  0.00
## 1825 1996                       Seta Corporation  0.04
## 1826 2013                          Seventh Chord  0.00
## 1827 1995                             Shogakukan  0.00
## 1828 2006                             Shogakukan  0.00
## 1829 2007                             Shogakukan  0.00
## 1830 2015                             Shogakukan  0.00
## 1831 2002           Simon & Schuster Interactive  0.00
## 1832 2015                   Slightly Mad Studios  0.18
## 1833 2009                    Slitherine Software  0.01
## 1834 2010                    Slitherine Software  0.01
## 1835  N/A                    Slitherine Software  0.01
## 1836 1993                                    SNK  0.00
## 1837 1994                                    SNK  0.00
## 1838 1995                                    SNK  0.00
## 1839 1996                                    SNK  0.00
## 1840 1997                                    SNK  0.01
## 1841 1998                                    SNK  0.01
## 1842 1999                                    SNK  0.00
## 1843 2000                                    SNK  0.01
## 1844 2005                                    SNK  0.01
## 1845 1995                           SNK Playmore  0.00
## 1846 1998                           SNK Playmore  0.00
## 1847 1999                           SNK Playmore  0.01
## 1848 2005                           SNK Playmore  0.01
## 1849 2006                           SNK Playmore  0.00
## 1850 2007                           SNK Playmore  0.01
## 1851 2008                           SNK Playmore  0.00
## 1852 2009                           SNK Playmore  0.00
## 1853 2010                           SNK Playmore  0.00
## 1854 1996                                Societa  0.00
## 1855 2016                               Sold Out  0.00
## 1856 1995                                 Sonnet  0.00
## 1857 1996                                 Sonnet  0.00
## 1858 1994            Sony Computer Entertainment  0.22
## 1859 1995            Sony Computer Entertainment  0.88
## 1860 1996            Sony Computer Entertainment  1.59
## 1861 1997            Sony Computer Entertainment  2.63
## 1862 1998            Sony Computer Entertainment  1.63
## 1863 1999            Sony Computer Entertainment  1.88
## 1864 2000            Sony Computer Entertainment  1.45
## 1865 2001            Sony Computer Entertainment  3.20
## 1866 2002            Sony Computer Entertainment  1.91
## 1867 2003            Sony Computer Entertainment  2.92
## 1868 2004            Sony Computer Entertainment 10.77
## 1869 2005            Sony Computer Entertainment  4.27
## 1870 2006            Sony Computer Entertainment  5.67
## 1871 2007            Sony Computer Entertainment  8.28
## 1872 2008            Sony Computer Entertainment  5.87
## 1873 2009            Sony Computer Entertainment  7.93
## 1874 2010            Sony Computer Entertainment  5.67
## 1875 2011            Sony Computer Entertainment  3.84
## 1876 2012            Sony Computer Entertainment  1.78
## 1877 2013            Sony Computer Entertainment  1.98
## 1878 2014            Sony Computer Entertainment  3.19
## 1879 2015            Sony Computer Entertainment  1.79
## 1880 2016            Sony Computer Entertainment  1.05
## 1881  N/A            Sony Computer Entertainment  0.05
## 1882 2014    Sony Computer Entertainment America  0.13
## 1883 2001     Sony Computer Entertainment Europe  0.17
## 1884 2004     Sony Computer Entertainment Europe  0.18
## 1885 2012     Sony Computer Entertainment Europe  0.06
## 1886 2013     Sony Computer Entertainment Europe  1.74
## 1887 2014     Sony Computer Entertainment Europe  1.02
## 1888 2015     Sony Computer Entertainment Europe  0.25
## 1889 2001               Sony Music Entertainment  0.00
## 1890 2003              Sony Online Entertainment  0.07
## 1891 2004              Sony Online Entertainment  0.16
## 1892 2005              Sony Online Entertainment  0.08
## 1893 2006              Sony Online Entertainment  0.01
## 1894 2011              Sony Online Entertainment  0.08
## 1895 1999                        SouthPeak Games  0.01
## 1896 2004                        SouthPeak Games  0.16
## 1897 2005                        SouthPeak Games  0.04
## 1898 2006                        SouthPeak Games  0.01
## 1899 2007                        SouthPeak Games  0.09
## 1900 2008                        SouthPeak Games  0.05
## 1901 2009                        SouthPeak Games  0.16
## 1902 2010                        SouthPeak Games  0.04
## 1903 2001                                  Spike  0.00
## 1904 2002                                  Spike  0.00
## 1905 2004                                  Spike  0.00
## 1906 2006                                  Spike  0.09
## 1907 2007                                  Spike  0.16
## 1908 2008                                  Spike  0.01
## 1909 2009                                  Spike  0.09
## 1910 2010                                  Spike  0.02
## 1911 2011                                  Spike  0.00
## 1912 2012                                  Spike  0.00
## 1913 1996                                    SPS  0.01
## 1914 1991                                 Square  0.12
## 1915 1994                                 Square  0.00
## 1916 1997                                 Square  0.04
## 1917 1999                                 Square  0.04
## 1918 2001                                 Square  0.03
## 1919 1999                              Square EA  0.05
## 1920 2003                            Square Enix  0.14
## 1921 2004                            Square Enix  0.32
## 1922 2005                            Square Enix  0.27
## 1923 2006                            Square Enix  2.06
## 1924 2007                            Square Enix  1.29
## 1925 2008                            Square Enix  0.80
## 1926 2009                            Square Enix  0.85
## 1927 2010                            Square Enix  1.82
## 1928 2011                            Square Enix  1.27
## 1929 2012                            Square Enix  1.06
## 1930 2013                            Square Enix  1.69
## 1931 2014                            Square Enix  1.27
## 1932 2015                            Square Enix  0.83
## 1933 2016                            Square Enix  0.17
## 1934  N/A                            Square Enix  0.05
## 1935 1987                             SquareSoft  0.00
## 1936 1988                             SquareSoft  0.00
## 1937 1989                             SquareSoft  0.00
## 1938 1990                             SquareSoft  0.01
## 1939 1991                             SquareSoft  0.00
## 1940 1992                             SquareSoft  0.02
## 1941 1993                             SquareSoft  0.02
## 1942 1994                             SquareSoft  0.02
## 1943 1995                             SquareSoft  0.02
## 1944 1996                             SquareSoft  0.00
## 1945 1997                             SquareSoft  0.33
## 1946 1998                             SquareSoft  0.34
## 1947 1999                             SquareSoft  0.59
## 1948 2000                             SquareSoft  0.14
## 1949 2001                             SquareSoft  0.00
## 1950 2002                             SquareSoft  0.00
## 1951 2003                             SquareSoft  0.05
## 1952 1996                                    SSI  0.01
## 1953 2016                        Stainless Games  0.00
## 1954 1997                               Starfish  0.02
## 1955 1999                               Starfish  0.01
## 1956 2001                               Starfish  0.00
## 1957 2007                               Starfish  0.00
## 1958 2009                               Starfish  0.00
## 1959 2010                               Starfish  0.00
## 1960 2011                               Starfish  0.00
## 1961 2012                               Starfish  0.00
## 1962 1981                         Starpath Corp.  0.00
## 1963 2004                                  Sting  0.00
## 1964 2006                                  Sting  0.00
## 1965 2007                                  Sting  0.01
## 1966 2008                                  Sting  0.02
## 1967 2010                                  Sting  0.00
## 1968 2009                       Storm City Games  0.02
## 1969 2010                       Storm City Games  0.06
## 1970 2011                       Storm City Games  0.00
## 1971 2001                         Strategy First  0.00
## 1972 1998                                Success  0.07
## 1973 1999                                Success  0.00
## 1974 2000                                Success  0.00
## 1975 2001                                Success  0.01
## 1976 2002                                Success  0.00
## 1977 2005                                Success  0.00
## 1978 2006                                Success  0.00
## 1979 2007                                Success  0.00
## 1980 2008                                Success  0.01
## 1981 2009                                Success  0.00
## 1982 2013                                Success  0.00
## 1983 2014                                Success  0.00
## 1984 2004                             Summitsoft  0.00
## 1985 2004                             Sunflowers  0.01
## 1986 2000                    Sunrise Interactive  0.00
## 1987 2006                    Sunrise Interactive  0.00
## 1988 2007                    Sunrise Interactive  0.00
## 1989 1994                                Sunsoft  0.00
## 1990 1995                                Sunsoft  0.00
## 1991 1996                                Sunsoft  0.00
## 1992 1997                                Sunsoft  0.00
## 1993 1998                                Sunsoft  0.01
## 1994 1999                                Sunsoft  0.01
## 1995 2000                                Sunsoft  0.02
## 1996 2011                                Sunsoft  0.00
## 1997 2006                                 Sweets  0.00
## 1998 2009                                 Sweets  0.00
## 1999 1998                   Swing! Entertainment  0.00
## 2000 2000                   Swing! Entertainment  0.02
## 2001 2001                   Swing! Entertainment  0.01
## 2002 2002                   Swing! Entertainment  0.01
## 2003 1998                                 Syscom  0.01
## 2004 1999                                 Syscom  0.01
## 2005 2013                               System 3  0.03
## 2006 2006               System 3 Arcade Software  0.01
## 2007 2007               System 3 Arcade Software  0.03
## 2008 2008               System 3 Arcade Software  0.15
## 2009 2009               System 3 Arcade Software  0.01
## 2010  N/A               System 3 Arcade Software  0.00
## 2011 2008                            System Soft  0.00
## 2012 2010                            System Soft  0.00
## 2013 2011                            System Soft  0.00
## 2014 1993                               T&E Soft  0.00
## 2015 1981                                  Taito  0.00
## 2016 1994                                  Taito  0.00
## 2017 1995                                  Taito  0.00
## 2018 1997                                  Taito  0.07
## 2019 1999                                  Taito  0.10
## 2020 2001                                  Taito  0.00
## 2021 2002                                  Taito  0.02
## 2022 2003                                  Taito  0.00
## 2023 2006                                  Taito  0.00
## 2024 2007                                  Taito  0.00
## 2025 2010                                  Taito  0.00
## 2026 1992                                 Takara  0.00
## 2027 1993                                 Takara  0.00
## 2028 1994                                 Takara  0.00
## 2029 1995                                 Takara  0.00
## 2030 1996                                 Takara  0.02
## 2031 1997                                 Takara  0.04
## 2032 1998                                 Takara  0.02
## 2033 1999                                 Takara  0.00
## 2034 2001                                 Takara  0.00
## 2035 2002                                 Takara  0.00
## 2036 2003                                 Takara  0.00
## 2037 2006                            Takara Tomy  0.02
## 2038 2007                            Takara Tomy  0.01
## 2039 2008                            Takara Tomy  0.04
## 2040 2009                            Takara Tomy  0.01
## 2041 2010                            Takara Tomy  0.00
## 2042 2011                            Takara Tomy  0.00
## 2043 2013                            Takara Tomy  0.00
## 2044 2015                            Takara Tomy  0.00
## 2045 1997                   Take-Two Interactive  0.14
## 2046 1998                   Take-Two Interactive  0.33
## 2047 1999                   Take-Two Interactive  0.07
## 2048 2000                   Take-Two Interactive  0.49
## 2049 2001                   Take-Two Interactive  1.81
## 2050 2002                   Take-Two Interactive  2.10
## 2051 2003                   Take-Two Interactive  0.99
## 2052 2004                   Take-Two Interactive 10.85
## 2053 2005                   Take-Two Interactive  4.09
## 2054 2006                   Take-Two Interactive  2.93
## 2055 2007                   Take-Two Interactive  2.08
## 2056 2008                   Take-Two Interactive  5.28
## 2057 2009                   Take-Two Interactive  2.06
## 2058 2010                   Take-Two Interactive  4.06
## 2059 2011                   Take-Two Interactive  1.89
## 2060 2012                   Take-Two Interactive  2.31
## 2061 2013                   Take-Two Interactive  7.09
## 2062 2014                   Take-Two Interactive  4.17
## 2063 2015                   Take-Two Interactive  2.02
## 2064 2016                   Take-Two Interactive  0.44
## 2065  N/A                   Take-Two Interactive  0.04
## 2066 2011                                 Takuyo  0.00
## 2067 2001                              TalonSoft  0.06
## 2068 2000                               TDK Core  0.01
## 2069 2002                               TDK Core  0.00
## 2070 2006                               TDK Core  0.00
## 2071 2007                               TDK Core  0.00
## 2072 2001                         TDK Mediactive  0.04
## 2073 2002                         TDK Mediactive  0.18
## 2074 2003                         TDK Mediactive  0.06
## 2075 2004                         TDK Mediactive  0.17
## 2076 2010                        Team17 Software  0.01
## 2077 1995              Technos Japan Corporation  0.00
## 2078 1998                             TechnoSoft  0.00
## 2079 1991                             Tecmo Koei  0.00
## 2080 1992                             Tecmo Koei  0.00
## 2081 1993                             Tecmo Koei  0.00
## 2082 1994                             Tecmo Koei  0.00
## 2083 1995                             Tecmo Koei  0.01
## 2084 1996                             Tecmo Koei  0.03
## 2085 1997                             Tecmo Koei  0.11
## 2086 1998                             Tecmo Koei  0.02
## 2087 1999                             Tecmo Koei  0.03
## 2088 2000                             Tecmo Koei  0.12
## 2089 2001                             Tecmo Koei  0.05
## 2090 2002                             Tecmo Koei  0.10
## 2091 2003                             Tecmo Koei  0.27
## 2092 2004                             Tecmo Koei  0.12
## 2093 2005                             Tecmo Koei  0.21
## 2094 2006                             Tecmo Koei  0.37
## 2095 2007                             Tecmo Koei  0.29
## 2096 2008                             Tecmo Koei  0.23
## 2097 2009                             Tecmo Koei  0.10
## 2098 2010                             Tecmo Koei  0.13
## 2099 2011                             Tecmo Koei  0.21
## 2100 2012                             Tecmo Koei  0.21
## 2101 2013                             Tecmo Koei  0.16
## 2102 2014                             Tecmo Koei  0.25
## 2103 2015                             Tecmo Koei  0.14
## 2104 2016                             Tecmo Koei  0.02
## 2105 1999                              Telegames  0.00
## 2106 2003                              Telegames  0.00
## 2107 2005                              Telegames  0.00
## 2108 2007                              Telegames  0.04
## 2109 2008                              Telegames  0.01
## 2110 2010                              Telegames  0.01
## 2111 2011                         Telltale Games  0.01
## 2112 2014                         Telltale Games  0.30
## 2113 2015                         Telltale Games  0.05
## 2114 2016                         Telltale Games  0.03
## 2115 1995                                Telstar  0.00
## 2116 1998                                Telstar  0.02
## 2117 2011                          Tetris Online  0.03
## 2118 2009                                    TGL  0.00
## 2119 2015                                    TGL  0.00
## 2120 2008                  The Adventure Company  0.03
## 2121 2009                  The Adventure Company  0.02
## 2122 2000                   The Learning Company  0.00
## 2123 1995                                    THQ  0.01
## 2124 1997                                    THQ  0.03
## 2125 1998                                    THQ  0.53
## 2126 1999                                    THQ  0.10
## 2127 2000                                    THQ  0.81
## 2128 2001                                    THQ  1.47
## 2129 2002                                    THQ  2.21
## 2130 2003                                    THQ  1.83
## 2131 2004                                    THQ  1.80
## 2132 2005                                    THQ  1.48
## 2133 2006                                    THQ  2.59
## 2134 2007                                    THQ  5.33
## 2135 2008                                    THQ  4.07
## 2136 2009                                    THQ  3.96
## 2137 2010                                    THQ  2.14
## 2138 2011                                    THQ  2.90
## 2139 2012                                    THQ  0.80
## 2140 2013                                    THQ  0.05
## 2141  N/A                                    THQ  0.03
## 2142 1981                            Tigervision  0.01
## 2143 1982                            Tigervision  0.00
## 2144 1994                Time Warner Interactive  0.01
## 2145 1995                Time Warner Interactive  0.01
## 2146 1996                Time Warner Interactive  0.01
## 2147 1993                                  Titus  0.00
## 2148 1997                                  Titus  0.01
## 2149 1998                                  Titus  0.02
## 2150 1999                                  Titus  0.02
## 2151 2000                                  Titus  0.00
## 2152 2001                                  Titus  0.13
## 2153 2002                                  Titus  0.02
## 2154 2003                                  Titus  0.00
## 2155 2008                                 Tivola  0.00
## 2156 2009                                 Tivola  0.02
## 2157 1993                                   TOHO  0.00
## 2158 2007                                  Tommo  0.00
## 2159 2009                                  Tommo  0.00
## 2160 2011                                  Tommo  0.00
## 2161 1995                       Tomy Corporation  0.02
## 2162 1996                       Tomy Corporation  0.02
## 2163 1998                       Tomy Corporation  0.01
## 2164 2003                       Tomy Corporation  0.03
## 2165 2004                       Tomy Corporation  0.01
## 2166 2005                       Tomy Corporation  0.01
## 2167 2006                       Tomy Corporation  0.00
## 2168 2007                       Tomy Corporation  0.11
## 2169 2008                       Tomy Corporation  0.03
## 2170 2009                       Tomy Corporation  0.00
## 2171 2010                       Tomy Corporation  0.01
## 2172 2011                    TopWare Interactive  0.00
## 2173 2015                    TopWare Interactive  0.00
## 2174  N/A                    TopWare Interactive  0.02
## 2175 2007                             Touchstone  0.02
## 2176 2008                             Touchstone  0.17
## 2177 2010                              Tradewest  0.01
## 2178 2012                           Trion Worlds  0.00
## 2179 2013                           Trion Worlds  0.11
## 2180 2011                   Tripwire Interactive  0.02
## 2181 2014                  Tru Blu Entertainment  0.00
## 2182 2015                  Tru Blu Entertainment  0.02
## 2183 2008                               Tryfirst  0.00
## 2184 1998                                    TYO  0.03
## 2185 2014                              Type-Moon  0.00
## 2186 1995                              U.S. Gold  0.01
## 2187 1996                              U.S. Gold  0.01
## 2188 1995                                Ubisoft  0.16
## 2189 1996                                Ubisoft  0.01
## 2190 1997                                Ubisoft  0.01
## 2191 1998                                Ubisoft  0.01
## 2192 1999                                Ubisoft  0.22
## 2193 2000                                Ubisoft  0.35
## 2194 2001                                Ubisoft  0.28
## 2195 2002                                Ubisoft  0.80
## 2196 2003                                Ubisoft  1.43
## 2197 2004                                Ubisoft  1.35
## 2198 2005                                Ubisoft  1.30
## 2199 2006                                Ubisoft  1.50
## 2200 2007                                Ubisoft  5.38
## 2201 2008                                Ubisoft  5.90
## 2202 2009                                Ubisoft  5.24
## 2203 2010                                Ubisoft  4.22
## 2204 2011                                Ubisoft  5.75
## 2205 2012                                Ubisoft  4.60
## 2206 2013                                Ubisoft  3.19
## 2207 2014                                Ubisoft  5.63
## 2208 2015                                Ubisoft  1.53
## 2209 2016                                Ubisoft  1.28
## 2210 2020                                Ubisoft  0.02
## 2211  N/A                                Ubisoft  0.10
## 2212 2009                         Ubisoft Annecy  0.13
## 2213 2010                         Ubisoft Annecy  0.07
## 2214 2011                         Ubisoft Annecy  0.05
## 2215 2012                         Ubisoft Annecy  0.02
## 2216 1997                            UEP Systems  0.08
## 2217 2007                        UFO Interactive  0.00
## 2218 2008                        UFO Interactive  0.00
## 2219 2009                        UFO Interactive  0.01
## 2220 2010                        UFO Interactive  0.03
## 2221 2011                        UFO Interactive  0.00
## 2222 2012                        UFO Interactive  0.00
## 2223 2016                      UIG Entertainment  0.00
## 2224  N/A                            Ultravision  0.00
## 2225 1982                        Universal Gamex  0.01
## 2226 2001                  Universal Interactive  0.88
## 2227 2002                  Universal Interactive  0.61
## 2228 2003                  Universal Interactive  0.24
## 2229  N/A                  Universal Interactive  0.02
## 2230 1981                                Unknown  0.00
## 2231 1998                                Unknown  0.05
## 2232 2001                                Unknown  0.34
## 2233 2002                                Unknown  0.00
## 2234 2003                                Unknown  0.02
## 2235 2004                                Unknown  0.00
## 2236 2005                                Unknown  0.12
## 2237 2006                                Unknown  0.00
## 2238 2007                                Unknown  0.00
## 2239 2008                                Unknown  0.02
## 2240 2009                                Unknown  0.00
## 2241 2010                                Unknown  0.05
## 2242 2011                                Unknown  0.36
## 2243 2012                                Unknown  0.00
## 2244 2013                                Unknown  0.00
## 2245 2014                                Unknown  0.03
## 2246 2015                                Unknown  0.00
## 2247 2016                                Unknown  0.00
## 2248  N/A                                Unknown  1.49
## 2249 2005                           Valcon Games  0.01
## 2250 2006                           Valcon Games  0.00
## 2251 2008                           Valcon Games  0.01
## 2252 2009                           Valcon Games  0.01
## 2253 2010                           Valcon Games  0.00
## 2254 2005                               ValuSoft  0.03
## 2255 2008                               ValuSoft  0.00
## 2256 2009                               ValuSoft  0.01
## 2257 2011                               ValuSoft  0.00
## 2258 2011                                  Valve  0.25
## 2259 2009                         Valve Software  0.04
## 2260 2011                         Valve Software  0.28
## 2261 1994                                    Vap  0.00
## 2262 2000                  Vatical Entertainment  0.01
## 2263 1996                              Vic Tokai  0.01
## 2264 1997                              Vic Tokai  0.00
## 2265 1993                     Victor Interactive  0.00
## 2266 1995                     Victor Interactive  0.00
## 2267 1997                     Victor Interactive  0.00
## 2268 1998                     Victor Interactive  0.01
## 2269 2000                     Victor Interactive  0.01
## 2270 2001                     Victor Interactive  0.00
## 2271 2002                     Victor Interactive  0.00
## 2272 1992                           Video System  0.00
## 2273 1997                           Video System  0.00
## 2274 1998                           Video System  0.08
## 2275 2000                           Video System  0.01
## 2276 2012                                  Views  0.00
## 2277 2014                                  Views  0.00
## 2278 2008                          Vir2L Studios  0.00
## 2279 2009                          Vir2L Studios  0.01
## 2280 1992                     Virgin Interactive  0.00
## 2281 1994                     Virgin Interactive  0.27
## 2282 1995                     Virgin Interactive  0.06
## 2283 1996                     Virgin Interactive  1.34
## 2284 1997                     Virgin Interactive  0.14
## 2285 1998                     Virgin Interactive  0.60
## 2286 1999                     Virgin Interactive  0.04
## 2287 2000                     Virgin Interactive  0.19
## 2288 2001                     Virgin Interactive  0.37
## 2289 2002                     Virgin Interactive  0.02
## 2290 2010                     Virtual Play Games  0.00
## 2291 2011                                  Visco  0.00
## 2292 1995                          Vivendi Games  0.00
## 2293 1997                          Vivendi Games  0.00
## 2294 1998                          Vivendi Games  0.01
## 2295 1999                          Vivendi Games  0.03
## 2296 2000                          Vivendi Games  0.01
## 2297 2001                          Vivendi Games  0.20
## 2298 2002                          Vivendi Games  0.19
## 2299 2003                          Vivendi Games  1.51
## 2300 2004                          Vivendi Games  0.33
## 2301 2005                          Vivendi Games  0.49
## 2302 2006                          Vivendi Games  0.41
## 2303 2007                          Vivendi Games  0.69
## 2304 2008                          Vivendi Games  0.85
## 2305 2009                          Vivendi Games  0.04
## 2306  N/A                          Vivendi Games  0.12
## 2307 2001                                Wanadoo  0.02
## 2308 2002                                Wanadoo  0.05
## 2309 2003                                Wanadoo  0.00
## 2310 2005                                Wanadoo  0.00
## 2311 2007                                Warashi  0.00
## 2312 2011                          Wargaming.net  0.06
## 2313 2003 Warner Bros. Interactive Entertainment  0.06
## 2314 2005 Warner Bros. Interactive Entertainment  0.01
## 2315 2006 Warner Bros. Interactive Entertainment  0.02
## 2316 2007 Warner Bros. Interactive Entertainment  0.16
## 2317 2008 Warner Bros. Interactive Entertainment  1.57
## 2318 2009 Warner Bros. Interactive Entertainment  1.49
## 2319 2010 Warner Bros. Interactive Entertainment  1.63
## 2320 2011 Warner Bros. Interactive Entertainment  2.20
## 2321 2012 Warner Bros. Interactive Entertainment  1.60
## 2322 2013 Warner Bros. Interactive Entertainment  2.62
## 2323 2014 Warner Bros. Interactive Entertainment  2.43
## 2324 2015 Warner Bros. Interactive Entertainment  2.90
## 2325 2016 Warner Bros. Interactive Entertainment  0.45
## 2326  N/A Warner Bros. Interactive Entertainment  1.42
## 2327 1997                                   Warp  0.00
## 2328 2015                WayForward Technologies  0.01
## 2329 1999                       Westwood Studios  0.00
## 2330 2007                White Park Bay Software  0.01
## 2331 1982                     Wizard Video Games  0.01
## 2332 2002                      Xicat Interactive  0.01
## 2333 2003                      Xicat Interactive  0.00
## 2334 1997                     Xing Entertainment  0.02
## 2335 2005                                Xplosiv  0.03
## 2336 2006                                Xplosiv  0.06
## 2337 2007                                Xplosiv  0.02
## 2338 2008                                Xplosiv  0.06
## 2339 2002                               XS Games  0.02
## 2340 2004                               XS Games  0.00
## 2341 2005                               XS Games  0.02
## 2342 2007                               XS Games  0.00
## 2343 2008                               XS Games  0.00
## 2344 2009                               XS Games  0.05
## 2345 2010                               XS Games  0.02
## 2346 2012                            Xseed Games  0.03
## 2347 2013                            Xseed Games  0.01
## 2348 2014                            Xseed Games  0.02
## 2349 2015                            Xseed Games  0.01
## 2350 2015                       Yacht Club Games  0.03
## 2351 2006                   Yamasa Entertainment  0.00
## 2352 2006                                   Yeti  0.00
## 2353 2007                                   Yeti  0.00
## 2354 2008                                   Yeti  0.00
## 2355 2009                                   Yeti  0.00
## 2356 2010                                   Yeti  0.00
## 2357 2012                                   Yeti  0.00
## 2358 2016                                   Yeti  0.00
## 2359 2005                                 Yuke's  0.00
## 2360 2006                                 Yuke's  0.00
## 2361 2007                                 Yuke's  0.00
## 2362 1995                                Yumedia  0.00
## 2363 2006                                 Zenrin  0.00
## 2364 2007                                 Zenrin  0.00
## 2365 2002                 Zoo Digital Publishing  0.01
## 2366 2003                 Zoo Digital Publishing  0.19
## 2367 2004                 Zoo Digital Publishing  0.19
## 2368 2005                 Zoo Digital Publishing  0.11
## 2369 2006                 Zoo Digital Publishing  0.03
## 2370 2007                 Zoo Digital Publishing  0.07
## 2371 2008                 Zoo Digital Publishing  0.10
## 2372 2009                 Zoo Digital Publishing  0.08
## 2373 2008                              Zoo Games  0.06
## 2374 2009                              Zoo Games  0.14
## 2375 2010                              Zoo Games  0.05
## 2376 2011                              Zoo Games  0.02
## 2377 2007                            Zushi Games  0.00
## 2378 2008                            Zushi Games  0.04
## 2379 2009                            Zushi Games  0.07
aggregate(Other_Sales,by=list(Genre = Genre,Publisher=Publisher),sum)
##             Genre                              Publisher     x
## 1       Adventure                        10TACLE Studios  0.00
## 2          Puzzle                        10TACLE Studios  0.00
## 3        Strategy                        10TACLE Studios  0.00
## 4          Racing                             1C Company  0.01
## 5    Role-Playing                             1C Company  0.00
## 6        Strategy                             1C Company  0.01
## 7          Action           20th Century Fox Video Games  0.01
## 8         Shooter           20th Century Fox Video Games  0.00
## 9          Puzzle                                 2D Boy  0.01
## 10         Action                                    3DO  0.29
## 11      Adventure                                    3DO  0.04
## 12       Fighting                                    3DO  0.04
## 13       Platform                                    3DO  0.02
## 14         Puzzle                                    3DO  0.01
## 15   Role-Playing                                    3DO  0.02
## 16        Shooter                                    3DO  0.04
## 17         Sports                                    3DO  0.16
## 18       Strategy                                    3DO  0.01
## 19         Sports                                49Games  0.00
## 20         Action                              505 Games  0.31
## 21      Adventure                              505 Games  0.05
## 22       Fighting                              505 Games  0.10
## 23           Misc                              505 Games  0.34
## 24       Platform                              505 Games  0.02
## 25         Puzzle                              505 Games  0.19
## 26         Racing                              505 Games  0.01
## 27   Role-Playing                              505 Games  0.11
## 28        Shooter                              505 Games  0.70
## 29     Simulation                              505 Games  2.12
## 30         Sports                              505 Games  1.46
## 31       Strategy                              505 Games  0.03
## 32         Action                                    5pb  0.00
## 33      Adventure                                    5pb  0.00
## 34       Fighting                                    5pb  0.00
## 35   Role-Playing                                    5pb  0.00
## 36        Shooter                                    5pb  0.00
## 37     Simulation                                    5pb  0.00
## 38           Misc                               7G//AMES  0.00
## 39         Puzzle                               7G//AMES  0.00
## 40     Simulation                               7G//AMES  0.00
## 41         Sports                             989 Sports  0.02
## 42         Action                            989 Studios  0.11
## 43         Racing                            989 Studios  0.07
## 44         Sports                            989 Studios  0.49
## 45         Action                               Abylight  0.01
## 46         Action                  Acclaim Entertainment  0.11
## 47      Adventure                  Acclaim Entertainment  0.09
## 48       Fighting                  Acclaim Entertainment  0.69
## 49           Misc                  Acclaim Entertainment  0.06
## 50       Platform                  Acclaim Entertainment  0.08
## 51         Puzzle                  Acclaim Entertainment  0.08
## 52         Racing                  Acclaim Entertainment  0.98
## 53   Role-Playing                  Acclaim Entertainment  0.01
## 54        Shooter                  Acclaim Entertainment  0.35
## 55         Sports                  Acclaim Entertainment  0.90
## 56       Strategy                  Acclaim Entertainment  0.02
## 57       Platform                               Accolade  0.01
## 58         Racing                               Accolade  0.05
## 59         Sports                               Accolade  0.01
## 60         Action                            Ackkstudios  0.00
## 61      Adventure                            Ackkstudios  0.00
## 62   Role-Playing                            Ackkstudios  0.01
## 63         Sports                            Ackkstudios  0.00
## 64       Strategy                            Ackkstudios  0.00
## 65         Action                                Acquire  0.02
## 66      Adventure                                Acquire  0.00
## 67   Role-Playing                                Acquire  0.01
## 68       Strategy                                Acquire  0.00
## 69         Action                             Activision 13.83
## 70      Adventure                             Activision  0.41
## 71       Fighting                             Activision  0.15
## 72           Misc                             Activision 10.07
## 73       Platform                             Activision  2.01
## 74         Puzzle                             Activision  0.02
## 75         Racing                             Activision  1.35
## 76   Role-Playing                             Activision  4.55
## 77        Shooter                             Activision 35.16
## 78     Simulation                             Activision  0.80
## 79         Sports                             Activision  5.42
## 80       Strategy                             Activision  1.57
## 81         Action                    Activision Blizzard  0.04
## 82         Action                       Activision Value  0.00
## 83           Misc                       Activision Value  0.00
## 84        Shooter                       Activision Value  0.06
## 85         Sports                       Activision Value  0.51
## 86       Strategy                       Activision Value  0.00
## 87         Action                       Adeline Software  0.01
## 88     Simulation                               Aerosoft  0.00
## 89         Action                 Agatsuma Entertainment  0.01
## 90           Misc                 Agatsuma Entertainment  0.00
## 91       Platform                 Agatsuma Entertainment  0.00
## 92         Action                                 Agetec  0.01
## 93       Fighting                                 Agetec  0.01
## 94           Misc                                 Agetec  0.01
## 95         Racing                                 Agetec  0.00
## 96     Simulation                                 Agetec  0.02
## 97         Sports                                 Agetec  0.14
## 98       Strategy                                 Agetec  0.00
## 99         Action                            Aksys Games  0.00
## 100     Adventure                            Aksys Games  0.02
## 101  Role-Playing                            Aksys Games  0.03
## 102        Action                   Alawar Entertainment  0.00
## 103      Strategy                   Alawar Entertainment  0.01
## 104        Action                              Alchemist  0.00
## 105     Adventure                              Alchemist  0.15
## 106          Misc                              Alchemist  0.00
## 107  Role-Playing                              Alchemist  0.00
## 108       Shooter                              Alchemist  0.00
## 109        Action                   Alternative Software  0.00
## 110        Sports                   Alternative Software  0.03
## 111       Shooter                                 Altron  0.00
## 112          Misc                                 Alvion  0.00
## 113        Action                     American Softworks  0.02
## 114      Fighting                          Angel Studios  0.00
## 115  Role-Playing                          Angel Studios  0.00
## 116      Strategy                          Angel Studios  0.00
## 117        Action                        Answer Software  0.01
## 118      Fighting                         AQ Interactive  0.02
## 119          Misc                         AQ Interactive  0.03
## 120     Adventure                              Aqua Plus  0.01
## 121      Fighting                              Aqua Plus  0.01
## 122          Misc                              Aqua Plus  0.00
## 123  Role-Playing                              Aqua Plus  0.00
## 124      Strategy                              Aqua Plus  0.00
## 125        Sports                                  Aques  0.01
## 126        Action                       Arc System Works  0.00
## 127     Adventure                       Arc System Works  0.02
## 128      Fighting                       Arc System Works  0.09
## 129          Misc                       Arc System Works  0.00
## 130  Role-Playing                       Arc System Works  0.00
## 131        Sports                       Arc System Works  0.01
## 132      Fighting                    Arena Entertainment  0.09
## 133        Sports                    Arena Entertainment  0.05
## 134     Adventure                                   Aria  0.00
## 135          Misc                                  Arika  0.00
## 136  Role-Playing                                  Arika  0.01
## 137       Shooter                                  Arika  0.00
## 138  Role-Playing                                ArtDink  0.01
## 139    Simulation                                ArtDink  0.00
## 140      Strategy                                ArtDink  0.03
## 141          Misc                             Aruze Corp  0.08
## 142        Action                              ASC Games  0.00
## 143        Racing                              ASC Games  0.09
## 144        Sports                              ASC Games  0.04
## 145      Strategy                  Ascaron Entertainment  0.00
## 146  Role-Playing             Ascaron Entertainment GmbH  0.01
## 147      Strategy             Ascaron Entertainment GmbH  0.01
## 148     Adventure                    ASCII Entertainment  0.04
## 149          Misc                    ASCII Entertainment  0.02
## 150        Racing                    ASCII Entertainment  0.01
## 151  Role-Playing                    ASCII Entertainment  0.03
## 152    Simulation                    ASCII Entertainment  0.00
## 153        Sports                    ASCII Entertainment  0.26
## 154      Strategy                    ASCII Entertainment  0.00
## 155     Adventure                      ASCII Media Works  0.00
## 156  Role-Playing                      ASCII Media Works  0.00
## 157        Action                                 Asgard  0.00
## 158          Misc                                 Asgard  0.00
## 159          Misc                                    ASK  0.00
## 160     Adventure                Asmik Ace Entertainment  0.00
## 161      Fighting                Asmik Ace Entertainment  0.01
## 162    Simulation                Asmik Ace Entertainment  0.00
## 163        Sports                             Asmik Corp  0.00
## 164     Adventure                                  Aspyr  0.00
## 165          Misc                                  Aspyr  0.02
## 166  Role-Playing                                  Aspyr  0.01
## 167    Simulation                                  Aspyr  0.01
## 168        Sports                                  Aspyr  0.01
## 169        Action                               Astragon  0.01
## 170     Adventure                               Astragon  0.04
## 171        Puzzle                               Astragon  0.01
## 172    Simulation                               Astragon  0.00
## 173     Adventure                   Asylum Entertainment  0.05
## 174      Platform                   Asylum Entertainment  0.01
## 175    Simulation                   Asylum Entertainment  0.00
## 176        Action                                  Atari  1.45
## 177     Adventure                                  Atari  0.17
## 178      Fighting                                  Atari  2.59
## 179          Misc                                  Atari  0.40
## 180      Platform                                  Atari  0.16
## 181        Puzzle                                  Atari  0.39
## 182        Racing                                  Atari  1.33
## 183  Role-Playing                                  Atari  0.52
## 184       Shooter                                  Atari  0.58
## 185    Simulation                                  Atari  0.16
## 186        Sports                                  Atari  0.97
## 187      Strategy                                  Atari  0.29
## 188     Adventure                                 Athena  0.00
## 189        Sports                                 Athena  0.00
## 190        Action                                  Atlus  0.00
## 191     Adventure                                  Atlus  0.00
## 192      Fighting                                  Atlus  0.10
## 193          Misc                                  Atlus  0.00
## 194      Platform                                  Atlus  0.00
## 195        Racing                                  Atlus  0.00
## 196  Role-Playing                                  Atlus  0.65
## 197       Shooter                                  Atlus  0.00
## 198    Simulation                                  Atlus  0.01
## 199        Sports                                  Atlus  0.00
## 200      Strategy                                  Atlus  0.01
## 201        Action                     Avalon Interactive  0.00
## 202        Racing                     Avalon Interactive  0.01
## 203  Role-Playing                     Avalon Interactive  0.01
## 204       Shooter                     Avalon Interactive  0.00
## 205    Simulation                     Avalon Interactive  0.01
## 206        Action                              Avanquest  0.05
## 207     Adventure                              Avanquest  0.00
## 208          Misc                              Avanquest  0.05
## 209        Puzzle                              Avanquest  0.15
## 210    Simulation                              Avanquest  0.00
## 211        Sports                              Avanquest  0.00
## 212        Action                     Avanquest Software  0.00
## 213     Adventure                     Avanquest Software  0.17
## 214          Misc                     Avanquest Software  0.00
## 215        Sports                                  Axela  0.02
## 216        Action                     BAM! Entertainment  0.09
## 217     Adventure                     BAM! Entertainment  0.02
## 218      Fighting                     BAM! Entertainment  0.01
## 219          Misc                     BAM! Entertainment  0.00
## 220      Platform                     BAM! Entertainment  0.04
## 221        Racing                     BAM! Entertainment  0.05
## 222       Shooter                     BAM! Entertainment  0.03
## 223        Sports                     BAM! Entertainment  0.00
## 224        Action                              Banpresto  0.00
## 225     Adventure                              Banpresto  0.01
## 226      Fighting                              Banpresto  0.03
## 227          Misc                              Banpresto  0.00
## 228      Platform                              Banpresto  0.00
## 229        Puzzle                              Banpresto  0.01
## 230        Racing                              Banpresto  0.00
## 231  Role-Playing                              Banpresto  0.09
## 232       Shooter                              Banpresto  0.01
## 233    Simulation                              Banpresto  0.00
## 234        Sports                              Banpresto  0.01
## 235      Strategy                              Banpresto  0.20
## 236          Misc                                Benesse  0.00
## 237        Action                               Berkeley  0.00
## 238        Action                     Bethesda Softworks  1.22
## 239        Racing                     Bethesda Softworks  0.22
## 240  Role-Playing                     Bethesda Softworks  6.68
## 241       Shooter                     Bethesda Softworks  1.81
## 242    Simulation                     Bethesda Softworks  0.02
## 243        Sports                     Bethesda Softworks  0.19
## 244      Strategy                     Bethesda Softworks  0.02
## 245     Adventure                    Big Ben Interactive  0.00
## 246      Platform                    Big Ben Interactive  0.00
## 247        Racing                    Big Ben Interactive  0.00
## 248       Shooter                    Big Ben Interactive  0.01
## 249        Sports                    Big Ben Interactive  0.06
## 250        Action                         Big Fish Games  0.00
## 251     Adventure                         Big Fish Games  0.00
## 252        Sports                     Bigben Interactive  0.13
## 253        Racing                      bitComposer Games  0.01
## 254    Simulation                      bitComposer Games  0.07
## 255        Action                       Black Bean Games  0.01
## 256          Misc                       Black Bean Games  0.03
## 257        Racing                       Black Bean Games  0.24
## 258        Sports                       Black Bean Games  0.13
## 259      Strategy                       Black Bean Games  0.00
## 260        Action                      Black Label Games  0.15
## 261        Action               Blast! Entertainment Ltd  0.03
## 262     Adventure               Blast! Entertainment Ltd  0.00
## 263        Sports               Blast! Entertainment Ltd  0.00
## 264    Simulation                              Blue Byte  0.00
## 265      Strategy                              Blue Byte  0.00
## 266      Platform          BMG Interactive Entertainment  0.05
## 267        Racing          BMG Interactive Entertainment  0.01
## 268       Shooter          BMG Interactive Entertainment  0.01
## 269        Sports          BMG Interactive Entertainment  0.00
## 270       Shooter                    Bohemia Interactive  0.02
## 271        Action                                   Bomb  0.00
## 272     Adventure                               Boost On  0.00
## 273        Puzzle                                    BPS  0.00
## 274        Racing                                    BPS  0.00
## 275          Misc                    Brash Entertainment  0.03
## 276      Platform                    Brash Entertainment  0.08
## 277        Action                               Broccoli  0.00
## 278     Adventure                               Broccoli  0.00
## 279      Fighting                               Broccoli  0.00
## 280          Misc                               Broccoli  0.00
## 281  Role-Playing                               Broccoli  0.00
## 282    Simulation                               Broccoli  0.00
## 283      Strategy                               Broccoli  0.00
## 284     Adventure                              BushiRoad  0.00
## 285        Action                                 Capcom  6.59
## 286     Adventure                                 Capcom  0.53
## 287      Fighting                                 Capcom  2.20
## 288          Misc                                 Capcom  0.14
## 289      Platform                                 Capcom  1.10
## 290        Puzzle                                 Capcom  0.05
## 291        Racing                                 Capcom  0.52
## 292  Role-Playing                                 Capcom  2.58
## 293       Shooter                                 Capcom  1.08
## 294    Simulation                                 Capcom  0.01
## 295        Sports                                 Capcom  0.02
## 296      Strategy                                 Capcom  0.02
## 297        Action                                   Cave  0.00
## 298     Adventure                                   Cave  0.00
## 299          Misc                                   Cave  0.01
## 300       Shooter                                   Cave  0.00
## 301        Action                        CBS Electronics  0.00
## 302  Role-Playing                                    CCP  0.02
## 303     Adventure             CDV Software Entertainment  0.01
## 304        Puzzle             CDV Software Entertainment  0.00
## 305    Simulation             CDV Software Entertainment  0.00
## 306      Strategy             CDV Software Entertainment  0.00
## 307        Action                               ChunSoft  0.00
## 308     Adventure                               ChunSoft  0.04
## 309  Role-Playing                               ChunSoft  0.05
## 310        Action                       City Interactive  0.03
## 311     Adventure                       City Interactive  0.05
## 312          Misc                       City Interactive  0.00
## 313        Puzzle                       City Interactive  0.01
## 314       Shooter                       City Interactive  0.43
## 315    Simulation                       City Interactive  0.01
## 316      Fighting       Cloud Imperium Games Corporation  0.00
## 317     Adventure                         Coconuts Japan  0.00
## 318          Misc                         Coconuts Japan  0.00
## 319        Action                            Codemasters  0.17
## 320     Adventure                            Codemasters  0.06
## 321          Misc                            Codemasters  0.15
## 322        Puzzle                            Codemasters  0.01
## 323        Racing                            Codemasters  4.90
## 324  Role-Playing                            Codemasters  0.04
## 325       Shooter                            Codemasters  0.59
## 326    Simulation                            Codemasters  0.04
## 327        Sports                            Codemasters  0.31
## 328      Strategy                            Codemasters  0.03
## 329  Role-Playing                     Codemasters Online  0.00
## 330        Action                      CokeM Interactive  0.02
## 331        Action                                 Coleco  0.01
## 332      Platform                                 Coleco  0.02
## 333       Shooter                                 Coleco  0.00
## 334        Action                                Comfort  0.00
## 335     Adventure                                Comfort  0.00
## 336          Misc                               Commseed  0.00
## 337        Puzzle                                Compile  0.10
## 338  Role-Playing                                Compile  0.00
## 339        Action                          Compile Heart  0.00
## 340     Adventure                          Compile Heart  0.00
## 341  Role-Playing                          Compile Heart  0.06
## 342      Strategy                          Compile Heart  0.01
## 343        Action               Conspiracy Entertainment  0.02
## 344          Misc               Conspiracy Entertainment  0.01
## 345      Platform               Conspiracy Entertainment  0.00
## 346        Puzzle               Conspiracy Entertainment  0.00
## 347        Racing               Conspiracy Entertainment  0.00
## 348       Shooter               Conspiracy Entertainment  0.00
## 349    Simulation               Conspiracy Entertainment  0.00
## 350        Sports               Conspiracy Entertainment  0.01
## 351        Action                       Core Design Ltd.  0.01
## 352    Simulation                       Core Design Ltd.  0.01
## 353        Action                           CPG Products  0.01
## 354        Action                    Crave Entertainment  0.05
## 355     Adventure                    Crave Entertainment  0.01
## 356      Fighting                    Crave Entertainment  0.03
## 357          Misc                    Crave Entertainment  0.15
## 358      Platform                    Crave Entertainment  0.00
## 359        Puzzle                    Crave Entertainment  0.04
## 360        Racing                    Crave Entertainment  0.17
## 361  Role-Playing                    Crave Entertainment  0.08
## 362       Shooter                    Crave Entertainment  0.00
## 363    Simulation                    Crave Entertainment  0.02
## 364        Sports                    Crave Entertainment  0.11
## 365      Strategy                    Crave Entertainment  0.01
## 366     Adventure                          Creative Core  0.00
## 367          Misc                          Creative Core  0.00
## 368    Simulation                          Creative Core  0.00
## 369        Action                            Crimson Cow  0.01
## 370     Adventure                            Crimson Cow  0.00
## 371     Adventure                       Crystal Dynamics  0.01
## 372      Platform                       Crystal Dynamics  0.06
## 373        Racing                       Crystal Dynamics  0.01
## 374  Role-Playing                       Crystal Dynamics  0.03
## 375        Sports                       Crystal Dynamics  0.01
## 376       Shooter                                CTO SpA  0.06
## 377        Sports                                CTO SpA  0.00
## 378     Adventure                          Culture Brain  0.00
## 379          Misc                          Culture Brain  0.00
## 380  Role-Playing                          Culture Brain  0.00
## 381        Sports                          Culture Brain  0.00
## 382        Puzzle                     Culture Publishers  0.01
## 383        Action                             CyberFront  0.00
## 384     Adventure                             CyberFront  0.00
## 385          Misc                             CyberFront  0.00
## 386  Role-Playing                             CyberFront  0.00
## 387      Strategy                             CyberFront  0.00
## 388      Platform                                Cygames  0.00
## 389        Action                            D3Publisher  1.88
## 390     Adventure                            D3Publisher  0.00
## 391      Fighting                            D3Publisher  0.00
## 392          Misc                            D3Publisher  0.18
## 393      Platform                            D3Publisher  0.29
## 394        Puzzle                            D3Publisher  0.14
## 395        Racing                            D3Publisher  0.06
## 396  Role-Playing                            D3Publisher  0.04
## 397       Shooter                            D3Publisher  0.26
## 398    Simulation                            D3Publisher  0.00
## 399        Sports                            D3Publisher  0.03
## 400      Strategy                            D3Publisher  0.00
## 401     Adventure                               Daedalic  0.06
## 402     Adventure                 Daedalic Entertainment  0.01
## 403          Misc                                  Daito  0.00
## 404        Action                               Data Age  0.00
## 405          Misc                Data Design Interactive  0.00
## 406        Racing                Data Design Interactive  0.01
## 407        Sports                Data Design Interactive  0.01
## 408     Adventure                              Data East  0.00
## 409  Role-Playing                              Data East  0.00
## 410     Adventure                         Datam Polystar  0.00
## 411        Action                            Deep Silver  1.59
## 412     Adventure                            Deep Silver  0.17
## 413      Fighting                            Deep Silver  0.02
## 414          Misc                            Deep Silver  0.09
## 415      Platform                            Deep Silver  0.01
## 416        Puzzle                            Deep Silver  0.08
## 417        Racing                            Deep Silver  0.06
## 418  Role-Playing                            Deep Silver  0.38
## 419       Shooter                            Deep Silver  0.06
## 420    Simulation                            Deep Silver  0.17
## 421        Sports                            Deep Silver  0.19
## 422      Strategy                            Deep Silver  0.06
## 423        Action              Destination Software, Inc  0.00
## 424          Misc              Destination Software, Inc  0.00
## 425        Puzzle              Destination Software, Inc  0.00
## 426        Racing              Destination Software, Inc  0.02
## 427  Role-Playing              Destination Software, Inc  0.00
## 428    Simulation              Destination Software, Inc  0.01
## 429        Sports              Destination Software, Inc  0.00
## 430        Action                              Destineer  0.05
## 431     Adventure                              Destineer  0.01
## 432          Misc                              Destineer  0.04
## 433      Platform                              Destineer  0.00
## 434        Puzzle                              Destineer  0.03
## 435        Racing                              Destineer  0.03
## 436       Shooter                              Destineer  0.00
## 437    Simulation                              Destineer  0.05
## 438        Sports                              Destineer  0.05
## 439        Sports                            Detn8 Games  0.02
## 440        Puzzle                       Devolver Digital  0.00
## 441       Shooter                       Devolver Digital  0.00
## 442        Puzzle                        DHM Interactive  0.00
## 443       Shooter                        DHM Interactive  0.00
## 444    Simulation                        DHM Interactive  0.01
## 445        Sports                               DigiCube  0.00
## 446        Action             Disney Interactive Studios  5.57
## 447     Adventure             Disney Interactive Studios  1.63
## 448          Misc             Disney Interactive Studios  3.77
## 449      Platform             Disney Interactive Studios  0.59
## 450        Puzzle             Disney Interactive Studios  0.30
## 451        Racing             Disney Interactive Studios  1.02
## 452  Role-Playing             Disney Interactive Studios  0.12
## 453       Shooter             Disney Interactive Studios  0.02
## 454    Simulation             Disney Interactive Studios  0.08
## 455        Sports             Disney Interactive Studios  0.08
## 456          Misc                                 Dorart  0.00
## 457        Action                        dramatic create  0.00
## 458     Adventure                        dramatic create  0.00
## 459     Adventure               DreamCatcher Interactive  0.01
## 460          Misc               DreamCatcher Interactive  0.02
## 461      Platform               DreamCatcher Interactive  0.01
## 462        Puzzle               DreamCatcher Interactive  0.01
## 463       Shooter               DreamCatcher Interactive  0.00
## 464    Simulation               DreamCatcher Interactive  0.01
## 465        Sports               DreamCatcher Interactive  0.01
## 466      Platform                 DreamWorks Interactive  0.01
## 467        Action                              DSI Games  0.00
## 468     Adventure                              DSI Games  0.00
## 469          Misc                              DSI Games  0.01
## 470    Simulation                              DSI Games  0.00
## 471        Sports                              DSI Games  0.00
## 472        Action                      DTP Entertainment  0.07
## 473     Adventure                      DTP Entertainment  0.05
## 474          Misc                      DTP Entertainment  0.03
## 475        Puzzle                      DTP Entertainment  0.00
## 476  Role-Playing                      DTP Entertainment  0.08
## 477       Shooter                      DTP Entertainment  0.01
## 478    Simulation                      DTP Entertainment  0.02
## 479        Sports                      DTP Entertainment  0.21
## 480      Strategy                      DTP Entertainment  0.02
## 481        Racing               Dusenberry Martin Racing  0.01
## 482       Shooter                               EA Games  0.02
## 483        Puzzle                       Easy Interactive  0.00
## 484      Fighting                                  Ecole  0.00
## 485          Misc                                   Edia  0.00
## 486        Action                      Eidos Interactive  5.41
## 487     Adventure                      Eidos Interactive  0.08
## 488      Fighting                      Eidos Interactive  0.23
## 489          Misc                      Eidos Interactive  0.08
## 490      Platform                      Eidos Interactive  0.09
## 491        Puzzle                      Eidos Interactive  0.07
## 492        Racing                      Eidos Interactive  0.34
## 493  Role-Playing                      Eidos Interactive  0.11
## 494       Shooter                      Eidos Interactive  0.77
## 495    Simulation                      Eidos Interactive  0.10
## 496        Sports                      Eidos Interactive  0.33
## 497      Strategy                      Eidos Interactive  0.41
## 498        Action                        Electronic Arts 14.73
## 499     Adventure                        Electronic Arts  0.44
## 500      Fighting                        Electronic Arts  2.78
## 501          Misc                        Electronic Arts  2.70
## 502      Platform                        Electronic Arts  0.74
## 503        Puzzle                        Electronic Arts  0.46
## 504        Racing                        Electronic Arts 17.90
## 505  Role-Playing                        Electronic Arts  3.42
## 506       Shooter                        Electronic Arts 18.20
## 507    Simulation                        Electronic Arts  8.72
## 508        Sports                        Electronic Arts 59.01
## 509      Strategy                        Electronic Arts  0.67
## 510        Action                 Electronic Arts Victor  0.00
## 511        Sports                 Electronic Arts Victor  0.03
## 512     Adventure                                    Elf  0.00
## 513      Strategy                                    Elf  0.00
## 514    Simulation                                  Elite  0.00
## 515        Action                     Empire Interactive  0.10
## 516     Adventure                     Empire Interactive  0.00
## 517      Fighting                     Empire Interactive  0.01
## 518          Misc                     Empire Interactive  0.06
## 519        Puzzle                     Empire Interactive  0.13
## 520        Racing                     Empire Interactive  0.62
## 521  Role-Playing                     Empire Interactive  0.00
## 522       Shooter                     Empire Interactive  0.17
## 523    Simulation                     Empire Interactive  0.02
## 524        Sports                     Empire Interactive  0.01
## 525        Action                                 Encore  0.00
## 526        Racing                                 Encore  0.00
## 527  Role-Playing                                 Encore  0.00
## 528        Action                       Enix Corporation  0.01
## 529          Misc                       Enix Corporation  0.02
## 530  Role-Playing                       Enix Corporation  0.20
## 531    Simulation                       Enix Corporation  0.04
## 532        Sports                       Enix Corporation  0.00
## 533       Shooter                      Enjoy Gaming ltd.  0.01
## 534     Adventure                             Enterbrain  0.00
## 535      Fighting                             Enterbrain  0.01
## 536  Role-Playing                             Enterbrain  0.06
## 537    Simulation                             Enterbrain  0.00
## 538        Sports                             Enterbrain  0.00
## 539      Strategy              EON Digital Entertainment  0.00
## 540        Action                             Epic Games  0.00
## 541          Misc                                  Epoch  0.00
## 542      Platform                                  Epoch  0.06
## 543  Role-Playing                                  Epoch  0.00
## 544        Sports                                  Epoch  0.00
## 545    Simulation                                 Ertain  0.00
## 546      Fighting                                    ESP  0.00
## 547      Platform                                    ESP  0.00
## 548  Role-Playing                                    ESP  0.00
## 549       Shooter                                    ESP  0.00
## 550    Simulation                                    ESP  0.00
## 551        Action                        Essential Games  0.00
## 552       Shooter                        Essential Games  0.00
## 553      Strategy                        Essential Games  0.00
## 554        Action                        Evolution Games  0.00
## 555      Platform                          Evolved Games  0.00
## 556        Racing                          Evolved Games  0.02
## 557       Shooter                          Evolved Games  0.01
## 558        Action                   Excalibur Publishing  0.02
## 559    Simulation                   Excalibur Publishing  0.02
## 560  Role-Playing                        Experience Inc.  0.00
## 561  Role-Playing            Extreme Entertainment Group  0.00
## 562      Fighting                     Falcom Corporation  0.00
## 563  Role-Playing                     Falcom Corporation  0.03
## 564          Misc                                 Fields  0.00
## 565        Action                       Flashpoint Games  0.00
## 566      Platform                       Flashpoint Games  0.00
## 567  Role-Playing                            Flight-Plan  0.00
## 568      Strategy                            Flight-Plan  0.00
## 569        Action                 Focus Home Interactive  0.00
## 570     Adventure                 Focus Home Interactive  0.28
## 571          Misc                 Focus Home Interactive  0.00
## 572      Platform                 Focus Home Interactive  0.01
## 573        Puzzle                 Focus Home Interactive  0.09
## 574        Racing                 Focus Home Interactive  0.05
## 575  Role-Playing                 Focus Home Interactive  0.18
## 576    Simulation                 Focus Home Interactive  0.38
## 577        Sports                 Focus Home Interactive  0.03
## 578      Strategy                 Focus Home Interactive  0.02
## 579          Misc                       Focus Multimedia  0.00
## 580        Puzzle                       Focus Multimedia  0.00
## 581    Simulation                                 fonfun  0.00
## 582     Adventure                    Foreign Media Games  0.01
## 583          Misc                    Foreign Media Games  0.01
## 584        Puzzle                    Foreign Media Games  0.03
## 585    Simulation                    Foreign Media Games  0.00
## 586     Adventure                              Fortyfive  0.00
## 587        Action                        Fox Interactive  0.03
## 588      Platform                        Fox Interactive  0.25
## 589       Shooter                        Fox Interactive  0.14
## 590        Sports                        Fox Interactive  0.01
## 591        Action                          From Software  0.00
## 592     Adventure                          From Software  0.01
## 593  Role-Playing                          From Software  0.05
## 594       Shooter                          From Software  0.00
## 595    Simulation                          From Software  0.04
## 596     Adventure                                   Fuji  0.00
## 597        Action                           Funbox Media  0.01
## 598     Adventure                           Funbox Media  0.01
## 599          Misc                           Funbox Media  0.04
## 600      Strategy                           Funbox Media  0.00
## 601  Role-Playing                                 Funcom  0.02
## 602        Racing                                FunSoft  0.01
## 603        Puzzle                                 Funsta  0.01
## 604       Shooter                                 Funsta  0.00
## 605        Action                                  FuRyu  0.00
## 606     Adventure                                  FuRyu  0.00
## 607          Misc                                  FuRyu  0.00
## 608  Role-Playing                                  FuRyu  0.01
## 609    Simulation                                  FuRyu  0.00
## 610        Action                      FuRyu Corporation  0.01
## 611      Fighting                                  G.Rev  0.00
## 612       Shooter                                  G.Rev  0.00
## 613       Shooter                                   Gaga  0.00
## 614     Adventure                 Gainax Network Systems  0.01
## 615          Misc                 Gainax Network Systems  0.00
## 616          Misc                                 Gakken  0.00
## 617  Role-Playing                              Game Arts  0.00
## 618        Action                           Game Factory  0.01
## 619     Adventure                           Game Factory  0.05
## 620      Fighting                           Game Factory  0.00
## 621          Misc                           Game Factory  0.02
## 622      Platform                           Game Factory  0.00
## 623        Puzzle                           Game Factory  0.04
## 624        Racing                           Game Factory  0.01
## 625  Role-Playing                           Game Factory  0.00
## 626    Simulation                           Game Factory  0.10
## 627          Misc                              Game Life  0.02
## 628    Simulation                              Game Life  0.01
## 629        Action                             Gamebridge  0.06
## 630        Action                               Gamecock  0.00
## 631          Misc                               Gamecock  0.00
## 632      Strategy                               Gamecock  0.00
## 633          Misc                               Gameloft  0.01
## 634        Action                 GameMill Entertainment  0.02
## 635     Adventure                 GameMill Entertainment  0.01
## 636          Misc                 GameMill Entertainment  0.05
## 637        Sports                 GameMill Entertainment  0.01
## 638          Misc                                GameTek  0.00
## 639          Misc                Gathering of Developers  0.02
## 640        Racing                Gathering of Developers  0.05
## 641       Shooter                Gathering of Developers  0.02
## 642      Strategy                Gathering of Developers  0.03
## 643      Strategy                  General Entertainment  0.01
## 644        Action                                  Genki  0.00
## 645        Racing                                  Genki  0.11
## 646        Sports                                  Genki  0.00
## 647        Puzzle                            Genterprise  0.00
## 648  Role-Playing                             Ghostlight  0.18
## 649    Simulation                             Ghostlight  0.00
## 650        Sports                             Ghostlight  0.02
## 651      Strategy                             Ghostlight  0.02
## 652     Adventure                                   Giga  0.00
## 653        Action                                 Giza10  0.00
## 654      Strategy                                  Glams  0.00
## 655          Misc                 Global A Entertainment  0.00
## 656  Role-Playing                 Global A Entertainment  0.01
## 657        Action                            Global Star  0.00
## 658     Adventure                            Global Star  0.08
## 659      Fighting                            Global Star  0.02
## 660      Platform                            Global Star  0.01
## 661        Racing                            Global Star  0.04
## 662       Shooter                            Global Star  0.02
## 663    Simulation                            Global Star  0.01
## 664        Sports                            Global Star  0.45
## 665      Strategy                            Global Star  0.00
## 666     Adventure                            GN Software  0.00
## 667  Role-Playing                                    GOA  0.00
## 668      Fighting                           Gotham Games  0.11
## 669      Platform                           Gotham Games  0.02
## 670       Shooter                           Gotham Games  0.06
## 671        Sports                           Gotham Games  0.03
## 672          Misc                               Graffiti  0.01
## 673  Role-Playing                               Graffiti  0.00
## 674       Shooter                               Graffiti  0.00
## 675    Simulation                               Graffiti  0.00
## 676      Fighting                       Grand Prix Games  0.00
## 677    Simulation                 Graphsim Entertainment  0.00
## 678        Action                Gremlin Interactive Ltd  0.01
## 679      Platform                Gremlin Interactive Ltd  0.00
## 680        Racing                Gremlin Interactive Ltd  0.01
## 681       Shooter                Gremlin Interactive Ltd  0.00
## 682        Sports                Gremlin Interactive Ltd  0.03
## 683        Sports                  Griffin International  0.01
## 684       Shooter                           Groove Games  0.00
## 685     Adventure                                    GSP  0.16
## 686          Misc                                    GSP  0.16
## 687        Puzzle                                    GSP  0.04
## 688    Simulation                                    GSP  0.01
## 689        Action                         GT Interactive  0.43
## 690      Fighting                         GT Interactive  0.28
## 691          Misc                         GT Interactive  0.06
## 692      Platform                         GT Interactive  0.14
## 693        Racing                         GT Interactive  0.07
## 694       Shooter                         GT Interactive  0.16
## 695    Simulation                         GT Interactive  0.00
## 696        Sports                         GT Interactive  0.00
## 697        Action                                 GungHo  0.00
## 698     Adventure                                 GungHo  0.00
## 699          Misc                                 GungHo  0.00
## 700  Role-Playing                                 GungHo  0.11
## 701     Adventure                                   Gust  0.00
## 702  Role-Playing                                   Gust  0.05
## 703      Strategy                                   Gust  0.00
## 704          Misc                              Hackberry  0.00
## 705        Puzzle                         HAL Laboratory  0.00
## 706        Action                    Hamster Corporation  0.02
## 707    Simulation                    Hamster Corporation  0.00
## 708     Adventure                               Happinet  0.00
## 709          Misc                               Happinet  0.00
## 710    Simulation                               Happinet  0.00
## 711          Misc                 Harmonix Music Systems  0.11
## 712        Action                     Hasbro Interactive  0.20
## 713          Misc                     Hasbro Interactive  0.29
## 714      Platform                     Hasbro Interactive  0.01
## 715        Puzzle                     Hasbro Interactive  0.08
## 716        Racing                     Hasbro Interactive  0.04
## 717       Shooter                     Hasbro Interactive  0.02
## 718  Role-Playing                      Havas Interactive  0.02
## 719     Adventure                           Headup Games  0.00
## 720    Simulation                           Hearty Robin  0.01
## 721    Simulation                                   Hect  0.00
## 722        Action                            Hello Games  0.26
## 723     Adventure                        Her Interactive  0.00
## 724        Action                        Hip Interactive  0.00
## 725       Shooter                        Hip Interactive  0.00
## 726     Adventure                        HMH Interactive  0.02
## 727          Misc                        HMH Interactive  0.00
## 728        Sports           Home Entertainment Suppliers  0.12
## 729          Misc                   Hudson Entertainment  0.04
## 730      Platform                   Hudson Entertainment  0.00
## 731        Puzzle                   Hudson Entertainment  0.00
## 732  Role-Playing                   Hudson Entertainment  0.00
## 733       Shooter                   Hudson Entertainment  0.00
## 734    Simulation                   Hudson Entertainment  0.05
## 735        Sports                   Hudson Entertainment  0.01
## 736        Action                            Hudson Soft  0.00
## 737     Adventure                            Hudson Soft  0.00
## 738      Fighting                            Hudson Soft  0.00
## 739          Misc                            Hudson Soft  0.01
## 740      Platform                            Hudson Soft  0.00
## 741        Puzzle                            Hudson Soft  0.14
## 742  Role-Playing                            Hudson Soft  0.01
## 743       Shooter                            Hudson Soft  0.01
## 744    Simulation                            Hudson Soft  0.01
## 745        Sports                            Hudson Soft  0.14
## 746      Strategy                            Hudson Soft  0.00
## 747     Adventure                    Human Entertainment  0.02
## 748      Fighting                    Human Entertainment  0.02
## 749        Racing                    Human Entertainment  0.03
## 750    Simulation                    Human Entertainment  0.02
## 751        Sports                    Human Entertainment  0.01
## 752      Strategy                    Human Entertainment  0.00
## 753        Action                                  HuneX  0.00
## 754     Adventure                                  HuneX  0.00
## 755  Role-Playing                    Iceberg Interactive  0.00
## 756      Strategy                    Iceberg Interactive  0.00
## 757       Shooter                            id Software  0.00
## 758        Action                           Idea Factory  0.00
## 759     Adventure                           Idea Factory  0.04
## 760          Misc                           Idea Factory  0.00
## 761  Role-Playing                           Idea Factory  0.06
## 762      Strategy                           Idea Factory  0.00
## 763        Action             Idea Factory International  0.09
## 764  Role-Playing             Idea Factory International  0.00
## 765        Action                           IE Institute  0.00
## 766          Misc                           IE Institute  0.00
## 767        Action                 Ignition Entertainment  0.05
## 768     Adventure                 Ignition Entertainment  0.00
## 769      Fighting                 Ignition Entertainment  0.20
## 770          Misc                 Ignition Entertainment  0.04
## 771      Platform                 Ignition Entertainment  0.00
## 772        Puzzle                 Ignition Entertainment  0.18
## 773        Racing                 Ignition Entertainment  0.06
## 774  Role-Playing                 Ignition Entertainment  0.01
## 775       Shooter                 Ignition Entertainment  0.03
## 776        Sports                 Ignition Entertainment  0.01
## 777      Strategy                 Ignition Entertainment  0.01
## 778        Action                     Illusion Softworks  0.09
## 779     Adventure                                 Imadio  0.00
## 780  Role-Playing                            Image Epoch  0.00
## 781     Adventure                        imageepoch Inc.  0.00
## 782  Role-Playing                        imageepoch Inc.  0.00
## 783    Simulation                             Imageworks  0.00
## 784        Action                                 Imagic  0.00
## 785       Shooter                                 Imagic  0.04
## 786     Adventure                              Imagineer  0.00
## 787      Fighting                              Imagineer  0.00
## 788        Racing                              Imagineer  0.00
## 789  Role-Playing                              Imagineer  0.00
## 790    Simulation                              Imagineer  0.00
## 791        Sports                              Imagineer  0.00
## 792          Misc                                   Imax  0.00
## 793     Adventure                            Indie Games  0.00
## 794    Simulation                            Indie Games  0.02
## 795        Action                             Infogrames  0.03
## 796     Adventure                             Infogrames  0.04
## 797      Fighting                             Infogrames  0.02
## 798          Misc                             Infogrames  0.16
## 799      Platform                             Infogrames  0.06
## 800        Racing                             Infogrames  0.25
## 801  Role-Playing                             Infogrames  0.06
## 802       Shooter                             Infogrames  0.19
## 803    Simulation                             Infogrames  0.00
## 804        Sports                             Infogrames  0.04
## 805      Strategy                             Infogrames  0.00
## 806        Action                        Insomniac Games  0.01
## 807     Adventure                           Interchannel  0.00
## 808      Strategy                     Interchannel-Holon  0.00
## 809      Platform                              Intergrow  0.00
## 810        Action                              Interplay  0.11
## 811     Adventure                              Interplay  0.05
## 812      Fighting                              Interplay  0.00
## 813          Misc                              Interplay  0.07
## 814      Platform                              Interplay  0.02
## 815        Racing                              Interplay  0.04
## 816  Role-Playing                              Interplay  0.10
## 817       Shooter                              Interplay  0.05
## 818    Simulation                              Interplay  0.01
## 819        Sports                              Interplay  0.03
## 820       Shooter                  Interplay Productions  0.01
## 821        Sports             Interworks Unlimited, Inc.  0.00
## 822        Action                           Inti Creates  0.00
## 823        Action                  Introversion Software  0.00
## 824  Role-Playing                   inXile Entertainment  0.01
## 825        Action              Irem Software Engineering  0.01
## 826      Fighting              Irem Software Engineering  0.00
## 827          Misc              Irem Software Engineering  0.00
## 828  Role-Playing              Irem Software Engineering  0.00
## 829       Shooter              Irem Software Engineering  0.00
## 830      Strategy              Irem Software Engineering  0.00
## 831        Action                       ITT Family Games  0.00
## 832        Puzzle                              Ivolgamus  0.00
## 833        Puzzle                                   iWin  0.01
## 834      Platform                      Jack of All Games  0.01
## 835       Shooter                      Jack of All Games  0.00
## 836        Action                                 Jaleco  0.01
## 837      Fighting                                 Jaleco  0.00
## 838          Misc                                 Jaleco  0.00
## 839        Puzzle                                 Jaleco  0.01
## 840        Racing                                 Jaleco  0.02
## 841       Shooter                                 Jaleco  0.00
## 842        Sports                                 Jaleco  0.04
## 843      Strategy                                 Jaleco  0.02
## 844          Misc                     Jester Interactive  0.00
## 845        Racing                     Jester Interactive  0.14
## 846    Simulation                                Jorudan  0.02
## 847        Action                     JoWood Productions  0.01
## 848     Adventure                     JoWood Productions  0.02
## 849          Misc                     JoWood Productions  0.00
## 850      Platform                     JoWood Productions  0.00
## 851        Puzzle                     JoWood Productions  0.00
## 852  Role-Playing                     JoWood Productions  0.07
## 853    Simulation                     JoWood Productions  0.01
## 854        Sports                     JoWood Productions  0.02
## 855      Strategy                     JoWood Productions  0.01
## 856    Simulation                            Just Flight  0.01
## 857        Action                                    JVC  0.00
## 858      Fighting                                    JVC  0.00
## 859          Misc                                    JVC  0.00
## 860        Puzzle                                    JVC  0.07
## 861        Racing                                    JVC  0.00
## 862       Shooter                                    JVC  0.00
## 863        Action                         Kadokawa Games  0.00
## 864     Adventure                         Kadokawa Games  0.00
## 865          Misc                         Kadokawa Games  0.00
## 866  Role-Playing                         Kadokawa Games  0.00
## 867    Simulation                         Kadokawa Games  0.00
## 868        Action                        Kadokawa Shoten  0.00
## 869     Adventure                        Kadokawa Shoten  0.00
## 870          Misc                        Kadokawa Shoten  0.00
## 871  Role-Playing                        Kadokawa Shoten  0.07
## 872    Simulation                        Kadokawa Shoten  0.00
## 873        Sports                        Kadokawa Shoten  0.00
## 874      Strategy                        Kadokawa Shoten  0.00
## 875        Action                            Kaga Create  0.00
## 876     Adventure                            Kaga Create  0.00
## 877          Misc                            Kaga Create  0.00
## 878        Action                          Kalypso Media  0.02
## 879     Adventure                          Kalypso Media  0.00
## 880          Misc                          Kalypso Media  0.00
## 881    Simulation                          Kalypso Media  0.10
## 882      Strategy                          Kalypso Media  0.13
## 883          Misc                                  Kamui  0.00
## 884    Simulation                            Kando Games  0.00
## 885          Misc                    Karin Entertainment  0.00
## 886        Action                                  Kemco  0.03
## 887     Adventure                                  Kemco  0.00
## 888          Misc                                  Kemco  0.00
## 889      Platform                                  Kemco  0.01
## 890        Puzzle                                  Kemco  0.00
## 891        Racing                                  Kemco  0.00
## 892  Role-Playing                                  Kemco  0.00
## 893       Shooter                                  Kemco  0.00
## 894        Sports                                  Kemco  0.00
## 895     Adventure                                    KID  0.00
## 896     Adventure                           Kids Station  0.00
## 897  Role-Playing                           King Records  0.00
## 898        Action                    Knowledge Adventure  0.00
## 899     Adventure                    Knowledge Adventure  0.03
## 900          Misc                    Knowledge Adventure  0.03
## 901        Sports                    Knowledge Adventure  0.01
## 902        Action                             Koch Media  0.59
## 903     Adventure                             Koch Media  0.01
## 904        Puzzle                             Koch Media  0.00
## 905  Role-Playing                             Koch Media  0.00
## 906    Simulation                             Koch Media  0.19
## 907        Sports                             Koch Media  0.03
## 908      Strategy                             Koch Media  0.00
## 909      Fighting               Kokopeli Digital Studios  0.00
## 910        Action           Konami Digital Entertainment  8.62
## 911     Adventure           Konami Digital Entertainment  0.45
## 912      Fighting           Konami Digital Entertainment  0.09
## 913          Misc           Konami Digital Entertainment  1.21
## 914      Platform           Konami Digital Entertainment  0.73
## 915        Puzzle           Konami Digital Entertainment  0.06
## 916        Racing           Konami Digital Entertainment  0.08
## 917  Role-Playing           Konami Digital Entertainment  0.49
## 918       Shooter           Konami Digital Entertainment  0.65
## 919    Simulation           Konami Digital Entertainment  2.79
## 920        Sports           Konami Digital Entertainment 14.50
## 921      Strategy           Konami Digital Entertainment  0.64
## 922      Strategy                              Kool Kizz  0.00
## 923          Misc                                    KSS  0.00
## 924        Action                                 Laguna  0.00
## 925      Platform                                 Laguna  0.01
## 926  Role-Playing                                 Laguna  0.00
## 927     Adventure                     Legacy Interactive  0.00
## 928        Action                             LEGO Media  0.00
## 929     Adventure                             LEGO Media  0.01
## 930      Platform                             LEGO Media  0.00
## 931        Racing                             LEGO Media  0.03
## 932      Strategy                             LEGO Media  0.01
## 933        Action                                Level 5  0.00
## 934     Adventure                                Level 5  0.00
## 935          Misc                                Level 5  0.00
## 936        Puzzle                                Level 5  0.04
## 937  Role-Playing                                Level 5  0.00
## 938        Sports                                Level 5  0.00
## 939      Strategy                                Level 5  0.00
## 940       Shooter                  Lexicon Entertainment  0.00
## 941    Simulation                  Lexicon Entertainment  0.00
## 942        Action                            Licensed 4U  0.00
## 943        Puzzle                            Licensed 4U  0.00
## 944    Simulation                 Lighthouse Interactive  0.00
## 945        Puzzle                           Liquid Games  0.00
## 946        Racing                           Liquid Games  0.00
## 947        Action                           Little Orbit  0.07
## 948     Adventure                           Little Orbit  0.09
## 949    Simulation                           Little Orbit  0.00
## 950  Role-Playing                                  Locus  0.00
## 951        Action                              LSP Games  0.00
## 952      Platform                              LSP Games  0.01
## 953       Shooter                              LSP Games  0.00
## 954        Action                              LucasArts  8.01
## 955     Adventure                              LucasArts  0.15
## 956        Racing                              LucasArts  0.06
## 957  Role-Playing                              LucasArts  0.03
## 958       Shooter                              LucasArts  1.91
## 959    Simulation                              LucasArts  0.20
## 960      Strategy                              LucasArts  0.14
## 961          Misc                               Mad Catz  0.01
## 962    Simulation                               Mad Catz  0.01
## 963        Sports                               Mad Catz  0.00
## 964        Sports                        Magical Company  0.03
## 965          Misc                                  Magix  0.04
## 966        Action                  Majesco Entertainment  0.14
## 967     Adventure                  Majesco Entertainment  0.02
## 968      Fighting                  Majesco Entertainment  0.02
## 969          Misc                  Majesco Entertainment  0.14
## 970      Platform                  Majesco Entertainment  0.03
## 971        Puzzle                  Majesco Entertainment  0.07
## 972        Racing                  Majesco Entertainment  0.03
## 973  Role-Playing                  Majesco Entertainment  0.00
## 974       Shooter                  Majesco Entertainment  0.04
## 975    Simulation                  Majesco Entertainment  0.12
## 976        Sports                  Majesco Entertainment  0.34
## 977      Strategy                  Majesco Entertainment  0.01
## 978     Adventure                            Mamba Games  0.01
## 979      Strategy                            Mamba Games  0.00
## 980        Action                   Marvel Entertainment  0.00
## 981        Action                Marvelous Entertainment  0.06
## 982      Fighting                Marvelous Entertainment  0.05
## 983          Misc                Marvelous Entertainment  0.00
## 984  Role-Playing                Marvelous Entertainment  0.03
## 985    Simulation                Marvelous Entertainment  0.01
## 986     Adventure                        Marvelous Games  0.00
## 987        Action                  Marvelous Interactive  0.05
## 988     Adventure                  Marvelous Interactive  0.05
## 989      Fighting                  Marvelous Interactive  0.00
## 990          Misc                  Marvelous Interactive  0.00
## 991  Role-Playing                  Marvelous Interactive  0.06
## 992    Simulation                  Marvelous Interactive  0.01
## 993        Sports                  Marvelous Interactive  0.01
## 994    Simulation                      Masque Publishing  0.00
## 995     Adventure                           Mastertronic  0.00
## 996          Misc                           Mastertronic  0.00
## 997        Puzzle                           Mastertronic  0.03
## 998        Racing                           Mastertronic  0.00
## 999       Shooter                           Mastertronic  0.02
## 1000       Sports                           Mastertronic  0.00
## 1001     Strategy                           Mastertronic  0.08
## 1002    Adventure                                Mastiff  0.00
## 1003         Misc                                Mastiff  0.01
## 1004      Shooter                                Mastiff  0.03
## 1005   Simulation                                Mastiff  0.00
## 1006       Sports                                Mastiff  0.10
## 1007       Action                     Mattel Interactive  0.01
## 1008    Adventure                     Mattel Interactive  0.02
## 1009       Puzzle                     Mattel Interactive  0.01
## 1010       Racing                     Mattel Interactive  0.00
## 1011      Shooter                     Mattel Interactive  0.00
## 1012       Sports                     Mattel Interactive  0.01
## 1013 Role-Playing                               Max Five  0.00
## 1014       Action                   Maximum Family Games  0.00
## 1015   Simulation                                  Maxis  0.19
## 1016    Adventure                      MC2 Entertainment  0.00
## 1017      Shooter                      MC2 Entertainment  0.00
## 1018         Misc                    Media Entertainment  0.00
## 1019    Adventure                          Media Factory  0.00
## 1020       Sports                          Media Factory  0.00
## 1021       Racing                            Media Rings  0.00
## 1022 Role-Playing                            Media Rings  0.00
## 1023       Sports                            Media Rings  0.00
## 1024    Adventure                            Media Works  0.00
## 1025         Misc                            Media Works  0.00
## 1026     Strategy                            Media Works  0.00
## 1027       Puzzle                             MediaQuest  0.00
## 1028       Action                           Men-A-Vision  0.01
## 1029         Misc                     Mentor Interactive  0.07
## 1030 Role-Playing                          Mercury Games  0.01
## 1031   Simulation                          Mercury Games  0.01
## 1032    Adventure                            Merscom LLC  0.03
## 1033     Fighting                               Metro 3D  0.00
## 1034     Platform                               Metro 3D  0.00
## 1035       Racing                               Metro 3D  0.01
## 1036 Role-Playing                               Metro 3D  0.02
## 1037      Shooter                               Metro 3D  0.02
## 1038   Simulation                               Metro 3D  0.10
## 1039 Role-Playing                            Michaelsoft  0.00
## 1040       Puzzle                            Micro Cabin  0.00
## 1041 Role-Playing                            Micro Cabin  0.00
## 1042   Simulation                            Micro Cabin  0.00
## 1043       Action                               Microids  0.00
## 1044    Adventure                               Microids  0.01
## 1045       Sports                               Microids  0.00
## 1046         Misc                             Microprose  0.04
## 1047   Simulation                             Microprose  0.02
## 1048     Strategy                             Microprose  0.10
## 1049       Action                 Microsoft Game Studios  0.81
## 1050    Adventure                 Microsoft Game Studios  0.08
## 1051     Fighting                 Microsoft Game Studios  0.09
## 1052         Misc                 Microsoft Game Studios  3.71
## 1053     Platform                 Microsoft Game Studios  0.12
## 1054       Puzzle                 Microsoft Game Studios  0.00
## 1055       Racing                 Microsoft Game Studios  2.72
## 1056 Role-Playing                 Microsoft Game Studios  1.64
## 1057      Shooter                 Microsoft Game Studios  7.12
## 1058   Simulation                 Microsoft Game Studios  0.81
## 1059       Sports                 Microsoft Game Studios  0.95
## 1060     Strategy                 Microsoft Game Studios  0.51
## 1061       Action        Midas Interactive Entertainment  0.00
## 1062     Fighting        Midas Interactive Entertainment  0.00
## 1063         Misc        Midas Interactive Entertainment  0.00
## 1064     Platform        Midas Interactive Entertainment  0.01
## 1065       Puzzle        Midas Interactive Entertainment  0.00
## 1066       Racing        Midas Interactive Entertainment  0.08
## 1067 Role-Playing        Midas Interactive Entertainment  0.00
## 1068      Shooter        Midas Interactive Entertainment  0.07
## 1069   Simulation        Midas Interactive Entertainment  0.00
## 1070       Sports        Midas Interactive Entertainment  0.10
## 1071     Strategy        Midas Interactive Entertainment  0.00
## 1072       Action                           Midway Games  0.57
## 1073    Adventure                           Midway Games  0.02
## 1074     Fighting                           Midway Games  1.46
## 1075         Misc                           Midway Games  0.82
## 1076     Platform                           Midway Games  0.15
## 1077       Puzzle                           Midway Games  0.36
## 1078       Racing                           Midway Games  0.51
## 1079 Role-Playing                           Midway Games  0.11
## 1080      Shooter                           Midway Games  0.57
## 1081       Sports                           Midway Games  1.17
## 1082      Shooter                              Milestone  0.00
## 1083       Racing                        Milestone S.r.l  0.01
## 1084       Racing                       Milestone S.r.l.  0.16
## 1085       Action                         Minato Station  0.00
## 1086    Adventure                         Minato Station  0.00
## 1087       Action                              Mindscape  0.03
## 1088    Adventure                              Mindscape  0.00
## 1089         Misc                              Mindscape  0.44
## 1090       Puzzle                              Mindscape  0.03
## 1091       Racing                              Mindscape  0.00
## 1092 Role-Playing                              Mindscape  0.00
## 1093       Sports                              Mindscape  0.01
## 1094     Strategy                              Mindscape  0.04
## 1095         Misc                          Mirai Shounen  0.00
## 1096       Sports                                 Misawa  0.00
## 1097      Shooter                                 Mitsui  0.00
## 1098       Action                              mixi, Inc  0.00
## 1099       Sports                                MLB.com  0.00
## 1100    Adventure                                 Mojang  0.36
## 1101   Simulation               Monte Christo Multimedia  0.01
## 1102      Shooter                                   Moss  0.01
## 1103       Action                                    MTO  0.00
## 1104       Racing                                    MTO  0.01
## 1105   Simulation                                    MTO  0.00
## 1106         Misc                              MTV Games  2.03
## 1107         Misc                   Mud Duck Productions  0.05
## 1108       Sports                   Mud Duck Productions  0.01
## 1109       Puzzle                            Mumbo Jumbo  0.04
## 1110       Sports                            Mumbo Jumbo  0.00
## 1111     Strategy                            Mumbo Jumbo  0.00
## 1112       Action                                  Mycom  0.00
## 1113         Misc                           Myelin Media  0.01
## 1114       Action                               Mystique  0.01
## 1115       Action                                    N/A  0.03
## 1116    Adventure                                    N/A  0.00
## 1117     Fighting                                    N/A  0.44
## 1118         Misc                                    N/A  0.10
## 1119     Platform                                    N/A  0.00
## 1120       Puzzle                                    N/A  0.00
## 1121       Racing                                    N/A  0.00
## 1122 Role-Playing                                    N/A  0.00
## 1123      Shooter                                    N/A  0.00
## 1124   Simulation                                    N/A  0.00
## 1125       Sports                                    N/A  0.10
## 1126     Strategy                                    N/A  0.00
## 1127       Action                     Namco Bandai Games  1.82
## 1128    Adventure                     Namco Bandai Games  0.19
## 1129     Fighting                     Namco Bandai Games  5.25
## 1130         Misc                     Namco Bandai Games  1.10
## 1131     Platform                     Namco Bandai Games  0.12
## 1132       Puzzle                     Namco Bandai Games  0.22
## 1133       Racing                     Namco Bandai Games  0.69
## 1134 Role-Playing                     Namco Bandai Games  3.49
## 1135      Shooter                     Namco Bandai Games  0.65
## 1136   Simulation                     Namco Bandai Games  0.46
## 1137       Sports                     Namco Bandai Games  0.49
## 1138     Strategy                     Namco Bandai Games  0.21
## 1139    Adventure                                Natsume  0.01
## 1140     Fighting                                Natsume  0.00
## 1141         Misc                                Natsume  0.00
## 1142     Platform                                Natsume  0.00
## 1143       Puzzle                                Natsume  0.01
## 1144 Role-Playing                                Natsume  0.00
## 1145   Simulation                                Natsume  0.04
## 1146       Sports                                Natsume  0.13
## 1147     Strategy                                Natsume  0.01
## 1148       Sports                           Navarre Corp  0.00
## 1149         Misc                             Naxat Soft  0.00
## 1150     Strategy                                    NCS  0.00
## 1151       Action                                 NCSoft  0.29
## 1152 Role-Playing                                 NCSoft  0.04
## 1153      Shooter                        NDA Productions  0.00
## 1154    Adventure                                    NEC  0.00
## 1155 Role-Playing                                    NEC  0.00
## 1156    Adventure                       NEC Interchannel  0.00
## 1157 Role-Playing                       NEC Interchannel  0.00
## 1158   Simulation                       NEC Interchannel  0.00
## 1159     Strategy                       NEC Interchannel  0.00
## 1160       Action                     Neko Entertainment  0.00
## 1161    Adventure                     Neko Entertainment  0.00
## 1162         Misc                     Neko Entertainment  0.00
## 1163       Puzzle                     Neko Entertainment  0.00
## 1164      Shooter                     Neko Entertainment  0.02
## 1165       Action                                NetRevo  0.00
## 1166    Adventure                                NetRevo  0.00
## 1167     Fighting                                    New  0.02
## 1168     Strategy                    New World Computing  0.00
## 1169       Action                               NewKidCo  0.00
## 1170    Adventure                               NewKidCo  0.00
## 1171     Fighting                               NewKidCo  0.00
## 1172         Misc                               NewKidCo  0.04
## 1173     Platform                               NewKidCo  0.00
## 1174 Role-Playing                                  Nexon  0.00
## 1175         Misc                             Nichibutsu  0.00
## 1176       Action               Nihon Falcom Corporation  0.04
## 1177 Role-Playing               Nihon Falcom Corporation  0.00
## 1178       Action                               Nintendo  6.48
## 1179    Adventure                               Nintendo  1.28
## 1180     Fighting                               Nintendo  2.65
## 1181         Misc                               Nintendo 11.78
## 1182     Platform                               Nintendo 19.47
## 1183       Puzzle                               Nintendo  5.53
## 1184       Racing                               Nintendo  8.81
## 1185 Role-Playing                               Nintendo 13.07
## 1186      Shooter                               Nintendo  2.39
## 1187   Simulation                               Nintendo  5.86
## 1188       Sports                               Nintendo 17.18
## 1189     Strategy                               Nintendo  0.83
## 1190         Misc                           Nippon Amuse  0.00
## 1191       Action                        Nippon Columbia  0.00
## 1192         Misc                        Nippon Columbia  0.00
## 1193       Action                   Nippon Ichi Software  0.14
## 1194    Adventure                   Nippon Ichi Software  0.01
## 1195     Fighting                   Nippon Ichi Software  0.07
## 1196         Misc                   Nippon Ichi Software  0.19
## 1197     Platform                   Nippon Ichi Software  0.02
## 1198 Role-Playing                   Nippon Ichi Software  0.92
## 1199      Shooter                   Nippon Ichi Software  0.00
## 1200     Strategy                   Nippon Ichi Software  0.00
## 1201         Misc                         Nippon Telenet  0.00
## 1202    Adventure                              Nitroplus  0.00
## 1203     Fighting                              Nitroplus  0.00
## 1204       Action                                Nobilis  0.00
## 1205    Adventure                                Nobilis  0.00
## 1206         Misc                                Nobilis  0.03
## 1207       Racing                                Nobilis  0.00
## 1208 Role-Playing                                Nobilis  0.01
## 1209   Simulation                                Nobilis  0.10
## 1210       Action                            Nordcurrent  0.00
## 1211         Misc                            Nordcurrent  0.02
## 1212       Puzzle                            Nordcurrent  0.02
## 1213       Sports                            Nordcurrent  0.01
## 1214       Action                           Nordic Games  0.10
## 1215    Adventure                           Nordic Games  0.01
## 1216         Misc                           Nordic Games  0.35
## 1217       Racing                           Nordic Games  0.02
## 1218 Role-Playing                           Nordic Games  0.01
## 1219      Shooter                           Nordic Games  0.01
## 1220       Sports                           Nordic Games  0.01
## 1221     Strategy                           Nordic Games  0.00
## 1222      Shooter                              NovaLogic  0.07
## 1223     Platform                            Number None  0.01
## 1224    Adventure                                O-Games  0.01
## 1225         Misc                                O-Games  0.03
## 1226       Puzzle                                O-Games  0.03
## 1227       Racing                                O-Games  0.00
## 1228      Shooter                                O-Games  0.00
## 1229       Sports                                O-Games  0.05
## 1230       Puzzle                       O3 Entertainment  0.00
## 1231      Shooter                       O3 Entertainment  0.00
## 1232   Simulation                       O3 Entertainment  0.01
## 1233       Action                                  Ocean  0.05
## 1234     Fighting                                  Ocean  0.00
## 1235         Misc                                  Ocean  0.00
## 1236     Platform                                  Ocean  0.05
## 1237       Puzzle                                  Ocean  0.00
## 1238       Racing                                  Ocean  0.00
## 1239      Shooter                                  Ocean  0.01
## 1240       Sports                                  Ocean  0.00
## 1241   Simulation                          Office Create  0.00
## 1242 Role-Playing                              On Demand  0.01
## 1243   Simulation                              Ongakukan  0.00
## 1244   Simulation                         Origin Systems  0.01
## 1245    Adventure                                Otomate  0.00
## 1246       Action                     Oxygen Interactive  0.01
## 1247    Adventure                     Oxygen Interactive  0.02
## 1248         Misc                     Oxygen Interactive  0.30
## 1249     Platform                     Oxygen Interactive  0.00
## 1250       Puzzle                     Oxygen Interactive  0.00
## 1251       Sports                     Oxygen Interactive  0.03
## 1252         Misc                               P2 Games  0.04
## 1253       Puzzle                               P2 Games  0.00
## 1254         Misc            Pacific Century Cyber Works  0.03
## 1255    Adventure                          Pack-In-Video  0.00
## 1256   Simulation                          Pack-In-Video  0.00
## 1257   Simulation                           Pack In Soft  0.06
## 1258       Action                                 Palcom  0.04
## 1259 Role-Playing                       Panther Software  0.01
## 1260         Misc                                   Paon  0.00
## 1261         Misc                       Paon Corporation  0.00
## 1262   Simulation                    Paradox Development  0.00
## 1263         Misc                    Paradox Interactive  0.00
## 1264 Role-Playing                    Paradox Interactive  0.01
## 1265   Simulation                    Paradox Interactive  0.03
## 1266     Strategy                    Paradox Interactive  0.04
## 1267       Action                           Parker Bros.  0.03
## 1268     Platform                           Parker Bros.  0.01
## 1269       Puzzle                           Parker Bros.  0.01
## 1270       Puzzle          Performance Designed Products  0.02
## 1271   Simulation                             Phantagram  0.00
## 1272      Shooter                            Phantom EFX  0.01
## 1273     Platform                             Phenomedia  0.00
## 1274       Puzzle                             Phenomedia  0.00
## 1275       Racing                             Phenomedia  0.00
## 1276      Shooter                          Phoenix Games  0.00
## 1277    Adventure                                 Piacci  0.00
## 1278         Misc                               Pinnacle  0.09
## 1279       Puzzle                               Pinnacle  0.00
## 1280       Sports                               Pinnacle  0.00
## 1281     Strategy                               Pinnacle  0.01
## 1282    Adventure                            Pioneer LDC  0.01
## 1283       Racing                            Pioneer LDC  0.03
## 1284         Misc                                Play It  0.21
## 1285     Platform                                Play It  0.00
## 1286       Racing                                Play It  0.20
## 1287      Shooter                                Play It  0.06
## 1288       Sports                                Play It  0.08
## 1289       Action                 Playlogic Game Factory  0.07
## 1290         Misc                 Playlogic Game Factory  0.01
## 1291       Puzzle                 Playlogic Game Factory  0.00
## 1292      Shooter                 Playlogic Game Factory  0.03
## 1293       Sports                 Playlogic Game Factory  0.00
## 1294     Strategy                 Playlogic Game Factory  0.00
## 1295       Racing                              Playmates  0.02
## 1296     Fighting                               Playmore  0.00
## 1297       Action                                  PlayV  0.02
## 1298         Misc                                  PlayV  0.00
## 1299       Puzzle                                  PlayV  0.03
## 1300         Misc                                 Plenty  0.00
## 1301         Misc                             PM Studios  0.01
## 1302         Misc                            Pony Canyon  0.00
## 1303    Adventure                           PopCap Games  0.02
## 1304         Misc                           PopCap Games  0.00
## 1305       Puzzle                           PopCap Games  0.06
## 1306     Strategy                           PopCap Games  0.04
## 1307       Action                         Popcorn Arcade  0.01
## 1308     Platform                         Popcorn Arcade  0.00
## 1309       Puzzle                         Popcorn Arcade  0.00
## 1310       Racing                         Popcorn Arcade  0.00
## 1311      Shooter                         Popcorn Arcade  0.00
## 1312     Strategy                        PopTop Software  0.01
## 1313       Puzzle                                    Pow  0.00
## 1314       Action                                  PQube  0.06
## 1315    Adventure                                  PQube  0.06
## 1316     Fighting                                  PQube  0.25
## 1317         Misc                                  PQube  0.01
## 1318       Racing                                  PQube  0.01
## 1319      Shooter                                  PQube  0.00
## 1320   Simulation                                  PQube  0.00
## 1321       Sports                                  PQube  0.01
## 1322    Adventure                          Princess Soft  0.00
## 1323       Action                              Prototype  0.00
## 1324    Adventure                              Prototype  0.00
## 1325       Action                              Psygnosis  0.08
## 1326    Adventure                              Psygnosis  0.02
## 1327         Misc                              Psygnosis  0.00
## 1328     Platform                              Psygnosis  0.00
## 1329       Puzzle                              Psygnosis  0.00
## 1330       Racing                              Psygnosis  0.27
## 1331 Role-Playing                              Psygnosis  0.01
## 1332      Shooter                              Psygnosis  0.01
## 1333   Simulation                              Psygnosis  0.06
## 1334       Sports                              Psygnosis  0.00
## 1335         Misc                                 Quelle  0.01
## 1336 Role-Playing                                  Quest  0.00
## 1337       Action                               Quinrose  0.00
## 1338    Adventure                               Quinrose  0.00
## 1339    Adventure                                Quintet  0.00
## 1340     Fighting                          Rage Software  0.12
## 1341       Puzzle                          Rage Software  0.00
## 1342       Racing                          Rage Software  0.01
## 1343      Shooter                          Rage Software  0.00
## 1344     Platform                             Rain Games  0.00
## 1345       Racing                              Rebellion  0.01
## 1346      Shooter                 Rebellion Developments  0.04
## 1347    Adventure                      RED Entertainment  0.00
## 1348    Adventure                                Red Orb  0.10
## 1349       Action                Red Storm Entertainment  0.00
## 1350      Shooter                Red Storm Entertainment  0.09
## 1351         Misc                              RedOctane  0.91
## 1352    Adventure                     Reef Entertainment  0.01
## 1353      Shooter                     Reef Entertainment  0.02
## 1354       Sports                     Reef Entertainment  0.00
## 1355       Sports                           responDESIGN  0.01
## 1356    Adventure                     Revolution (Japan)  0.00
## 1357    Adventure                    Revolution Software  0.01
## 1358       Action                      Rising Star Games  0.14
## 1359    Adventure                      Rising Star Games  0.01
## 1360     Fighting                      Rising Star Games  0.07
## 1361         Misc                      Rising Star Games  0.18
## 1362     Platform                      Rising Star Games  0.00
## 1363       Puzzle                      Rising Star Games  0.08
## 1364 Role-Playing                      Rising Star Games  0.39
## 1365      Shooter                      Rising Star Games  0.03
## 1366   Simulation                      Rising Star Games  0.27
## 1367       Sports                      Rising Star Games  0.01
## 1368     Strategy                      Rising Star Games  0.04
## 1369   Simulation                          Riverhillsoft  0.00
## 1370       Action                         Rocket Company  0.00
## 1371    Adventure                         Rocket Company  0.00
## 1372         Misc                         Rocket Company  0.00
## 1373 Role-Playing                         Rocket Company  0.00
## 1374   Simulation                         Rocket Company  0.00
## 1375       Sports                         Rocket Company  0.00
## 1376       Action                             Rondomedia  0.05
## 1377    Adventure                             Rondomedia  0.01
## 1378         Misc                             Rondomedia  0.00
## 1379       Puzzle                             Rondomedia  0.10
## 1380       Racing                             Rondomedia  0.01
## 1381   Simulation                             Rondomedia  0.09
## 1382       Racing                                    RTL  0.00
## 1383   Simulation                                    RTL  0.01
## 1384       Sports                                    RTL  0.19
## 1385       Action                                 Russel  0.00
## 1386    Adventure                                 Russel  0.00
## 1387       Sports                                 Russel  0.00
## 1388    Adventure                      Sammy Corporation  0.01
## 1389     Fighting                      Sammy Corporation  0.04
## 1390         Misc                      Sammy Corporation  0.00
## 1391   Simulation                      Sammy Corporation  0.05
## 1392       Action                                 Saurus  0.00
## 1393       Action                        Scholastic Inc.  0.02
## 1394    Adventure                        Scholastic Inc.  0.08
## 1395         Misc                        Scholastic Inc.  0.00
## 1396       Puzzle                        Scholastic Inc.  0.08
## 1397       Action                                    SCi  0.03
## 1398     Platform                                    SCi  0.01
## 1399       Racing                                    SCi  0.01
## 1400      Shooter                                    SCi  0.21
## 1401       Action                             Screenlife  0.00
## 1402     Fighting                             Screenlife  0.00
## 1403 Role-Playing                             Screenlife  0.03
## 1404       Action                           SCS Software  0.02
## 1405       Puzzle                                  Sears  0.00
## 1406       Action                                   Sega  3.23
## 1407    Adventure                                   Sega  0.23
## 1408     Fighting                                   Sega  1.02
## 1409         Misc                                   Sega  1.43
## 1410     Platform                                   Sega  5.17
## 1411       Puzzle                                   Sega  0.05
## 1412       Racing                                   Sega  2.39
## 1413 Role-Playing                                   Sega  0.85
## 1414      Shooter                                   Sega  1.57
## 1415   Simulation                                   Sega  0.12
## 1416       Sports                                   Sega  7.84
## 1417     Strategy                                   Sega  0.62
## 1418         Misc                       Seta Corporation  0.03
## 1419 Role-Playing                       Seta Corporation  0.01
## 1420       Sports                       Seta Corporation  0.00
## 1421       Action                          Seventh Chord  0.00
## 1422    Adventure                             Shogakukan  0.00
## 1423         Misc                             Shogakukan  0.00
## 1424       Sports           Simon & Schuster Interactive  0.00
## 1425       Racing                   Slightly Mad Studios  0.18
## 1426     Strategy                    Slitherine Software  0.03
## 1427     Fighting                                    SNK  0.04
## 1428    Adventure                           SNK Playmore  0.00
## 1429     Fighting                           SNK Playmore  0.02
## 1430 Role-Playing                           SNK Playmore  0.00
## 1431      Shooter                           SNK Playmore  0.01
## 1432    Adventure                                Societa  0.00
## 1433       Action                               Sold Out  0.00
## 1434         Misc                                 Sonnet  0.00
## 1435       Action            Sony Computer Entertainment 14.58
## 1436    Adventure            Sony Computer Entertainment  1.85
## 1437     Fighting            Sony Computer Entertainment  2.08
## 1438         Misc            Sony Computer Entertainment 15.92
## 1439     Platform            Sony Computer Entertainment 10.50
## 1440       Puzzle            Sony Computer Entertainment  0.34
## 1441       Racing            Sony Computer Entertainment 18.82
## 1442 Role-Playing            Sony Computer Entertainment  2.84
## 1443      Shooter            Sony Computer Entertainment  6.86
## 1444   Simulation            Sony Computer Entertainment  0.75
## 1445       Sports            Sony Computer Entertainment  5.63
## 1446     Strategy            Sony Computer Entertainment  0.28
## 1447       Sports    Sony Computer Entertainment America  0.13
## 1448       Action     Sony Computer Entertainment Europe  1.01
## 1449    Adventure     Sony Computer Entertainment Europe  0.50
## 1450         Misc     Sony Computer Entertainment Europe  1.02
## 1451     Platform     Sony Computer Entertainment Europe  0.32
## 1452      Shooter     Sony Computer Entertainment Europe  0.22
## 1453   Simulation     Sony Computer Entertainment Europe  0.35
## 1454         Misc               Sony Music Entertainment  0.00
## 1455 Role-Playing              Sony Online Entertainment  0.39
## 1456     Strategy              Sony Online Entertainment  0.01
## 1457       Action                        SouthPeak Games  0.06
## 1458    Adventure                        SouthPeak Games  0.02
## 1459     Fighting                        SouthPeak Games  0.01
## 1460         Misc                        SouthPeak Games  0.01
## 1461       Puzzle                        SouthPeak Games  0.00
## 1462       Racing                        SouthPeak Games  0.20
## 1463 Role-Playing                        SouthPeak Games  0.14
## 1464      Shooter                        SouthPeak Games  0.08
## 1465   Simulation                        SouthPeak Games  0.03
## 1466       Sports                        SouthPeak Games  0.00
## 1467     Strategy                        SouthPeak Games  0.01
## 1468       Action                                  Spike  0.01
## 1469    Adventure                                  Spike  0.00
## 1470     Fighting                                  Spike  0.00
## 1471         Misc                                  Spike  0.00
## 1472 Role-Playing                                  Spike  0.02
## 1473   Simulation                                  Spike  0.00
## 1474       Sports                                  Spike  0.34
## 1475       Sports                                    SPS  0.01
## 1476       Racing                                 Square  0.01
## 1477 Role-Playing                                 Square  0.22
## 1478 Role-Playing                              Square EA  0.05
## 1479       Action                            Square Enix  3.87
## 1480    Adventure                            Square Enix  0.25
## 1481     Fighting                            Square Enix  0.40
## 1482         Misc                            Square Enix  0.04
## 1483       Puzzle                            Square Enix  0.05
## 1484 Role-Playing                            Square Enix  8.26
## 1485      Shooter                            Square Enix  0.85
## 1486   Simulation                            Square Enix  0.05
## 1487     Strategy                            Square Enix  0.12
## 1488     Fighting                             SquareSoft  0.08
## 1489       Racing                             SquareSoft  0.03
## 1490 Role-Playing                             SquareSoft  1.32
## 1491      Shooter                             SquareSoft  0.02
## 1492   Simulation                             SquareSoft  0.02
## 1493       Sports                             SquareSoft  0.00
## 1494     Strategy                             SquareSoft  0.07
## 1495     Strategy                                    SSI  0.01
## 1496       Action                        Stainless Games  0.00
## 1497       Action                               Starfish  0.00
## 1498 Role-Playing                               Starfish  0.00
## 1499      Shooter                               Starfish  0.00
## 1500       Sports                               Starfish  0.03
## 1501       Action                         Starpath Corp.  0.00
## 1502 Role-Playing                                  Sting  0.03
## 1503       Action                       Storm City Games  0.00
## 1504    Adventure                       Storm City Games  0.00
## 1505         Misc                       Storm City Games  0.00
## 1506     Platform                       Storm City Games  0.00
## 1507       Puzzle                       Storm City Games  0.07
## 1508       Racing                       Storm City Games  0.01
## 1509       Sports                       Storm City Games  0.00
## 1510     Strategy                       Storm City Games  0.00
## 1511     Strategy                         Strategy First  0.00
## 1512       Action                                Success  0.01
## 1513    Adventure                                Success  0.00
## 1514         Misc                                Success  0.00
## 1515       Puzzle                                Success  0.00
## 1516 Role-Playing                                Success  0.00
## 1517      Shooter                                Success  0.07
## 1518   Simulation                                Success  0.00
## 1519     Strategy                                Success  0.01
## 1520       Sports                             Summitsoft  0.00
## 1521     Strategy                             Sunflowers  0.01
## 1522       Action                    Sunrise Interactive  0.00
## 1523     Fighting                    Sunrise Interactive  0.00
## 1524       Racing                    Sunrise Interactive  0.00
## 1525 Role-Playing                    Sunrise Interactive  0.00
## 1526    Adventure                                Sunsoft  0.01
## 1527     Fighting                                Sunsoft  0.00
## 1528         Misc                                Sunsoft  0.00
## 1529     Platform                                Sunsoft  0.00
## 1530       Puzzle                                Sunsoft  0.00
## 1531 Role-Playing                                Sunsoft  0.01
## 1532      Shooter                                Sunsoft  0.02
## 1533    Adventure                                 Sweets  0.00
## 1534       Action                   Swing! Entertainment  0.00
## 1535    Adventure                   Swing! Entertainment  0.01
## 1536     Platform                   Swing! Entertainment  0.00
## 1537      Shooter                   Swing! Entertainment  0.02
## 1538   Simulation                   Swing! Entertainment  0.01
## 1539         Misc                                 Syscom  0.01
## 1540       Racing                                 Syscom  0.01
## 1541     Platform                               System 3  0.03
## 1542         Misc               System 3 Arcade Software  0.06
## 1543     Platform               System 3 Arcade Software  0.03
## 1544       Puzzle               System 3 Arcade Software  0.00
## 1545       Racing               System 3 Arcade Software  0.11
## 1546       Sports               System 3 Arcade Software  0.00
## 1547    Adventure                            System Soft  0.00
## 1548     Strategy                            System Soft  0.00
## 1549       Sports                               T&E Soft  0.00
## 1550       Action                                  Taito  0.00
## 1551    Adventure                                  Taito  0.00
## 1552     Fighting                                  Taito  0.00
## 1553         Misc                                  Taito  0.00
## 1554 Role-Playing                                  Taito  0.01
## 1555      Shooter                                  Taito  0.01
## 1556   Simulation                                  Taito  0.17
## 1557       Action                                 Takara  0.00
## 1558     Fighting                                 Takara  0.00
## 1559         Misc                                 Takara  0.04
## 1560       Racing                                 Takara  0.04
## 1561 Role-Playing                                 Takara  0.00
## 1562       Action                            Takara Tomy  0.01
## 1563     Fighting                            Takara Tomy  0.02
## 1564         Misc                            Takara Tomy  0.00
## 1565       Racing                            Takara Tomy  0.01
## 1566 Role-Playing                            Takara Tomy  0.02
## 1567       Sports                            Takara Tomy  0.01
## 1568     Strategy                            Takara Tomy  0.01
## 1569       Action                   Take-Two Interactive 34.78
## 1570    Adventure                   Take-Two Interactive  0.88
## 1571     Fighting                   Take-Two Interactive  0.00
## 1572         Misc                   Take-Two Interactive  0.95
## 1573     Platform                   Take-Two Interactive  0.30
## 1574       Puzzle                   Take-Two Interactive  0.00
## 1575       Racing                   Take-Two Interactive  2.43
## 1576 Role-Playing                   Take-Two Interactive  1.10
## 1577      Shooter                   Take-Two Interactive  5.91
## 1578   Simulation                   Take-Two Interactive  0.07
## 1579       Sports                   Take-Two Interactive  8.00
## 1580     Strategy                   Take-Two Interactive  0.82
## 1581    Adventure                                 Takuyo  0.00
## 1582      Shooter                              TalonSoft  0.06
## 1583       Action                               TDK Core  0.01
## 1584         Misc                               TDK Core  0.00
## 1585   Simulation                               TDK Core  0.00
## 1586       Action                         TDK Mediactive  0.01
## 1587    Adventure                         TDK Mediactive  0.02
## 1588         Misc                         TDK Mediactive  0.05
## 1589     Platform                         TDK Mediactive  0.06
## 1590       Racing                         TDK Mediactive  0.21
## 1591      Shooter                         TDK Mediactive  0.08
## 1592       Sports                         TDK Mediactive  0.02
## 1593     Strategy                        Team17 Software  0.01
## 1594       Sports              Technos Japan Corporation  0.00
## 1595      Shooter                             TechnoSoft  0.00
## 1596       Action                             Tecmo Koei  1.65
## 1597    Adventure                             Tecmo Koei  0.00
## 1598     Fighting                             Tecmo Koei  0.27
## 1599         Misc                             Tecmo Koei  0.01
## 1600     Platform                             Tecmo Koei  0.01
## 1601       Racing                             Tecmo Koei  0.02
## 1602 Role-Playing                             Tecmo Koei  0.70
## 1603      Shooter                             Tecmo Koei  0.04
## 1604   Simulation                             Tecmo Koei  0.14
## 1605       Sports                             Tecmo Koei  0.19
## 1606     Strategy                             Tecmo Koei  0.15
## 1607         Misc                              Telegames  0.04
## 1608       Puzzle                              Telegames  0.01
## 1609   Simulation                              Telegames  0.00
## 1610     Strategy                              Telegames  0.01
## 1611       Action                         Telltale Games  0.02
## 1612    Adventure                         Telltale Games  0.37
## 1613       Action                                Telstar  0.01
## 1614       Racing                                Telstar  0.01
## 1615      Shooter                                Telstar  0.00
## 1616       Puzzle                          Tetris Online  0.03
## 1617    Adventure                                    TGL  0.00
## 1618    Adventure                  The Adventure Company  0.03
## 1619       Puzzle                  The Adventure Company  0.02
## 1620       Racing                   The Learning Company  0.00
## 1621       Action                                    THQ  7.85
## 1622    Adventure                                    THQ  1.44
## 1623     Fighting                                    THQ  9.00
## 1624         Misc                                    THQ  1.39
## 1625     Platform                                    THQ  3.33
## 1626       Puzzle                                    THQ  0.76
## 1627       Racing                                    THQ  3.71
## 1628 Role-Playing                                    THQ  0.11
## 1629      Shooter                                    THQ  1.72
## 1630   Simulation                                    THQ  0.55
## 1631       Sports                                    THQ  1.25
## 1632     Strategy                                    THQ  1.03
## 1633       Action                            Tigervision  0.01
## 1634     Fighting                Time Warner Interactive  0.01
## 1635      Shooter                Time Warner Interactive  0.00
## 1636       Sports                Time Warner Interactive  0.01
## 1637     Strategy                Time Warner Interactive  0.01
## 1638       Action                                  Titus  0.01
## 1639     Fighting                                  Titus  0.04
## 1640         Misc                                  Titus  0.00
## 1641     Platform                                  Titus  0.00
## 1642       Racing                                  Titus  0.03
## 1643 Role-Playing                                  Titus  0.00
## 1644      Shooter                                  Titus  0.00
## 1645   Simulation                                  Titus  0.12
## 1646     Strategy                                  Titus  0.00
## 1647         Misc                                 Tivola  0.02
## 1648 Role-Playing                                   TOHO  0.00
## 1649         Misc                                  Tommo  0.00
## 1650      Shooter                                  Tommo  0.00
## 1651       Sports                                  Tommo  0.00
## 1652       Action                       Tomy Corporation  0.00
## 1653     Fighting                       Tomy Corporation  0.24
## 1654         Misc                       Tomy Corporation  0.00
## 1655       Racing                       Tomy Corporation  0.00
## 1656 Role-Playing                       Tomy Corporation  0.00
## 1657   Simulation                       Tomy Corporation  0.01
## 1658         Misc                    TopWare Interactive  0.02
## 1659 Role-Playing                    TopWare Interactive  0.00
## 1660       Action                             Touchstone  0.17
## 1661   Simulation                             Touchstone  0.02
## 1662       Sports                              Tradewest  0.01
## 1663      Shooter                           Trion Worlds  0.11
## 1664     Strategy                           Trion Worlds  0.00
## 1665      Shooter                   Tripwire Interactive  0.02
## 1666       Action                  Tru Blu Entertainment  0.00
## 1667       Sports                  Tru Blu Entertainment  0.02
## 1668     Fighting                               Tryfirst  0.00
## 1669       Racing                                    TYO  0.03
## 1670    Adventure                              Type-Moon  0.00
## 1671     Platform                              U.S. Gold  0.00
## 1672       Sports                              U.S. Gold  0.02
## 1673       Action                                Ubisoft 17.37
## 1674    Adventure                                Ubisoft  2.43
## 1675     Fighting                                Ubisoft  0.66
## 1676         Misc                                Ubisoft  9.17
## 1677     Platform                                Ubisoft  1.93
## 1678       Puzzle                                Ubisoft  0.57
## 1679       Racing                                Ubisoft  1.71
## 1680 Role-Playing                                Ubisoft  1.48
## 1681      Shooter                                Ubisoft  7.57
## 1682   Simulation                                Ubisoft  4.07
## 1683       Sports                                Ubisoft  2.18
## 1684     Strategy                                Ubisoft  1.12
## 1685       Action                         Ubisoft Annecy  0.18
## 1686     Fighting                         Ubisoft Annecy  0.05
## 1687         Misc                         Ubisoft Annecy  0.02
## 1688 Role-Playing                         Ubisoft Annecy  0.02
## 1689       Sports                            UEP Systems  0.08
## 1690       Action                        UFO Interactive  0.00
## 1691         Misc                        UFO Interactive  0.03
## 1692       Puzzle                        UFO Interactive  0.01
## 1693      Shooter                        UFO Interactive  0.00
## 1694       Sports                        UFO Interactive  0.00
## 1695   Simulation                      UIG Entertainment  0.00
## 1696     Fighting                            Ultravision  0.00
## 1697       Action                        Universal Gamex  0.01
## 1698       Action                  Universal Interactive  0.31
## 1699     Fighting                  Universal Interactive  0.01
## 1700         Misc                  Universal Interactive  0.01
## 1701     Platform                  Universal Interactive  1.30
## 1702      Shooter                  Universal Interactive  0.06
## 1703       Sports                  Universal Interactive  0.06
## 1704       Action                                Unknown  0.11
## 1705    Adventure                                Unknown  0.04
## 1706     Fighting                                Unknown  0.00
## 1707         Misc                                Unknown  0.43
## 1708     Platform                                Unknown  0.02
## 1709       Puzzle                                Unknown  0.09
## 1710       Racing                                Unknown  0.62
## 1711 Role-Playing                                Unknown  0.34
## 1712      Shooter                                Unknown  0.12
## 1713   Simulation                                Unknown  0.13
## 1714       Sports                                Unknown  0.57
## 1715     Strategy                                Unknown  0.01
## 1716    Adventure                           Valcon Games  0.00
## 1717       Racing                           Valcon Games  0.01
## 1718      Shooter                           Valcon Games  0.01
## 1719   Simulation                           Valcon Games  0.00
## 1720       Sports                           Valcon Games  0.01
## 1721    Adventure                               ValuSoft  0.00
## 1722       Puzzle                               ValuSoft  0.01
## 1723       Racing                               ValuSoft  0.03
## 1724      Shooter                                  Valve  0.25
## 1725      Shooter                         Valve Software  0.32
## 1726         Misc                                    Vap  0.00
## 1727       Racing                  Vatical Entertainment  0.01
## 1728     Fighting                              Vic Tokai  0.01
## 1729    Adventure                     Victor Interactive  0.00
## 1730         Misc                     Victor Interactive  0.00
## 1731 Role-Playing                     Victor Interactive  0.00
## 1732   Simulation                     Victor Interactive  0.00
## 1733       Sports                     Victor Interactive  0.02
## 1734       Action                           Video System  0.00
## 1735       Racing                           Video System  0.09
## 1736       Action                                  Views  0.00
## 1737    Adventure                                  Views  0.00
## 1738       Action                          Vir2L Studios  0.01
## 1739       Racing                          Vir2L Studios  0.00
## 1740       Sports                          Vir2L Studios  0.00
## 1741       Action                     Virgin Interactive  1.75
## 1742    Adventure                     Virgin Interactive  0.00
## 1743     Fighting                     Virgin Interactive  0.46
## 1744         Misc                     Virgin Interactive  0.00
## 1745     Platform                     Virgin Interactive  0.13
## 1746       Puzzle                     Virgin Interactive  0.02
## 1747       Racing                     Virgin Interactive  0.00
## 1748 Role-Playing                     Virgin Interactive  0.17
## 1749      Shooter                     Virgin Interactive  0.20
## 1750   Simulation                     Virgin Interactive  0.02
## 1751       Sports                     Virgin Interactive  0.01
## 1752     Strategy                     Virgin Interactive  0.27
## 1753         Misc                     Virtual Play Games  0.00
## 1754       Sports                     Virtual Play Games  0.00
## 1755      Shooter                                  Visco  0.00
## 1756       Action                          Vivendi Games  1.21
## 1757    Adventure                          Vivendi Games  0.15
## 1758     Fighting                          Vivendi Games  0.04
## 1759         Misc                          Vivendi Games  0.12
## 1760     Platform                          Vivendi Games  1.54
## 1761       Puzzle                          Vivendi Games  0.00
## 1762       Racing                          Vivendi Games  1.23
## 1763 Role-Playing                          Vivendi Games  0.00
## 1764      Shooter                          Vivendi Games  0.50
## 1765   Simulation                          Vivendi Games  0.00
## 1766       Sports                          Vivendi Games  0.00
## 1767     Strategy                          Vivendi Games  0.09
## 1768       Action                                Wanadoo  0.07
## 1769     Platform                                Wanadoo  0.00
## 1770       Racing                                Wanadoo  0.00
## 1771      Shooter                                Warashi  0.00
## 1772      Shooter                          Wargaming.net  0.06
## 1773       Action Warner Bros. Interactive Entertainment 14.81
## 1774    Adventure Warner Bros. Interactive Entertainment  0.08
## 1775     Fighting Warner Bros. Interactive Entertainment  1.69
## 1776         Misc Warner Bros. Interactive Entertainment  0.48
## 1777     Platform Warner Bros. Interactive Entertainment  0.13
## 1778       Puzzle Warner Bros. Interactive Entertainment  0.52
## 1779       Racing Warner Bros. Interactive Entertainment  0.09
## 1780      Shooter Warner Bros. Interactive Entertainment  0.52
## 1781     Strategy Warner Bros. Interactive Entertainment  0.24
## 1782    Adventure                                   Warp  0.00
## 1783    Adventure                WayForward Technologies  0.01
## 1784     Strategy                       Westwood Studios  0.00
## 1785       Puzzle                White Park Bay Software  0.01
## 1786       Action                     Wizard Video Games  0.01
## 1787       Racing                      Xicat Interactive  0.00
## 1788 Role-Playing                      Xicat Interactive  0.00
## 1789       Sports                      Xicat Interactive  0.01
## 1790     Fighting                     Xing Entertainment  0.02
## 1791         Misc                                Xplosiv  0.02
## 1792       Puzzle                                Xplosiv  0.06
## 1793       Racing                                Xplosiv  0.09
## 1794         Misc                               XS Games  0.00
## 1795       Racing                               XS Games  0.04
## 1796       Sports                               XS Games  0.07
## 1797       Action                            Xseed Games  0.02
## 1798 Role-Playing                            Xseed Games  0.04
## 1799      Shooter                            Xseed Games  0.01
## 1800     Platform                       Yacht Club Games  0.03
## 1801         Misc                   Yamasa Entertainment  0.00
## 1802       Action                                   Yeti  0.00
## 1803    Adventure                                   Yeti  0.00
## 1804     Fighting                                   Yeti  0.00
## 1805     Fighting                                 Yuke's  0.00
## 1806       Racing                                 Yuke's  0.00
## 1807    Adventure                                Yumedia  0.00
## 1808         Misc                                 Zenrin  0.00
## 1809       Action                 Zoo Digital Publishing  0.03
## 1810    Adventure                 Zoo Digital Publishing  0.01
## 1811     Fighting                 Zoo Digital Publishing  0.02
## 1812         Misc                 Zoo Digital Publishing  0.06
## 1813     Platform                 Zoo Digital Publishing  0.01
## 1814       Puzzle                 Zoo Digital Publishing  0.07
## 1815       Racing                 Zoo Digital Publishing  0.21
## 1816      Shooter                 Zoo Digital Publishing  0.04
## 1817   Simulation                 Zoo Digital Publishing  0.00
## 1818       Sports                 Zoo Digital Publishing  0.32
## 1819     Strategy                 Zoo Digital Publishing  0.01
## 1820       Action                              Zoo Games  0.01
## 1821    Adventure                              Zoo Games  0.00
## 1822         Misc                              Zoo Games  0.16
## 1823       Puzzle                              Zoo Games  0.02
## 1824       Racing                              Zoo Games  0.03
## 1825      Shooter                              Zoo Games  0.03
## 1826   Simulation                              Zoo Games  0.00
## 1827       Sports                              Zoo Games  0.02
## 1828       Action                            Zushi Games  0.00
## 1829    Adventure                            Zushi Games  0.00
## 1830         Misc                            Zushi Games  0.01
## 1831       Puzzle                            Zushi Games  0.00
## 1832       Racing                            Zushi Games  0.01
## 1833 Role-Playing                            Zushi Games  0.01
## 1834      Shooter                            Zushi Games  0.02
## 1835   Simulation                            Zushi Games  0.00
## 1836       Sports                            Zushi Games  0.06
## 1837     Strategy                            Zushi Games  0.00
aggregate(Other_Sales,by=list(Platform = Platform,Year = Year),mean)
##     Platform Year            x
## 1       2600 1980 0.0133333333
## 2       2600 1981 0.0069565217
## 3       2600 1982 0.0086111111
## 4       2600 1983 0.0054545455
## 5        NES 1983 0.0133333333
## 6       2600 1984 0.0000000000
## 7        NES 1984 0.0538461538
## 8       2600 1985 0.0000000000
## 9         DS 1985 0.0000000000
## 10       NES 1985 0.0827272727
## 11        PC 1985 0.0100000000
## 12      2600 1986 0.0000000000
## 13       NES 1986 0.1015789474
## 14      2600 1987 0.0016666667
## 15       NES 1987 0.0190000000
## 16      2600 1988 0.0050000000
## 17        GB 1988 0.0300000000
## 18       NES 1988 0.0854545455
## 19        PC 1988 0.0100000000
## 20      2600 1989 0.0050000000
## 21        GB 1989 0.1400000000
## 22       NES 1989 0.0180000000
## 23        GB 1990 0.1433333333
## 24       GEN 1990 0.0800000000
## 25       NES 1990 0.0275000000
## 26      SNES 1990 0.1675000000
## 27        GB 1991 0.0088888889
## 28       GEN 1991 0.1300000000
## 29       NES 1991 0.0228571429
## 30      SNES 1991 0.0154166667
## 31        GB 1992 0.0914285714
## 32       GEN 1992 0.0616666667
## 33        GG 1992 0.0000000000
## 34       NES 1992 0.0100000000
## 35        PC 1992 0.0220000000
## 36      SNES 1992 0.0238095238
## 37       GEN 1993 0.0000000000
## 38       NES 1993 0.0150000000
## 39        NG 1993 0.0000000000
## 40       SCD 1993 0.0500000000
## 41      SNES 1993 0.0169565217
## 42       3DO 1994 0.0000000000
## 43        GB 1994 0.2000000000
## 44       GEN 1994 0.0258333333
## 45       NES 1994 0.0000000000
## 46        NG 1994 0.0000000000
## 47        PC 1994 0.0766666667
## 48        PS 1994 0.0235294118
## 49       SAT 1994 0.0010526316
## 50       SCD 1994 0.0000000000
## 51      SNES 1994 0.0077358491
## 52       3DO 1995 0.0000000000
## 53        GB 1995 0.0125000000
## 54        NG 1995 0.0000000000
## 55        PC 1995 0.1150000000
## 56        PS 1995 0.0197979798
## 57       SAT 1995 0.0009615385
## 58      SNES 1995 0.0064814815
## 59      TG16 1995 0.0000000000
## 60        GB 1996 0.1816666667
## 61       N64 1996 0.0322222222
## 62        NG 1996 0.0000000000
## 63        PC 1996 0.0850000000
## 64      PCFX 1996 0.0000000000
## 65        PS 1996 0.0337804878
## 66       SAT 1996 0.0000000000
## 67      SNES 1996 0.0046666667
## 68        GB 1997 0.0150000000
## 69       N64 1997 0.0185714286
## 70        PC 1997 0.0383333333
## 71        PS 1997 0.0418617021
## 72       SAT 1997 0.0000000000
## 73      SNES 1997 0.0000000000
## 74        DC 1998 0.0114285714
## 75        GB 1998 0.1137500000
## 76       N64 1998 0.0124675325
## 77        PC 1998 0.0037500000
## 78        PS 1998 0.0364919355
## 79       SAT 1998 0.0000000000
## 80      SNES 1998 0.0000000000
## 81        DC 1999 0.0042857143
## 82        GB 1999 0.1027272727
## 83       N64 1999 0.0080392157
## 84        PC 1999 0.0171428571
## 85        PS 1999 0.0396000000
## 86       SAT 1999 0.0000000000
## 87      SNES 1999 0.0000000000
## 88        WS 1999 0.0000000000
## 89        DC 2000 0.0065000000
## 90        GB 2000 0.0876470588
## 91       GBA 2000 0.0000000000
## 92       N64 2000 0.0153333333
## 93        PC 2000 0.0257142857
## 94        PS 2000 0.0332075472
## 95       PS2 2000 0.0436585366
## 96        WS 2000 0.0000000000
## 97        XB 2000 0.0400000000
## 98        DC 2001 0.0000000000
## 99        GB 2001 0.0190000000
## 100      GBA 2001 0.0178504673
## 101       GC 2001 0.0354545455
## 102      N64 2001 0.0133333333
## 103       PC 2001 0.0120000000
## 104       PS 2001 0.0238461538
## 105      PS2 2001 0.0907027027
## 106       WS 2001 0.0000000000
## 107       XB 2001 0.0190909091
## 108       DC 2002 0.0000000000
## 109      GBA 2002 0.0091414141
## 110       GC 2002 0.0087500000
## 111      N64 2002 0.0000000000
## 112       PC 2002 0.0194736842
## 113       PS 2002 0.0180000000
## 114      PS2 2002 0.0775714286
## 115       XB 2002 0.0106962025
## 116      GBA 2003 0.0090666667
## 117       GC 2003 0.0090972222
## 118       PC 2003 0.0181818182
## 119       PS 2003 0.0466666667
## 120      PS2 2003 0.0808203125
## 121       XB 2003 0.0101058201
## 122       DS 2004 0.0595652174
## 123      GBA 2004 0.0103428571
## 124       GC 2004 0.0093975904
## 125       PC 2004 0.0083870968
## 126      PS2 2004 0.1538610039
## 127      PSP 2004 0.0726666667
## 128       XB 2004 0.0120338983
## 129       DS 2005 0.0924576271
## 130      GBA 2005 0.0042962963
## 131       GC 2005 0.0069072165
## 132       PC 2005 0.0094594595
## 133      PS2 2005 0.0736538462
## 134      PSP 2005 0.0676288660
## 135     X360 2005 0.0350000000
## 136       XB 2005 0.0096648045
## 137       DS 2006 0.0409900990
## 138      GBA 2006 0.0023076923
## 139       GC 2006 0.0065000000
## 140       PC 2006 0.0075000000
## 141      PS2 2006 0.0549806950
## 142      PS3 2006 0.1366666667
## 143      PSP 2006 0.0481052632
## 144      Wii 2006 0.3081818182
## 145     X360 2006 0.0479569892
## 146       XB 2006 0.0051612903
## 147       DC 2007 0.0000000000
## 148       DS 2007 0.0298938992
## 149      GBA 2007 0.0083333333
## 150       GC 2007 0.0000000000
## 151       PC 2007 0.0058730159
## 152      PS2 2007 0.1107009346
## 153      PS3 2007 0.1212222222
## 154      PSP 2007 0.0656716418
## 155      Wii 2007 0.0735294118
## 156     X360 2007 0.0710569106
## 157       XB 2007 0.0066666667
## 158       DC 2008 0.0000000000
## 159       DS 2008 0.0226829268
## 160       PC 2008 0.0280263158
## 161      PS2 2008 0.1010994764
## 162      PS3 2008 0.1228776978
## 163      PSP 2008 0.0476000000
## 164      Wii 2008 0.0540780142
## 165     X360 2008 0.0869178082
## 166       XB 2008 0.0100000000
## 167       DS 2009 0.0215555556
## 168       PC 2009 0.0210091743
## 169      PS2 2009 0.1058333333
## 170      PS3 2009 0.1127160494
## 171      PSP 2009 0.0400621118
## 172      Wii 2009 0.0547384615
## 173     X360 2009 0.0641040462
## 174       DS 2010 0.0175766871
## 175       PC 2010 0.0355555556
## 176      PS2 2010 0.0315789474
## 177      PS3 2010 0.1184530387
## 178      PSP 2010 0.0194148936
## 179      Wii 2010 0.0412204724
## 180     X360 2010 0.0780769231
## 181      3DS 2011 0.0377586207
## 182       DS 2011 0.0132026144
## 183       PC 2011 0.0402142857
## 184      PS2 2011 0.0142857143
## 185      PS3 2011 0.1035185185
## 186      PSP 2011 0.0061870504
## 187      PSV 2011 0.0438888889
## 188      Wii 2011 0.0381944444
## 189     X360 2011 0.0618932039
## 190      3DS 2012 0.0274193548
## 191       DS 2012 0.0252000000
## 192       PC 2012 0.0522950820
## 193      PS3 2012 0.1156756757
## 194      PSP 2012 0.0013207547
## 195      PSV 2012 0.0564814815
## 196      Wii 2012 0.0496875000
## 197     WiiU 2012 0.0400000000
## 198     X360 2012 0.0780188679
## 199      3DS 2013 0.0293406593
## 200       DS 2013 0.0188888889
## 201       PC 2013 0.0426315789
## 202      PS3 2013 0.1522047244
## 203      PS4 2013 0.1718750000
## 204      PSP 2013 0.0012962963
## 205      PSV 2013 0.0307936508
## 206      Wii 2013 0.0675000000
## 207     WiiU 2013 0.0361904762
## 208     X360 2013 0.0992000000
## 209     XOne 2013 0.0789473684
## 210      3DS 2014 0.0232911392
## 211       DS 2014 0.0000000000
## 212       PC 2014 0.0297727273
## 213      PS3 2014 0.0745370370
## 214      PS4 2014 0.2269333333
## 215      PSP 2014 0.0000000000
## 216      PSV 2014 0.0197058824
## 217      Wii 2014 0.0600000000
## 218     WiiU 2014 0.0680645161
## 219     X360 2014 0.0489230769
## 220     XOne 2014 0.0678688525
## 221      3DS 2015 0.0115116279
## 222       PC 2015 0.0110000000
## 223      PS3 2015 0.0317567568
## 224      PS4 2015 0.1303649635
## 225      PSP 2015 0.0000000000
## 226      PSV 2015 0.0042477876
## 227      Wii 2015 0.0300000000
## 228     WiiU 2015 0.0460714286
## 229     X360 2015 0.0285000000
## 230     XOne 2015 0.0662025316
## 231      3DS 2016 0.0034285714
## 232       PC 2016 0.0044736842
## 233      PS3 2016 0.0068750000
## 234      PS4 2016 0.0535514019
## 235      PSV 2016 0.0023333333
## 236     WiiU 2016 0.0250000000
## 237     X360 2016 0.0087500000
## 238     XOne 2016 0.0194444444
## 239      PS4 2017 0.0000000000
## 240      PSV 2017 0.0000000000
## 241       DS 2020 0.0200000000
## 242     2600  N/A 0.0041176471
## 243      3DS  N/A 0.0088888889
## 244       DS  N/A 0.0080000000
## 245       GB  N/A 0.0400000000
## 246      GBA  N/A 0.0109090909
## 247       GC  N/A 0.0035714286
## 248      N64  N/A 0.0233333333
## 249       PC  N/A 0.0311764706
## 250       PS  N/A 0.0314285714
## 251      PS2  N/A 0.0873529412
## 252      PS3  N/A 0.0448000000
## 253      PSP  N/A 0.0418750000
## 254      PSV  N/A 0.0400000000
## 255      Wii  N/A 0.0402857143
## 256     X360  N/A 0.0290000000
## 257       XB  N/A 0.0114285714
aggregate(Other_Sales,by=list(Platform = Platform,Genre = Genre),mean)
##     Platform        Genre            x
## 1       2600       Action 0.0036065574
## 2        3DS       Action 0.0156043956
## 3         DC       Action 0.0100000000
## 4         DS       Action 0.0266472303
## 5         GB       Action 0.0433333333
## 6        GBA       Action 0.0081437126
## 7         GC       Action 0.0098019802
## 8        GEN       Action 0.0266666667
## 9        N64       Action 0.0147368421
## 10       NES       Action 0.0346153846
## 11        PC       Action 0.0216363636
## 12        PS       Action 0.0480891720
## 13       PS2       Action 0.1368965517
## 14       PS3       Action 0.1223947368
## 15       PS4       Action 0.1129508197
## 16       PSP       Action 0.0500450450
## 17       PSV       Action 0.0198591549
## 18       SAT       Action 0.0000000000
## 19      SNES       Action 0.0166666667
## 20       Wii       Action 0.0431512605
## 21      WiiU       Action 0.0280952381
## 22      X360       Action 0.0667592593
## 23        XB       Action 0.0115483871
## 24      XOne       Action 0.0413235294
## 25      2600    Adventure 0.0050000000
## 26       3DO    Adventure 0.0000000000
## 27       3DS    Adventure 0.0048648649
## 28        DC    Adventure 0.0036363636
## 29        DS    Adventure 0.0143333333
## 30        GB    Adventure 0.1040000000
## 31       GBA    Adventure 0.0086842105
## 32        GC    Adventure 0.0090000000
## 33       GEN    Adventure 0.0000000000
## 34       N64    Adventure 0.0000000000
## 35       NES    Adventure 0.0800000000
## 36        PC    Adventure 0.0096923077
## 37        PS    Adventure 0.0181159420
## 38       PS2    Adventure 0.0102551020
## 39       PS3    Adventure 0.0450000000
## 40       PS4    Adventure 0.0373684211
## 41       PSP    Adventure 0.0027230047
## 42       PSV    Adventure 0.0055813953
## 43       SAT    Adventure 0.0000000000
## 44      SNES    Adventure 0.0000000000
## 45      TG16    Adventure 0.0000000000
## 46       Wii    Adventure 0.0170238095
## 47      WiiU    Adventure 0.0066666667
## 48      X360    Adventure 0.0280851064
## 49        XB    Adventure 0.0026923077
## 50      XOne    Adventure 0.0166666667
## 51      2600     Fighting 0.0050000000
## 52       3DS     Fighting 0.0442857143
## 53        DC     Fighting 0.0000000000
## 54        DS     Fighting 0.0058333333
## 55       GBA     Fighting 0.0021739130
## 56        GC     Fighting 0.0128571429
## 57       GEN     Fighting 0.0340000000
## 58       N64     Fighting 0.0103448276
## 59       NES     Fighting 0.0250000000
## 60        NG     Fighting 0.0000000000
## 61        PC     Fighting 0.0033333333
## 62        PS     Fighting 0.0358333333
## 63       PS2     Fighting 0.0831333333
## 64       PS3     Fighting 0.0880263158
## 65       PS4     Fighting 0.0711764706
## 66       PSP     Fighting 0.0413513514
## 67       PSV     Fighting 0.0300000000
## 68       SAT     Fighting 0.0016129032
## 69      SNES     Fighting 0.0172000000
## 70       Wii     Fighting 0.0454761905
## 71      WiiU     Fighting 0.1340000000
## 72      X360     Fighting 0.0487692308
## 73        XB     Fighting 0.0087500000
## 74      XOne     Fighting 0.0328571429
## 75      2600         Misc 0.0060000000
## 76       3DS         Misc 0.0075471698
## 77        DS         Misc 0.0248091603
## 78        GB         Misc 0.0400000000
## 79       GBA         Misc 0.0048181818
## 80        GC         Misc 0.0125000000
## 81       GEN         Misc 0.0000000000
## 82       N64         Misc 0.0072222222
## 83       NES         Misc 0.0000000000
## 84        PC         Misc 0.0145833333
## 85        PS         Misc 0.0301315789
## 86       PS2         Misc 0.1009909910
## 87       PS3         Misc 0.0558870968
## 88       PS4         Misc 0.0773333333
## 89       PSP         Misc 0.0108490566
## 90       PSV         Misc 0.0275000000
## 91       SAT         Misc 0.0000000000
## 92       SCD         Misc 0.0000000000
## 93      SNES         Misc 0.0041176471
## 94       Wii         Misc 0.0692142857
## 95      WiiU         Misc 0.0395238095
## 96      X360         Misc 0.0599206349
## 97        XB         Misc 0.0067391304
## 98      XOne         Misc 0.0406666667
## 99      2600     Platform 0.0177777778
## 100      3DS     Platform 0.0807142857
## 101       DC     Platform 0.0400000000
## 102       DS     Platform 0.0710869565
## 103       GB     Platform 0.1026315789
## 104      GBA     Platform 0.0159859155
## 105       GC     Platform 0.0101369863
## 106      GEN     Platform 0.0800000000
## 107       GG     Platform 0.0000000000
## 108      N64     Platform 0.0323333333
## 109      NES     Platform 0.0603571429
## 110       PC     Platform 0.0081818182
## 111       PS     Platform 0.0507812500
## 112      PS2     Platform 0.0888349515
## 113      PS3     Platform 0.1359459459
## 114      PS4     Platform 0.0909090909
## 115      PSP     Platform 0.0908333333
## 116      PSV     Platform 0.0610000000
## 117      SAT     Platform 0.0000000000
## 118      SCD     Platform 0.0500000000
## 119     SNES     Platform 0.0684615385
## 120      Wii     Platform 0.1229310345
## 121     WiiU     Platform 0.0925000000
## 122     X360     Platform 0.0466666667
## 123       XB     Platform 0.0069387755
## 124     XOne     Platform 0.0175000000
## 125     2600       Puzzle 0.0136363636
## 126      3DO       Puzzle 0.0000000000
## 127      3DS       Puzzle 0.0175000000
## 128       DS       Puzzle 0.0269327731
## 129       GB       Puzzle 0.0673333333
## 130      GBA       Puzzle 0.0058536585
## 131       GC       Puzzle 0.0092307692
## 132      N64       Puzzle 0.0058333333
## 133      NES       Puzzle 0.0307142857
## 134       PC       Puzzle 0.0064000000
## 135       PS       Puzzle 0.0187500000
## 136      PS2       Puzzle 0.0400000000
## 137      PS3       Puzzle 0.0166666667
## 138      PS4       Puzzle 0.0000000000
## 139      PSP       Puzzle 0.0188636364
## 140      PSV       Puzzle 0.0066666667
## 141      SAT       Puzzle 0.0000000000
## 142     SNES       Puzzle 0.0007692308
## 143      Wii       Puzzle 0.0220000000
## 144     WiiU       Puzzle 0.0250000000
## 145     X360       Puzzle 0.0085714286
## 146       XB       Puzzle 0.0014285714
## 147     2600       Racing 0.0016666667
## 148      3DS       Racing 0.0963636364
## 149       DC       Racing 0.0133333333
## 150       DS       Racing 0.0467164179
## 151       GB       Racing 0.2200000000
## 152      GBA       Racing 0.0084375000
## 153       GC       Racing 0.0085714286
## 154      GEN       Racing 0.0000000000
## 155      N64       Racing 0.0101754386
## 156      NES       Racing 0.0550000000
## 157       PC       Racing 0.0096666667
## 158       PS       Racing 0.0400689655
## 159      PS2       Racing 0.1267129630
## 160      PS3       Racing 0.1422826087
## 161      PS4       Racing 0.1011764706
## 162      PSP       Racing 0.1078461538
## 163      PSV       Racing 0.0509090909
## 164      SAT       Racing 0.0025000000
## 165      SCD       Racing 0.0000000000
## 166     SNES       Racing 0.0277777778
## 167      Wii       Racing 0.0588297872
## 168     WiiU       Racing 0.1866666667
## 169     X360       Racing 0.0612380952
## 170       XB       Racing 0.0086178862
## 171     XOne       Racing 0.0357894737
## 172      3DS Role-Playing 0.0340697674
## 173       DC Role-Playing 0.0000000000
## 174       DS Role-Playing 0.0323000000
## 175       GB Role-Playing 0.1576190476
## 176      GBA Role-Playing 0.0250684932
## 177       GC Role-Playing 0.0125925926
## 178      GEN Role-Playing 0.0000000000
## 179      N64 Role-Playing 0.0200000000
## 180      NES Role-Playing 0.1390909091
## 181       PC Role-Playing 0.0482692308
## 182     PCFX Role-Playing 0.0000000000
## 183       PS Role-Playing 0.0443298969
## 184      PS2 Role-Playing 0.0442245989
## 185      PS3 Role-Playing 0.0749579832
## 186      PS4 Role-Playing 0.0795744681
## 187      PSP Role-Playing 0.0155729167
## 188      PSV Role-Playing 0.0144578313
## 189      SAT Role-Playing 0.0000000000
## 190      SCD Role-Playing 0.0000000000
## 191     SNES Role-Playing 0.0048000000
## 192      Wii Role-Playing 0.0217142857
## 193     WiiU Role-Playing 0.0216666667
## 194       WS Role-Playing 0.0000000000
## 195     X360 Role-Playing 0.0809210526
## 196       XB Role-Playing 0.0217391304
## 197     XOne Role-Playing 0.0638461538
## 198     2600      Shooter 0.0116666667
## 199      3DS      Shooter 0.0128571429
## 200       DC      Shooter 0.0000000000
## 201       DS      Shooter 0.0130952381
## 202       GB      Shooter 0.0400000000
## 203      GBA      Shooter 0.0005000000
## 204       GC      Shooter 0.0068750000
## 205      GEN      Shooter 0.0000000000
## 206      N64      Shooter 0.0108333333
## 207      NES      Shooter 0.0742857143
## 208       PC      Shooter 0.0296621622
## 209       PS      Shooter 0.0231250000
## 210      PS2      Shooter 0.0838750000
## 211      PS3      Shooter 0.1936538462
## 212      PS4      Shooter 0.3476470588
## 213      PSP      Shooter 0.1000000000
## 214      PSV      Shooter 0.1640000000
## 215      SAT      Shooter 0.0000000000
## 216     SNES      Shooter 0.0120000000
## 217     TG16      Shooter 0.0000000000
## 218      Wii      Shooter 0.0386363636
## 219     WiiU      Shooter 0.0550000000
## 220     X360      Shooter 0.1208374384
## 221       XB      Shooter 0.0143181818
## 222     XOne      Shooter 0.1327272727
## 223     2600   Simulation 0.0000000000
## 224      3DO   Simulation 0.0000000000
## 225      3DS   Simulation 0.0466666667
## 226       DC   Simulation 0.0000000000
## 227       DS   Simulation 0.0398596491
## 228       GB   Simulation 0.0040000000
## 229      GBA   Simulation 0.0088888889
## 230       GC   Simulation 0.0241666667
## 231      N64   Simulation 0.0330000000
## 232       PC   Simulation 0.0391304348
## 233       PS   Simulation 0.0261666667
## 234      PS2   Simulation 0.0495555556
## 235      PS3   Simulation 0.0454838710
## 236      PS4   Simulation 0.0180000000
## 237      PSP   Simulation 0.0427586207
## 238      PSV   Simulation 0.0000000000
## 239      SAT   Simulation 0.0000000000
## 240     SNES   Simulation 0.0066666667
## 241      Wii   Simulation 0.0357471264
## 242     WiiU   Simulation 0.0200000000
## 243     X360   Simulation 0.0307500000
## 244       XB   Simulation 0.0091666667
## 245     XOne   Simulation 0.0166666667
## 246     2600       Sports 0.0033333333
## 247      3DS       Sports 0.0150000000
## 248       DC       Sports 0.0040000000
## 249       DS       Sports 0.0168243243
## 250       GB       Sports 0.0244444444
## 251      GBA       Sports 0.0027272727
## 252       GC       Sports 0.0050909091
## 253      GEN       Sports 0.0266666667
## 254      N64       Sports 0.0087500000
## 255      NES       Sports 0.0207142857
## 256       NG       Sports 0.0000000000
## 257       PC       Sports 0.0322448980
## 258       PS       Sports 0.0304054054
## 259      PS2       Sports 0.1116500000
## 260      PS3       Sports 0.0900000000
## 261      PS4       Sports 0.1876744186
## 262      PSP       Sports 0.0446666667
## 263      PSV       Sports 0.0334782609
## 264      SAT       Sports 0.0000000000
## 265     SNES       Sports 0.0012244898
## 266      Wii       Sports 0.1036781609
## 267     WiiU       Sports 0.0312500000
## 268     X360       Sports 0.0520909091
## 269       XB       Sports 0.0119411765
## 270     XOne       Sports 0.0563888889
## 271      3DS     Strategy 0.0073333333
## 272       DS     Strategy 0.0132911392
## 273       GB     Strategy 0.0157142857
## 274      GBA     Strategy 0.0088888889
## 275       GC     Strategy 0.0090909091
## 276      GEN     Strategy 0.0000000000
## 277      N64     Strategy 0.0355555556
## 278       PC     Strategy 0.0211170213
## 279       PS     Strategy 0.0207142857
## 280      PS2     Strategy 0.0119718310
## 281      PS3     Strategy 0.0245833333
## 282      PS4     Strategy 0.0120000000
## 283      PSP     Strategy 0.0203333333
## 284      PSV     Strategy 0.0042857143
## 285      SAT     Strategy 0.0000000000
## 286      SCD     Strategy 0.0000000000
## 287     SNES     Strategy 0.0000000000
## 288      Wii     Strategy 0.0108000000
## 289     WiiU     Strategy 0.0233333333
## 290       WS     Strategy 0.0000000000
## 291     X360     Strategy 0.0317857143
## 292       XB     Strategy 0.0038095238
## 293     XOne     Strategy 0.0100000000
aggregate(Other_Sales,by=list(Platform = Platform,Publisher = Publisher),mean)
##      Platform                              Publisher            x
## 1          DS                        10TACLE Studios 0.0000000000
## 2         PS2                        10TACLE Studios 0.0000000000
## 3          PC                             1C Company 0.0066666667
## 4        2600           20th Century Fox Video Games 0.0020000000
## 5          PC                                 2D Boy 0.0100000000
## 6          GC                                    3DO 0.0000000000
## 7         N64                                    3DO 0.0020000000
## 8          PS                                    3DO 0.0225000000
## 9         PS2                                    3DO 0.0200000000
## 10         XB                                    3DO 0.0000000000
## 11       X360                                49Games 0.0000000000
## 12        3DS                              505 Games 0.0166666667
## 13         DS                              505 Games 0.0266153846
## 14         PC                              505 Games 0.0100000000
## 15        PS2                              505 Games 0.0109090909
## 16        PS3                              505 Games 0.0526666667
## 17        PS4                              505 Games 0.0466666667
## 18        PSP                              505 Games 0.0120000000
## 19        PSV                              505 Games 0.0200000000
## 20        Wii                              505 Games 0.0463333333
## 21       WiiU                              505 Games 0.0000000000
## 22       X360                              505 Games 0.0270370370
## 23         XB                              505 Games 0.0000000000
## 24       XOne                              505 Games 0.0083333333
## 25        3DS                                    5pb 0.0000000000
## 26        PS2                                    5pb 0.0000000000
## 27        PS3                                    5pb 0.0000000000
## 28        PS4                                    5pb 0.0000000000
## 29        PSP                                    5pb 0.0000000000
## 30        PSV                                    5pb 0.0000000000
## 31       X360                                    5pb 0.0000000000
## 32       XOne                                    5pb 0.0000000000
## 33         DS                               7G//AMES 0.0000000000
## 34        Wii                               7G//AMES 0.0000000000
## 35         PS                             989 Sports 0.0200000000
## 36         PS                            989 Studios 0.0478571429
## 37        PS3                               Abylight 0.0100000000
## 38         DC                  Acclaim Entertainment 0.0000000000
## 39        GBA                  Acclaim Entertainment 0.0000000000
## 40         GC                  Acclaim Entertainment 0.0029166667
## 41        GEN                  Acclaim Entertainment 0.0350000000
## 42        N64                  Acclaim Entertainment 0.0038709677
## 43         PC                  Acclaim Entertainment 0.0000000000
## 44         PS                  Acclaim Entertainment 0.0194444444
## 45        PS2                  Acclaim Entertainment 0.0554545455
## 46        SAT                  Acclaim Entertainment 0.0000000000
## 47       SNES                  Acclaim Entertainment 0.0400000000
## 48         XB                  Acclaim Entertainment 0.0033333333
## 49         PS                               Accolade 0.0233333333
## 50        3DS                            Ackkstudios 0.0000000000
## 51         DS                            Ackkstudios 0.0000000000
## 52        PS3                            Ackkstudios 0.0000000000
## 53        PSP                            Ackkstudios 0.0000000000
## 54        Wii                            Ackkstudios 0.0050000000
## 55        3DS                                Acquire 0.0000000000
## 56        PS2                                Acquire 0.0000000000
## 57        PS3                                Acquire 0.0000000000
## 58        PS4                                Acquire 0.0200000000
## 59        PSP                                Acquire 0.0014285714
## 60       2600                             Activision 0.0071428571
## 61        3DS                             Activision 0.0129629630
## 62         DC                             Activision 0.0000000000
## 63         DS                             Activision 0.0326126126
## 64         GB                             Activision 0.0500000000
## 65        GBA                             Activision 0.0061224490
## 66         GC                             Activision 0.0075000000
## 67        N64                             Activision 0.0053846154
## 68         PC                             Activision 0.0810714286
## 69         PS                             Activision 0.0506250000
## 70        PS2                             Activision 0.1319417476
## 71        PS3                             Activision 0.1765740741
## 72        PS4                             Activision 0.3095238095
## 73        PSP                             Activision 0.0608823529
## 74        PSV                             Activision 0.1133333333
## 75        Wii                             Activision 0.0489189189
## 76       WiiU                             Activision 0.0200000000
## 77       X360                             Activision 0.1026865672
## 78         XB                             Activision 0.0198360656
## 79       XOne                             Activision 0.0965000000
## 80         PC                    Activision Blizzard 0.0400000000
## 81        GBA                       Activision Value 0.0000000000
## 82         GC                       Activision Value 0.0000000000
## 83         PS                       Activision Value 0.0100000000
## 84        PS2                       Activision Value 0.0400000000
## 85        PS3                       Activision Value 0.0175000000
## 86        PSP                       Activision Value 0.0000000000
## 87        Wii                       Activision Value 0.0360000000
## 88       X360                       Activision Value 0.0085714286
## 89         XB                       Activision Value 0.0050000000
## 90         PS                       Adeline Software 0.0100000000
## 91         PC                               Aerosoft 0.0000000000
## 92        3DS                 Agatsuma Entertainment 0.0050000000
## 93        GBA                 Agatsuma Entertainment 0.0000000000
## 94         PS                                 Agetec 0.0033333333
## 95        PS2                                 Agetec 0.0450000000
## 96        PSP                                 Agetec 0.0000000000
## 97        3DS                            Aksys Games 0.0100000000
## 98         DS                            Aksys Games 0.0000000000
## 99        PS3                            Aksys Games 0.0100000000
## 100       PS4                            Aksys Games 0.0000000000
## 101       PSV                            Aksys Games 0.0075000000
## 102        PC                   Alawar Entertainment 0.0050000000
## 103       3DS                              Alchemist 0.0000000000
## 104        DS                              Alchemist 0.0000000000
## 105       PS2                              Alchemist 0.0115384615
## 106       PS3                              Alchemist 0.0000000000
## 107       PSP                              Alchemist 0.0000000000
## 108      X360                              Alchemist 0.0000000000
## 109        PC                   Alternative Software 0.0000000000
## 110       PS3                   Alternative Software 0.0100000000
## 111       PS4                   Alternative Software 0.0100000000
## 112       Wii                   Alternative Software 0.0100000000
## 113      X360                   Alternative Software 0.0000000000
## 114      XOne                   Alternative Software 0.0000000000
## 115       GBA                                 Altron 0.0000000000
## 116        DS                                 Alvion 0.0000000000
## 117        PS                     American Softworks 0.0200000000
## 118      SNES                          Angel Studios 0.0000000000
## 119      2600                        Answer Software 0.0100000000
## 120        DS                         AQ Interactive 0.0150000000
## 121       PS2                         AQ Interactive 0.0100000000
## 122       PSP                         AQ Interactive 0.0000000000
## 123        PS                              Aqua Plus 0.0100000000
## 124       PS2                              Aqua Plus 0.0000000000
## 125       PS3                              Aqua Plus 0.0012500000
## 126       PS4                              Aqua Plus 0.0000000000
## 127       PSP                              Aqua Plus 0.0000000000
## 128       PSV                              Aqua Plus 0.0000000000
## 129        PS                                  Aques 0.0100000000
## 130       3DS                       Arc System Works 0.0000000000
## 131        DS                       Arc System Works 0.0011111111
## 132       PS3                       Arc System Works 0.0080000000
## 133       PS4                       Arc System Works 0.0200000000
## 134       PSP                       Arc System Works 0.0000000000
## 135       PSV                       Arc System Works 0.0100000000
## 136       GEN                    Arena Entertainment 0.0700000000
## 137       PS2                                   Aria 0.0000000000
## 138        DS                                  Arika 0.0000000000
## 139       PS2                                  Arika 0.0050000000
## 140       3DS                                ArtDink 0.0000000000
## 141        DS                                ArtDink 0.0000000000
## 142        PS                                ArtDink 0.0100000000
## 143       PS2                                ArtDink 0.0000000000
## 144       PSP                                ArtDink 0.0000000000
## 145        PS                             Aruze Corp 0.0266666667
## 146        PS                              ASC Games 0.0433333333
## 147        PC                  Ascaron Entertainment 0.0000000000
## 148        PC             Ascaron Entertainment GmbH 0.0066666667
## 149        GB                    ASCII Entertainment 0.0000000000
## 150       N64                    ASCII Entertainment 0.0000000000
## 151        PS                    ASCII Entertainment 0.0437500000
## 152       PS2                    ASCII Entertainment 0.0000000000
## 153       SAT                    ASCII Entertainment 0.0000000000
## 154      SNES                    ASCII Entertainment 0.0012500000
## 155        DS                      ASCII Media Works 0.0000000000
## 156       PS2                      ASCII Media Works 0.0000000000
## 157       PSP                      ASCII Media Works 0.0000000000
## 158       PSV                      ASCII Media Works 0.0000000000
## 159       PSP                                 Asgard 0.0000000000
## 160       PSV                                 Asgard 0.0000000000
## 161       SAT                                    ASK 0.0000000000
## 162        PS                Asmik Ace Entertainment 0.0100000000
## 163       PS2                Asmik Ace Entertainment 0.0000000000
## 164      SNES                             Asmik Corp 0.0000000000
## 165        DS                                  Aspyr 0.0075000000
## 166       GBA                                  Aspyr 0.0000000000
## 167        PC                                  Aspyr 0.0050000000
## 168      X360                                  Aspyr 0.0100000000
## 169        DS                               Astragon 0.0125000000
## 170        PC                               Astragon 0.0050000000
## 171       3DS                   Asylum Entertainment 0.0100000000
## 172        DS                   Asylum Entertainment 0.0100000000
## 173       Wii                   Asylum Entertainment 0.0100000000
## 174      2600                                  Atari 0.0088888889
## 175       3DS                                  Atari 0.0000000000
## 176        DS                                  Atari 0.0105555556
## 177       GBA                                  Atari 0.0047727273
## 178        GC                                  Atari 0.0100000000
## 179        PC                                  Atari 0.0056000000
## 180        PS                                  Atari 0.0472727273
## 181       PS2                                  Atari 0.0700000000
## 182       PS3                                  Atari 0.0616666667
## 183       PSP                                  Atari 0.0229411765
## 184       Wii                                  Atari 0.0262500000
## 185      X360                                  Atari 0.0285000000
## 186        XB                                  Atari 0.0064864865
## 187       N64                                 Athena 0.0000000000
## 188       PS2                                 Athena 0.0000000000
## 189       3DS                                  Atlus 0.0080000000
## 190        DS                                  Atlus 0.0077777778
## 191       GBA                                  Atlus 0.0000000000
## 192        GC                                  Atlus 0.0000000000
## 193       N64                                  Atlus 0.0000000000
## 194        PS                                  Atlus 0.0137500000
## 195       PS2                                  Atlus 0.0183333333
## 196       PS3                                  Atlus 0.0350000000
## 197       PS4                                  Atlus 0.0000000000
## 198       PSP                                  Atlus 0.0070000000
## 199       PSV                                  Atlus 0.1200000000
## 200       SAT                                  Atlus 0.0000000000
## 201      SNES                                  Atlus 0.0000000000
## 202      WiiU                                  Atlus 0.0000000000
## 203      X360                                  Atlus 0.0100000000
## 204        XB                                  Atlus 0.0000000000
## 205      2600                     Avalon Interactive 0.0000000000
## 206        PS                     Avalon Interactive 0.0100000000
## 207       PS2                     Avalon Interactive 0.0100000000
## 208        XB                     Avalon Interactive 0.0000000000
## 209        DS                              Avanquest 0.0137500000
## 210        PC                              Avanquest 0.0025000000
## 211       PS4                              Avanquest 0.0000000000
## 212       Wii                              Avanquest 0.0050000000
## 213       3DS                     Avanquest Software 0.0000000000
## 214        DS                     Avanquest Software 0.0000000000
## 215        PC                     Avanquest Software 0.0050000000
## 216       PS3                     Avanquest Software 0.1100000000
## 217      X360                     Avanquest Software 0.0500000000
## 218        PS                                  Axela 0.0200000000
## 219       GBA                     BAM! Entertainment 0.0021428571
## 220        GC                     BAM! Entertainment 0.0000000000
## 221       N64                     BAM! Entertainment 0.0000000000
## 222        PS                     BAM! Entertainment 0.0150000000
## 223       PS2                     BAM! Entertainment 0.0225000000
## 224        XB                     BAM! Entertainment 0.0000000000
## 225        DS                              Banpresto 0.0016666667
## 226        GB                              Banpresto 0.0000000000
## 227       GBA                              Banpresto 0.0036363636
## 228       N64                              Banpresto 0.0150000000
## 229        PS                              Banpresto 0.0230000000
## 230       PS2                              Banpresto 0.0009523810
## 231       PSP                              Banpresto 0.0000000000
## 232       SAT                              Banpresto 0.0000000000
## 233      SNES                              Banpresto 0.0007692308
## 234      X360                              Banpresto 0.0100000000
## 235        DS                                Benesse 0.0000000000
## 236        PS                               Berkeley 0.0000000000
## 237        PC                     Bethesda Softworks 0.0866666667
## 238       PS2                     Bethesda Softworks 0.0416666667
## 239       PS3                     Bethesda Softworks 0.2461538462
## 240       PS4                     Bethesda Softworks 0.3314285714
## 241       Wii                     Bethesda Softworks 0.0300000000
## 242      X360                     Bethesda Softworks 0.1520000000
## 243        XB                     Bethesda Softworks 0.0025000000
## 244      XOne                     Bethesda Softworks 0.0971428571
## 245       3DS                    Big Ben Interactive 0.0000000000
## 246        DS                    Big Ben Interactive 0.0000000000
## 247       PS2                    Big Ben Interactive 0.0100000000
## 248       Wii                    Big Ben Interactive 0.0200000000
## 249        PC                         Big Fish Games 0.0000000000
## 250       PS3                     Bigben Interactive 0.0166666667
## 251       PS4                     Bigben Interactive 0.0133333333
## 252       PSV                     Bigben Interactive 0.0150000000
## 253      X360                     Bigben Interactive 0.0000000000
## 254      XOne                     Bigben Interactive 0.0050000000
## 255        PC                      bitComposer Games 0.0133333333
## 256       PS3                      bitComposer Games 0.0300000000
## 257      X360                      bitComposer Games 0.0100000000
## 258        DS                       Black Bean Games 0.0050000000
## 259        PC                       Black Bean Games 0.0050000000
## 260       PS2                       Black Bean Games 0.0033333333
## 261       PS3                       Black Bean Games 0.0250000000
## 262       PSP                       Black Bean Games 0.0000000000
## 263       Wii                       Black Bean Games 0.0083333333
## 264      X360                       Black Bean Games 0.0088888889
## 265       PS2                      Black Label Games 0.1500000000
## 266        DS               Blast! Entertainment Ltd 0.0033333333
## 267       PS2               Blast! Entertainment Ltd 0.0200000000
## 268       Wii               Blast! Entertainment Ltd 0.0000000000
## 269        PC                              Blue Byte 0.0000000000
## 270        PS          BMG Interactive Entertainment 0.0100000000
## 271        PC                    Bohemia Interactive 0.0200000000
## 272      2600                                   Bomb 0.0000000000
## 273       PSP                               Boost On 0.0000000000
## 274       NES                                    BPS 0.0000000000
## 275      SNES                                    BPS 0.0000000000
## 276        DS                    Brash Entertainment 0.0050000000
## 277       PS2                    Brash Entertainment 0.0233333333
## 278       Wii                    Brash Entertainment 0.0050000000
## 279      X360                    Brash Entertainment 0.0100000000
## 280        DS                               Broccoli 0.0000000000
## 281       PS2                               Broccoli 0.0000000000
## 282       PSP                               Broccoli 0.0000000000
## 283       PSV                               Broccoli 0.0000000000
## 284       PSP                              BushiRoad 0.0000000000
## 285       3DS                                 Capcom 0.0153333333
## 286        DC                                 Capcom 0.0000000000
## 287        DS                                 Capcom 0.0176000000
## 288        GB                                 Capcom 0.0100000000
## 289       GBA                                 Capcom 0.0040909091
## 290        GC                                 Capcom 0.0100000000
## 291       GEN                                 Capcom 0.0000000000
## 292       N64                                 Capcom 0.0000000000
## 293       NES                                 Capcom 0.1400000000
## 294        PC                                 Capcom 0.0075000000
## 295        PS                                 Capcom 0.0350000000
## 296       PS2                                 Capcom 0.0544262295
## 297       PS3                                 Capcom 0.0873809524
## 298       PS4                                 Capcom 0.0212500000
## 299       PSP                                 Capcom 0.0292307692
## 300       PSV                                 Capcom 0.0333333333
## 301       SAT                                 Capcom 0.0000000000
## 302      SNES                                 Capcom 0.0475000000
## 303       Wii                                 Capcom 0.0383333333
## 304      WiiU                                 Capcom 0.0050000000
## 305      X360                                 Capcom 0.0545714286
## 306        XB                                 Capcom 0.0018750000
## 307      XOne                                 Capcom 0.0060000000
## 308        DS                                   Cave 0.0100000000
## 309      X360                                   Cave 0.0000000000
## 310      2600                        CBS Electronics 0.0000000000
## 311        PC                                    CCP 0.0200000000
## 312        DS             CDV Software Entertainment 0.0000000000
## 313        PC             CDV Software Entertainment 0.0000000000
## 314       Wii             CDV Software Entertainment 0.0100000000
## 315       3DS                               ChunSoft 0.0000000000
## 316        DS                               ChunSoft 0.0100000000
## 317        GB                               ChunSoft 0.0000000000
## 318       N64                               ChunSoft 0.0500000000
## 319        PS                               ChunSoft 0.0100000000
## 320       PS2                               ChunSoft 0.0000000000
## 321       PSP                               ChunSoft 0.0000000000
## 322       PSV                               ChunSoft 0.0000000000
## 323       SAT                               ChunSoft 0.0000000000
## 324      SNES                               ChunSoft 0.0000000000
## 325      X360                               ChunSoft 0.0000000000
## 326        DS                       City Interactive 0.0077777778
## 327        PC                       City Interactive 0.0233333333
## 328       PS3                       City Interactive 0.0733333333
## 329       Wii                       City Interactive 0.0150000000
## 330      X360                       City Interactive 0.0700000000
## 331       PS3       Cloud Imperium Games Corporation 0.0000000000
## 332      X360       Cloud Imperium Games Corporation 0.0000000000
## 333        PS                         Coconuts Japan 0.0000000000
## 334      SNES                         Coconuts Japan 0.0000000000
## 335       3DS                            Codemasters 0.0200000000
## 336        DS                            Codemasters 0.0071428571
## 337       GBA                            Codemasters 0.0000000000
## 338        GC                            Codemasters 0.0000000000
## 339       N64                            Codemasters 0.0000000000
## 340        PC                            Codemasters 0.0066666667
## 341        PS                            Codemasters 0.0822222222
## 342       PS2                            Codemasters 0.0582352941
## 343       PS3                            Codemasters 0.1007692308
## 344       PS4                            Codemasters 0.0600000000
## 345       PSP                            Codemasters 0.0266666667
## 346       PSV                            Codemasters 0.0300000000
## 347       Wii                            Codemasters 0.0350000000
## 348      X360                            Codemasters 0.0400000000
## 349        XB                            Codemasters 0.0000000000
## 350      XOne                            Codemasters 0.0133333333
## 351        PC                     Codemasters Online 0.0000000000
## 352        DS                      CokeM Interactive 0.0200000000
## 353      2600                                 Coleco 0.0060000000
## 354       PS2                                Comfort 0.0000000000
## 355       PSP                                Comfort 0.0000000000
## 356        DS                               Commseed 0.0000000000
## 357       N64                                Compile 0.0300000000
## 358        PS                                Compile 0.0700000000
## 359       SAT                                Compile 0.0000000000
## 360      SNES                                Compile 0.0000000000
## 361       PS3                          Compile Heart 0.0050000000
## 362       PS4                          Compile Heart 0.0000000000
## 363       PSP                          Compile Heart 0.0000000000
## 364       PSV                          Compile Heart 0.0025000000
## 365      X360                          Compile Heart 0.0066666667
## 366        DS               Conspiracy Entertainment 0.0033333333
## 367       GBA               Conspiracy Entertainment 0.0000000000
## 368        PS               Conspiracy Entertainment 0.0200000000
## 369       PS2               Conspiracy Entertainment 0.0100000000
## 370       PS3               Conspiracy Entertainment 0.0000000000
## 371       PSP               Conspiracy Entertainment 0.0000000000
## 372       Wii               Conspiracy Entertainment 0.0000000000
## 373      X360               Conspiracy Entertainment 0.0000000000
## 374        PS                       Core Design Ltd. 0.0100000000
## 375      2600                           CPG Products 0.0100000000
## 376       3DS                    Crave Entertainment 0.0075000000
## 377        DS                    Crave Entertainment 0.0060000000
## 378       GBA                    Crave Entertainment 0.0000000000
## 379        GC                    Crave Entertainment 0.0000000000
## 380       N64                    Crave Entertainment 0.0000000000
## 381        PS                    Crave Entertainment 0.0200000000
## 382       PS2                    Crave Entertainment 0.0350000000
## 383       PS3                    Crave Entertainment 0.0100000000
## 384       PSP                    Crave Entertainment 0.0125000000
## 385       Wii                    Crave Entertainment 0.0069230769
## 386      X360                    Crave Entertainment 0.0075000000
## 387        XB                    Crave Entertainment 0.0033333333
## 388        DS                          Creative Core 0.0000000000
## 389        PC                            Crimson Cow 0.0050000000
## 390        PS                       Crystal Dynamics 0.0240000000
## 391        PS                                CTO SpA 0.0300000000
## 392        DS                          Culture Brain 0.0000000000
## 393      SNES                          Culture Brain 0.0000000000
## 394        PS                     Culture Publishers 0.0100000000
## 395       PS2                             CyberFront 0.0000000000
## 396       PSP                             CyberFront 0.0000000000
## 397       PSV                             CyberFront 0.0000000000
## 398      X360                             CyberFront 0.0000000000
## 399       PSV                                Cygames 0.0000000000
## 400       3DS                            D3Publisher 0.0042857143
## 401        DS                            D3Publisher 0.0112500000
## 402       GBA                            D3Publisher 0.0000000000
## 403        GC                            D3Publisher 0.0000000000
## 404        PS                            D3Publisher 0.0275000000
## 405       PS2                            D3Publisher 0.0441666667
## 406       PS3                            D3Publisher 0.0128571429
## 407       PS4                            D3Publisher 0.0000000000
## 408       PSP                            D3Publisher 0.0125000000
## 409       PSV                            D3Publisher 0.0011111111
## 410       Wii                            D3Publisher 0.0177272727
## 411      WiiU                            D3Publisher 0.0000000000
## 412      X360                            D3Publisher 0.0100000000
## 413        PC                               Daedalic 0.0200000000
## 414        PC                 Daedalic Entertainment 0.0033333333
## 415       PS2                                  Daito 0.0000000000
## 416       PSP                                  Daito 0.0000000000
## 417      2600                               Data Age 0.0000000000
## 418       Wii                Data Design Interactive 0.0066666667
## 419       SAT                              Data East 0.0000000000
## 420      SNES                              Data East 0.0000000000
## 421       PS2                         Datam Polystar 0.0000000000
## 422       3DS                            Deep Silver 0.0050000000
## 423        DS                            Deep Silver 0.0057142857
## 424        PC                            Deep Silver 0.0142857143
## 425       PS3                            Deep Silver 0.0570000000
## 426       PS4                            Deep Silver 0.0300000000
## 427       PSP                            Deep Silver 0.0100000000
## 428       Wii                            Deep Silver 0.0176923077
## 429      WiiU                            Deep Silver 0.0000000000
## 430      X360                            Deep Silver 0.0304545455
## 431        XB                            Deep Silver 0.0066666667
## 432      XOne                            Deep Silver 0.0100000000
## 433        DS              Destination Software, Inc 0.0060000000
## 434       GBA              Destination Software, Inc 0.0000000000
## 435        DS                              Destineer 0.0050000000
## 436        PC                              Destineer 0.0000000000
## 437       PS2                              Destineer 0.0000000000
## 438       PSP                              Destineer 0.0000000000
## 439       Wii                              Destineer 0.0078947368
## 440       Wii                            Detn8 Games 0.0200000000
## 441        PC                       Devolver Digital 0.0000000000
## 442       PS4                       Devolver Digital 0.0000000000
## 443        DS                        DHM Interactive 0.0100000000
## 444       PSP                        DHM Interactive 0.0000000000
## 445       PS2                               DigiCube 0.0000000000
## 446       3DS             Disney Interactive Studios 0.0300000000
## 447        DS             Disney Interactive Studios 0.0576271186
## 448       GBA             Disney Interactive Studios 0.0063157895
## 449        GC             Disney Interactive Studios 0.0066666667
## 450        PC             Disney Interactive Studios 0.0025000000
## 451       PS2             Disney Interactive Studios 0.1652941176
## 452       PS3             Disney Interactive Studios 0.0813636364
## 453       PS4             Disney Interactive Studios 0.1050000000
## 454       PSP             Disney Interactive Studios 0.0490000000
## 455       PSV             Disney Interactive Studios 0.0250000000
## 456       Wii             Disney Interactive Studios 0.0705128205
## 457      WiiU             Disney Interactive Studios 0.0316666667
## 458      X360             Disney Interactive Studios 0.0500000000
## 459        XB             Disney Interactive Studios 0.0025000000
## 460      XOne             Disney Interactive Studios 0.0233333333
## 461       PSP                                 Dorart 0.0000000000
## 462       PSV                        dramatic create 0.0000000000
## 463        DS               DreamCatcher Interactive 0.0040000000
## 464        PC               DreamCatcher Interactive 0.0050000000
## 465       PS2               DreamCatcher Interactive 0.0100000000
## 466        XB               DreamCatcher Interactive 0.0000000000
## 467        PS                 DreamWorks Interactive 0.0100000000
## 468        DS                              DSI Games 0.0020000000
## 469       GBA                              DSI Games 0.0000000000
## 470       3DS                      DTP Entertainment 0.0050000000
## 471        DS                      DTP Entertainment 0.0066666667
## 472       GBA                      DTP Entertainment 0.0000000000
## 473        PC                      DTP Entertainment 0.0069230769
## 474       PS2                      DTP Entertainment 0.1800000000
## 475       PS3                      DTP Entertainment 0.0175000000
## 476       Wii                      DTP Entertainment 0.0028571429
## 477      X360                      DTP Entertainment 0.0085714286
## 478       PS4               Dusenberry Martin Racing 0.0100000000
## 479      XOne               Dusenberry Martin Racing 0.0000000000
## 480       PS3                               EA Games 0.0200000000
## 481        DS                       Easy Interactive 0.0000000000
## 482       PS2                                  Ecole 0.0000000000
## 483       PSP                                   Edia 0.0000000000
## 484        DC                      Eidos Interactive 0.0150000000
## 485        DS                      Eidos Interactive 0.0109523810
## 486        GB                      Eidos Interactive 0.0100000000
## 487       GBA                      Eidos Interactive 0.0100000000
## 488        GC                      Eidos Interactive 0.0062500000
## 489        PC                      Eidos Interactive 0.0182142857
## 490        PS                      Eidos Interactive 0.0700000000
## 491       PS2                      Eidos Interactive 0.0556818182
## 492       PS3                      Eidos Interactive 0.1742857143
## 493       PSP                      Eidos Interactive 0.0428571429
## 494       Wii                      Eidos Interactive 0.0241666667
## 495      X360                      Eidos Interactive 0.0528571429
## 496        XB                      Eidos Interactive 0.0087500000
## 497       3DS                        Electronic Arts 0.0371428571
## 498        DS                        Electronic Arts 0.0397468354
## 499        GB                        Electronic Arts 0.0700000000
## 500       GBA                        Electronic Arts 0.0095000000
## 501        GC                        Electronic Arts 0.0081111111
## 502       N64                        Electronic Arts 0.0108695652
## 503        PC                        Electronic Arts 0.0447972973
## 504        PS                        Electronic Arts 0.0472641509
## 505       PS2                        Electronic Arts 0.2104020101
## 506       PS3                        Electronic Arts 0.1937323944
## 507       PS4                        Electronic Arts 0.3346153846
## 508       PSP                        Electronic Arts 0.1068055556
## 509       PSV                        Electronic Arts 0.1350000000
## 510       SAT                        Electronic Arts 0.0000000000
## 511       Wii                        Electronic Arts 0.0664444444
## 512      WiiU                        Electronic Arts 0.0250000000
## 513      X360                        Electronic Arts 0.0956287425
## 514        XB                        Electronic Arts 0.0180487805
## 515      XOne                        Electronic Arts 0.0907407407
## 516        PS                 Electronic Arts Victor 0.0150000000
## 517       SAT                                    Elf 0.0000000000
## 518        PS                                  Elite 0.0000000000
## 519        DS                     Empire Interactive 0.0133333333
## 520       GBA                     Empire Interactive 0.0000000000
## 521        GC                     Empire Interactive 0.0000000000
## 522        PC                     Empire Interactive 0.0000000000
## 523        PS                     Empire Interactive 0.0216666667
## 524       PS2                     Empire Interactive 0.0456250000
## 525       PSP                     Empire Interactive 0.0400000000
## 526      X360                     Empire Interactive 0.0100000000
## 527        XB                     Empire Interactive 0.0045454545
## 528        GC                                 Encore 0.0000000000
## 529        PC                                 Encore 0.0000000000
## 530        PS                                 Encore 0.0000000000
## 531        XB                                 Encore 0.0000000000
## 532        GB                       Enix Corporation 0.0000000000
## 533       GBA                       Enix Corporation 0.0200000000
## 534       N64                       Enix Corporation 0.0400000000
## 535       NES                       Enix Corporation 0.0033333333
## 536        PS                       Enix Corporation 0.0266666667
## 537       PS2                       Enix Corporation 0.0050000000
## 538      SNES                       Enix Corporation 0.0011111111
## 539        DS                      Enjoy Gaming ltd. 0.0100000000
## 540        DS                             Enterbrain 0.0000000000
## 541       GBA                             Enterbrain 0.0000000000
## 542        PS                             Enterbrain 0.0300000000
## 543       PS2                             Enterbrain 0.0044444444
## 544       PSP                             Enterbrain 0.0000000000
## 545        PS              EON Digital Entertainment 0.0000000000
## 546       PS4                             Epic Games 0.0000000000
## 547       N64                                  Epoch 0.0600000000
## 548      SNES                                  Epoch 0.0000000000
## 549        DS                                 Ertain 0.0000000000
## 550       GBA                                    ESP 0.0000000000
## 551        PS                                    ESP 0.0000000000
## 552       SAT                                    ESP 0.0000000000
## 553       PS2                        Essential Games 0.0000000000
## 554        PS                        Evolution Games 0.0000000000
## 555        PC                          Evolved Games 0.0000000000
## 556       PS2                          Evolved Games 0.0050000000
## 557       PS3                          Evolved Games 0.0100000000
## 558      X360                          Evolved Games 0.0050000000
## 559        XB                          Evolved Games 0.0000000000
## 560       3DS                   Excalibur Publishing 0.0200000000
## 561        PC                   Excalibur Publishing 0.0066666667
## 562       PSV                        Experience Inc. 0.0000000000
## 563       3DS            Extreme Entertainment Group 0.0000000000
## 564       PS3                     Falcom Corporation 0.0000000000
## 565       PSP                     Falcom Corporation 0.0025000000
## 566       PSV                     Falcom Corporation 0.0000000000
## 567       PS3                                 Fields 0.0000000000
## 568       GBA                       Flashpoint Games 0.0000000000
## 569       Wii                       Flashpoint Games 0.0000000000
## 570       PS2                            Flight-Plan 0.0000000000
## 571        DS                 Focus Home Interactive 0.0160000000
## 572        PC                 Focus Home Interactive 0.0178571429
## 573       PS3                 Focus Home Interactive 0.0300000000
## 574       PS4                 Focus Home Interactive 0.0250000000
## 575       PSV                 Focus Home Interactive 0.0000000000
## 576       Wii                 Focus Home Interactive 0.0200000000
## 577      X360                 Focus Home Interactive 0.0125000000
## 578      XOne                 Focus Home Interactive 0.0066666667
## 579        PC                       Focus Multimedia 0.0000000000
## 580       PSP                                 fonfun 0.0000000000
## 581        DS                    Foreign Media Games 0.0055555556
## 582        DC                              Fortyfive 0.0000000000
## 583       N64                        Fox Interactive 0.0000000000
## 584        PS                        Fox Interactive 0.0614285714
## 585        DS                          From Software 0.0000000000
## 586        PS                          From Software 0.0150000000
## 587       PS2                          From Software 0.0100000000
## 588       PS3                          From Software 0.0000000000
## 589       PSP                          From Software 0.0000000000
## 590        XB                          From Software 0.0000000000
## 591        PS                                   Fuji 0.0000000000
## 592       3DS                           Funbox Media 0.0050000000
## 593       PS3                           Funbox Media 0.0100000000
## 594       PSV                           Funbox Media 0.0000000000
## 595       Wii                           Funbox Media 0.0200000000
## 596        PC                                 Funcom 0.0100000000
## 597        PS                                FunSoft 0.0100000000
## 598        DS                                 Funsta 0.0050000000
## 599       PSP                                 Funsta 0.0000000000
## 600       Wii                                 Funsta 0.0000000000
## 601       3DS                                  FuRyu 0.0007142857
## 602        DS                                  FuRyu 0.0000000000
## 603       PSP                                  FuRyu 0.0000000000
## 604       PSV                                  FuRyu 0.0000000000
## 605       PS4                      FuRyu Corporation 0.0100000000
## 606      X360                                  G.Rev 0.0000000000
## 607       SAT                                   Gaga 0.0000000000
## 608        PS                 Gainax Network Systems 0.0050000000
## 609        DS                                 Gakken 0.0000000000
## 610       GEN                              Game Arts 0.0000000000
## 611        DS                           Game Factory 0.0088888889
## 612       GBA                           Game Factory 0.0000000000
## 613       PS2                           Game Factory 0.0050000000
## 614       PSP                           Game Factory 0.0000000000
## 615       Wii                           Game Factory 0.0120000000
## 616        DS                              Game Life 0.0150000000
## 617       PS3                             Gamebridge 0.0400000000
## 618      X360                             Gamebridge 0.0200000000
## 619        DS                               Gamecock 0.0000000000
## 620        PC                               Gamecock 0.0000000000
## 621       PS3                               Gamecock 0.0000000000
## 622      X360                               Gamecock 0.0000000000
## 623        DS                               Gameloft 0.0100000000
## 624        DS                 GameMill Entertainment 0.0080000000
## 625       Wii                 GameMill Entertainment 0.0200000000
## 626      X360                 GameMill Entertainment 0.0100000000
## 627       N64                                GameTek 0.0000000000
## 628        PC                Gathering of Developers 0.0100000000
## 629       PS2                Gathering of Developers 0.0266666667
## 630        XB                Gathering of Developers 0.0033333333
## 631        PS                  General Entertainment 0.0100000000
## 632       3DS                                  Genki 0.0000000000
## 633        DC                                  Genki 0.0000000000
## 634        DS                                  Genki 0.0000000000
## 635       PS2                                  Genki 0.0550000000
## 636       PS3                                  Genki 0.0000000000
## 637       PSP                                  Genki 0.0000000000
## 638        XB                                  Genki 0.0000000000
## 639        DS                            Genterprise 0.0000000000
## 640       3DS                             Ghostlight 0.0200000000
## 641        DS                             Ghostlight 0.0060000000
## 642       PS2                             Ghostlight 0.0175000000
## 643       PS3                             Ghostlight 0.0100000000
## 644       PSP                             Ghostlight 0.0350000000
## 645       Wii                             Ghostlight 0.0100000000
## 646       PSV                                   Giga 0.0000000000
## 647       PSP                                 Giza10 0.0000000000
## 648       SAT                                  Glams 0.0000000000
## 649        DS                 Global A Entertainment 0.0000000000
## 650       PSP                 Global A Entertainment 0.0050000000
## 651       GBA                            Global Star 0.0033333333
## 652        GC                            Global Star 0.0000000000
## 653       PS2                            Global Star 0.0392857143
## 654        XB                            Global Star 0.0043750000
## 655       PS2                            GN Software 0.0000000000
## 656       PSP                            GN Software 0.0000000000
## 657        PC                                    GOA 0.0000000000
## 658       GBA                           Gotham Games 0.0100000000
## 659        GC                           Gotham Games 0.0000000000
## 660        PS                           Gotham Games 0.0300000000
## 661       PS2                           Gotham Games 0.0566666667
## 662        XB                           Gotham Games 0.0100000000
## 663        DS                               Graffiti 0.0000000000
## 664       PSP                               Graffiti 0.0000000000
## 665       Wii                               Graffiti 0.0050000000
## 666       PSP                       Grand Prix Games 0.0000000000
## 667        PC                 Graphsim Entertainment 0.0000000000
## 668       N64                Gremlin Interactive Ltd 0.0000000000
## 669        PS                Gremlin Interactive Ltd 0.0062500000
## 670      X360                  Griffin International 0.0100000000
## 671        XB                           Groove Games 0.0000000000
## 672        DS                                    GSP 0.0242857143
## 673        PC                                    GSP 0.0100000000
## 674       Wii                                    GSP 0.0200000000
## 675       N64                         GT Interactive 0.0033333333
## 676        PS                         GT Interactive 0.0400000000
## 677       3DS                                 GungHo 0.0000000000
## 678        DS                                 GungHo 0.0050000000
## 679       PS3                                 GungHo 0.0100000000
## 680       PSP                                 GungHo 0.0100000000
## 681       PSV                                 GungHo 0.0166666667
## 682        DS                                   Gust 0.0050000000
## 683        PS                                   Gust 0.0100000000
## 684       PS2                                   Gust 0.0066666667
## 685       PSP                                   Gust 0.0000000000
## 686       PSV                                   Gust 0.0000000000
## 687       PS2                              Hackberry 0.0000000000
## 688       NES                         HAL Laboratory 0.0000000000
## 689        PS                    Hamster Corporation 0.0200000000
## 690       PS2                    Hamster Corporation 0.0000000000
## 691       3DS                               Happinet 0.0000000000
## 692       PS4                 Harmonix Music Systems 0.0700000000
## 693      XOne                 Harmonix Music Systems 0.0400000000
## 694       GBA                     Hasbro Interactive 0.0000000000
## 695       N64                     Hasbro Interactive 0.0050000000
## 696        PC                     Hasbro Interactive 0.1000000000
## 697        PS                     Hasbro Interactive 0.0441666667
## 698        PC                      Havas Interactive 0.0200000000
## 699        PC                           Headup Games 0.0000000000
## 700        PS                           Hearty Robin 0.0100000000
## 701        PS                                   Hect 0.0000000000
## 702      SNES                                   Hect 0.0000000000
## 703       PS4                            Hello Games 0.2600000000
## 704        PC                        Her Interactive 0.0000000000
## 705       GBA                        Hip Interactive 0.0000000000
## 706       PS2                        Hip Interactive 0.0000000000
## 707        XB                        Hip Interactive 0.0000000000
## 708        DS                        HMH Interactive 0.0000000000
## 709        PC                        HMH Interactive 0.0200000000
## 710        PC           Home Entertainment Suppliers 0.0100000000
## 711       PS3           Home Entertainment Suppliers 0.0350000000
## 712      X360           Home Entertainment Suppliers 0.0200000000
## 713        DS                   Hudson Entertainment 0.0000000000
## 714       GBA                   Hudson Entertainment 0.0000000000
## 715       N64                   Hudson Entertainment 0.0000000000
## 716        PS                   Hudson Entertainment 0.0400000000
## 717       PSP                   Hudson Entertainment 0.0100000000
## 718       Wii                   Hudson Entertainment 0.0050000000
## 719       3DS                            Hudson Soft 0.0100000000
## 720        DS                            Hudson Soft 0.0013333333
## 721       GBA                            Hudson Soft 0.0000000000
## 722        GC                            Hudson Soft 0.0000000000
## 723       N64                            Hudson Soft 0.0100000000
## 724       NES                            Hudson Soft 0.0157142857
## 725        NG                            Hudson Soft 0.0000000000
## 726        PS                            Hudson Soft 0.0050000000
## 727       PS2                            Hudson Soft 0.0000000000
## 728       PS3                            Hudson Soft 0.0100000000
## 729       PSP                            Hudson Soft 0.0000000000
## 730       SAT                            Hudson Soft 0.0000000000
## 731      SNES                            Hudson Soft 0.0000000000
## 732      TG16                            Hudson Soft 0.0000000000
## 733       Wii                            Hudson Soft 0.0083333333
## 734      X360                            Hudson Soft 0.0200000000
## 735        XB                            Hudson Soft 0.0000000000
## 736        PS                    Human Entertainment 0.0125000000
## 737       SAT                    Human Entertainment 0.0000000000
## 738      SNES                    Human Entertainment 0.0000000000
## 739       PSV                                  HuneX 0.0000000000
## 740        PC                    Iceberg Interactive 0.0000000000
## 741        PC                            id Software 0.0000000000
## 742        DS                           Idea Factory 0.0000000000
## 743       PS2                           Idea Factory 0.0000000000
## 744       PS3                           Idea Factory 0.0000000000
## 745       PS4                           Idea Factory 0.0000000000
## 746       PSP                           Idea Factory 0.0002898551
## 747       PSV                           Idea Factory 0.0021875000
## 748      X360                           Idea Factory 0.0050000000
## 749       PS4             Idea Factory International 0.0000000000
## 750       PSV             Idea Factory International 0.0225000000
## 751       3DS                           IE Institute 0.0000000000
## 752        DS                           IE Institute 0.0000000000
## 753        DS                 Ignition Entertainment 0.0053846154
## 754       GBA                 Ignition Entertainment 0.0000000000
## 755        GC                 Ignition Entertainment 0.0000000000
## 756       PS2                 Ignition Entertainment 0.0147058824
## 757       PS3                 Ignition Entertainment 0.0133333333
## 758       PSP                 Ignition Entertainment 0.0212500000
## 759       Wii                 Ignition Entertainment 0.0066666667
## 760      X360                 Ignition Entertainment 0.0100000000
## 761        XB                 Ignition Entertainment 0.0000000000
## 762       PS2                     Illusion Softworks 0.0900000000
## 763       SAT                                 Imadio 0.0000000000
## 764       PSP                            Image Epoch 0.0000000000
## 765       3DS                        imageepoch Inc. 0.0000000000
## 766       3DO                             Imageworks 0.0000000000
## 767      2600                                 Imagic 0.0100000000
## 768        GB                              Imagineer 0.0000000000
## 769       N64                              Imagineer 0.0000000000
## 770        PS                              Imagineer 0.0000000000
## 771       SAT                              Imagineer 0.0000000000
## 772      SNES                              Imagineer 0.0000000000
## 773      SNES                                   Imax 0.0000000000
## 774       PS2                            Indie Games 0.0066666667
## 775        DC                             Infogrames 0.0000000000
## 776       GBA                             Infogrames 0.0100000000
## 777        GC                             Infogrames 0.0100000000
## 778       N64                             Infogrames 0.0000000000
## 779        PC                             Infogrames 0.0000000000
## 780        PS                             Infogrames 0.0130434783
## 781       PS2                             Infogrames 0.0485714286
## 782        XB                             Infogrames 0.0083333333
## 783        PC                        Insomniac Games 0.0000000000
## 784       PS4                        Insomniac Games 0.0100000000
## 785      XOne                        Insomniac Games 0.0000000000
## 786       PS2                           Interchannel 0.0000000000
## 787       PS2                     Interchannel-Holon 0.0000000000
## 788       3DS                              Intergrow 0.0000000000
## 789       GBA                              Interplay 0.0100000000
## 790       N64                              Interplay 0.0000000000
## 791        PC                              Interplay 0.0033333333
## 792        PS                              Interplay 0.0160000000
## 793       PS2                              Interplay 0.0475000000
## 794      SNES                              Interplay 0.0000000000
## 795        XB                              Interplay 0.0100000000
## 796        PS                  Interplay Productions 0.0100000000
## 797       PS3             Interworks Unlimited, Inc. 0.0000000000
## 798       3DS                           Inti Creates 0.0000000000
## 799       PS4                  Introversion Software 0.0000000000
## 800        PC                   inXile Entertainment 0.0100000000
## 801       3DS              Irem Software Engineering 0.0000000000
## 802        PS              Irem Software Engineering 0.0000000000
## 803       PS2              Irem Software Engineering 0.0000000000
## 804       PS3              Irem Software Engineering 0.0000000000
## 805       PSP              Irem Software Engineering 0.0016666667
## 806      2600                       ITT Family Games 0.0000000000
## 807       PSP                              Ivolgamus 0.0000000000
## 808        DS                                   iWin 0.0100000000
## 809        DS                      Jack of All Games 0.0000000000
## 810       GBA                      Jack of All Games 0.0100000000
## 811        DS                                 Jaleco 0.0033333333
## 812       GBA                                 Jaleco 0.0000000000
## 813        GC                                 Jaleco 0.0000000000
## 814        PS                                 Jaleco 0.0100000000
## 815       PS2                                 Jaleco 0.0100000000
## 816       SAT                                 Jaleco 0.0000000000
## 817       Wii                                 Jaleco 0.0000000000
## 818        XB                                 Jaleco 0.0000000000
## 819       PS2                     Jester Interactive 0.0466666667
## 820        GB                                Jorudan 0.0000000000
## 821       GBA                                Jorudan 0.0100000000
## 822        DS                     JoWood Productions 0.0016666667
## 823        GC                     JoWood Productions 0.0000000000
## 824        PC                     JoWood Productions 0.0100000000
## 825       PS2                     JoWood Productions 0.0050000000
## 826       Wii                     JoWood Productions 0.0133333333
## 827      X360                     JoWood Productions 0.0100000000
## 828        XB                     JoWood Productions 0.0000000000
## 829        PC                            Just Flight 0.0100000000
## 830        PS                                    JVC 0.0100000000
## 831       SAT                                    JVC 0.0000000000
## 832       3DS                         Kadokawa Games 0.0000000000
## 833       PS3                         Kadokawa Games 0.0000000000
## 834       PSP                         Kadokawa Games 0.0000000000
## 835       PSV                         Kadokawa Games 0.0000000000
## 836       3DS                        Kadokawa Shoten 0.0000000000
## 837        DS                        Kadokawa Shoten 0.0000000000
## 838        PS                        Kadokawa Shoten 0.0233333333
## 839       PS2                        Kadokawa Shoten 0.0000000000
## 840       PSP                        Kadokawa Shoten 0.0000000000
## 841       PSV                        Kadokawa Shoten 0.0000000000
## 842       SAT                        Kadokawa Shoten 0.0000000000
## 843       Wii                        Kadokawa Shoten 0.0000000000
## 844       PS3                            Kaga Create 0.0000000000
## 845       PSP                            Kaga Create 0.0000000000
## 846       PSV                            Kaga Create 0.0000000000
## 847        PC                          Kalypso Media 0.0050000000
## 848       PS3                          Kalypso Media 0.0100000000
## 849       PS4                          Kalypso Media 0.0250000000
## 850      X360                          Kalypso Media 0.0150000000
## 851        DS                                  Kamui 0.0000000000
## 852       PS2                            Kando Games 0.0000000000
## 853       PSP                    Karin Entertainment 0.0000000000
## 854       GBA                                  Kemco 0.0000000000
## 855        GC                                  Kemco 0.0000000000
## 856       N64                                  Kemco 0.0000000000
## 857        PS                                  Kemco 0.0100000000
## 858       PS2                                  Kemco 0.0150000000
## 859      SNES                                  Kemco 0.0000000000
## 860        XB                                  Kemco 0.0000000000
## 861       PS2                                    KID 0.0000000000
## 862       SAT                                    KID 0.0000000000
## 863        DS                           Kids Station 0.0000000000
## 864       GBA                           King Records 0.0000000000
## 865       GBA                    Knowledge Adventure 0.0050000000
## 866       Wii                    Knowledge Adventure 0.0300000000
## 867       3DS                             Koch Media 0.0000000000
## 868        DS                             Koch Media 0.0900000000
## 869        PC                             Koch Media 0.0025000000
## 870       PS2                             Koch Media 0.3300000000
## 871       PS3                             Koch Media 0.0450000000
## 872       PS4                             Koch Media 0.0500000000
## 873       PSP                             Koch Media 0.1000000000
## 874       Wii                             Koch Media 0.0400000000
## 875      X360                             Koch Media 0.0250000000
## 876      XOne                             Koch Media 0.0100000000
## 877        PS               Kokopeli Digital Studios 0.0000000000
## 878       3DO           Konami Digital Entertainment 0.0000000000
## 879       3DS           Konami Digital Entertainment 0.0075000000
## 880        DC           Konami Digital Entertainment 0.0000000000
## 881        DS           Konami Digital Entertainment 0.0036607143
## 882        GB           Konami Digital Entertainment 0.0020000000
## 883       GBA           Konami Digital Entertainment 0.0070000000
## 884        GC           Konami Digital Entertainment 0.0020833333
## 885       GEN           Konami Digital Entertainment 0.0000000000
## 886       N64           Konami Digital Entertainment 0.0200000000
## 887       NES           Konami Digital Entertainment 0.0088888889
## 888        PC           Konami Digital Entertainment 0.0058333333
## 889        PS           Konami Digital Entertainment 0.0237500000
## 890       PS2           Konami Digital Entertainment 0.1018404908
## 891       PS3           Konami Digital Entertainment 0.0640983607
## 892       PS4           Konami Digital Entertainment 0.1371428571
## 893       PSP           Konami Digital Entertainment 0.0291139241
## 894       PSV           Konami Digital Entertainment 0.0108333333
## 895       SAT           Konami Digital Entertainment 0.0000000000
## 896      SNES           Konami Digital Entertainment 0.0005263158
## 897       Wii           Konami Digital Entertainment 0.0280000000
## 898      X360           Konami Digital Entertainment 0.0216326531
## 899        XB           Konami Digital Entertainment 0.0051612903
## 900      XOne           Konami Digital Entertainment 0.0200000000
## 901        XB                              Kool Kizz 0.0000000000
## 902      SNES                                    KSS 0.0000000000
## 903      SNES                                 Laguna 0.0025000000
## 904        DS                     Legacy Interactive 0.0000000000
## 905       GBA                             LEGO Media 0.0000000000
## 906       N64                             LEGO Media 0.0100000000
## 907        PC                             LEGO Media 0.0000000000
## 908        PS                             LEGO Media 0.0133333333
## 909       3DS                                Level 5 0.0036363636
## 910        DS                                Level 5 0.0000000000
## 911       PSP                                Level 5 0.0000000000
## 912       PSV                                Level 5 0.0000000000
## 913       Wii                                Level 5 0.0000000000
## 914      WiiU                                Level 5 0.0000000000
## 915        DS                  Lexicon Entertainment 0.0000000000
## 916       3DS                            Licensed 4U 0.0000000000
## 917        DS                            Licensed 4U 0.0000000000
## 918        PC                 Lighthouse Interactive 0.0000000000
## 919       GBA                           Liquid Games 0.0000000000
## 920       3DS                           Little Orbit 0.0042857143
## 921        DS                           Little Orbit 0.0000000000
## 922       PS3                           Little Orbit 0.0125000000
## 923       PS4                           Little Orbit 0.0100000000
## 924       Wii                           Little Orbit 0.0066666667
## 925      WiiU                           Little Orbit 0.0033333333
## 926      X360                           Little Orbit 0.0066666667
## 927      XOne                           Little Orbit 0.0000000000
## 928        PS                                  Locus 0.0000000000
## 929       GBA                              LSP Games 0.0000000000
## 930       PS2                              LSP Games 0.0100000000
## 931       3DS                              LucasArts 0.0900000000
## 932        DS                              LucasArts 0.1011111111
## 933       GBA                              LucasArts 0.0000000000
## 934        GC                              LucasArts 0.0375000000
## 935       N64                              LucasArts 0.0000000000
## 936        PC                              LucasArts 0.0207142857
## 937        PS                              LucasArts 0.0600000000
## 938       PS2                              LucasArts 0.2070588235
## 939       PS3                              LucasArts 0.2116666667
## 940       PSP                              LucasArts 0.1811111111
## 941       Wii                              LucasArts 0.1775000000
## 942      X360                              LucasArts 0.1112500000
## 943        XB                              LucasArts 0.0112500000
## 944        GC                               Mad Catz 0.0100000000
## 945      X360                               Mad Catz 0.0100000000
## 946        XB                               Mad Catz 0.0000000000
## 947        PS                        Magical Company 0.0300000000
## 948       PS2                                  Magix 0.0200000000
## 949       3DS                  Majesco Entertainment 0.0075000000
## 950        DS                  Majesco Entertainment 0.0069230769
## 951       GBA                  Majesco Entertainment 0.0046666667
## 952       PS2                  Majesco Entertainment 0.0100000000
## 953       PS3                  Majesco Entertainment 0.0000000000
## 954       PSP                  Majesco Entertainment 0.0050000000
## 955       Wii                  Majesco Entertainment 0.0216666667
## 956      X360                  Majesco Entertainment 0.0075000000
## 957        XB                  Majesco Entertainment 0.0000000000
## 958      XOne                  Majesco Entertainment 0.0200000000
## 959        PC                            Mamba Games 0.0050000000
## 960       PSV                   Marvel Entertainment 0.0000000000
## 961       3DS                Marvelous Entertainment 0.0140000000
## 962       PSP                Marvelous Entertainment 0.0000000000
## 963       PSV                Marvelous Entertainment 0.0160000000
## 964       PSV                        Marvelous Games 0.0000000000
## 965       3DS                  Marvelous Interactive 0.0033333333
## 966        DS                  Marvelous Interactive 0.0000000000
## 967       GBA                  Marvelous Interactive 0.0000000000
## 968        GC                  Marvelous Interactive 0.0100000000
## 969       PS2                  Marvelous Interactive 0.0000000000
## 970       PS3                  Marvelous Interactive 0.0050000000
## 971       PS4                  Marvelous Interactive 0.0100000000
## 972       PSP                  Marvelous Interactive 0.0027272727
## 973       PSV                  Marvelous Interactive 0.0266666667
## 974       Wii                  Marvelous Interactive 0.0040000000
## 975      X360                  Marvelous Interactive 0.0000000000
## 976        PC                      Masque Publishing 0.0000000000
## 977        DS                           Mastertronic 0.0250000000
## 978        PC                           Mastertronic 0.0075000000
## 979       PS2                           Mastertronic 0.0000000000
## 980       Wii                           Mastertronic 0.0000000000
## 981      X360                           Mastertronic 0.0000000000
## 982       3DS                                Mastiff 0.0000000000
## 983        DS                                Mastiff 0.0100000000
## 984       GBA                                Mastiff 0.0000000000
## 985        PC                                Mastiff 0.0000000000
## 986       PS2                                Mastiff 0.0100000000
## 987       Wii                                Mastiff 0.0157142857
## 988        XB                                Mastiff 0.0000000000
## 989      2600                     Mattel Interactive 0.0025000000
## 990        PS                     Mattel Interactive 0.0075000000
## 991        PS                               Max Five 0.0000000000
## 992       3DS                   Maximum Family Games 0.0000000000
## 993        PC                                  Maxis 0.0550000000
## 994        PS                                  Maxis 0.0800000000
## 995        PC                      MC2 Entertainment 0.0000000000
## 996        XB                      MC2 Entertainment 0.0000000000
## 997       PS2                    Media Entertainment 0.0000000000
## 998        GB                          Media Factory 0.0000000000
## 999       N64                          Media Factory 0.0000000000
## 1000      GBA                            Media Rings 0.0000000000
## 1001     SNES                            Media Rings 0.0000000000
## 1002       PS                            Media Works 0.0000000000
## 1003      PS2                            Media Works 0.0000000000
## 1004      SAT                            Media Works 0.0000000000
## 1005       PS                             MediaQuest 0.0000000000
## 1006     2600                           Men-A-Vision 0.0100000000
## 1007       DS                     Mentor Interactive 0.0140000000
## 1008       DS                          Mercury Games 0.0050000000
## 1009      PSP                          Mercury Games 0.0050000000
## 1010       PC                            Merscom LLC 0.0300000000
## 1011      PS2                               Metro 3D 0.0214285714
## 1012      Wii                               Metro 3D 0.0000000000
## 1013       XB                               Metro 3D 0.0000000000
## 1014      PS2                            Michaelsoft 0.0000000000
## 1015      3DO                            Micro Cabin 0.0000000000
## 1016      SAT                            Micro Cabin 0.0000000000
## 1017      GBA                               Microids 0.0000000000
## 1018       PC                               Microids 0.0000000000
## 1019      PS2                               Microids 0.0100000000
## 1020      PS4                               Microids 0.0000000000
## 1021       XB                               Microids 0.0000000000
## 1022       PC                             Microprose 0.0050000000
## 1023       PS                             Microprose 0.0375000000
## 1024       PC                 Microsoft Game Studios 0.0224137931
## 1025     WiiU                 Microsoft Game Studios 0.0300000000
## 1026     X360                 Microsoft Game Studios 0.2045070423
## 1027       XB                 Microsoft Game Studios 0.0179411765
## 1028     XOne                 Microsoft Game Studios 0.1070000000
## 1029       DS        Midas Interactive Entertainment 0.0000000000
## 1030       PS        Midas Interactive Entertainment 0.0050000000
## 1031      PS2        Midas Interactive Entertainment 0.0230000000
## 1032      PSP        Midas Interactive Entertainment 0.0000000000
## 1033      Wii        Midas Interactive Entertainment 0.0000000000
## 1034       DS                           Midway Games 0.0512500000
## 1035      GBA                           Midway Games 0.0000000000
## 1036       GC                           Midway Games 0.0024000000
## 1037      N64                           Midway Games 0.0025000000
## 1038       PC                           Midway Games 0.0050000000
## 1039       PS                           Midway Games 0.0278571429
## 1040      PS2                           Midway Games 0.0610000000
## 1041      PS3                           Midway Games 0.0657142857
## 1042      PSP                           Midway Games 0.0157142857
## 1043      Wii                           Midway Games 0.0500000000
## 1044     X360                           Midway Games 0.0488888889
## 1045       XB                           Midway Games 0.0066666667
## 1046      Wii                              Milestone 0.0000000000
## 1047      PS4                        Milestone S.r.l 0.0100000000
## 1048     XOne                        Milestone S.r.l 0.0000000000
## 1049       PC                       Milestone S.r.l. 0.0000000000
## 1050      PS3                       Milestone S.r.l. 0.0133333333
## 1051      PS4                       Milestone S.r.l. 0.0250000000
## 1052      PSV                       Milestone S.r.l. 0.0000000000
## 1053     X360                       Milestone S.r.l. 0.0033333333
## 1054     XOne                       Milestone S.r.l. 0.0033333333
## 1055      PS2                         Minato Station 0.0000000000
## 1056      PS3                         Minato Station 0.0000000000
## 1057      PSV                         Minato Station 0.0000000000
## 1058       DS                              Mindscape 0.0200000000
## 1059      N64                              Mindscape 0.0000000000
## 1060       PS                              Mindscape 0.0071428571
## 1061      PS2                              Mindscape 0.0200000000
## 1062      Wii                              Mindscape 0.0250000000
## 1063     X360                              Mindscape 0.0100000000
## 1064       XB                              Mindscape 0.0000000000
## 1065       DS                          Mirai Shounen 0.0000000000
## 1066     SNES                                 Misawa 0.0000000000
## 1067      N64                                 Mitsui 0.0000000000
## 1068      3DS                              mixi, Inc 0.0000000000
## 1069     XOne                                MLB.com 0.0000000000
## 1070       PC                                 Mojang 0.0100000000
## 1071      PS3                                 Mojang 0.1100000000
## 1072      PS4                                 Mojang 0.1100000000
## 1073     X360                                 Mojang 0.0800000000
## 1074     XOne                                 Mojang 0.0500000000
## 1075       PC               Monte Christo Multimedia 0.0100000000
## 1076     X360                                   Moss 0.0050000000
## 1077       DS                                    MTO 0.0000000000
## 1078       PS                                    MTO 0.0100000000
## 1079       DS                              MTV Games 0.0100000000
## 1080      PS2                              MTV Games 0.0314285714
## 1081      PS3                              MTV Games 0.0510000000
## 1082      PSP                              MTV Games 0.1000000000
## 1083      Wii                              MTV Games 0.0541666667
## 1084     X360                              MTV Games 0.0540000000
## 1085      PS2                   Mud Duck Productions 0.0500000000
## 1086       XB                   Mud Duck Productions 0.0050000000
## 1087       DS                            Mumbo Jumbo 0.0100000000
## 1088       PC                            Mumbo Jumbo 0.0000000000
## 1089      PSP                            Mumbo Jumbo 0.0050000000
## 1090      Wii                            Mumbo Jumbo 0.0100000000
## 1091       DS                                  Mycom 0.0000000000
## 1092      PS2                           Myelin Media 0.0100000000
## 1093      PSP                           Myelin Media 0.0000000000
## 1094       XB                           Myelin Media 0.0000000000
## 1095     2600                               Mystique 0.0100000000
## 1096      3DS                                    N/A 0.0000000000
## 1097       DS                                    N/A 0.0000000000
## 1098      GBA                                    N/A 0.0042307692
## 1099       PC                                    N/A 0.0000000000
## 1100       PS                                    N/A 0.0366666667
## 1101      PS2                                    N/A 0.2200000000
## 1102      PS3                                    N/A 0.0000000000
## 1103      PSP                                    N/A 0.0000000000
## 1104      PSV                                    N/A 0.0000000000
## 1105      Wii                                    N/A 0.0100000000
## 1106     X360                                    N/A 0.0000000000
## 1107      3DS                     Namco Bandai Games 0.0025287356
## 1108       DC                     Namco Bandai Games 0.0000000000
## 1109       DS                     Namco Bandai Games 0.0012592593
## 1110       GB                     Namco Bandai Games 0.0066666667
## 1111      GBA                     Namco Bandai Games 0.0043750000
## 1112       GC                     Namco Bandai Games 0.0068181818
## 1113      N64                     Namco Bandai Games 0.0066666667
## 1114      NES                     Namco Bandai Games 0.0071428571
## 1115       PC                     Namco Bandai Games 0.0208333333
## 1116       PS                     Namco Bandai Games 0.0237500000
## 1117      PS2                     Namco Bandai Games 0.0351401869
## 1118      PS3                     Namco Bandai Games 0.0366379310
## 1119      PS4                     Namco Bandai Games 0.0496666667
## 1120      PSP                     Namco Bandai Games 0.0045454545
## 1121      PSV                     Namco Bandai Games 0.0066666667
## 1122      SAT                     Namco Bandai Games 0.0000000000
## 1123     SNES                     Namco Bandai Games 0.0000000000
## 1124      Wii                     Namco Bandai Games 0.0132142857
## 1125     WiiU                     Namco Bandai Games 0.0069230769
## 1126       WS                     Namco Bandai Games 0.0000000000
## 1127     X360                     Namco Bandai Games 0.0243181818
## 1128       XB                     Namco Bandai Games 0.0060000000
## 1129     XOne                     Namco Bandai Games 0.0314285714
## 1130      3DS                                Natsume 0.0100000000
## 1131       DS                                Natsume 0.0080000000
## 1132      GBA                                Natsume 0.0000000000
## 1133      N64                                Natsume 0.0000000000
## 1134       PS                                Natsume 0.0300000000
## 1135      PS2                                Natsume 0.0200000000
## 1136      PSP                                Natsume 0.0000000000
## 1137      Wii                                Natsume 0.0100000000
## 1138     X360                           Navarre Corp 0.0000000000
## 1139      PS2                             Naxat Soft 0.0000000000
## 1140      SAT                                    NCS 0.0000000000
## 1141       PC                                 NCSoft 0.0550000000
## 1142       GC                        NDA Productions 0.0000000000
## 1143     PCFX                                    NEC 0.0000000000
## 1144      SAT                                    NEC 0.0000000000
## 1145     TG16                                    NEC 0.0000000000
## 1146       DC                       NEC Interchannel 0.0000000000
## 1147      SAT                       NEC Interchannel 0.0000000000
## 1148       DS                     Neko Entertainment 0.0000000000
## 1149      Wii                     Neko Entertainment 0.0050000000
## 1150      PSP                                NetRevo 0.0000000000
## 1151       PS                                    New 0.0200000000
## 1152       PC                    New World Computing 0.0000000000
## 1153      GBA                               NewKidCo 0.0000000000
## 1154       GC                               NewKidCo 0.0000000000
## 1155      N64                               NewKidCo 0.0000000000
## 1156       PS                               NewKidCo 0.0200000000
## 1157       DS                                  Nexon 0.0000000000
## 1158     SNES                             Nichibutsu 0.0000000000
## 1159      PS4               Nihon Falcom Corporation 0.0000000000
## 1160      PSP               Nihon Falcom Corporation 0.0000000000
## 1161      PSV               Nihon Falcom Corporation 0.0080000000
## 1162      3DS                               Nintendo 0.1080487805
## 1163       DS                               Nintendo 0.1707284768
## 1164       GB                               Nintendo 0.1311475410
## 1165      GBA                               Nintendo 0.0384615385
## 1166       GC                               Nintendo 0.0420754717
## 1167      N64                               Nintendo 0.0426666667
## 1168      NES                               Nintendo 0.0726666667
## 1169     SNES                               Nintendo 0.0605555556
## 1170      Wii                               Nintendo 0.4095238095
## 1171     WiiU                               Nintendo 0.1137500000
## 1172      PS2                           Nippon Amuse 0.0000000000
## 1173      3DS                        Nippon Columbia 0.0000000000
## 1174      3DS                   Nippon Ichi Software 0.0120000000
## 1175       DS                   Nippon Ichi Software 0.0050000000
## 1176       PS                   Nippon Ichi Software 0.0000000000
## 1177      PS2                   Nippon Ichi Software 0.0040000000
## 1178      PS3                   Nippon Ichi Software 0.0145454545
## 1179      PS4                   Nippon Ichi Software 0.0133333333
## 1180      PSP                   Nippon Ichi Software 0.0047058824
## 1181      PSV                   Nippon Ichi Software 0.0180645161
## 1182      Wii                   Nippon Ichi Software 0.0100000000
## 1183     WiiU                   Nippon Ichi Software 0.0100000000
## 1184     SNES                         Nippon Telenet 0.0000000000
## 1185      PS3                              Nitroplus 0.0000000000
## 1186      PSV                              Nitroplus 0.0000000000
## 1187       DS                                Nobilis 0.0140000000
## 1188       PC                                Nobilis 0.0000000000
## 1189      Wii                                Nobilis 0.0000000000
## 1190       DS                            Nordcurrent 0.0150000000
## 1191      Wii                            Nordcurrent 0.0066666667
## 1192       DS                           Nordic Games 0.0200000000
## 1193       PC                           Nordic Games 0.0100000000
## 1194      PS3                           Nordic Games 0.0100000000
## 1195      PS4                           Nordic Games 0.0133333333
## 1196      Wii                           Nordic Games 0.0220000000
## 1197     WiiU                           Nordic Games 0.0000000000
## 1198     X360                           Nordic Games 0.0050000000
## 1199     XOne                           Nordic Games 0.0050000000
## 1200       PC                              NovaLogic 0.0000000000
## 1201      PS2                              NovaLogic 0.0600000000
## 1202       XB                              NovaLogic 0.0100000000
## 1203       PC                            Number None 0.0100000000
## 1204       DS                                O-Games 0.0066666667
## 1205      PS3                                O-Games 0.0133333333
## 1206      Wii                                O-Games 0.0066666667
## 1207     X360                                O-Games 0.0000000000
## 1208       DS                       O3 Entertainment 0.0050000000
## 1209       GC                       O3 Entertainment 0.0000000000
## 1210      N64                                  Ocean 0.0060000000
## 1211      NES                                  Ocean 0.0100000000
## 1212       PS                                  Ocean 0.0100000000
## 1213     SNES                                  Ocean 0.0000000000
## 1214      3DS                          Office Create 0.0000000000
## 1215       PS                              On Demand 0.0100000000
## 1216      PS3                              Ongakukan 0.0000000000
## 1217       PS                         Origin Systems 0.0100000000
## 1218      PSP                                Otomate 0.0000000000
## 1219       DS                     Oxygen Interactive 0.0055555556
## 1220      PS2                     Oxygen Interactive 0.1300000000
## 1221      PSP                     Oxygen Interactive 0.0050000000
## 1222      Wii                     Oxygen Interactive 0.0050000000
## 1223     X360                     Oxygen Interactive 0.0000000000
## 1224       DS                               P2 Games 0.0200000000
## 1225      Wii                               P2 Games 0.0000000000
## 1226      PS2            Pacific Century Cyber Works 0.0300000000
## 1227     SNES                          Pack-In-Video 0.0000000000
## 1228      N64                           Pack In Soft 0.0600000000
## 1229      NES                                 Palcom 0.0400000000
## 1230       PS                       Panther Software 0.0100000000
## 1231       DS                                   Paon 0.0000000000
## 1232      PS2                                   Paon 0.0000000000
## 1233      PSP                                   Paon 0.0000000000
## 1234      PS3                       Paon Corporation 0.0000000000
## 1235       PC                    Paradox Development 0.0000000000
## 1236       PC                    Paradox Interactive 0.0034782609
## 1237     2600                           Parker Bros. 0.0071428571
## 1238       DS          Performance Designed Products 0.0100000000
## 1239      Wii          Performance Designed Products 0.0100000000
## 1240       XB                             Phantagram 0.0000000000
## 1241     X360                            Phantom EFX 0.0100000000
## 1242       DS                             Phenomedia 0.0000000000
## 1243       DS                          Phoenix Games 0.0000000000
## 1244      PSP                                 Piacci 0.0000000000
## 1245       DS                               Pinnacle 0.0200000000
## 1246       PC                               Pinnacle 0.0100000000
## 1247      Wii                               Pinnacle 0.0300000000
## 1248       PS                            Pioneer LDC 0.0100000000
## 1249      GBA                                Play It 0.0000000000
## 1250      PS2                                Play It 0.0441666667
## 1251      PSP                                Play It 0.0200000000
## 1252       DS                 Playlogic Game Factory 0.0033333333
## 1253       PC                 Playlogic Game Factory 0.0000000000
## 1254      PS2                 Playlogic Game Factory 0.0200000000
## 1255      PS3                 Playlogic Game Factory 0.0200000000
## 1256      PSP                 Playlogic Game Factory 0.0200000000
## 1257      Wii                 Playlogic Game Factory 0.0040000000
## 1258     X360                 Playlogic Game Factory 0.0100000000
## 1259       PS                              Playmates 0.0200000000
## 1260      PS2                               Playmore 0.0000000000
## 1261       DS                                  PlayV 0.0125000000
## 1262       DS                                 Plenty 0.0000000000
## 1263      PSP                             PM Studios 0.0100000000
## 1264       PS                            Pony Canyon 0.0000000000
## 1265       DS                           PopCap Games 0.0150000000
## 1266       PC                           PopCap Games 0.0050000000
## 1267      PS3                           PopCap Games 0.0100000000
## 1268     X360                           PopCap Games 0.0050000000
## 1269      Wii                         Popcorn Arcade 0.0010000000
## 1270       PS                        PopTop Software 0.0100000000
## 1271     SNES                                    Pow 0.0000000000
## 1272      3DS                                  PQube 0.0100000000
## 1273       DS                                  PQube 0.0033333333
## 1274       PC                                  PQube 0.0000000000
## 1275      PS2                                  PQube 0.0100000000
## 1276      PS3                                  PQube 0.0160000000
## 1277      PS4                                  PQube 0.0050000000
## 1278      PSP                                  PQube 0.0100000000
## 1279      PSV                                  PQube 0.0128571429
## 1280      Wii                                  PQube 0.0000000000
## 1281     X360                                  PQube 0.0166666667
## 1282     XOne                                  PQube 0.0100000000
## 1283      PS2                          Princess Soft 0.0000000000
## 1284      PS2                              Prototype 0.0000000000
## 1285      PS3                              Prototype 0.0000000000
## 1286      PSP                              Prototype 0.0000000000
## 1287      PSV                              Prototype 0.0000000000
## 1288     X360                              Prototype 0.0000000000
## 1289       PS                              Psygnosis 0.0140625000
## 1290     2600                                 Quelle 0.0100000000
## 1291     SNES                                  Quest 0.0000000000
## 1292      PSP                               Quinrose 0.0000000000
## 1293      SAT                                Quintet 0.0000000000
## 1294      GBA                          Rage Software 0.0000000000
## 1295       GC                          Rage Software 0.0000000000
## 1296      PS2                          Rage Software 0.0600000000
## 1297       XB                          Rage Software 0.0033333333
## 1298      PSV                             Rain Games 0.0000000000
## 1299      GBA                              Rebellion 0.0050000000
## 1300      PS4                 Rebellion Developments 0.0300000000
## 1301     XOne                 Rebellion Developments 0.0100000000
## 1302      PS2                      RED Entertainment 0.0000000000
## 1303       PC                                Red Orb 0.0500000000
## 1304      N64                Red Storm Entertainment 0.0100000000
## 1305       PS                Red Storm Entertainment 0.0400000000
## 1306      PS2                              RedOctane 0.2275000000
## 1307       DS                     Reef Entertainment 0.0000000000
## 1308       PC                     Reef Entertainment 0.0000000000
## 1309      PS3                     Reef Entertainment 0.0100000000
## 1310      Wii                     Reef Entertainment 0.0050000000
## 1311      PS2                           responDESIGN 0.0100000000
## 1312       XB                           responDESIGN 0.0000000000
## 1313      PS2                     Revolution (Japan) 0.0000000000
## 1314      PS4                    Revolution Software 0.0100000000
## 1315     XOne                    Revolution Software 0.0000000000
## 1316      3DS                      Rising Star Games 0.0125000000
## 1317       DS                      Rising Star Games 0.0120000000
## 1318       PC                      Rising Star Games 0.0100000000
## 1319      PS2                      Rising Star Games 0.0133333333
## 1320      PS3                      Rising Star Games 0.0250000000
## 1321      PS4                      Rising Star Games 0.0000000000
## 1322      PSP                      Rising Star Games 0.0075000000
## 1323      PSV                      Rising Star Games 0.0000000000
## 1324      Wii                      Rising Star Games 0.0241176471
## 1325     X360                      Rising Star Games 0.0180000000
## 1326       PS                          Riverhillsoft 0.0000000000
## 1327      3DS                         Rocket Company 0.0000000000
## 1328       DS                         Rocket Company 0.0000000000
## 1329      Wii                         Rocket Company 0.0000000000
## 1330       DS                             Rondomedia 0.0180000000
## 1331       PC                             Rondomedia 0.0171428571
## 1332      Wii                             Rondomedia 0.0250000000
## 1333       DS                                    RTL 0.0066666667
## 1334      Wii                                    RTL 0.0566666667
## 1335     X360                                    RTL 0.0050000000
## 1336       DS                                 Russel 0.0000000000
## 1337       PC                                 Russel 0.0000000000
## 1338      PS2                                 Russel 0.0000000000
## 1339      PSP                                 Russel 0.0000000000
## 1340      GBA                      Sammy Corporation 0.0000000000
## 1341      PS2                      Sammy Corporation 0.0111111111
## 1342     SNES                      Sammy Corporation 0.0000000000
## 1343       PS                                 Saurus 0.0000000000
## 1344       DS                        Scholastic Inc. 0.0185714286
## 1345      PS2                        Scholastic Inc. 0.0100000000
## 1346      Wii                        Scholastic Inc. 0.0200000000
## 1347       GC                                    SCi 0.0000000000
## 1348       PC                                    SCi 0.0100000000
## 1349      PS2                                    SCi 0.0420000000
## 1350       XB                                    SCi 0.0050000000
## 1351      3DS                             Screenlife 0.0033333333
## 1352      PSV                             Screenlife 0.0066666667
## 1353       PC                           SCS Software 0.0200000000
## 1354     2600                                  Sears 0.0000000000
## 1355     2600                                   Sega 0.0000000000
## 1356      3DS                                   Sega 0.0185714286
## 1357       DC                                   Sega 0.0080000000
## 1358       DS                                   Sega 0.0381250000
## 1359      GBA                                   Sega 0.0220000000
## 1360       GC                                   Sega 0.0092000000
## 1361      GEN                                   Sega 0.0350000000
## 1362       GG                                   Sega 0.0000000000
## 1363       PC                                   Sega 0.0500000000
## 1364      PS2                                   Sega 0.0500000000
## 1365      PS3                                   Sega 0.0773770492
## 1366      PS4                                   Sega 0.0262500000
## 1367      PSP                                   Sega 0.0423529412
## 1368      PSV                                   Sega 0.0225000000
## 1369      SAT                                   Sega 0.0009090909
## 1370      SCD                                   Sega 0.0083333333
## 1371      Wii                                   Sega 0.0972727273
## 1372     WiiU                                   Sega 0.0275000000
## 1373     X360                                   Sega 0.0465957447
## 1374       XB                                   Sega 0.0100000000
## 1375     XOne                                   Sega 0.0400000000
## 1376      N64                       Seta Corporation 0.0300000000
## 1377       PS                       Seta Corporation 0.0033333333
## 1378      SAT                       Seta Corporation 0.0000000000
## 1379      3DS                          Seventh Chord 0.0000000000
## 1380      3DS                             Shogakukan 0.0000000000
## 1381       DS                             Shogakukan 0.0000000000
## 1382      SAT                             Shogakukan 0.0000000000
## 1383       XB           Simon & Schuster Interactive 0.0000000000
## 1384       PC                   Slightly Mad Studios 0.0100000000
## 1385      PS4                   Slightly Mad Studios 0.1500000000
## 1386     XOne                   Slightly Mad Studios 0.0200000000
## 1387       DS                    Slitherine Software 0.0000000000
## 1388      PS3                    Slitherine Software 0.0100000000
## 1389      PSP                    Slitherine Software 0.0100000000
## 1390     X360                    Slitherine Software 0.0100000000
## 1391       DC                                    SNK 0.0000000000
## 1392       NG                                    SNK 0.0000000000
## 1393       PS                                    SNK 0.0060000000
## 1394      PS2                                    SNK 0.0100000000
## 1395      SAT                                    SNK 0.0000000000
## 1396       DS                           SNK Playmore 0.0000000000
## 1397       PS                           SNK Playmore 0.0033333333
## 1398      PS2                           SNK Playmore 0.0033333333
## 1399      PSP                           SNK Playmore 0.0000000000
## 1400      SAT                           SNK Playmore 0.0000000000
## 1401       XB                           SNK Playmore 0.0000000000
## 1402      SAT                                Societa 0.0000000000
## 1403      PS4                               Sold Out 0.0000000000
## 1404      SAT                                 Sonnet 0.0000000000
## 1405       PS            Sony Computer Entertainment 0.0539361702
## 1406      PS2            Sony Computer Entertainment 0.1574019608
## 1407      PS3            Sony Computer Entertainment 0.1686046512
## 1408      PS4            Sony Computer Entertainment 0.2888235294
## 1409      PSP            Sony Computer Entertainment 0.0847863248
## 1410      PSV            Sony Computer Entertainment 0.0578571429
## 1411      PS3    Sony Computer Entertainment America 0.0400000000
## 1412      PS4    Sony Computer Entertainment America 0.0700000000
## 1413      PSV    Sony Computer Entertainment America 0.0200000000
## 1414      PS2     Sony Computer Entertainment Europe 0.1750000000
## 1415      PS3     Sony Computer Entertainment Europe 0.2420000000
## 1416      PS4     Sony Computer Entertainment Europe 0.2700000000
## 1417      PSV     Sony Computer Entertainment Europe 0.1950000000
## 1418      PS2               Sony Music Entertainment 0.0000000000
## 1419       PC              Sony Online Entertainment 0.0100000000
## 1420      PS2              Sony Online Entertainment 0.0775000000
## 1421      PS3              Sony Online Entertainment 0.0600000000
## 1422      PSP              Sony Online Entertainment 0.0100000000
## 1423       DS                        SouthPeak Games 0.0069230769
## 1424       PC                        SouthPeak Games 0.0000000000
## 1425       PS                        SouthPeak Games 0.0100000000
## 1426      PS2                        SouthPeak Games 0.0566666667
## 1427      PS3                        SouthPeak Games 0.0333333333
## 1428      PSP                        SouthPeak Games 0.0200000000
## 1429      Wii                        SouthPeak Games 0.0033333333
## 1430     X360                        SouthPeak Games 0.0240000000
## 1431       DS                                  Spike 0.0012500000
## 1432      GBA                                  Spike 0.0000000000
## 1433      PS2                                  Spike 0.0228571429
## 1434      PS3                                  Spike 0.0125000000
## 1435      PSP                                  Spike 0.0014285714
## 1436     X360                                  Spike 0.0433333333
## 1437       PS                                    SPS 0.0100000000
## 1438      NES                                 Square 0.0000000000
## 1439       PS                                 Square 0.0275000000
## 1440     SNES                                 Square 0.1200000000
## 1441       PS                              Square EA 0.0500000000
## 1442      3DS                            Square Enix 0.0135714286
## 1443       DS                            Square Enix 0.0195555556
## 1444      GBA                            Square Enix 0.0350000000
## 1445       PC                            Square Enix 0.0247619048
## 1446      PS2                            Square Enix 0.1092307692
## 1447      PS3                            Square Enix 0.1420689655
## 1448      PS4                            Square Enix 0.0773684211
## 1449      PSP                            Square Enix 0.0835000000
## 1450      PSV                            Square Enix 0.0262500000
## 1451      Wii                            Square Enix 0.0088888889
## 1452     WiiU                            Square Enix 0.0033333333
## 1453     X360                            Square Enix 0.0569230769
## 1454     XOne                            Square Enix 0.0318181818
## 1455       GB                             SquareSoft 0.0000000000
## 1456      GBA                             SquareSoft 0.0500000000
## 1457      NES                             SquareSoft 0.0033333333
## 1458       PS                             SquareSoft 0.0560000000
## 1459      PS2                             SquareSoft 0.0000000000
## 1460     SNES                             SquareSoft 0.0057142857
## 1461       WS                             SquareSoft 0.0000000000
## 1462       PS                                    SSI 0.0100000000
## 1463     XOne                        Stainless Games 0.0000000000
## 1464       DS                               Starfish 0.0000000000
## 1465      GBA                               Starfish 0.0000000000
## 1466       PS                               Starfish 0.0150000000
## 1467      PSP                               Starfish 0.0000000000
## 1468      Wii                               Starfish 0.0000000000
## 1469     2600                         Starpath Corp. 0.0000000000
## 1470       DS                                  Sting 0.0000000000
## 1471      GBA                                  Sting 0.0000000000
## 1472      PS2                                  Sting 0.0100000000
## 1473      PSP                                  Sting 0.0050000000
## 1474      Wii                                  Sting 0.0100000000
## 1475       DS                       Storm City Games 0.0046153846
## 1476      Wii                       Storm City Games 0.0033333333
## 1477       PC                         Strategy First 0.0000000000
## 1478      3DS                                Success 0.0000000000
## 1479       DS                                Success 0.0012500000
## 1480       PS                                Success 0.0200000000
## 1481      PS2                                Success 0.0000000000
## 1482      PSP                                Success 0.0000000000
## 1483     X360                                Success 0.0000000000
## 1484      GBA                             Summitsoft 0.0000000000
## 1485       PC                             Sunflowers 0.0100000000
## 1486      PS2                    Sunrise Interactive 0.0000000000
## 1487      3DS                                Sunsoft 0.0000000000
## 1488      N64                                Sunsoft 0.0000000000
## 1489       PS                                Sunsoft 0.0100000000
## 1490      SAT                                Sunsoft 0.0000000000
## 1491     SNES                                Sunsoft 0.0000000000
## 1492      PS2                                 Sweets 0.0000000000
## 1493      GBA                   Swing! Entertainment 0.0000000000
## 1494       PS                   Swing! Entertainment 0.0000000000
## 1495      PS2                   Swing! Entertainment 0.0100000000
## 1496       XB                   Swing! Entertainment 0.0100000000
## 1497       PS                                 Syscom 0.0100000000
## 1498      PS3                               System 3 0.0000000000
## 1499      PS4                               System 3 0.0200000000
## 1500      PSV                               System 3 0.0100000000
## 1501       DS               System 3 Arcade Software 0.0033333333
## 1502      PS2               System 3 Arcade Software 0.0200000000
## 1503      PS3               System 3 Arcade Software 0.0100000000
## 1504      PSP               System 3 Arcade Software 0.0150000000
## 1505      Wii               System 3 Arcade Software 0.0200000000
## 1506      PSP                            System Soft 0.0000000000
## 1507     SNES                               T&E Soft 0.0000000000
## 1508     2600                                  Taito 0.0000000000
## 1509       DS                                  Taito 0.0000000000
## 1510      GBA                                  Taito 0.0000000000
## 1511       GC                                  Taito 0.0000000000
## 1512      N64                                  Taito 0.0700000000
## 1513       PS                                  Taito 0.0500000000
## 1514      PS2                                  Taito 0.0040000000
## 1515      SAT                                  Taito 0.0000000000
## 1516     SNES                                  Taito 0.0000000000
## 1517      Wii                                  Taito 0.0000000000
## 1518      GBA                                 Takara 0.0000000000
## 1519      N64                                 Takara 0.0000000000
## 1520       PS                                 Takara 0.0133333333
## 1521      PS2                                 Takara 0.0000000000
## 1522     SNES                                 Takara 0.0000000000
## 1523      3DS                            Takara Tomy 0.0000000000
## 1524       DS                            Takara Tomy 0.0022727273
## 1525      PSP                            Takara Tomy 0.0033333333
## 1526      Wii                            Takara Tomy 0.0012500000
## 1527     X360                            Takara Tomy 0.0100000000
## 1528      3DS                   Take-Two Interactive 0.0050000000
## 1529       DS                   Take-Two Interactive 0.0268965517
## 1530      GBA                   Take-Two Interactive 0.0000000000
## 1531       GC                   Take-Two Interactive 0.0000000000
## 1532      N64                   Take-Two Interactive 0.0000000000
## 1533       PC                   Take-Two Interactive 0.0306666667
## 1534       PS                   Take-Two Interactive 0.0455555556
## 1535      PS2                   Take-Two Interactive 0.3123333333
## 1536      PS3                   Take-Two Interactive 0.2486792453
## 1537      PS4                   Take-Two Interactive 0.3475000000
## 1538      PSP                   Take-Two Interactive 0.1995652174
## 1539      PSV                   Take-Two Interactive 0.0950000000
## 1540      Wii                   Take-Two Interactive 0.0423684211
## 1541     WiiU                   Take-Two Interactive 0.0100000000
## 1542     X360                   Take-Two Interactive 0.1167142857
## 1543       XB                   Take-Two Interactive 0.0125000000
## 1544     XOne                   Take-Two Interactive 0.0950000000
## 1545      PSP                                 Takuyo 0.0000000000
## 1546       PS                              TalonSoft 0.0600000000
## 1547       DS                               TDK Core 0.0000000000
## 1548      GBA                               TDK Core 0.0000000000
## 1549       PS                               TDK Core 0.0100000000
## 1550      GBA                         TDK Mediactive 0.0045454545
## 1551       GC                         TDK Mediactive 0.0000000000
## 1552       PS                         TDK Mediactive 0.0100000000
## 1553      PS2                         TDK Mediactive 0.0566666667
## 1554       XB                         TDK Mediactive 0.0050000000
## 1555       PC                        Team17 Software 0.0100000000
## 1556       NG              Technos Japan Corporation 0.0000000000
## 1557       PS                             TechnoSoft 0.0000000000
## 1558      3DS                             Tecmo Koei 0.0011111111
## 1559       DS                             Tecmo Koei 0.0023076923
## 1560      GBA                             Tecmo Koei 0.0000000000
## 1561       GC                             Tecmo Koei 0.0000000000
## 1562       PS                             Tecmo Koei 0.0116666667
## 1563      PS2                             Tecmo Koei 0.0148235294
## 1564      PS3                             Tecmo Koei 0.0116071429
## 1565      PS4                             Tecmo Koei 0.0122727273
## 1566      PSP                             Tecmo Koei 0.0021212121
## 1567      PSV                             Tecmo Koei 0.0059375000
## 1568      SAT                             Tecmo Koei 0.0000000000
## 1569     SNES                             Tecmo Koei 0.0000000000
## 1570      Wii                             Tecmo Koei 0.0066666667
## 1571     WiiU                             Tecmo Koei 0.0033333333
## 1572     X360                             Tecmo Koei 0.0156521739
## 1573       XB                             Tecmo Koei 0.0050000000
## 1574     XOne                             Tecmo Koei 0.0033333333
## 1575       DS                              Telegames 0.0150000000
## 1576      GBA                              Telegames 0.0000000000
## 1577       PS                              Telegames 0.0000000000
## 1578      PS3                         Telltale Games 0.0160000000
## 1579      PS4                         Telltale Games 0.0314285714
## 1580      PSV                         Telltale Games 0.0250000000
## 1581      Wii                         Telltale Games 0.0000000000
## 1582     X360                         Telltale Games 0.0025000000
## 1583     XOne                         Telltale Games 0.0050000000
## 1584       PS                                Telstar 0.0066666667
## 1585      3DS                          Tetris Online 0.0300000000
## 1586      PSP                                    TGL 0.0000000000
## 1587      PSV                                    TGL 0.0000000000
## 1588       DS                  The Adventure Company 0.0100000000
## 1589      Wii                  The Adventure Company 0.0100000000
## 1590       PS                   The Learning Company 0.0000000000
## 1591      3DS                                    THQ 0.0166666667
## 1592       DS                                    THQ 0.0264347826
## 1593      GBA                                    THQ 0.0107272727
## 1594       GC                                    THQ 0.0076595745
## 1595      N64                                    THQ 0.0066666667
## 1596       PC                                    THQ 0.0155172414
## 1597       PS                                    THQ 0.0585185185
## 1598      PS2                                    THQ 0.1203000000
## 1599      PS3                                    THQ 0.0891304348
## 1600      PSP                                    THQ 0.0913333333
## 1601     SNES                                    THQ 0.0000000000
## 1602      Wii                                    THQ 0.0363157895
## 1603     WiiU                                    THQ 0.0100000000
## 1604     X360                                    THQ 0.0534375000
## 1605       XB                                    THQ 0.0062500000
## 1606     2600                            Tigervision 0.0033333333
## 1607       PS                Time Warner Interactive 0.0060000000
## 1608      GBA                                  Titus 0.0000000000
## 1609       GC                                  Titus 0.0000000000
## 1610      N64                                  Titus 0.0033333333
## 1611       PS                                  Titus 0.0100000000
## 1612      PS2                                  Titus 0.0500000000
## 1613     SNES                                  Titus 0.0000000000
## 1614       XB                                  Titus 0.0000000000
## 1615       DS                                 Tivola 0.0066666667
## 1616     SNES                                   TOHO 0.0000000000
## 1617       DS                                  Tommo 0.0000000000
## 1618      Wii                                  Tommo 0.0000000000
## 1619       DS                       Tomy Corporation 0.0020000000
## 1620      GBA                       Tomy Corporation 0.0000000000
## 1621       GC                       Tomy Corporation 0.0100000000
## 1622       PS                       Tomy Corporation 0.0125000000
## 1623      Wii                       Tomy Corporation 0.0700000000
## 1624       PC                    TopWare Interactive 0.0100000000
## 1625      PS3                    TopWare Interactive 0.0100000000
## 1626      PS4                    TopWare Interactive 0.0000000000
## 1627     X360                    TopWare Interactive 0.0000000000
## 1628       DS                             Touchstone 0.0200000000
## 1629       PC                             Touchstone 0.0000000000
## 1630      PS3                             Touchstone 0.1000000000
## 1631     X360                             Touchstone 0.0700000000
## 1632      PS3                              Tradewest 0.0100000000
## 1633      Wii                              Tradewest 0.0000000000
## 1634     X360                              Tradewest 0.0000000000
## 1635       PC                           Trion Worlds 0.0100000000
## 1636      PS3                           Trion Worlds 0.0500000000
## 1637     X360                           Trion Worlds 0.0400000000
## 1638       PC                   Tripwire Interactive 0.0200000000
## 1639      PS3                  Tru Blu Entertainment 0.0000000000
## 1640      PS4                  Tru Blu Entertainment 0.0100000000
## 1641     X360                  Tru Blu Entertainment 0.0000000000
## 1642     XOne                  Tru Blu Entertainment 0.0000000000
## 1643      PS2                               Tryfirst 0.0000000000
## 1644       PS                                    TYO 0.0300000000
## 1645      PSV                              Type-Moon 0.0000000000
## 1646       PS                              U.S. Gold 0.0050000000
## 1647      3DS                                Ubisoft 0.0171428571
## 1648       DC                                Ubisoft 0.0000000000
## 1649       DS                                Ubisoft 0.0291160221
## 1650       GB                                Ubisoft 0.0000000000
## 1651      GBA                                Ubisoft 0.0022641509
## 1652       GC                                Ubisoft 0.0022222222
## 1653      N64                                Ubisoft 0.0025000000
## 1654       PC                                Ubisoft 0.0277631579
## 1655       PS                                Ubisoft 0.0212500000
## 1656      PS2                                Ubisoft 0.0594285714
## 1657      PS3                                Ubisoft 0.1605479452
## 1658      PS4                                Ubisoft 0.2125000000
## 1659      PSP                                Ubisoft 0.0421052632
## 1660      PSV                                Ubisoft 0.0581818182
## 1661      Wii                                Ubisoft 0.0722608696
## 1662     WiiU                                Ubisoft 0.0312500000
## 1663     X360                                Ubisoft 0.0740404040
## 1664       XB                                Ubisoft 0.0193333333
## 1665     XOne                                Ubisoft 0.0620000000
## 1666      3DS                         Ubisoft Annecy 0.0150000000
## 1667      PS3                         Ubisoft Annecy 0.0300000000
## 1668      PSP                         Ubisoft Annecy 0.0125000000
## 1669     X360                         Ubisoft Annecy 0.0133333333
## 1670       PS                            UEP Systems 0.0800000000
## 1671      3DS                        UFO Interactive 0.0000000000
## 1672       DS                        UFO Interactive 0.0030000000
## 1673      Wii                        UFO Interactive 0.0020000000
## 1674      PS4                      UIG Entertainment 0.0000000000
## 1675     2600                            Ultravision 0.0000000000
## 1676     2600                        Universal Gamex 0.0100000000
## 1677      GBA                  Universal Interactive 0.0220000000
## 1678       GC                  Universal Interactive 0.0100000000
## 1679      PS2                  Universal Interactive 0.1825000000
## 1680       XB                  Universal Interactive 0.0260000000
## 1681     2600                                Unknown 0.0000000000
## 1682      3DS                                Unknown 0.0044444444
## 1683       DS                                Unknown 0.0036363636
## 1684      GBA                                Unknown 0.0045454545
## 1685       GC                                Unknown 0.0016666667
## 1686      N64                                Unknown 0.0000000000
## 1687       PC                                Unknown 0.0095454545
## 1688       PS                                Unknown 0.0225000000
## 1689      PS2                                Unknown 0.0545833333
## 1690      PS3                                Unknown 0.0113333333
## 1691      PS4                                Unknown 0.0100000000
## 1692      PSP                                Unknown 0.0038461538
## 1693      PSV                                Unknown 0.0000000000
## 1694      Wii                                Unknown 0.0073076923
## 1695     X360                                Unknown 0.0108333333
## 1696       XB                                Unknown 0.0075000000
## 1697     XOne                                Unknown 0.0000000000
## 1698       DS                           Valcon Games 0.0000000000
## 1699      PS2                           Valcon Games 0.0050000000
## 1700      Wii                           Valcon Games 0.0033333333
## 1701     X360                           Valcon Games 0.0050000000
## 1702       DS                               ValuSoft 0.0050000000
## 1703       PC                               ValuSoft 0.0000000000
## 1704      PS2                               ValuSoft 0.0300000000
## 1705      PS3                                  Valve 0.2500000000
## 1706       PC                         Valve Software 0.0750000000
## 1707     X360                         Valve Software 0.1700000000
## 1708     SNES                                    Vap 0.0000000000
## 1709      N64                  Vatical Entertainment 0.0000000000
## 1710       PS                  Vatical Entertainment 0.0100000000
## 1711      N64                              Vic Tokai 0.0000000000
## 1712       PS                              Vic Tokai 0.0100000000
## 1713       GB                     Victor Interactive 0.0000000000
## 1714      GBA                     Victor Interactive 0.0000000000
## 1715       PS                     Victor Interactive 0.0066666667
## 1716      PS2                     Victor Interactive 0.0000000000
## 1717      SAT                     Victor Interactive 0.0000000000
## 1718     SNES                     Victor Interactive 0.0000000000
## 1719      N64                           Video System 0.0400000000
## 1720       PS                           Video System 0.0100000000
## 1721     SNES                           Video System 0.0000000000
## 1722      PS3                                  Views 0.0000000000
## 1723      PSP                                  Views 0.0000000000
## 1724       DS                          Vir2L Studios 0.0000000000
## 1725      Wii                          Vir2L Studios 0.0100000000
## 1726       DC                     Virgin Interactive 0.0000000000
## 1727       GC                     Virgin Interactive 0.0000000000
## 1728      GEN                     Virgin Interactive 0.0500000000
## 1729      N64                     Virgin Interactive 0.0025000000
## 1730       PC                     Virgin Interactive 0.0750000000
## 1731       PS                     Virgin Interactive 0.0551282051
## 1732      PS2                     Virgin Interactive 0.0750000000
## 1733      SAT                     Virgin Interactive 0.0000000000
## 1734     SNES                     Virgin Interactive 0.0600000000
## 1735       XB                     Virgin Interactive 0.0100000000
## 1736      Wii                     Virtual Play Games 0.0000000000
## 1737       PC                                  Visco 0.0000000000
## 1738       DS                          Vivendi Games 0.0200000000
## 1739      GBA                          Vivendi Games 0.0130434783
## 1740       GC                          Vivendi Games 0.0053333333
## 1741       PC                          Vivendi Games 0.0047826087
## 1742       PS                          Vivendi Games 0.0200000000
## 1743      PS2                          Vivendi Games 0.0880645161
## 1744      PS3                          Vivendi Games 0.0580000000
## 1745      PSP                          Vivendi Games 0.0512500000
## 1746      Wii                          Vivendi Games 0.0211111111
## 1747     X360                          Vivendi Games 0.0266666667
## 1748       XB                          Vivendi Games 0.0088461538
## 1749      GBA                                Wanadoo 0.0000000000
## 1750       GC                                Wanadoo 0.0000000000
## 1751      PS2                                Wanadoo 0.0350000000
## 1752       XB                                Wanadoo 0.0000000000
## 1753       DC                                Warashi 0.0000000000
## 1754       PC                          Wargaming.net 0.0600000000
## 1755      3DS Warner Bros. Interactive Entertainment 0.0277777778
## 1756       DS Warner Bros. Interactive Entertainment 0.0540625000
## 1757       GC Warner Bros. Interactive Entertainment 0.0000000000
## 1758       PC Warner Bros. Interactive Entertainment 0.0195000000
## 1759      PS2 Warner Bros. Interactive Entertainment 0.1150000000
## 1760      PS3 Warner Bros. Interactive Entertainment 0.1450000000
## 1761      PS4 Warner Bros. Interactive Entertainment 0.2250000000
## 1762      PSP Warner Bros. Interactive Entertainment 0.1220000000
## 1763      PSV Warner Bros. Interactive Entertainment 0.0693750000
## 1764      Wii Warner Bros. Interactive Entertainment 0.0608333333
## 1765     WiiU Warner Bros. Interactive Entertainment 0.0293333333
## 1766     X360 Warner Bros. Interactive Entertainment 0.0826470588
## 1767     XOne Warner Bros. Interactive Entertainment 0.0615384615
## 1768      SAT                                   Warp 0.0000000000
## 1769      3DS                WayForward Technologies 0.0100000000
## 1770       PC                       Westwood Studios 0.0000000000
## 1771       DS                White Park Bay Software 0.0100000000
## 1772     2600                     Wizard Video Games 0.0100000000
## 1773      PS2                      Xicat Interactive 0.0100000000
## 1774       XB                      Xicat Interactive 0.0000000000
## 1775       PS                     Xing Entertainment 0.0200000000
## 1776      PS2                                Xplosiv 0.0275000000
## 1777      PSP                                Xplosiv 0.0100000000
## 1778      Wii                                Xplosiv 0.0100000000
## 1779      GBA                               XS Games 0.0000000000
## 1780       PS                               XS Games 0.0200000000
## 1781      PS2                               XS Games 0.0066666667
## 1782      Wii                               XS Games 0.0125000000
## 1783     X360                               XS Games 0.0200000000
## 1784       XB                               XS Games 0.0000000000
## 1785      3DS                            Xseed Games 0.0300000000
## 1786      PS4                            Xseed Games 0.0100000000
## 1787      PSV                            Xseed Games 0.0150000000
## 1788      3DS                       Yacht Club Games 0.0100000000
## 1789      PS4                       Yacht Club Games 0.0100000000
## 1790     WiiU                       Yacht Club Games 0.0100000000
## 1791      PS2                   Yamasa Entertainment 0.0000000000
## 1792      PSP                   Yamasa Entertainment 0.0000000000
## 1793      PS2                                   Yeti 0.0000000000
## 1794      PS4                                   Yeti 0.0000000000
## 1795      PSP                                   Yeti 0.0000000000
## 1796     X360                                   Yeti 0.0000000000
## 1797      PS2                                 Yuke's 0.0000000000
## 1798      SAT                                Yumedia 0.0000000000
## 1799      PSP                                 Zenrin 0.0000000000
## 1800       DS                 Zoo Digital Publishing 0.0057692308
## 1801      GBA                 Zoo Digital Publishing 0.0007894737
## 1802       GC                 Zoo Digital Publishing 0.0000000000
## 1803      PS2                 Zoo Digital Publishing 0.0354545455
## 1804      Wii                 Zoo Digital Publishing 0.0088888889
## 1805       XB                 Zoo Digital Publishing 0.0050000000
## 1806       DS                              Zoo Games 0.0050000000
## 1807      Wii                              Zoo Games 0.0090909091
## 1808     X360                              Zoo Games 0.0200000000
## 1809       DS                            Zushi Games 0.0000000000
## 1810      PSP                            Zushi Games 0.0100000000
## 1811      Wii                            Zushi Games 0.0112500000
## 1812     X360                            Zushi Games 0.0050000000
aggregate(Other_Sales,by=list(Year = Year,Genre = Genre),mean)
##     Year        Genre            x
## 1   1980       Action 0.0000000000
## 2   1981       Action 0.0048000000
## 3   1982       Action 0.0027777778
## 4   1983       Action 0.0028571429
## 5   1984       Action 0.0300000000
## 6   1985       Action 0.0300000000
## 7   1986       Action 0.0416666667
## 8   1987       Action 0.0050000000
## 9   1988       Action 0.0050000000
## 10  1989       Action 0.0250000000
## 11  1990       Action 0.0466666667
## 12  1991       Action 0.0300000000
## 13  1992       Action 0.1300000000
## 14  1993       Action 0.0050000000
## 15  1994       Action 0.0050000000
## 16  1995       Action 0.0175000000
## 17  1996       Action 0.0725000000
## 18  1997       Action 0.0461290323
## 19  1998       Action 0.0411363636
## 20  1999       Action 0.0310000000
## 21  2000       Action 0.0365909091
## 22  2001       Action 0.0646268657
## 23  2002       Action 0.0538400000
## 24  2003       Action 0.0359027778
## 25  2004       Action 0.1297600000
## 26  2005       Action 0.0397395833
## 27  2006       Action 0.0383695652
## 28  2007       Action 0.0729857820
## 29  2008       Action 0.0839366516
## 30  2009       Action 0.0612867647
## 31  2010       Action 0.0568584071
## 32  2011       Action 0.0561087866
## 33  2012       Action 0.0539849624
## 34  2013       Action 0.1035810811
## 35  2014       Action 0.0715053763
## 36  2015       Action 0.0287450980
## 37  2016       Action 0.0153781513
## 38  2017       Action 0.0000000000
## 39   N/A       Action 0.0390476190
## 40  1983    Adventure 0.0000000000
## 41  1987    Adventure 0.0800000000
## 42  1991    Adventure 0.0200000000
## 43  1992    Adventure 0.0725000000
## 44  1993    Adventure 0.0000000000
## 45  1994    Adventure 0.0000000000
## 46  1995    Adventure 0.0007692308
## 47  1996    Adventure 0.0070588235
## 48  1997    Adventure 0.0157142857
## 49  1998    Adventure 0.0191304348
## 50  1999    Adventure 0.0210526316
## 51  2000    Adventure 0.0093750000
## 52  2001    Adventure 0.0228571429
## 53  2002    Adventure 0.0150000000
## 54  2003    Adventure 0.0133333333
## 55  2004    Adventure 0.0079487179
## 56  2005    Adventure 0.0152380952
## 57  2006    Adventure 0.0149295775
## 58  2007    Adventure 0.0270238095
## 59  2008    Adventure 0.0116867470
## 60  2009    Adventure 0.0114893617
## 61  2010    Adventure 0.0094155844
## 62  2011    Adventure 0.0140740741
## 63  2012    Adventure 0.0075862069
## 64  2013    Adventure 0.0131666667
## 65  2014    Adventure 0.0090666667
## 66  2015    Adventure 0.0157407407
## 67  2016    Adventure 0.0032352941
## 68   N/A    Adventure 0.0110000000
## 69  1980     Fighting 0.0100000000
## 70  1985     Fighting 0.0000000000
## 71  1987     Fighting 0.0500000000
## 72  1991     Fighting 0.0000000000
## 73  1992     Fighting 0.0457142857
## 74  1993     Fighting 0.0081818182
## 75  1994     Fighting 0.0090909091
## 76  1995     Fighting 0.0193103448
## 77  1996     Fighting 0.0250000000
## 78  1997     Fighting 0.0185714286
## 79  1998     Fighting 0.0309756098
## 80  1999     Fighting 0.0133333333
## 81  2000     Fighting 0.0417241379
## 82  2001     Fighting 0.0655555556
## 83  2002     Fighting 0.0290740741
## 84  2003     Fighting 0.0395454545
## 85  2004     Fighting 0.0348717949
## 86  2005     Fighting 0.0420930233
## 87  2006     Fighting 0.0492727273
## 88  2007     Fighting 0.0820000000
## 89  2008     Fighting 0.0677192982
## 90  2009     Fighting 0.0758490566
## 91  2010     Fighting 0.0420000000
## 92  2011     Fighting 0.0432000000
## 93  2012     Fighting 0.0334482759
## 94  2013     Fighting 0.0410000000
## 95  2014     Fighting 0.0604347826
## 96  2015     Fighting 0.0480952381
## 97  2016     Fighting 0.0328571429
## 98   N/A     Fighting 0.0408333333
## 99  1980         Misc 0.0050000000
## 100 1982         Misc 0.0100000000
## 101 1983         Misc 0.0000000000
## 102 1984         Misc 0.0000000000
## 103 1989         Misc 0.0000000000
## 104 1991         Misc 0.0000000000
## 105 1992         Misc 0.0600000000
## 106 1993         Misc 0.0000000000
## 107 1994         Misc 0.0166666667
## 108 1995         Misc 0.0040909091
## 109 1996         Misc 0.0156521739
## 110 1997         Misc 0.0166666667
## 111 1998         Misc 0.0263636364
## 112 1999         Misc 0.0272000000
## 113 2000         Misc 0.0365000000
## 114 2001         Misc 0.0353846154
## 115 2002         Misc 0.0151111111
## 116 2003         Misc 0.0384905660
## 117 2004         Misc 0.0251764706
## 118 2005         Misc 0.0526086957
## 119 2006         Misc 0.0558715596
## 120 2007         Misc 0.0791390728
## 121 2008         Misc 0.0518867925
## 122 2009         Misc 0.0452173913
## 123 2010         Misc 0.0403980100
## 124 2011         Misc 0.0268478261
## 125 2012         Misc 0.0434210526
## 126 2013         Misc 0.0488095238
## 127 2014         Misc 0.0748780488
## 128 2015         Misc 0.0266666667
## 129 2016         Misc 0.0016666667
## 130  N/A         Misc 0.0448275862
## 131 1981     Platform 0.0266666667
## 132 1982     Platform 0.0120000000
## 133 1983     Platform 0.0160000000
## 134 1984     Platform 0.0000000000
## 135 1985     Platform 0.2000000000
## 136 1986     Platform 0.0050000000
## 137 1987     Platform 0.0050000000
## 138 1988     Platform 0.1750000000
## 139 1989     Platform 0.1566666667
## 140 1990     Platform 0.1900000000
## 141 1991     Platform 0.0283333333
## 142 1992     Platform 0.0566666667
## 143 1993     Platform 0.0590909091
## 144 1994     Platform 0.1027272727
## 145 1995     Platform 0.0384615385
## 146 1996     Platform 0.0592857143
## 147 1997     Platform 0.0494444444
## 148 1998     Platform 0.0520000000
## 149 1999     Platform 0.0444444444
## 150 2000     Platform 0.0408333333
## 151 2001     Platform 0.0595348837
## 152 2002     Platform 0.0311688312
## 153 2003     Platform 0.0320689655
## 154 2004     Platform 0.0428787879
## 155 2005     Platform 0.0172289157
## 156 2006     Platform 0.0962962963
## 157 2007     Platform 0.0895238095
## 158 2008     Platform 0.0796774194
## 159 2009     Platform 0.1506896552
## 160 2010     Platform 0.0835483871
## 161 2011     Platform 0.0732432432
## 162 2012     Platform 0.1266666667
## 163 2013     Platform 0.0621621622
## 164 2014     Platform 0.0960000000
## 165 2015     Platform 0.0321428571
## 166 2016     Platform 0.0310000000
## 167  N/A     Platform 0.0080000000
## 168 1981       Puzzle 0.0150000000
## 169 1982       Puzzle 0.0366666667
## 170 1983       Puzzle 0.0100000000
## 171 1984       Puzzle 0.0133333333
## 172 1985       Puzzle 0.0075000000
## 173 1988       Puzzle 0.1100000000
## 174 1989       Puzzle 0.1660000000
## 175 1990       Puzzle 0.0650000000
## 176 1991       Puzzle 0.0275000000
## 177 1992       Puzzle 0.0160000000
## 178 1993       Puzzle 0.0100000000
## 179 1994       Puzzle 0.0000000000
## 180 1995       Puzzle 0.0008333333
## 181 1996       Puzzle 0.0100000000
## 182 1997       Puzzle 0.0121428571
## 183 1998       Puzzle 0.0261538462
## 184 1999       Puzzle 0.0100000000
## 185 2000       Puzzle 0.0158333333
## 186 2001       Puzzle 0.0120000000
## 187 2002       Puzzle 0.0170000000
## 188 2003       Puzzle 0.0087500000
## 189 2004       Puzzle 0.0216000000
## 190 2005       Puzzle 0.0475757576
## 191 2006       Puzzle 0.0206976744
## 192 2007       Puzzle 0.0293939394
## 193 2008       Puzzle 0.0203125000
## 194 2009       Puzzle 0.0208860759
## 195 2010       Puzzle 0.0202222222
## 196 2011       Puzzle 0.0106976744
## 197 2012       Puzzle 0.0054545455
## 198 2013       Puzzle 0.0266666667
## 199 2014       Puzzle 0.0125000000
## 200 2015       Puzzle 0.0016666667
## 201  N/A       Puzzle 0.0072727273
## 202 1981       Racing 0.0000000000
## 203 1982       Racing 0.0050000000
## 204 1984       Racing 0.0233333333
## 205 1986       Racing 0.0500000000
## 206 1988       Racing 0.1000000000
## 207 1990       Racing 0.2350000000
## 208 1991       Racing 0.0400000000
## 209 1992       Racing 0.0900000000
## 210 1993       Racing 0.0000000000
## 211 1994       Racing 0.0062500000
## 212 1995       Racing 0.0258333333
## 213 1996       Racing 0.0381818182
## 214 1997       Racing 0.0413888889
## 215 1998       Racing 0.0271428571
## 216 1999       Racing 0.0322448980
## 217 2000       Racing 0.0313953488
## 218 2001       Racing 0.0639436620
## 219 2002       Racing 0.0249514563
## 220 2003       Racing 0.0410091743
## 221 2004       Racing 0.1583098592
## 222 2005       Racing 0.0703896104
## 223 2006       Racing 0.0534666667
## 224 2007       Racing 0.0759302326
## 225 2008       Racing 0.1060975610
## 226 2009       Racing 0.0651190476
## 227 2010       Racing 0.0896491228
## 228 2011       Racing 0.0572307692
## 229 2012       Racing 0.0756666667
## 230 2013       Racing 0.1218750000
## 231 2014       Racing 0.0625925926
## 232 2015       Racing 0.0489473684
## 233 2016       Racing 0.0095000000
## 234  N/A       Racing 0.0256521739
## 235 1986 Role-Playing 1.5100000000
## 236 1987 Role-Playing 0.0000000000
## 237 1988 Role-Playing 0.0000000000
## 238 1989 Role-Playing 0.0000000000
## 239 1990 Role-Playing 0.0100000000
## 240 1991 Role-Playing 0.0240000000
## 241 1992 Role-Playing 0.0060000000
## 242 1993 Role-Playing 0.0022222222
## 243 1994 Role-Playing 0.0023529412
## 244 1995 Role-Playing 0.0070833333
## 245 1996 Role-Playing 0.0496428571
## 246 1997 Role-Playing 0.0656521739
## 247 1998 Role-Playing 0.0446153846
## 248 1999 Role-Playing 0.0584848485
## 249 2000 Role-Playing 0.0634482759
## 250 2001 Role-Playing 0.0212195122
## 251 2002 Role-Playing 0.0305454545
## 252 2003 Role-Playing 0.0241666667
## 253 2004 Role-Playing 0.0363333333
## 254 2005 Role-Playing 0.0291549296
## 255 2006 Role-Playing 0.0494545455
## 256 2007 Role-Playing 0.0316504854
## 257 2008 Role-Playing 0.0502678571
## 258 2009 Role-Playing 0.0336893204
## 259 2010 Role-Playing 0.0450485437
## 260 2011 Role-Playing 0.0527368421
## 261 2012 Role-Playing 0.0456410256
## 262 2013 Role-Playing 0.0422535211
## 263 2014 Role-Playing 0.0371428571
## 264 2015 Role-Playing 0.0493589744
## 265 2016 Role-Playing 0.0110000000
## 266 2017 Role-Playing 0.0000000000
## 267  N/A Role-Playing 0.0135294118
## 268 1980      Shooter 0.0400000000
## 269 1981      Shooter 0.0090000000
## 270 1982      Shooter 0.0100000000
## 271 1983      Shooter 0.0100000000
## 272 1984      Shooter 0.1666666667
## 273 1985      Shooter 0.0000000000
## 274 1986      Shooter 0.0050000000
## 275 1987      Shooter 0.0000000000
## 276 1988      Shooter 0.0100000000
## 277 1989      Shooter 0.0400000000
## 278 1991      Shooter 0.0166666667
## 279 1992      Shooter 0.0000000000
## 280 1993      Shooter 0.0350000000
## 281 1994      Shooter 0.0318181818
## 282 1995      Shooter 0.0041379310
## 283 1996      Shooter 0.0160869565
## 284 1997      Shooter 0.0181481481
## 285 1998      Shooter 0.0204347826
## 286 1999      Shooter 0.0275000000
## 287 2000      Shooter 0.0230000000
## 288 2001      Shooter 0.0463888889
## 289 2002      Shooter 0.0478481013
## 290 2003      Shooter 0.0305479452
## 291 2004      Shooter 0.0362500000
## 292 2005      Shooter 0.0335416667
## 293 2006      Shooter 0.0668115942
## 294 2007      Shooter 0.0998823529
## 295 2008      Shooter 0.0903614458
## 296 2009      Shooter 0.0940659341
## 297 2010      Shooter 0.1027160494
## 298 2011      Shooter 0.1226595745
## 299 2012      Shooter 0.1837500000
## 300 2013      Shooter 0.1211864407
## 301 2014      Shooter 0.1782978723
## 302 2015      Shooter 0.2473529412
## 303 2016      Shooter 0.0756250000
## 304  N/A      Shooter 0.0282142857
## 305 1981   Simulation 0.0000000000
## 306 1985   Simulation 0.0100000000
## 307 1988   Simulation 0.0100000000
## 308 1990   Simulation 0.0200000000
## 309 1991   Simulation 0.0200000000
## 310 1992   Simulation 0.1000000000
## 311 1993   Simulation 0.0000000000
## 312 1994   Simulation 0.0071428571
## 313 1995   Simulation 0.0107142857
## 314 1996   Simulation 0.0369230769
## 315 1997   Simulation 0.0284210526
## 316 1998   Simulation 0.0237500000
## 317 1999   Simulation 0.0300000000
## 318 2000   Simulation 0.0146666667
## 319 2001   Simulation 0.0400000000
## 320 2002   Simulation 0.0278947368
## 321 2003   Simulation 0.0348571429
## 322 2004   Simulation 0.0370370370
## 323 2005   Simulation 0.1194736842
## 324 2006   Simulation 0.0425862069
## 325 2007   Simulation 0.0525555556
## 326 2008   Simulation 0.0338655462
## 327 2009   Simulation 0.0268292683
## 328 2010   Simulation 0.0271951220
## 329 2011   Simulation 0.0250000000
## 330 2012   Simulation 0.0444444444
## 331 2013   Simulation 0.0366666667
## 332 2014   Simulation 0.0463636364
## 333 2015   Simulation 0.0260000000
## 334 2016   Simulation 0.0000000000
## 335 2020   Simulation 0.0200000000
## 336  N/A   Simulation 0.0100000000
## 337 1980       Sports 0.0100000000
## 338 1981       Sports 0.0000000000
## 339 1982       Sports 0.0100000000
## 340 1983       Sports 0.0200000000
## 341 1984       Sports 0.0300000000
## 342 1985       Sports 0.0200000000
## 343 1986       Sports 0.0233333333
## 344 1987       Sports 0.0000000000
## 345 1988       Sports 0.0250000000
## 346 1989       Sports 0.0366666667
## 347 1990       Sports 0.0166666667
## 348 1991       Sports 0.0028571429
## 349 1992       Sports 0.0125000000
## 350 1993       Sports 0.0000000000
## 351 1994       Sports 0.0059090909
## 352 1995       Sports 0.0096551724
## 353 1996       Sports 0.0150000000
## 354 1997       Sports 0.0310869565
## 355 1998       Sports 0.0254285714
## 356 1999       Sports 0.0203225806
## 357 2000       Sports 0.0291358025
## 358 2001       Sports 0.0482291667
## 359 2002       Sports 0.0330319149
## 360 2003       Sports 0.0364000000
## 361 2004       Sports 0.0548113208
## 362 2005       Sports 0.0477868852
## 363 2006       Sports 0.1037681159
## 364 2007       Sports 0.0857485030
## 365 2008       Sports 0.0699500000
## 366 2009       Sports 0.0822826087
## 367 2010       Sports 0.0563978495
## 368 2011       Sports 0.0546721311
## 369 2012       Sports 0.0570370370
## 370 2013       Sports 0.0952830189
## 371 2014       Sports 0.1185454545
## 372 2015       Sports 0.0906451613
## 373 2016       Sports 0.0505263158
## 374  N/A       Sports 0.0552380952
## 375 1991     Strategy 0.0000000000
## 376 1992     Strategy 0.0033333333
## 377 1993     Strategy 0.0000000000
## 378 1994     Strategy 0.0216666667
## 379 1995     Strategy 0.0214285714
## 380 1996     Strategy 0.0191666667
## 381 1997     Strategy 0.0114285714
## 382 1998     Strategy 0.0102857143
## 383 1999     Strategy 0.0284615385
## 384 2000     Strategy 0.0325000000
## 385 2001     Strategy 0.0140000000
## 386 2002     Strategy 0.0072727273
## 387 2003     Strategy 0.0110810811
## 388 2004     Strategy 0.0146875000
## 389 2005     Strategy 0.0127586207
## 390 2006     Strategy 0.0135714286
## 391 2007     Strategy 0.0126865672
## 392 2008     Strategy 0.0190000000
## 393 2009     Strategy 0.0175384615
## 394 2010     Strategy 0.0284905660
## 395 2011     Strategy 0.0186956522
## 396 2012     Strategy 0.0193333333
## 397 2013     Strategy 0.0336842105
## 398 2014     Strategy 0.0050000000
## 399 2015     Strategy 0.0070588235
## 400 2016     Strategy 0.0040000000
## 401  N/A     Strategy 0.0130000000
aggregate(Other_Sales,by=list(Year = Year,Publisher = Publisher),mean)
##      Year                              Publisher           x
## 1    2006                        10TACLE Studios 0.000000000
## 2    2007                        10TACLE Studios 0.000000000
## 3    2009                             1C Company 0.000000000
## 4    2011                             1C Company 0.010000000
## 5    1981           20th Century Fox Video Games 0.003333333
## 6    1982           20th Century Fox Video Games 0.000000000
## 7    2008                                 2D Boy 0.010000000
## 8    1998                                    3DO 0.000000000
## 9    1999                                    3DO 0.028333333
## 10   2000                                    3DO 0.018000000
## 11   2001                                    3DO 0.013636364
## 12   2002                                    3DO 0.020000000
## 13   2003                                    3DO 0.016666667
## 14   2009                                49Games 0.000000000
## 15   2002                              505 Games 0.010000000
## 16   2003                              505 Games 0.010000000
## 17   2004                              505 Games 0.009000000
## 18   2005                              505 Games 0.006923077
## 19   2006                              505 Games 0.031363636
## 20   2007                              505 Games 0.034642857
## 21   2008                              505 Games 0.015384615
## 22   2009                              505 Games 0.024000000
## 23   2010                              505 Games 0.060909091
## 24   2011                              505 Games 0.016666667
## 25   2012                              505 Games 0.036250000
## 26   2013                              505 Games 0.043333333
## 27   2014                              505 Games 0.043333333
## 28   2015                              505 Games 0.017500000
## 29   2016                              505 Games 0.012857143
## 30   2008                                    5pb 0.000000000
## 31   2009                                    5pb 0.000000000
## 32   2010                                    5pb 0.000000000
## 33   2011                                    5pb 0.000000000
## 34   2012                                    5pb 0.000000000
## 35   2013                                    5pb 0.000000000
## 36   2014                                    5pb 0.000000000
## 37   2015                                    5pb 0.000000000
## 38   2016                                    5pb 0.000000000
## 39   2010                               7G//AMES 0.000000000
## 40   2011                               7G//AMES 0.000000000
## 41   1999                             989 Sports 0.020000000
## 42   1997                            989 Studios 0.020000000
## 43   1998                            989 Studios 0.053333333
## 44   1999                            989 Studios 0.051666667
## 45   2010                               Abylight 0.010000000
## 46   1993                  Acclaim Entertainment 0.060000000
## 47   1994                  Acclaim Entertainment 0.022857143
## 48   1995                  Acclaim Entertainment 0.008181818
## 49   1996                  Acclaim Entertainment 0.015384615
## 50   1997                  Acclaim Entertainment 0.011000000
## 51   1998                  Acclaim Entertainment 0.019130435
## 52   1999                  Acclaim Entertainment 0.005000000
## 53   2000                  Acclaim Entertainment 0.019333333
## 54   2001                  Acclaim Entertainment 0.039166667
## 55   2002                  Acclaim Entertainment 0.017575758
## 56   2003                  Acclaim Entertainment 0.012857143
## 57   2004                  Acclaim Entertainment 0.011428571
## 58   1996                               Accolade 0.010000000
## 59   1997                               Accolade 0.050000000
## 60   1999                               Accolade 0.010000000
## 61   2009                            Ackkstudios 0.000000000
## 62   2010                            Ackkstudios 0.010000000
## 63   2011                            Ackkstudios 0.000000000
## 64   2012                            Ackkstudios 0.000000000
## 65   2006                                Acquire 0.000000000
## 66   2008                                Acquire 0.010000000
## 67   2009                                Acquire 0.000000000
## 68   2010                                Acquire 0.000000000
## 69   2011                                Acquire 0.000000000
## 70   2012                                Acquire 0.000000000
## 71   2014                                Acquire 0.020000000
## 72   1980                             Activision 0.006000000
## 73   1981                             Activision 0.013333333
## 74   1982                             Activision 0.007500000
## 75   1983                             Activision 0.006666667
## 76   1984                             Activision 0.000000000
## 77   1985                             Activision 0.005000000
## 78   1987                             Activision 0.005000000
## 79   1988                             Activision 0.005000000
## 80   1989                             Activision 0.010000000
## 81   1994                             Activision 0.110000000
## 82   1995                             Activision 0.230000000
## 83   1996                             Activision 0.003333333
## 84   1997                             Activision 0.050000000
## 85   1998                             Activision 0.030000000
## 86   1999                             Activision 0.035000000
## 87   2000                             Activision 0.048461538
## 88   2001                             Activision 0.056086957
## 89   2002                             Activision 0.033200000
## 90   2003                             Activision 0.043529412
## 91   2004                             Activision 0.045744681
## 92   2005                             Activision 0.038000000
## 93   2006                             Activision 0.034800000
## 94   2007                             Activision 0.100133333
## 95   2008                             Activision 0.117272727
## 96   2009                             Activision 0.082479339
## 97   2010                             Activision 0.070224719
## 98   2011                             Activision 0.072666667
## 99   2012                             Activision 0.157380952
## 100  2013                             Activision 0.125263158
## 101  2014                             Activision 0.137142857
## 102  2015                             Activision 0.120512821
## 103  2016                             Activision 0.031428571
## 104   N/A                             Activision 0.061111111
## 105  2014                    Activision Blizzard 0.040000000
## 106  2001                       Activision Value 0.010000000
## 107  2002                       Activision Value 0.000000000
## 108  2003                       Activision Value 0.055000000
## 109  2004                       Activision Value 0.000000000
## 110  2005                       Activision Value 0.000000000
## 111  2006                       Activision Value 0.003333333
## 112  2007                       Activision Value 0.017500000
## 113  2008                       Activision Value 0.013333333
## 114  2009                       Activision Value 0.035714286
## 115  1996                       Adeline Software 0.010000000
## 116  2010                               Aerosoft 0.000000000
## 117  2013                               Aerosoft 0.000000000
## 118  2004                 Agatsuma Entertainment 0.000000000
## 119  2012                 Agatsuma Entertainment 0.010000000
## 120  2013                 Agatsuma Entertainment 0.000000000
## 121  1997                                 Agetec 0.000000000
## 122  1998                                 Agetec 0.005000000
## 123  2002                                 Agetec 0.075000000
## 124  2003                                 Agetec 0.015000000
## 125  2009                                 Agetec 0.000000000
## 126  2008                            Aksys Games 0.000000000
## 127  2014                            Aksys Games 0.015000000
## 128  2015                            Aksys Games 0.000000000
## 129  2016                            Aksys Games 0.010000000
## 130  2009                   Alawar Entertainment 0.010000000
## 131  2015                   Alawar Entertainment 0.000000000
## 132  2006                              Alchemist 0.075000000
## 133  2007                              Alchemist 0.000000000
## 134  2008                              Alchemist 0.000000000
## 135  2009                              Alchemist 0.000000000
## 136  2010                              Alchemist 0.000000000
## 137  2011                              Alchemist 0.000000000
## 138  2012                              Alchemist 0.000000000
## 139  2013                              Alchemist 0.000000000
## 140  2015                              Alchemist 0.000000000
## 141  2010                   Alternative Software 0.010000000
## 142  2015                   Alternative Software 0.000000000
## 143  2016                   Alternative Software 0.005000000
## 144  2001                                 Altron 0.000000000
## 145  2009                                 Alvion 0.000000000
## 146  2010                                 Alvion 0.000000000
## 147  1996                     American Softworks 0.020000000
## 148  1991                          Angel Studios 0.000000000
## 149  1994                          Angel Studios 0.000000000
## 150  1995                          Angel Studios 0.000000000
## 151  1982                        Answer Software 0.010000000
## 152  2007                         AQ Interactive 0.020000000
## 153  2008                         AQ Interactive 0.020000000
## 154  2009                         AQ Interactive 0.003333333
## 155  1999                              Aqua Plus 0.010000000
## 156  2006                              Aqua Plus 0.000000000
## 157  2007                              Aqua Plus 0.000000000
## 158  2008                              Aqua Plus 0.000000000
## 159  2009                              Aqua Plus 0.000000000
## 160  2010                              Aqua Plus 0.000000000
## 161  2011                              Aqua Plus 0.000000000
## 162  2012                              Aqua Plus 0.005000000
## 163  2013                              Aqua Plus 0.000000000
## 164  2015                              Aqua Plus 0.000000000
## 165  2016                              Aqua Plus 0.000000000
## 166  1997                                  Aques 0.010000000
## 167  2008                       Arc System Works 0.002500000
## 168  2009                       Arc System Works 0.000000000
## 169  2010                       Arc System Works 0.000000000
## 170  2012                       Arc System Works 0.000000000
## 171  2013                       Arc System Works 0.005000000
## 172  2014                       Arc System Works 0.017500000
## 173  2015                       Arc System Works 0.002500000
## 174  1992                    Arena Entertainment 0.070000000
## 175  2006                                   Aria 0.000000000
## 176  2002                                  Arika 0.000000000
## 177  2004                                  Arika 0.010000000
## 178  2008                                  Arika 0.000000000
## 179  1994                                ArtDink 0.020000000
## 180  1996                                ArtDink 0.005000000
## 181  1998                                ArtDink 0.010000000
## 182  2001                                ArtDink 0.000000000
## 183  2009                                ArtDink 0.000000000
## 184  2010                                ArtDink 0.000000000
## 185  2014                                ArtDink 0.000000000
## 186  1999                             Aruze Corp 0.040000000
## 187  2000                             Aruze Corp 0.020000000
## 188  1996                              ASC Games 0.090000000
## 189  1998                              ASC Games 0.040000000
## 190  1999                              ASC Games 0.000000000
## 191  2012                  Ascaron Entertainment 0.000000000
## 192  2004             Ascaron Entertainment GmbH 0.010000000
## 193  2008             Ascaron Entertainment GmbH 0.005000000
## 194  1994                    ASCII Entertainment 0.000000000
## 195  1995                    ASCII Entertainment 0.000000000
## 196  1996                    ASCII Entertainment 0.008000000
## 197  1997                    ASCII Entertainment 0.031666667
## 198  1998                    ASCII Entertainment 0.010000000
## 199  1999                    ASCII Entertainment 0.036666667
## 200  2001                    ASCII Entertainment 0.000000000
## 201  2008                      ASCII Media Works 0.000000000
## 202  2009                      ASCII Media Works 0.000000000
## 203  2010                      ASCII Media Works 0.000000000
## 204  2011                      ASCII Media Works 0.000000000
## 205  2014                      ASCII Media Works 0.000000000
## 206  2010                                 Asgard 0.000000000
## 207  2011                                 Asgard 0.000000000
## 208  2012                                 Asgard 0.000000000
## 209  2013                                 Asgard 0.000000000
## 210  2015                                 Asgard 0.000000000
## 211  1996                                    ASK 0.000000000
## 212  1996                Asmik Ace Entertainment 0.010000000
## 213  2000                Asmik Ace Entertainment 0.000000000
## 214  2006                Asmik Ace Entertainment 0.000000000
## 215  1994                             Asmik Corp 0.000000000
## 216  1995                             Asmik Corp 0.000000000
## 217  2003                                  Aspyr 0.000000000
## 218  2007                                  Aspyr 0.000000000
## 219  2008                                  Aspyr 0.005000000
## 220  2009                                  Aspyr 0.010000000
## 221  2009                               Astragon 0.000000000
## 222  2010                               Astragon 0.016666667
## 223  2011                               Astragon 0.010000000
## 224  2016                               Astragon 0.000000000
## 225  2010                   Asylum Entertainment 0.010000000
## 226  2011                   Asylum Entertainment 0.010000000
## 227  1980                                  Atari 0.022500000
## 228  1981                                  Atari 0.007272727
## 229  1982                                  Atari 0.015000000
## 230  1983                                  Atari 0.006666667
## 231  1986                                  Atari 0.000000000
## 232  1987                                  Atari 0.000000000
## 233  1989                                  Atari 0.000000000
## 234  1998                                  Atari 0.045000000
## 235  1999                                  Atari 0.025000000
## 236  2000                                  Atari 0.125000000
## 237  2001                                  Atari 0.036666667
## 238  2002                                  Atari 0.027446809
## 239  2003                                  Atari 0.022250000
## 240  2004                                  Atari 0.020769231
## 241  2005                                  Atari 0.012777778
## 242  2006                                  Atari 0.019130435
## 243  2007                                  Atari 0.066129032
## 244  2008                                  Atari 0.025312500
## 245  2009                                  Atari 0.032000000
## 246  2010                                  Atari 0.009090909
## 247  2011                                  Atari 0.000000000
## 248  2012                                  Atari 0.000000000
## 249  2016                                  Atari 0.000000000
## 250   N/A                                  Atari 0.017500000
## 251  1999                                 Athena 0.000000000
## 252  2001                                 Athena 0.000000000
## 253  1994                                  Atlus 0.000000000
## 254  1995                                  Atlus 0.008000000
## 255  1996                                  Atlus 0.000000000
## 256  1997                                  Atlus 0.005000000
## 257  1998                                  Atlus 0.010000000
## 258  1999                                  Atlus 0.005000000
## 259  2000                                  Atlus 0.020000000
## 260  2001                                  Atlus 0.010000000
## 261  2002                                  Atlus 0.000000000
## 262  2003                                  Atlus 0.003333333
## 263  2004                                  Atlus 0.000000000
## 264  2006                                  Atlus 0.000000000
## 265  2007                                  Atlus 0.000000000
## 266  2008                                  Atlus 0.024000000
## 267  2009                                  Atlus 0.008000000
## 268  2010                                  Atlus 0.010000000
## 269  2011                                  Atlus 0.008000000
## 270  2012                                  Atlus 0.044285714
## 271  2013                                  Atlus 0.015000000
## 272  2014                                  Atlus 0.010000000
## 273  2015                                  Atlus 0.006666667
## 274  2016                                  Atlus 0.000000000
## 275  1982                     Avalon Interactive 0.000000000
## 276  1999                     Avalon Interactive 0.010000000
## 277  2002                     Avalon Interactive 0.010000000
## 278  2003                     Avalon Interactive 0.000000000
## 279  2004                     Avalon Interactive 0.005000000
## 280  2007                              Avanquest 0.006666667
## 281  2008                              Avanquest 0.005000000
## 282  2009                              Avanquest 0.010000000
## 283  2010                              Avanquest 0.020000000
## 284  2011                              Avanquest 0.008571429
## 285  2016                              Avanquest 0.000000000
## 286   N/A                              Avanquest 0.010000000
## 287  2012                     Avanquest Software 0.028333333
## 288  2013                     Avanquest Software 0.000000000
## 289  2015                     Avanquest Software 0.000000000
## 290  1998                                  Axela 0.020000000
## 291  2000                     BAM! Entertainment 0.010000000
## 292  2001                     BAM! Entertainment 0.007142857
## 293  2002                     BAM! Entertainment 0.007777778
## 294  2003                     BAM! Entertainment 0.005000000
## 295  2004                     BAM! Entertainment 0.003333333
## 296  1991                              Banpresto 0.000000000
## 297  1992                              Banpresto 0.000000000
## 298  1993                              Banpresto 0.010000000
## 299  1994                              Banpresto 0.000000000
## 300  1995                              Banpresto 0.000000000
## 301  1996                              Banpresto 0.035000000
## 302  1997                              Banpresto 0.010000000
## 303  1998                              Banpresto 0.013333333
## 304  1999                              Banpresto 0.010000000
## 305  2000                              Banpresto 0.050000000
## 306  2001                              Banpresto 0.015000000
## 307  2002                              Banpresto 0.002500000
## 308  2003                              Banpresto 0.001666667
## 309  2004                              Banpresto 0.003333333
## 310  2005                              Banpresto 0.000000000
## 311  2006                              Banpresto 0.000000000
## 312  2007                              Banpresto 0.001111111
## 313  2008                              Banpresto 0.005000000
## 314  2009                              Banpresto 0.010000000
## 315  2011                              Banpresto 0.000000000
## 316  2007                                Benesse 0.000000000
## 317  2008                                Benesse 0.000000000
## 318  2001                               Berkeley 0.000000000
## 319  2002                     Bethesda Softworks 0.170000000
## 320  2003                     Bethesda Softworks 0.010000000
## 321  2004                     Bethesda Softworks 0.010000000
## 322  2005                     Bethesda Softworks 0.010000000
## 323  2006                     Bethesda Softworks 0.005000000
## 324  2007                     Bethesda Softworks 0.040000000
## 325  2008                     Bethesda Softworks 0.175714286
## 326  2009                     Bethesda Softworks 0.028333333
## 327  2010                     Bethesda Softworks 0.313333333
## 328  2011                     Bethesda Softworks 0.272500000
## 329  2012                     Bethesda Softworks 0.100000000
## 330  2014                     Bethesda Softworks 0.107272727
## 331  2015                     Bethesda Softworks 0.191818182
## 332  2016                     Bethesda Softworks 0.096666667
## 333   N/A                     Bethesda Softworks 0.030000000
## 334  2002                    Big Ben Interactive 0.010000000
## 335  2004                    Big Ben Interactive 0.000000000
## 336  2008                    Big Ben Interactive 0.000000000
## 337  2009                    Big Ben Interactive 0.030000000
## 338  2011                    Big Ben Interactive 0.000000000
## 339  2013                    Big Ben Interactive 0.000000000
## 340  2008                         Big Fish Games 0.000000000
## 341  2014                         Big Fish Games 0.000000000
## 342  2015                     Bigben Interactive 0.010000000
## 343  2009                      bitComposer Games 0.010000000
## 344  2011                      bitComposer Games 0.017500000
## 345  2005                       Black Bean Games 0.000000000
## 346  2007                       Black Bean Games 0.005000000
## 347  2008                       Black Bean Games 0.008000000
## 348  2009                       Black Bean Games 0.006000000
## 349  2010                       Black Bean Games 0.020000000
## 350  2011                       Black Bean Games 0.010000000
## 351   N/A                       Black Bean Games 0.020000000
## 352  2002                      Black Label Games 0.150000000
## 353  2007               Blast! Entertainment Ltd 0.020000000
## 354  2008               Blast! Entertainment Ltd 0.000000000
## 355  2009               Blast! Entertainment Ltd 0.002500000
## 356  2001                              Blue Byte 0.000000000
## 357  1996          BMG Interactive Entertainment 0.003333333
## 358  1997          BMG Interactive Entertainment 0.006666667
## 359  1998          BMG Interactive Entertainment 0.040000000
## 360  2013                    Bohemia Interactive 0.020000000
## 361  1982                                   Bomb 0.000000000
## 362  2013                               Boost On 0.000000000
## 363  1991                                    BPS 0.000000000
## 364  1994                                    BPS 0.000000000
## 365  2007                    Brash Entertainment 0.010000000
## 366  2008                    Brash Entertainment 0.011250000
## 367  2006                               Broccoli 0.000000000
## 368  2007                               Broccoli 0.000000000
## 369  2008                               Broccoli 0.000000000
## 370  2009                               Broccoli 0.000000000
## 371  2010                               Broccoli 0.000000000
## 372  2011                               Broccoli 0.000000000
## 373  2012                               Broccoli 0.000000000
## 374  2013                               Broccoli 0.000000000
## 375  2015                               Broccoli 0.000000000
## 376  2016                               Broccoli 0.000000000
## 377  2012                              BushiRoad 0.000000000
## 378  1985                                 Capcom 0.000000000
## 379  1986                                 Capcom 0.523333333
## 380  1987                                 Capcom 0.010000000
## 381  1988                                 Capcom 0.020000000
## 382  1989                                 Capcom 0.040000000
## 383  1990                                 Capcom 0.016666667
## 384  1991                                 Capcom 0.010000000
## 385  1992                                 Capcom 0.057500000
## 386  1993                                 Capcom 0.044285714
## 387  1994                                 Capcom 0.000000000
## 388  1996                                 Capcom 0.020000000
## 389  1997                                 Capcom 0.014166667
## 390  1998                                 Capcom 0.028571429
## 391  1999                                 Capcom 0.025000000
## 392  2000                                 Capcom 0.024000000
## 393  2001                                 Capcom 0.054000000
## 394  2002                                 Capcom 0.025263158
## 395  2003                                 Capcom 0.017096774
## 396  2004                                 Capcom 0.022173913
## 397  2005                                 Capcom 0.033333333
## 398  2006                                 Capcom 0.045925926
## 399  2007                                 Capcom 0.040000000
## 400  2008                                 Capcom 0.050769231
## 401  2009                                 Capcom 0.138000000
## 402  2010                                 Capcom 0.039545455
## 403  2011                                 Capcom 0.020833333
## 404  2012                                 Capcom 0.060000000
## 405  2013                                 Capcom 0.022857143
## 406  2014                                 Capcom 0.000000000
## 407  2015                                 Capcom 0.015000000
## 408  2016                                 Capcom 0.013333333
## 409   N/A                                 Capcom 0.004000000
## 410  2008                                   Cave 0.010000000
## 411  2009                                   Cave 0.000000000
## 412  2010                                   Cave 0.000000000
## 413  2011                                   Cave 0.000000000
## 414  2012                                   Cave 0.000000000
## 415  2013                                   Cave 0.000000000
## 416  1982                        CBS Electronics 0.000000000
## 417  2003                                    CCP 0.020000000
## 418  2005             CDV Software Entertainment 0.000000000
## 419  2008             CDV Software Entertainment 0.005000000
## 420  2009             CDV Software Entertainment 0.000000000
## 421  2011             CDV Software Entertainment 0.000000000
## 422  1992                               ChunSoft 0.000000000
## 423  1993                               ChunSoft 0.000000000
## 424  1994                               ChunSoft 0.000000000
## 425  1995                               ChunSoft 0.000000000
## 426  1996                               ChunSoft 0.000000000
## 427  1998                               ChunSoft 0.000000000
## 428  1999                               ChunSoft 0.010000000
## 429  2000                               ChunSoft 0.050000000
## 430  2002                               ChunSoft 0.000000000
## 431  2006                               ChunSoft 0.000000000
## 432  2009                               ChunSoft 0.030000000
## 433  2010                               ChunSoft 0.000000000
## 434  2011                               ChunSoft 0.000000000
## 435  2012                               ChunSoft 0.000000000
## 436  2008                       City Interactive 0.030000000
## 437  2009                       City Interactive 0.007500000
## 438  2010                       City Interactive 0.038000000
## 439  2011                       City Interactive 0.042500000
## 440  2013                       City Interactive 0.033333333
## 441  2014                       City Interactive 0.010000000
## 442   N/A                       City Interactive 0.000000000
## 443  2012       Cloud Imperium Games Corporation 0.000000000
## 444  1993                         Coconuts Japan 0.000000000
## 445  1996                         Coconuts Japan 0.000000000
## 446  1997                            Codemasters 0.095000000
## 447  1998                            Codemasters 0.110000000
## 448  1999                            Codemasters 0.015000000
## 449  2000                            Codemasters 0.040000000
## 450  2001                            Codemasters 0.050000000
## 451  2002                            Codemasters 0.066000000
## 452  2003                            Codemasters 0.051428571
## 453  2004                            Codemasters 0.003846154
## 454  2005                            Codemasters 0.005714286
## 455  2006                            Codemasters 0.001250000
## 456  2007                            Codemasters 0.033333333
## 457  2008                            Codemasters 0.035000000
## 458  2009                            Codemasters 0.046923077
## 459  2010                            Codemasters 0.090000000
## 460  2011                            Codemasters 0.066923077
## 461  2012                            Codemasters 0.063750000
## 462  2013                            Codemasters 0.062000000
## 463  2014                            Codemasters 0.026666667
## 464  2015                            Codemasters 0.036666667
## 465  2016                            Codemasters 0.018333333
## 466   N/A                            Codemasters 0.005000000
## 467  2008                     Codemasters Online 0.000000000
## 468  2007                      CokeM Interactive 0.020000000
## 469  1981                                 Coleco 0.007500000
## 470  1982                                 Coleco 0.000000000
## 471  2010                                Comfort 0.000000000
## 472  2011                                Comfort 0.000000000
## 473  2012                                Comfort 0.000000000
## 474  2013                                Comfort 0.000000000
## 475  2008                               Commseed 0.000000000
## 476  1995                                Compile 0.000000000
## 477  1996                                Compile 0.000000000
## 478  1997                                Compile 0.033333333
## 479  1998                                Compile 0.000000000
## 480  2008                          Compile Heart 0.010000000
## 481  2009                          Compile Heart 0.000000000
## 482  2010                          Compile Heart 0.006666667
## 483  2011                          Compile Heart 0.000000000
## 484  2012                          Compile Heart 0.006666667
## 485  2013                          Compile Heart 0.010000000
## 486  2014                          Compile Heart 0.000000000
## 487  2015                          Compile Heart 0.000000000
## 488  2016                          Compile Heart 0.000000000
## 489  2001               Conspiracy Entertainment 0.010000000
## 490  2002               Conspiracy Entertainment 0.000000000
## 491  2007               Conspiracy Entertainment 0.000000000
## 492  2008               Conspiracy Entertainment 0.003333333
## 493  2009               Conspiracy Entertainment 0.000000000
## 494  2010               Conspiracy Entertainment 0.002500000
## 495  1994                       Core Design Ltd. 0.010000000
## 496  1995                       Core Design Ltd. 0.010000000
## 497  1982                           CPG Products 0.010000000
## 498  1998                    Crave Entertainment 0.010000000
## 499  1999                    Crave Entertainment 0.003333333
## 500  2000                    Crave Entertainment 0.076666667
## 501  2002                    Crave Entertainment 0.020000000
## 502  2003                    Crave Entertainment 0.000000000
## 503  2004                    Crave Entertainment 0.003000000
## 504  2005                    Crave Entertainment 0.003333333
## 505  2006                    Crave Entertainment 0.004000000
## 506  2007                    Crave Entertainment 0.007500000
## 507  2008                    Crave Entertainment 0.020000000
## 508  2009                    Crave Entertainment 0.010000000
## 509  2010                    Crave Entertainment 0.008571429
## 510  2011                    Crave Entertainment 0.005714286
## 511  2008                          Creative Core 0.000000000
## 512  2009                          Creative Core 0.000000000
## 513  2008                            Crimson Cow 0.000000000
## 514  2011                            Crimson Cow 0.010000000
## 515  1995                       Crystal Dynamics 0.026666667
## 516  1996                       Crystal Dynamics 0.020000000
## 517  1996                                CTO SpA 0.060000000
## 518  1997                                CTO SpA 0.000000000
## 519  1991                          Culture Brain 0.000000000
## 520  1994                          Culture Brain 0.000000000
## 521  2008                          Culture Brain 0.000000000
## 522  2010                          Culture Brain 0.000000000
## 523  1998                     Culture Publishers 0.010000000
## 524  2007                             CyberFront 0.000000000
## 525  2008                             CyberFront 0.000000000
## 526  2009                             CyberFront 0.000000000
## 527  2010                             CyberFront 0.000000000
## 528  2011                             CyberFront 0.000000000
## 529  2012                             CyberFront 0.000000000
## 530  2013                             CyberFront 0.000000000
## 531  2015                                Cygames 0.000000000
## 532  1998                            D3Publisher 0.070000000
## 533  2000                            D3Publisher 0.000000000
## 534  2001                            D3Publisher 0.020000000
## 535  2005                            D3Publisher 0.005000000
## 536  2006                            D3Publisher 0.003846154
## 537  2007                            D3Publisher 0.060909091
## 538  2008                            D3Publisher 0.008095238
## 539  2009                            D3Publisher 0.017741935
## 540  2010                            D3Publisher 0.013225806
## 541  2011                            D3Publisher 0.007222222
## 542  2012                            D3Publisher 0.001111111
## 543  2013                            D3Publisher 0.004000000
## 544  2014                            D3Publisher 0.000000000
## 545  2015                            D3Publisher 0.000000000
## 546  2016                            D3Publisher 0.000000000
## 547   N/A                            D3Publisher 0.010000000
## 548  2009                               Daedalic 0.020000000
## 549  2010                               Daedalic 0.010000000
## 550  2012                               Daedalic 0.030000000
## 551  2012                 Daedalic Entertainment 0.000000000
## 552  2013                 Daedalic Entertainment 0.005000000
## 553  2006                                  Daito 0.000000000
## 554  1981                               Data Age 0.000000000
## 555  1982                               Data Age 0.000000000
## 556  2007                Data Design Interactive 0.010000000
## 557  2008                Data Design Interactive 0.010000000
## 558  2009                Data Design Interactive 0.000000000
## 559  1995                              Data East 0.000000000
## 560  1998                              Data East 0.000000000
## 561  2002                         Datam Polystar 0.000000000
## 562  2007                         Datam Polystar 0.000000000
## 563  2004                            Deep Silver 0.010000000
## 564  2005                            Deep Silver 0.006666667
## 565  2006                            Deep Silver 0.016666667
## 566  2007                            Deep Silver 0.000000000
## 567  2008                            Deep Silver 0.019230769
## 568  2009                            Deep Silver 0.011666667
## 569  2010                            Deep Silver 0.015294118
## 570  2011                            Deep Silver 0.054615385
## 571  2012                            Deep Silver 0.025000000
## 572  2013                            Deep Silver 0.058333333
## 573  2014                            Deep Silver 0.021666667
## 574  2015                            Deep Silver 0.020000000
## 575  2016                            Deep Silver 0.008181818
## 576   N/A                            Deep Silver 0.010000000
## 577  2001              Destination Software, Inc 0.000000000
## 578  2002              Destination Software, Inc 0.000000000
## 579  2003              Destination Software, Inc 0.000000000
## 580  2004              Destination Software, Inc 0.000000000
## 581  2005              Destination Software, Inc 0.000000000
## 582  2006              Destination Software, Inc 0.000000000
## 583  2007              Destination Software, Inc 0.010000000
## 584  2008              Destination Software, Inc 0.005000000
## 585  2007                              Destineer 0.005000000
## 586  2008                              Destineer 0.006000000
## 587  2009                              Destineer 0.010833333
## 588  2010                              Destineer 0.001666667
## 589  2011                              Destineer 0.000000000
## 590  2007                            Detn8 Games 0.020000000
## 591  2010                       Devolver Digital 0.000000000
## 592  2015                       Devolver Digital 0.000000000
## 593  2007                        DHM Interactive 0.005000000
## 594  2009                        DHM Interactive 0.000000000
## 595  2002                               DigiCube 0.000000000
## 596  1999             Disney Interactive Studios 0.000000000
## 597  2002             Disney Interactive Studios 0.000000000
## 598  2003             Disney Interactive Studios 0.020000000
## 599  2004             Disney Interactive Studios 0.010000000
## 600  2005             Disney Interactive Studios 0.016428571
## 601  2006             Disney Interactive Studios 0.038461538
## 602  2007             Disney Interactive Studios 0.100714286
## 603  2008             Disney Interactive Studios 0.084242424
## 604  2009             Disney Interactive Studios 0.063750000
## 605  2010             Disney Interactive Studios 0.056000000
## 606  2011             Disney Interactive Studios 0.072500000
## 607  2012             Disney Interactive Studios 0.037142857
## 608  2013             Disney Interactive Studios 0.056666667
## 609  2014             Disney Interactive Studios 0.049000000
## 610  2015             Disney Interactive Studios 0.055000000
## 611   N/A             Disney Interactive Studios 0.007500000
## 612  2008                                 Dorart 0.000000000
## 613  2010                                 Dorart 0.000000000
## 614  2015                        dramatic create 0.000000000
## 615  2016                        dramatic create 0.000000000
## 616  2001               DreamCatcher Interactive 0.010000000
## 617  2003               DreamCatcher Interactive 0.005000000
## 618  2004               DreamCatcher Interactive 0.000000000
## 619  2005               DreamCatcher Interactive 0.000000000
## 620  2006               DreamCatcher Interactive 0.005000000
## 621  2008               DreamCatcher Interactive 0.000000000
## 622  2009               DreamCatcher Interactive 0.006666667
## 623  2010               DreamCatcher Interactive 0.000000000
## 624  1998                 DreamWorks Interactive 0.010000000
## 625  2005                              DSI Games 0.000000000
## 626  2006                              DSI Games 0.000000000
## 627  2007                              DSI Games 0.000000000
## 628  2008                              DSI Games 0.010000000
## 629  2005                      DTP Entertainment 0.000000000
## 630  2007                      DTP Entertainment 0.000000000
## 631  2008                      DTP Entertainment 0.022222222
## 632  2009                      DTP Entertainment 0.008181818
## 633  2010                      DTP Entertainment 0.007142857
## 634  2011                      DTP Entertainment 0.010769231
## 635  2012                      DTP Entertainment 0.010000000
## 636   N/A                      DTP Entertainment 0.000000000
## 637  2016               Dusenberry Martin Racing 0.005000000
## 638  2012                               EA Games 0.020000000
## 639  2012                       Easy Interactive 0.000000000
## 640  2009                                  Ecole 0.000000000
## 641  2006                                   Edia 0.000000000
## 642  2009                                   Edia 0.000000000
## 643  1996                      Eidos Interactive 0.062500000
## 644  1997                      Eidos Interactive 0.152000000
## 645  1998                      Eidos Interactive 0.025000000
## 646  1999                      Eidos Interactive 0.081250000
## 647  2000                      Eidos Interactive 0.032222222
## 648  2001                      Eidos Interactive 0.023000000
## 649  2002                      Eidos Interactive 0.048000000
## 650  2003                      Eidos Interactive 0.034117647
## 651  2004                      Eidos Interactive 0.030000000
## 652  2005                      Eidos Interactive 0.049166667
## 653  2006                      Eidos Interactive 0.016551724
## 654  2007                      Eidos Interactive 0.038636364
## 655  2008                      Eidos Interactive 0.025200000
## 656  2009                      Eidos Interactive 0.066000000
## 657   N/A                      Eidos Interactive 0.060000000
## 658  1992                        Electronic Arts 0.010000000
## 659  1994                        Electronic Arts 0.020000000
## 660  1995                        Electronic Arts 0.019090909
## 661  1996                        Electronic Arts 0.035384615
## 662  1997                        Electronic Arts 0.043600000
## 663  1998                        Electronic Arts 0.042000000
## 664  1999                        Electronic Arts 0.034615385
## 665  2000                        Electronic Arts 0.054193548
## 666  2001                        Electronic Arts 0.092558140
## 667  2002                        Electronic Arts 0.080681818
## 668  2003                        Electronic Arts 0.068470588
## 669  2004                        Electronic Arts 0.070465116
## 670  2005                        Electronic Arts 0.054273504
## 671  2006                        Electronic Arts 0.072549020
## 672  2007                        Electronic Arts 0.124018692
## 673  2008                        Electronic Arts 0.105416667
## 674  2009                        Electronic Arts 0.102946429
## 675  2010                        Electronic Arts 0.117727273
## 676  2011                        Electronic Arts 0.123289474
## 677  2012                        Electronic Arts 0.152608696
## 678  2013                        Electronic Arts 0.166190476
## 679  2014                        Electronic Arts 0.178611111
## 680  2015                        Electronic Arts 0.188437500
## 681  2016                        Electronic Arts 0.081500000
## 682   N/A                        Electronic Arts 0.178333333
## 683  1996                 Electronic Arts Victor 0.015000000
## 684  1996                                    Elf 0.000000000
## 685  1997                                    Elf 0.000000000
## 686  1996                                  Elite 0.000000000
## 687  1996                     Empire Interactive 0.030000000
## 688  1998                     Empire Interactive 0.000000000
## 689  1999                     Empire Interactive 0.000000000
## 690  2000                     Empire Interactive 0.015000000
## 691  2001                     Empire Interactive 0.035000000
## 692  2002                     Empire Interactive 0.018750000
## 693  2003                     Empire Interactive 0.045000000
## 694  2004                     Empire Interactive 0.044000000
## 695  2005                     Empire Interactive 0.001428571
## 696  2006                     Empire Interactive 0.005000000
## 697  2007                     Empire Interactive 0.030000000
## 698  2008                     Empire Interactive 0.018750000
## 699   N/A                     Empire Interactive 0.020000000
## 700  2001                                 Encore 0.000000000
## 701  2003                                 Encore 0.000000000
## 702  2005                                 Encore 0.000000000
## 703  1987                       Enix Corporation 0.000000000
## 704  1988                       Enix Corporation 0.000000000
## 705  1990                       Enix Corporation 0.010000000
## 706  1992                       Enix Corporation 0.010000000
## 707  1993                       Enix Corporation 0.000000000
## 708  1994                       Enix Corporation 0.000000000
## 709  1995                       Enix Corporation 0.000000000
## 710  1996                       Enix Corporation 0.010000000
## 711  1999                       Enix Corporation 0.027500000
## 712  2000                       Enix Corporation 0.006666667
## 713  2001                       Enix Corporation 0.003333333
## 714  2002                       Enix Corporation 0.010000000
## 715  2003                       Enix Corporation 0.020000000
## 716  2004                       Enix Corporation 0.000000000
## 717  2009                      Enjoy Gaming ltd. 0.010000000
## 718  2001                             Enterbrain 0.015000000
## 719  2002                             Enterbrain 0.010000000
## 720  2004                             Enterbrain 0.005000000
## 721  2006                             Enterbrain 0.000000000
## 722  2007                             Enterbrain 0.000000000
## 723  2008                             Enterbrain 0.000000000
## 724  2009                             Enterbrain 0.000000000
## 725  2010                             Enterbrain 0.000000000
## 726  1999              EON Digital Entertainment 0.000000000
## 727  2016                             Epic Games 0.000000000
## 728  1991                                  Epoch 0.000000000
## 729  1992                                  Epoch 0.000000000
## 730  1993                                  Epoch 0.000000000
## 731  1995                                  Epoch 0.000000000
## 732  1996                                  Epoch 0.000000000
## 733  2000                                  Epoch 0.060000000
## 734  2007                                 Ertain 0.000000000
## 735  1997                                    ESP 0.000000000
## 736  1998                                    ESP 0.000000000
## 737  2002                                    ESP 0.000000000
## 738  2005                        Essential Games 0.000000000
## 739  2006                        Essential Games 0.000000000
## 740  1998                        Evolution Games 0.000000000
## 741  2004                          Evolved Games 0.002500000
## 742  2009                          Evolved Games 0.005000000
## 743  2011                          Evolved Games 0.005000000
## 744  2011                   Excalibur Publishing 0.006666667
## 745  2012                   Excalibur Publishing 0.020000000
## 746  2014                        Experience Inc. 0.000000000
## 747  2015                        Experience Inc. 0.000000000
## 748  2016                        Experience Inc. 0.000000000
## 749  2015            Extreme Entertainment Group 0.000000000
## 750  2007                     Falcom Corporation 0.000000000
## 751  2008                     Falcom Corporation 0.000000000
## 752  2009                     Falcom Corporation 0.006666667
## 753  2010                     Falcom Corporation 0.003333333
## 754  2011                     Falcom Corporation 0.000000000
## 755  2012                     Falcom Corporation 0.000000000
## 756  2013                     Falcom Corporation 0.000000000
## 757  2012                                 Fields 0.000000000
## 758  2005                       Flashpoint Games 0.000000000
## 759  2010                       Flashpoint Games 0.000000000
## 760  2007                            Flight-Plan 0.000000000
## 761  2009                            Flight-Plan 0.000000000
## 762  2006                 Focus Home Interactive 0.000000000
## 763  2007                 Focus Home Interactive 0.010000000
## 764  2008                 Focus Home Interactive 0.010000000
## 765  2009                 Focus Home Interactive 0.012857143
## 766  2010                 Focus Home Interactive 0.013333333
## 767  2011                 Focus Home Interactive 0.014444444
## 768  2012                 Focus Home Interactive 0.045714286
## 769  2013                 Focus Home Interactive 0.023333333
## 770  2014                 Focus Home Interactive 0.022727273
## 771  2015                 Focus Home Interactive 0.012500000
## 772  2016                 Focus Home Interactive 0.004000000
## 773   N/A                 Focus Home Interactive 0.005000000
## 774  2012                       Focus Multimedia 0.000000000
## 775  2015                       Focus Multimedia 0.000000000
## 776  2008                                 fonfun 0.000000000
## 777  2010                    Foreign Media Games 0.005555556
## 778  1998                              Fortyfive 0.000000000
## 779  1996                        Fox Interactive 0.100000000
## 780  1997                        Fox Interactive 0.115000000
## 781  1998                        Fox Interactive 0.005000000
## 782  1999                        Fox Interactive 0.040000000
## 783  2000                        Fox Interactive 0.010000000
## 784  1994                          From Software 0.010000000
## 785  1996                          From Software 0.020000000
## 786  1997                          From Software 0.020000000
## 787  1998                          From Software 0.010000000
## 788  1999                          From Software 0.020000000
## 789  2001                          From Software 0.010000000
## 790  2002                          From Software 0.000000000
## 791  2006                          From Software 0.000000000
## 792  2009                          From Software 0.000000000
## 793  2010                          From Software 0.000000000
## 794  2013                          From Software 0.000000000
## 795  1995                                   Fuji 0.000000000
## 796  2011                           Funbox Media 0.015000000
## 797  2012                           Funbox Media 0.000000000
## 798  2015                           Funbox Media 0.000000000
## 799  2010                                 Funcom 0.000000000
## 800  2012                                 Funcom 0.020000000
## 801  1996                                FunSoft 0.010000000
## 802  2006                                 Funsta 0.000000000
## 803  2007                                 Funsta 0.005000000
## 804   N/A                                 Funsta 0.000000000
## 805  2010                                  FuRyu 0.000000000
## 806  2011                                  FuRyu 0.000000000
## 807  2012                                  FuRyu 0.000000000
## 808  2013                                  FuRyu 0.000000000
## 809  2014                                  FuRyu 0.000000000
## 810  2015                                  FuRyu 0.001428571
## 811  2016                                  FuRyu 0.000000000
## 812  2015                      FuRyu Corporation 0.010000000
## 813  2009                                  G.Rev 0.000000000
## 814  2010                                  G.Rev 0.000000000
## 815  1996                                   Gaga 0.000000000
## 816  1998                 Gainax Network Systems 0.005000000
## 817  2007                                 Gakken 0.000000000
## 818  1994                              Game Arts 0.000000000
## 819  2003                           Game Factory 0.000000000
## 820  2004                           Game Factory 0.000000000
## 821  2005                           Game Factory 0.000000000
## 822  2006                           Game Factory 0.001428571
## 823  2007                           Game Factory 0.011111111
## 824  2008                           Game Factory 0.010000000
## 825  2010                           Game Factory 0.010000000
## 826  2007                              Game Life 0.010000000
## 827  2009                              Game Life 0.020000000
## 828  2008                             Gamebridge 0.040000000
## 829  2009                             Gamebridge 0.020000000
## 830  2008                               Gamecock 0.000000000
## 831  2007                               Gameloft 0.010000000
## 832  2010                 GameMill Entertainment 0.010000000
## 833  2011                 GameMill Entertainment 0.014000000
## 834  2012                 GameMill Entertainment 0.005000000
## 835  1998                                GameTek 0.000000000
## 836  2001                Gathering of Developers 0.023333333
## 837  2003                Gathering of Developers 0.005000000
## 838  2004                Gathering of Developers 0.010000000
## 839  1998                  General Entertainment 0.010000000
## 840  1999                                  Genki 0.000000000
## 841  2001                                  Genki 0.000000000
## 842  2003                                  Genki 0.055000000
## 843  2007                                  Genki 0.000000000
## 844  2012                                  Genki 0.000000000
## 845  2009                            Genterprise 0.000000000
## 846  2003                             Ghostlight 0.020000000
## 847  2004                             Ghostlight 0.020000000
## 848  2005                             Ghostlight 0.015000000
## 849  2006                             Ghostlight 0.030000000
## 850  2007                             Ghostlight 0.010000000
## 851  2008                             Ghostlight 0.005000000
## 852  2009                             Ghostlight 0.040000000
## 853  2010                             Ghostlight 0.005000000
## 854  2011                             Ghostlight 0.015000000
## 855   N/A                             Ghostlight 0.010000000
## 856  2014                                   Giga 0.000000000
## 857  2012                                 Giza10 0.000000000
## 858  1995                                  Glams 0.000000000
## 859  2006                 Global A Entertainment 0.000000000
## 860  2007                 Global A Entertainment 0.010000000
## 861  2008                 Global A Entertainment 0.000000000
## 862  2004                            Global Star 0.023333333
## 863  2005                            Global Star 0.008666667
## 864  2006                            Global Star 0.003333333
## 865  2006                            GN Software 0.000000000
## 866  2008                            GN Software 0.000000000
## 867  2010                            GN Software 0.000000000
## 868  2008                                    GOA 0.000000000
## 869  2002                           Gotham Games 0.060000000
## 870  2003                           Gotham Games 0.030000000
## 871  2004                           Gotham Games 0.010000000
## 872  2008                               Graffiti 0.000000000
## 873  2009                               Graffiti 0.000000000
## 874  2010                               Graffiti 0.005000000
## 875  2007                       Grand Prix Games 0.000000000
## 876  2005                 Graphsim Entertainment 0.000000000
## 877  1996                Gremlin Interactive Ltd 0.006666667
## 878  1997                Gremlin Interactive Ltd 0.006666667
## 879  1998                Gremlin Interactive Ltd 0.003333333
## 880  2010                  Griffin International 0.010000000
## 881  2005                           Groove Games 0.000000000
## 882  2006                           Groove Games 0.000000000
## 883  2008                                    GSP 0.036666667
## 884  2009                                    GSP 0.026666667
## 885  2010                                    GSP 0.020000000
## 886  2011                                    GSP 0.010000000
## 887  1995                         GT Interactive 0.020000000
## 888  1996                         GT Interactive 0.035714286
## 889  1997                         GT Interactive 0.017500000
## 890  1998                         GT Interactive 0.014117647
## 891  1999                         GT Interactive 0.087500000
## 892  2008                                 GungHo 0.005000000
## 893  2009                                 GungHo 0.015000000
## 894  2011                                 GungHo 0.000000000
## 895  2012                                 GungHo 0.015000000
## 896  2013                                 GungHo 0.010000000
## 897  2014                                 GungHo 0.010000000
## 898  2016                                 GungHo 0.000000000
## 899  1996                                   Gust 0.000000000
## 900  1997                                   Gust 0.020000000
## 901  2001                                   Gust 0.000000000
## 902  2002                                   Gust 0.000000000
## 903  2007                                   Gust 0.000000000
## 904  2008                                   Gust 0.020000000
## 905  2009                                   Gust 0.005000000
## 906  2010                                   Gust 0.000000000
## 907  2011                                   Gust 0.000000000
## 908  2012                                   Gust 0.000000000
## 909  2013                                   Gust 0.000000000
## 910  2007                              Hackberry 0.000000000
## 911  2008                              Hackberry 0.000000000
## 912  2010                              Hackberry 0.000000000
## 913  1989                         HAL Laboratory 0.000000000
## 914  2002                    Hamster Corporation 0.020000000
## 915  2006                    Hamster Corporation 0.000000000
## 916  2014                               Happinet 0.000000000
## 917  2015                               Happinet 0.000000000
## 918  2016                               Happinet 0.000000000
## 919  2015                 Harmonix Music Systems 0.055000000
## 920  1994                     Hasbro Interactive 0.100000000
## 921  1997                     Hasbro Interactive 0.070000000
## 922  1998                     Hasbro Interactive 0.040000000
## 923  1999                     Hasbro Interactive 0.033333333
## 924  2000                     Hasbro Interactive 0.025000000
## 925  2001                     Hasbro Interactive 0.010000000
## 926  2006                     Hasbro Interactive 0.000000000
## 927  2000                      Havas Interactive 0.020000000
## 928  2013                           Headup Games 0.000000000
## 929  1996                           Hearty Robin 0.010000000
## 930  1993                                   Hect 0.000000000
## 931  1994                                   Hect 0.000000000
## 932  1995                                   Hect 0.000000000
## 933  2016                            Hello Games 0.260000000
## 934  2011                        Her Interactive 0.000000000
## 935  2004                        Hip Interactive 0.000000000
## 936  2005                        Hip Interactive 0.000000000
## 937  2008                        HMH Interactive 0.000000000
## 938  2009                        HMH Interactive 0.020000000
## 939  2010           Home Entertainment Suppliers 0.005000000
## 940  2011           Home Entertainment Suppliers 0.025000000
## 941   N/A           Home Entertainment Suppliers 0.060000000
## 942  1997                   Hudson Entertainment 0.050000000
## 943  1998                   Hudson Entertainment 0.000000000
## 944  1999                   Hudson Entertainment 0.030000000
## 945  2001                   Hudson Entertainment 0.000000000
## 946  2003                   Hudson Entertainment 0.000000000
## 947  2006                   Hudson Entertainment 0.000000000
## 948  2007                   Hudson Entertainment 0.010000000
## 949  2008                   Hudson Entertainment 0.000000000
## 950  2009                   Hudson Entertainment 0.010000000
## 951  1984                            Hudson Soft 0.000000000
## 952  1985                            Hudson Soft 0.000000000
## 953  1986                            Hudson Soft 0.002500000
## 954  1991                            Hudson Soft 0.100000000
## 955  1992                            Hudson Soft 0.000000000
## 956  1993                            Hudson Soft 0.000000000
## 957  1994                            Hudson Soft 0.000000000
## 958  1995                            Hudson Soft 0.000000000
## 959  1996                            Hudson Soft 0.000000000
## 960  1997                            Hudson Soft 0.005000000
## 961  1998                            Hudson Soft 0.000000000
## 962  1999                            Hudson Soft 0.000000000
## 963  2000                            Hudson Soft 0.010000000
## 964  2001                            Hudson Soft 0.000000000
## 965  2002                            Hudson Soft 0.000000000
## 966  2003                            Hudson Soft 0.000000000
## 967  2004                            Hudson Soft 0.000000000
## 968  2005                            Hudson Soft 0.000000000
## 969  2006                            Hudson Soft 0.000000000
## 970  2007                            Hudson Soft 0.000000000
## 971  2008                            Hudson Soft 0.001250000
## 972  2009                            Hudson Soft 0.012500000
## 973  2010                            Hudson Soft 0.003636364
## 974  2011                            Hudson Soft 0.006666667
## 975  1991                    Human Entertainment 0.000000000
## 976  1994                    Human Entertainment 0.000000000
## 977  1995                    Human Entertainment 0.005000000
## 978  1996                    Human Entertainment 0.000000000
## 979  1997                    Human Entertainment 0.015000000
## 980  1998                    Human Entertainment 0.013333333
## 981  1999                    Human Entertainment 0.010000000
## 982  2015                                  HuneX 0.000000000
## 983  2011                    Iceberg Interactive 0.000000000
## 984  2012                    Iceberg Interactive 0.000000000
## 985  1992                            id Software 0.000000000
## 986  2002                           Idea Factory 0.000000000
## 987  2005                           Idea Factory 0.000000000
## 988  2006                           Idea Factory 0.002500000
## 989  2007                           Idea Factory 0.000000000
## 990  2008                           Idea Factory 0.001666667
## 991  2009                           Idea Factory 0.001428571
## 992  2010                           Idea Factory 0.000000000
## 993  2011                           Idea Factory 0.000000000
## 994  2012                           Idea Factory 0.000000000
## 995  2013                           Idea Factory 0.000000000
## 996  2014                           Idea Factory 0.005384615
## 997  2015                           Idea Factory 0.000000000
## 998  2016                           Idea Factory 0.000000000
## 999  2017                           Idea Factory 0.000000000
## 1000  N/A                           Idea Factory 0.000000000
## 1001 2014             Idea Factory International 0.026666667
## 1002 2015             Idea Factory International 0.003333333
## 1003 2006                           IE Institute 0.000000000
## 1004 2007                           IE Institute 0.000000000
## 1005 2008                           IE Institute 0.000000000
## 1006 2012                           IE Institute 0.000000000
## 1007 2002                 Ignition Entertainment 0.030000000
## 1008 2003                 Ignition Entertainment 0.002500000
## 1009 2004                 Ignition Entertainment 0.004545455
## 1010 2005                 Ignition Entertainment 0.025714286
## 1011 2006                 Ignition Entertainment 0.007777778
## 1012 2007                 Ignition Entertainment 0.007142857
## 1013 2008                 Ignition Entertainment 0.006666667
## 1014 2009                 Ignition Entertainment 0.010000000
## 1015 2011                 Ignition Entertainment 0.020000000
## 1016  N/A                 Ignition Entertainment 0.005000000
## 1017 2004                     Illusion Softworks 0.090000000
## 1018 1997                                 Imadio 0.000000000
## 1019 2012                            Image Epoch 0.000000000
## 1020 2014                        imageepoch Inc. 0.000000000
## 1021 1995                             Imageworks 0.000000000
## 1022 1981                                 Imagic 0.010000000
## 1023 1991                              Imagineer 0.000000000
## 1024 1996                              Imagineer 0.000000000
## 1025 1997                              Imagineer 0.000000000
## 1026 1998                              Imagineer 0.000000000
## 1027 1999                              Imagineer 0.000000000
## 1028 2000                              Imagineer 0.000000000
## 1029 2001                              Imagineer 0.000000000
## 1030 1993                                   Imax 0.000000000
## 1031 2004                            Indie Games 0.006666667
## 1032 1994                             Infogrames 0.050000000
## 1033 1996                             Infogrames 0.020000000
## 1034 1997                             Infogrames 0.060000000
## 1035 1998                             Infogrames 0.002857143
## 1036 1999                             Infogrames 0.011666667
## 1037 2000                             Infogrames 0.010909091
## 1038 2001                             Infogrames 0.015000000
## 1039 2002                             Infogrames 0.015909091
## 1040 2003                             Infogrames 0.000000000
## 1041  N/A                             Infogrames 0.010000000
## 1042 2016                        Insomniac Games 0.003333333
## 1043 2006                           Interchannel 0.000000000
## 1044 2008                           Interchannel 0.000000000
## 1045 2007                     Interchannel-Holon 0.000000000
## 1046 2015                              Intergrow 0.000000000
## 1047 1993                              Interplay 0.000000000
## 1048 1995                              Interplay 0.010000000
## 1049 1996                              Interplay 0.030000000
## 1050 1997                              Interplay 0.010000000
## 1051 1998                              Interplay 0.011666667
## 1052 1999                              Interplay 0.000000000
## 1053 2000                              Interplay 0.026666667
## 1054 2001                              Interplay 0.010000000
## 1055 2002                              Interplay 0.005000000
## 1056 2003                              Interplay 0.035000000
## 1057 2004                              Interplay 0.090000000
## 1058 1997                  Interplay Productions 0.010000000
## 1059 2012             Interworks Unlimited, Inc. 0.000000000
## 1060 2016                           Inti Creates 0.000000000
## 1061 2016                  Introversion Software 0.000000000
## 1062 2015                   inXile Entertainment 0.010000000
## 1063 1998              Irem Software Engineering 0.000000000
## 1064 2006              Irem Software Engineering 0.000000000
## 1065 2007              Irem Software Engineering 0.000000000
## 1066 2008              Irem Software Engineering 0.003333333
## 1067 2009              Irem Software Engineering 0.000000000
## 1068 2010              Irem Software Engineering 0.000000000
## 1069 2011              Irem Software Engineering 0.000000000
## 1070 2012              Irem Software Engineering 0.000000000
## 1071 1982                       ITT Family Games 0.000000000
## 1072 2008                              Ivolgamus 0.000000000
## 1073 2011                                   iWin 0.010000000
## 1074 2005                      Jack of All Games 0.010000000
## 1075 2011                      Jack of All Games 0.000000000
## 1076 1995                                 Jaleco 0.015000000
## 1077 1996                                 Jaleco 0.020000000
## 1078 1998                                 Jaleco 0.005000000
## 1079 1999                                 Jaleco 0.000000000
## 1080 2002                                 Jaleco 0.000000000
## 1081 2003                                 Jaleco 0.002857143
## 1082 2004                                 Jaleco 0.005000000
## 1083 2007                                 Jaleco 0.003333333
## 1084 2008                                 Jaleco 0.000000000
## 1085 2002                     Jester Interactive 0.090000000
## 1086 2003                     Jester Interactive 0.000000000
## 1087 2005                     Jester Interactive 0.050000000
## 1088 1999                                Jorudan 0.000000000
## 1089 2002                                Jorudan 0.010000000
## 1090 2003                                Jorudan 0.010000000
## 1091 2002                     JoWood Productions 0.000000000
## 1092 2004                     JoWood Productions 0.000000000
## 1093 2005                     JoWood Productions 0.002500000
## 1094 2006                     JoWood Productions 0.010000000
## 1095 2007                     JoWood Productions 0.010000000
## 1096 2008                     JoWood Productions 0.006000000
## 1097 2009                     JoWood Productions 0.012500000
## 1098 2010                     JoWood Productions 0.007500000
## 1099 2010                            Just Flight 0.010000000
## 1100 1994                                    JVC 0.000000000
## 1101 1996                                    JVC 0.023333333
## 1102 1997                                    JVC 0.000000000
## 1103 1998                                    JVC 0.000000000
## 1104 1999                                    JVC 0.000000000
## 1105 2000                                    JVC 0.000000000
## 1106 2012                         Kadokawa Games 0.000000000
## 1107 2013                         Kadokawa Games 0.000000000
## 1108 2014                         Kadokawa Games 0.000000000
## 1109 2015                         Kadokawa Games 0.000000000
## 1110 2016                         Kadokawa Games 0.000000000
## 1111 1996                        Kadokawa Shoten 0.000000000
## 1112 1997                        Kadokawa Shoten 0.000000000
## 1113 1998                        Kadokawa Shoten 0.012500000
## 1114 1999                        Kadokawa Shoten 0.020000000
## 1115 2004                        Kadokawa Shoten 0.000000000
## 1116 2005                        Kadokawa Shoten 0.000000000
## 1117 2006                        Kadokawa Shoten 0.000000000
## 1118 2007                        Kadokawa Shoten 0.000000000
## 1119 2008                        Kadokawa Shoten 0.000000000
## 1120 2009                        Kadokawa Shoten 0.000000000
## 1121 2010                        Kadokawa Shoten 0.000000000
## 1122 2011                        Kadokawa Shoten 0.000000000
## 1123 2012                        Kadokawa Shoten 0.000000000
## 1124 2013                        Kadokawa Shoten 0.000000000
## 1125 2014                        Kadokawa Shoten 0.000000000
## 1126 2015                        Kadokawa Shoten 0.000000000
## 1127 2013                            Kaga Create 0.000000000
## 1128 2015                            Kaga Create 0.000000000
## 1129 2007                          Kalypso Media 0.000000000
## 1130 2008                          Kalypso Media 0.000000000
## 1131 2009                          Kalypso Media 0.006000000
## 1132 2010                          Kalypso Media 0.006000000
## 1133 2011                          Kalypso Media 0.011428571
## 1134 2012                          Kalypso Media 0.000000000
## 1135 2014                          Kalypso Media 0.010000000
## 1136 2015                          Kalypso Media 0.016666667
## 1137  N/A                          Kalypso Media 0.013333333
## 1138 2010                                  Kamui 0.000000000
## 1139 2006                            Kando Games 0.000000000
## 1140 2010                    Karin Entertainment 0.000000000
## 1141 1991                                  Kemco 0.000000000
## 1142 1997                                  Kemco 0.005000000
## 1143 1998                                  Kemco 0.000000000
## 1144 1999                                  Kemco 0.000000000
## 1145 2001                                  Kemco 0.000000000
## 1146 2002                                  Kemco 0.000000000
## 1147 2003                                  Kemco 0.005000000
## 1148 2005                                  Kemco 0.000000000
## 1149 1998                                    KID 0.000000000
## 1150 2006                                    KID 0.000000000
## 1151 2007                           Kids Station 0.000000000
## 1152 2002                           King Records 0.000000000
## 1153 2003                    Knowledge Adventure 0.005000000
## 1154 2009                    Knowledge Adventure 0.030000000
## 1155 2008                             Koch Media 0.100000000
## 1156 2011                             Koch Media 0.015000000
## 1157 2013                             Koch Media 0.010000000
## 1158 2015                             Koch Media 0.036000000
## 1159 2016                             Koch Media 0.000000000
## 1160 1995               Kokopeli Digital Studios 0.000000000
## 1161 1986           Konami Digital Entertainment 0.005000000
## 1162 1987           Konami Digital Entertainment 0.000000000
## 1163 1989           Konami Digital Entertainment 0.010000000
## 1164 1990           Konami Digital Entertainment 0.030000000
## 1165 1991           Konami Digital Entertainment 0.007500000
## 1166 1992           Konami Digital Entertainment 0.000000000
## 1167 1993           Konami Digital Entertainment 0.000000000
## 1168 1994           Konami Digital Entertainment 0.004285714
## 1169 1995           Konami Digital Entertainment 0.009166667
## 1170 1996           Konami Digital Entertainment 0.010000000
## 1171 1997           Konami Digital Entertainment 0.018235294
## 1172 1998           Konami Digital Entertainment 0.029583333
## 1173 1999           Konami Digital Entertainment 0.025312500
## 1174 2000           Konami Digital Entertainment 0.010645161
## 1175 2001           Konami Digital Entertainment 0.052051282
## 1176 2002           Konami Digital Entertainment 0.014545455
## 1177 2003           Konami Digital Entertainment 0.046296296
## 1178 2004           Konami Digital Entertainment 0.085714286
## 1179 2005           Konami Digital Entertainment 0.027321429
## 1180 2006           Konami Digital Entertainment 0.019848485
## 1181 2007           Konami Digital Entertainment 0.067540984
## 1182 2008           Konami Digital Entertainment 0.072343750
## 1183 2009           Konami Digital Entertainment 0.043898305
## 1184 2010           Konami Digital Entertainment 0.029411765
## 1185 2011           Konami Digital Entertainment 0.020227273
## 1186 2012           Konami Digital Entertainment 0.025312500
## 1187 2013           Konami Digital Entertainment 0.021875000
## 1188 2014           Konami Digital Entertainment 0.032222222
## 1189 2015           Konami Digital Entertainment 0.066666667
## 1190 2016           Konami Digital Entertainment 0.008750000
## 1191  N/A           Konami Digital Entertainment 0.044444444
## 1192 2003                              Kool Kizz 0.000000000
## 1193 1996                                    KSS 0.000000000
## 1194 1993                                 Laguna 0.000000000
## 1195 1994                                 Laguna 0.000000000
## 1196 1995                                 Laguna 0.005000000
## 1197 2008                     Legacy Interactive 0.000000000
## 1198 1999                             LEGO Media 0.010000000
## 1199 2001                             LEGO Media 0.005000000
## 1200 2002                             LEGO Media 0.000000000
## 1201 2009                                Level 5 0.000000000
## 1202 2010                                Level 5 0.000000000
## 1203 2011                                Level 5 0.000000000
## 1204 2012                                Level 5 0.004444444
## 1205 2013                                Level 5 0.000000000
## 1206 2014                                Level 5 0.000000000
## 1207 2015                                Level 5 0.000000000
## 1208 2016                                Level 5 0.000000000
## 1209 2007                  Lexicon Entertainment 0.000000000
## 1210 2008                  Lexicon Entertainment 0.000000000
## 1211 2012                            Licensed 4U 0.000000000
## 1212 2007                 Lighthouse Interactive 0.000000000
## 1213 2002                           Liquid Games 0.000000000
## 1214 2006                           Liquid Games 0.000000000
## 1215 2010                           Little Orbit 0.000000000
## 1216 2013                           Little Orbit 0.000000000
## 1217 2014                           Little Orbit 0.011111111
## 1218 2015                           Little Orbit 0.004615385
## 1219 1998                                  Locus 0.000000000
## 1220 2002                              LSP Games 0.000000000
## 1221 2003                              LSP Games 0.003333333
## 1222 1994                              LucasArts 0.090000000
## 1223 1996                              LucasArts 0.040000000
## 1224 1997                              LucasArts 0.040000000
## 1225 1999                              LucasArts 0.080000000
## 1226 2000                              LucasArts 0.000000000
## 1227 2001                              LucasArts 0.035000000
## 1228 2002                              LucasArts 0.062500000
## 1229 2003                              LucasArts 0.016250000
## 1230 2004                              LucasArts 0.117500000
## 1231 2005                              LucasArts 0.136250000
## 1232 2006                              LucasArts 0.078888889
## 1233 2007                              LucasArts 0.186363636
## 1234 2008                              LucasArts 0.249230769
## 1235 2009                              LucasArts 0.065555556
## 1236 2010                              LucasArts 0.084000000
## 1237 2011                              LucasArts 0.107500000
## 1238  N/A                              LucasArts 0.220000000
## 1239 2004                               Mad Catz 0.010000000
## 1240 2006                               Mad Catz 0.000000000
## 1241 2012                               Mad Catz 0.010000000
## 1242 1998                        Magical Company 0.030000000
## 1243 2001                                  Magix 0.040000000
## 1244 2009                                  Magix 0.000000000
## 1245 2001                  Majesco Entertainment 0.006666667
## 1246 2002                  Majesco Entertainment 0.000000000
## 1247 2003                  Majesco Entertainment 0.005000000
## 1248 2004                  Majesco Entertainment 0.005000000
## 1249 2005                  Majesco Entertainment 0.003000000
## 1250 2006                  Majesco Entertainment 0.003333333
## 1251 2007                  Majesco Entertainment 0.010000000
## 1252 2008                  Majesco Entertainment 0.006666667
## 1253 2009                  Majesco Entertainment 0.011666667
## 1254 2010                  Majesco Entertainment 0.004000000
## 1255 2011                  Majesco Entertainment 0.053333333
## 1256 2013                  Majesco Entertainment 0.025000000
## 1257  N/A                  Majesco Entertainment 0.005000000
## 1258 2008                            Mamba Games 0.010000000
## 1259 2010                            Mamba Games 0.000000000
## 1260 2015                   Marvel Entertainment 0.000000000
## 1261 2012                Marvelous Entertainment 0.025000000
## 1262 2013                Marvelous Entertainment 0.026666667
## 1263 2014                Marvelous Entertainment 0.002500000
## 1264 2015                Marvelous Entertainment 0.005000000
## 1265 2016                Marvelous Entertainment 0.000000000
## 1266 2015                        Marvelous Games 0.000000000
## 1267 2002                  Marvelous Interactive 0.000000000
## 1268 2003                  Marvelous Interactive 0.000000000
## 1269 2004                  Marvelous Interactive 0.010000000
## 1270 2005                  Marvelous Interactive 0.003333333
## 1271 2006                  Marvelous Interactive 0.000000000
## 1272 2007                  Marvelous Interactive 0.000000000
## 1273 2008                  Marvelous Interactive 0.000000000
## 1274 2009                  Marvelous Interactive 0.002000000
## 1275 2010                  Marvelous Interactive 0.003333333
## 1276 2011                  Marvelous Interactive 0.005000000
## 1277 2014                  Marvelous Interactive 0.016666667
## 1278 2015                  Marvelous Interactive 0.016666667
## 1279 2016                  Marvelous Interactive 0.000000000
## 1280 2011                      Masque Publishing 0.000000000
## 1281 2006                           Mastertronic 0.000000000
## 1282 2009                           Mastertronic 0.010000000
## 1283 2010                           Mastertronic 0.005000000
## 1284 2011                           Mastertronic 0.013750000
## 1285 2012                           Mastertronic 0.000000000
## 1286 2004                                Mastiff 0.000000000
## 1287 2005                                Mastiff 0.005000000
## 1288 2009                                Mastiff 0.013333333
## 1289 2010                                Mastiff 0.017500000
## 1290 2011                                Mastiff 0.003333333
## 1291 1981                     Mattel Interactive 0.002857143
## 1292 1982                     Mattel Interactive 0.000000000
## 1293 1999                     Mattel Interactive 0.010000000
## 1294 2000                     Mattel Interactive 0.005000000
## 1295 2001                               Max Five 0.000000000
## 1296 2012                   Maximum Family Games 0.000000000
## 1297 1988                                  Maxis 0.010000000
## 1298 1992                                  Maxis 0.100000000
## 1299 1996                                  Maxis 0.080000000
## 1300 2004                      MC2 Entertainment 0.000000000
## 1301 2005                      MC2 Entertainment 0.000000000
## 1302 2002                    Media Entertainment 0.000000000
## 1303 2000                          Media Factory 0.000000000
## 1304 2001                          Media Factory 0.000000000
## 1305 1994                            Media Rings 0.000000000
## 1306 1995                            Media Rings 0.000000000
## 1307 2002                            Media Rings 0.000000000
## 1308 1996                            Media Works 0.000000000
## 1309 1998                            Media Works 0.000000000
## 1310 2006                            Media Works 0.000000000
## 1311 2007                            Media Works 0.000000000
## 1312 1995                             MediaQuest 0.000000000
## 1313 1981                           Men-A-Vision 0.010000000
## 1314 2009                     Mentor Interactive 0.023333333
## 1315 2010                     Mentor Interactive 0.000000000
## 1316 2011                     Mentor Interactive 0.000000000
## 1317 2007                          Mercury Games 0.005000000
## 1318 2008                          Mercury Games 0.005000000
## 1319 2009                            Merscom LLC 0.030000000
## 1320 2001                               Metro 3D 0.016666667
## 1321 2002                               Metro 3D 0.035000000
## 1322 2003                               Metro 3D 0.010000000
## 1323 2007                               Metro 3D 0.000000000
## 1324 2008                               Metro 3D 0.000000000
## 1325 2006                            Michaelsoft 0.000000000
## 1326 1994                            Micro Cabin 0.000000000
## 1327 1995                            Micro Cabin 0.000000000
## 1328 1996                            Micro Cabin 0.000000000
## 1329 2002                               Microids 0.000000000
## 1330 2003                               Microids 0.000000000
## 1331 2004                               Microids 0.005000000
## 1332 2005                               Microids 0.000000000
## 1333 2016                               Microids 0.000000000
## 1334 1995                             Microprose 0.010000000
## 1335 1996                             Microprose 0.030000000
## 1336 1997                             Microprose 0.000000000
## 1337 1999                             Microprose 0.080000000
## 1338  N/A                             Microprose 0.010000000
## 1339 1996                 Microsoft Game Studios 0.200000000
## 1340 1999                 Microsoft Game Studios 0.020000000
## 1341 2000                 Microsoft Game Studios 0.040000000
## 1342 2001                 Microsoft Game Studios 0.034000000
## 1343 2002                 Microsoft Game Studios 0.010500000
## 1344 2003                 Microsoft Game Studios 0.012857143
## 1345 2004                 Microsoft Game Studios 0.020000000
## 1346 2005                 Microsoft Game Studios 0.022857143
## 1347 2006                 Microsoft Game Studios 0.114444444
## 1348 2007                 Microsoft Game Studios 0.137894737
## 1349 2008                 Microsoft Game Studios 0.153000000
## 1350 2009                 Microsoft Game Studios 0.214285714
## 1351 2010                 Microsoft Game Studios 0.324166667
## 1352 2011                 Microsoft Game Studios 0.170000000
## 1353 2012                 Microsoft Game Studios 0.168571429
## 1354 2013                 Microsoft Game Studios 0.168750000
## 1355 2014                 Microsoft Game Studios 0.088888889
## 1356 2015                 Microsoft Game Studios 0.186000000
## 1357 2016                 Microsoft Game Studios 0.027500000
## 1358 1997        Midas Interactive Entertainment 0.000000000
## 1359 1998        Midas Interactive Entertainment 0.010000000
## 1360 1999        Midas Interactive Entertainment 0.000000000
## 1361 2000        Midas Interactive Entertainment 0.015714286
## 1362 2001        Midas Interactive Entertainment 0.017500000
## 1363 2002        Midas Interactive Entertainment 0.035000000
## 1364 2005        Midas Interactive Entertainment 0.000000000
## 1365 2006        Midas Interactive Entertainment 0.000000000
## 1366 2007        Midas Interactive Entertainment 0.000000000
## 1367 2008        Midas Interactive Entertainment 0.000000000
## 1368 2009        Midas Interactive Entertainment 0.000000000
## 1369 1996                           Midway Games 0.000000000
## 1370 1997                           Midway Games 0.002500000
## 1371 1998                           Midway Games 0.033333333
## 1372 1999                           Midway Games 0.010000000
## 1373 2000                           Midway Games 0.018333333
## 1374 2001                           Midway Games 0.050909091
## 1375 2002                           Midway Games 0.016060606
## 1376 2003                           Midway Games 0.017500000
## 1377 2004                           Midway Games 0.053333333
## 1378 2005                           Midway Games 0.023333333
## 1379 2006                           Midway Games 0.018800000
## 1380 2007                           Midway Games 0.051764706
## 1381 2008                           Midway Games 0.063125000
## 1382  N/A                           Midway Games 0.025000000
## 1383 2008                              Milestone 0.000000000
## 1384 2016                        Milestone S.r.l 0.005000000
## 1385 2014                       Milestone S.r.l. 0.017500000
## 1386 2015                       Milestone S.r.l. 0.008888889
## 1387 2016                       Milestone S.r.l. 0.003333333
## 1388 2008                         Minato Station 0.000000000
## 1389 2012                         Minato Station 0.000000000
## 1390 2015                         Minato Station 0.000000000
## 1391 1995                              Mindscape 0.020000000
## 1392 1996                              Mindscape 0.005000000
## 1393 1997                              Mindscape 0.010000000
## 1394 1998                              Mindscape 0.005000000
## 1395 1999                              Mindscape 0.000000000
## 1396 2000                              Mindscape 0.000000000
## 1397 2003                              Mindscape 0.010000000
## 1398 2007                              Mindscape 0.095000000
## 1399 2008                              Mindscape 0.005000000
## 1400 2009                              Mindscape 0.016153846
## 1401 2010                              Mindscape 0.014000000
## 1402 2008                          Mirai Shounen 0.000000000
## 1403 1993                                 Misawa 0.000000000
## 1404 1994                                 Misawa 0.000000000
## 1405 1998                                 Mitsui 0.000000000
## 1406 2015                              mixi, Inc 0.000000000
## 1407 2016                                MLB.com 0.000000000
## 1408 2015                                 Mojang 0.072000000
## 1409 2007               Monte Christo Multimedia 0.010000000
## 1410 2008                                   Moss 0.010000000
## 1411 2013                                   Moss 0.000000000
## 1412 1998                                    MTO 0.010000000
## 1413 2006                                    MTO 0.000000000
## 1414 2007                                    MTO 0.000000000
## 1415 2008                                    MTO 0.000000000
## 1416 2010                                    MTO 0.000000000
## 1417 2008                              MTV Games 0.038461538
## 1418 2009                              MTV Games 0.045625000
## 1419 2010                              MTV Games 0.072500000
## 1420 2011                              MTV Games 0.006666667
## 1421  N/A                              MTV Games 0.200000000
## 1422 2003                   Mud Duck Productions 0.010000000
## 1423 2004                   Mud Duck Productions 0.025000000
## 1424 2006                            Mumbo Jumbo 0.000000000
## 1425 2007                            Mumbo Jumbo 0.015000000
## 1426 2008                            Mumbo Jumbo 0.003333333
## 1427 1985                                  Mycom 0.000000000
## 1428 2006                           Myelin Media 0.003333333
## 1429 1981                               Mystique 0.010000000
## 1430 2004                                    N/A 0.002631579
## 1431 2005                                    N/A 0.006000000
## 1432 2007                                    N/A 0.020000000
## 1433 2010                                    N/A 0.000000000
## 1434 2011                                    N/A 0.000000000
## 1435 2012                                    N/A 0.000000000
## 1436 2014                                    N/A 0.000000000
## 1437 2016                                    N/A 0.000000000
## 1438  N/A                                    N/A 0.025909091
## 1439 1984                     Namco Bandai Games 0.010000000
## 1440 1985                     Namco Bandai Games 0.000000000
## 1441 1986                     Namco Bandai Games 0.035000000
## 1442 1987                     Namco Bandai Games 0.000000000
## 1443 1988                     Namco Bandai Games 0.000000000
## 1444 1989                     Namco Bandai Games 0.000000000
## 1445 1990                     Namco Bandai Games 0.000000000
## 1446 1991                     Namco Bandai Games 0.000000000
## 1447 1992                     Namco Bandai Games 0.000000000
## 1448 1993                     Namco Bandai Games 0.000000000
## 1449 1994                     Namco Bandai Games 0.000000000
## 1450 1995                     Namco Bandai Games 0.002727273
## 1451 1996                     Namco Bandai Games 0.008750000
## 1452 1997                     Namco Bandai Games 0.022307692
## 1453 1998                     Namco Bandai Games 0.034444444
## 1454 1999                     Namco Bandai Games 0.012142857
## 1455 2000                     Namco Bandai Games 0.047142857
## 1456 2001                     Namco Bandai Games 0.018333333
## 1457 2002                     Namco Bandai Games 0.032000000
## 1458 2003                     Namco Bandai Games 0.022608696
## 1459 2004                     Namco Bandai Games 0.016800000
## 1460 2005                     Namco Bandai Games 0.036341463
## 1461 2006                     Namco Bandai Games 0.011212121
## 1462 2007                     Namco Bandai Games 0.004897959
## 1463 2008                     Namco Bandai Games 0.009423077
## 1464 2009                     Namco Bandai Games 0.020967742
## 1465 2010                     Namco Bandai Games 0.017142857
## 1466 2011                     Namco Bandai Games 0.020131579
## 1467 2012                     Namco Bandai Games 0.009529412
## 1468 2013                     Namco Bandai Games 0.008730159
## 1469 2014                     Namco Bandai Games 0.009565217
## 1470 2015                     Namco Bandai Games 0.021470588
## 1471 2016                     Namco Bandai Games 0.014500000
## 1472  N/A                     Namco Bandai Games 0.012500000
## 1473 1996                                Natsume 0.040000000
## 1474 1997                                Natsume 0.000000000
## 1475 2000                                Natsume 0.020000000
## 1476 2001                                Natsume 0.010000000
## 1477 2002                                Natsume 0.006666667
## 1478 2003                                Natsume 0.050000000
## 1479 2006                                Natsume 0.000000000
## 1480 2007                                Natsume 0.010000000
## 1481 2009                                Natsume 0.010000000
## 1482 2010                                Natsume 0.010000000
## 1483 2014                                Natsume 0.010000000
## 1484 2008                           Navarre Corp 0.000000000
## 1485 2008                             Naxat Soft 0.000000000
## 1486 1996                                    NCS 0.000000000
## 1487 1997                                    NCS 0.000000000
## 1488 1998                                    NCS 0.000000000
## 1489 2005                                 NCSoft 0.005000000
## 1490 2006                                 NCSoft 0.005000000
## 1491 2012                                 NCSoft 0.290000000
## 1492 2014                                 NCSoft 0.020000000
## 1493 2002                        NDA Productions 0.000000000
## 1494 1995                                    NEC 0.000000000
## 1495 1996                                    NEC 0.000000000
## 1496 1996                       NEC Interchannel 0.000000000
## 1497 1997                       NEC Interchannel 0.000000000
## 1498 1998                       NEC Interchannel 0.000000000
## 1499 2000                       NEC Interchannel 0.000000000
## 1500 2008                       NEC Interchannel 0.000000000
## 1501 2007                     Neko Entertainment 0.000000000
## 1502 2008                     Neko Entertainment 0.000000000
## 1503 2009                     Neko Entertainment 0.000000000
## 1504 2010                     Neko Entertainment 0.010000000
## 1505 2010                                NetRevo 0.000000000
## 1506 2012                                NetRevo 0.000000000
## 1507 1995                                    New 0.020000000
## 1508 1992                    New World Computing 0.000000000
## 1509 1998                               NewKidCo 0.020000000
## 1510 1999                               NewKidCo 0.000000000
## 1511 2001                               NewKidCo 0.000000000
## 1512 2002                               NewKidCo 0.000000000
## 1513 2003                               NewKidCo 0.000000000
## 1514 2010                                  Nexon 0.000000000
## 1515 1995                             Nichibutsu 0.000000000
## 1516 2012               Nihon Falcom Corporation 0.020000000
## 1517 2014               Nihon Falcom Corporation 0.000000000
## 1518 2015               Nihon Falcom Corporation 0.000000000
## 1519 2016               Nihon Falcom Corporation 0.000000000
## 1520 1983                               Nintendo 0.013333333
## 1521 1984                               Nintendo 0.074444444
## 1522 1985                               Nintendo 0.130000000
## 1523 1986                               Nintendo 0.043333333
## 1524 1987                               Nintendo 0.045000000
## 1525 1988                               Nintendo 0.155000000
## 1526 1989                               Nintendo 0.155555556
## 1527 1990                               Nintendo 0.174285714
## 1528 1991                               Nintendo 0.025384615
## 1529 1992                               Nintendo 0.091000000
## 1530 1993                               Nintendo 0.047777778
## 1531 1994                               Nintendo 0.106250000
## 1532 1995                               Nintendo 0.035000000
## 1533 1996                               Nintendo 0.100000000
## 1534 1997                               Nintendo 0.043846154
## 1535 1998                               Nintendo 0.081764706
## 1536 1999                               Nintendo 0.075500000
## 1537 2000                               Nintendo 0.090000000
## 1538 2001                               Nintendo 0.071818182
## 1539 2002                               Nintendo 0.067272727
## 1540 2003                               Nintendo 0.040370370
## 1541 2004                               Nintendo 0.043157895
## 1542 2005                               Nintendo 0.225111111
## 1543 2006                               Nintendo 0.342641509
## 1544 2007                               Nintendo 0.204761905
## 1545 2008                               Nintendo 0.225625000
## 1546 2009                               Nintendo 0.303437500
## 1547 2010                               Nintendo 0.145357143
## 1548 2011                               Nintendo 0.133846154
## 1549 2012                               Nintendo 0.100967742
## 1550 2013                               Nintendo 0.138260870
## 1551 2014                               Nintendo 0.158500000
## 1552 2015                               Nintendo 0.055312500
## 1553 2016                               Nintendo 0.020000000
## 1554  N/A                               Nintendo 0.020000000
## 1555 2002                           Nippon Amuse 0.000000000
## 1556 2012                        Nippon Columbia 0.000000000
## 1557 2013                        Nippon Columbia 0.000000000
## 1558 2014                        Nippon Columbia 0.000000000
## 1559 2015                        Nippon Columbia 0.000000000
## 1560 2016                        Nippon Columbia 0.000000000
## 1561 1998                   Nippon Ichi Software 0.000000000
## 1562 2007                   Nippon Ichi Software 0.003333333
## 1563 2008                   Nippon Ichi Software 0.008000000
## 1564 2009                   Nippon Ichi Software 0.012222222
## 1565 2010                   Nippon Ichi Software 0.008888889
## 1566 2011                   Nippon Ichi Software 0.015555556
## 1567 2012                   Nippon Ichi Software 0.006000000
## 1568 2013                   Nippon Ichi Software 0.020000000
## 1569 2014                   Nippon Ichi Software 0.016842105
## 1570 2015                   Nippon Ichi Software 0.014545455
## 1571 2016                   Nippon Ichi Software 0.004166667
## 1572  N/A                   Nippon Ichi Software 0.040000000
## 1573 1996                         Nippon Telenet 0.000000000
## 1574 2014                              Nitroplus 0.000000000
## 1575 2015                              Nitroplus 0.000000000
## 1576 2007                                Nobilis 0.000000000
## 1577 2008                                Nobilis 0.018571429
## 1578 2009                                Nobilis 0.000000000
## 1579 2010                                Nobilis 0.010000000
## 1580 2007                            Nordcurrent 0.000000000
## 1581 2008                            Nordcurrent 0.020000000
## 1582 2009                            Nordcurrent 0.020000000
## 1583 2010                            Nordcurrent 0.005000000
## 1584 2008                           Nordic Games 0.020000000
## 1585 2009                           Nordic Games 0.027500000
## 1586 2010                           Nordic Games 0.018000000
## 1587 2011                           Nordic Games 0.025000000
## 1588 2012                           Nordic Games 0.017500000
## 1589 2013                           Nordic Games 0.005000000
## 1590 2014                           Nordic Games 0.010000000
## 1591 2015                           Nordic Games 0.009000000
## 1592 2016                           Nordic Games 0.000000000
## 1593 2005                              NovaLogic 0.035000000
## 1594 2009                              NovaLogic 0.000000000
## 1595 2009                            Number None 0.010000000
## 1596 2009                                O-Games 0.000000000
## 1597 2010                                O-Games 0.008333333
## 1598 2011                                O-Games 0.005000000
## 1599 2004                       O3 Entertainment 0.000000000
## 1600 2006                       O3 Entertainment 0.000000000
## 1601 2007                       O3 Entertainment 0.010000000
## 1602 1992                                  Ocean 0.000000000
## 1603 1993                                  Ocean 0.010000000
## 1604 1995                                  Ocean 0.005000000
## 1605 1996                                  Ocean 0.005000000
## 1606 1997                                  Ocean 0.013333333
## 1607 1998                                  Ocean 0.008000000
## 1608 2013                          Office Create 0.000000000
## 1609 2014                          Office Create 0.000000000
## 1610 1997                              On Demand 0.010000000
## 1611 2006                              Ongakukan 0.000000000
## 1612 1997                         Origin Systems 0.010000000
## 1613 2013                                Otomate 0.000000000
## 1614 2005                     Oxygen Interactive 0.040000000
## 1615 2006                     Oxygen Interactive 0.076666667
## 1616 2007                     Oxygen Interactive 0.010000000
## 1617 2008                     Oxygen Interactive 0.007142857
## 1618 2009                     Oxygen Interactive 0.003333333
## 1619  N/A                     Oxygen Interactive 0.000000000
## 1620 2009                               P2 Games 0.000000000
## 1621 2011                               P2 Games 0.040000000
## 1622 2002            Pacific Century Cyber Works 0.030000000
## 1623 1995                          Pack-In-Video 0.000000000
## 1624 1999                           Pack In Soft 0.060000000
## 1625 1989                                 Palcom 0.040000000
## 1626 1995                       Panther Software 0.010000000
## 1627 2007                                   Paon 0.000000000
## 1628 2008                                   Paon 0.000000000
## 1629 2010                                   Paon 0.000000000
## 1630 2011                                   Paon 0.000000000
## 1631 2013                       Paon Corporation 0.000000000
## 1632 2016                    Paradox Development 0.000000000
## 1633 2007                    Paradox Interactive 0.010000000
## 1634 2008                    Paradox Interactive 0.000000000
## 1635 2009                    Paradox Interactive 0.002500000
## 1636 2010                    Paradox Interactive 0.004000000
## 1637 2011                    Paradox Interactive 0.005000000
## 1638 2012                    Paradox Interactive 0.000000000
## 1639 2014                    Paradox Interactive 0.000000000
## 1640 2015                    Paradox Interactive 0.010000000
## 1641 2016                    Paradox Interactive 0.000000000
## 1642 1981                           Parker Bros. 0.010000000
## 1643 1982                           Parker Bros. 0.010000000
## 1644 1983                           Parker Bros. 0.000000000
## 1645 2009          Performance Designed Products 0.010000000
## 1646 2002                             Phantagram 0.000000000
## 1647 2009                            Phantom EFX 0.010000000
## 1648 2007                             Phenomedia 0.000000000
## 1649 2008                             Phenomedia 0.000000000
## 1650 2009                             Phenomedia 0.000000000
## 1651 2007                          Phoenix Games 0.000000000
## 1652 2010                                 Piacci 0.000000000
## 1653 2008                               Pinnacle 0.017500000
## 1654 2009                               Pinnacle 0.030000000
## 1655 1996                            Pioneer LDC 0.020000000
## 1656 1998                            Pioneer LDC 0.000000000
## 1657 2001                            Pioneer LDC 0.000000000
## 1658 2002                                Play It 0.075000000
## 1659 2003                                Play It 0.020000000
## 1660 2004                                Play It 0.045714286
## 1661 2005                                Play It 0.013333333
## 1662 2005                 Playlogic Game Factory 0.020000000
## 1663 2008                 Playlogic Game Factory 0.010000000
## 1664 2009                 Playlogic Game Factory 0.006363636
## 1665 1997                              Playmates 0.020000000
## 1666 2002                               Playmore 0.000000000
## 1667 2009                                  PlayV 0.000000000
## 1668 2010                                  PlayV 0.016666667
## 1669 2011                                 Plenty 0.000000000
## 1670 2009                             PM Studios 0.010000000
## 1671 2000                            Pony Canyon 0.000000000
## 1672 2006                           PopCap Games 0.000000000
## 1673 2007                           PopCap Games 0.000000000
## 1674 2008                           PopCap Games 0.010000000
## 1675 2009                           PopCap Games 0.010000000
## 1676 2010                           PopCap Games 0.013333333
## 1677 2011                           PopCap Games 0.003333333
## 1678 2007                         Popcorn Arcade 0.001428571
## 1679 2008                         Popcorn Arcade 0.000000000
## 1680 1999                        PopTop Software 0.010000000
## 1681 1995                                    Pow 0.000000000
## 1682 2007                                  PQube 0.000000000
## 1683 2008                                  PQube 0.010000000
## 1684 2009                                  PQube 0.025000000
## 1685 2010                                  PQube 0.013333333
## 1686 2011                                  PQube 0.008000000
## 1687 2012                                  PQube 0.010000000
## 1688 2013                                  PQube 0.050000000
## 1689 2015                                  PQube 0.005000000
## 1690 2016                                  PQube 0.004000000
## 1691 2002                          Princess Soft 0.000000000
## 1692 2006                          Princess Soft 0.000000000
## 1693 2008                          Princess Soft 0.000000000
## 1694 2007                              Prototype 0.000000000
## 1695 2008                              Prototype 0.000000000
## 1696 2009                              Prototype 0.000000000
## 1697 2010                              Prototype 0.000000000
## 1698 2011                              Prototype 0.000000000
## 1699 2012                              Prototype 0.000000000
## 1700 2013                              Prototype 0.000000000
## 1701 2014                              Prototype 0.000000000
## 1702 2015                              Prototype 0.000000000
## 1703 2016                              Prototype 0.000000000
## 1704 1994                              Psygnosis 0.000000000
## 1705 1995                              Psygnosis 0.012857143
## 1706 1996                              Psygnosis 0.021428571
## 1707 1997                              Psygnosis 0.013333333
## 1708 1998                              Psygnosis 0.012500000
## 1709 1999                              Psygnosis 0.010000000
## 1710 2000                              Psygnosis 0.010000000
## 1711 1982                                 Quelle 0.010000000
## 1712 1995                                  Quest 0.000000000
## 1713 2011                               Quinrose 0.000000000
## 1714 2012                               Quinrose 0.000000000
## 1715 2013                               Quinrose 0.000000000
## 1716 2014                               Quinrose 0.000000000
## 1717 1998                                Quintet 0.000000000
## 1718 2001                          Rage Software 0.005000000
## 1719 2002                          Rage Software 0.024000000
## 1720 2015                             Rain Games 0.000000000
## 1721 2001                              Rebellion 0.010000000
## 1722 2002                              Rebellion 0.000000000
## 1723 2015                 Rebellion Developments 0.020000000
## 1724 2010                      RED Entertainment 0.000000000
## 1725 1994                                Red Orb 0.000000000
## 1726 1997                                Red Orb 0.100000000
## 1727 1999                Red Storm Entertainment 0.045000000
## 1728 2001                Red Storm Entertainment 0.000000000
## 1729 2005                              RedOctane 0.040000000
## 1730 2006                              RedOctane 0.680000000
## 1731 2007                              RedOctane 0.150000000
## 1732 2009                     Reef Entertainment 0.005000000
## 1733 2010                     Reef Entertainment 0.010000000
## 1734 2012                     Reef Entertainment 0.002500000
## 1735 2004                           responDESIGN 0.000000000
## 1736 2005                           responDESIGN 0.010000000
## 1737 2009                     Revolution (Japan) 0.000000000
## 1738 2015                    Revolution Software 0.005000000
## 1739 2005                      Rising Star Games 0.001428571
## 1740 2006                      Rising Star Games 0.011111111
## 1741 2007                      Rising Star Games 0.018421053
## 1742 2008                      Rising Star Games 0.017647059
## 1743 2009                      Rising Star Games 0.017500000
## 1744 2010                      Rising Star Games 0.013333333
## 1745 2011                      Rising Star Games 0.013333333
## 1746 2012                      Rising Star Games 0.005000000
## 1747 2013                      Rising Star Games 0.013333333
## 1748 2016                      Rising Star Games 0.000000000
## 1749  N/A                      Rising Star Games 0.000000000
## 1750 1995                          Riverhillsoft 0.000000000
## 1751 2006                         Rocket Company 0.000000000
## 1752 2007                         Rocket Company 0.000000000
## 1753 2008                         Rocket Company 0.000000000
## 1754 2009                         Rocket Company 0.000000000
## 1755 2010                         Rocket Company 0.000000000
## 1756 2011                         Rocket Company 0.000000000
## 1757 2012                         Rocket Company 0.000000000
## 1758 2013                         Rocket Company 0.000000000
## 1759 2014                         Rocket Company 0.000000000
## 1760 2015                         Rocket Company 0.000000000
## 1761 2016                         Rocket Company 0.000000000
## 1762 2008                             Rondomedia 0.033333333
## 1763 2009                             Rondomedia 0.026000000
## 1764 2010                             Rondomedia 0.005000000
## 1765 2011                             Rondomedia 0.006666667
## 1766 2015                             Rondomedia 0.000000000
## 1767 2007                                    RTL 0.120000000
## 1768 2008                                    RTL 0.014000000
## 1769 2009                                    RTL 0.005000000
## 1770 2007                                 Russel 0.000000000
## 1771 2008                                 Russel 0.000000000
## 1772 2009                                 Russel 0.000000000
## 1773 2010                                 Russel 0.000000000
## 1774 1993                      Sammy Corporation 0.000000000
## 1775 2001                      Sammy Corporation 0.025000000
## 1776 2002                      Sammy Corporation 0.006000000
## 1777 2003                      Sammy Corporation 0.020000000
## 1778 2004                      Sammy Corporation 0.000000000
## 1779 2006                      Sammy Corporation 0.000000000
## 1780 1998                                 Saurus 0.000000000
## 1781 2007                        Scholastic Inc. 0.060000000
## 1782 2008                        Scholastic Inc. 0.017500000
## 1783 2010                        Scholastic Inc. 0.010000000
## 1784 2011                        Scholastic Inc. 0.010000000
## 1785 2002                                    SCi 0.020000000
## 1786 2003                                    SCi 0.017500000
## 1787 2004                                    SCi 0.018000000
## 1788 2005                                    SCi 0.003333333
## 1789 2013                             Screenlife 0.007500000
## 1790 2015                             Screenlife 0.000000000
## 1791 2016                             Screenlife 0.000000000
## 1792 2012                           SCS Software 0.020000000
## 1793  N/A                                  Sears 0.000000000
## 1794 1982                                   Sega 0.000000000
## 1795 1990                                   Sega 0.080000000
## 1796 1991                                   Sega 0.130000000
## 1797 1992                                   Sega 0.046000000
## 1798 1993                                   Sega 0.008333333
## 1799 1994                                   Sega 0.008076923
## 1800 1995                                   Sega 0.001851852
## 1801 1996                                   Sega 0.000000000
## 1802 1997                                   Sega 0.000000000
## 1803 1998                                   Sega 0.005714286
## 1804 1999                                   Sega 0.006666667
## 1805 2000                                   Sega 0.009090909
## 1806 2001                                   Sega 0.034444444
## 1807 2002                                   Sega 0.017435897
## 1808 2003                                   Sega 0.031875000
## 1809 2004                                   Sega 0.035000000
## 1810 2005                                   Sega 0.027096774
## 1811 2006                                   Sega 0.047234043
## 1812 2007                                   Sega 0.066000000
## 1813 2008                                   Sega 0.065522388
## 1814 2009                                   Sega 0.059069767
## 1815 2010                                   Sega 0.070000000
## 1816 2011                                   Sega 0.059142857
## 1817 2012                                   Sega 0.040800000
## 1818 2013                                   Sega 0.031764706
## 1819 2014                                   Sega 0.025217391
## 1820 2015                                   Sega 0.006000000
## 1821 2016                                   Sega 0.003750000
## 1822 2017                                   Sega 0.000000000
## 1823  N/A                                   Sega 0.031428571
## 1824 1995                       Seta Corporation 0.000000000
## 1825 1996                       Seta Corporation 0.020000000
## 1826 2013                          Seventh Chord 0.000000000
## 1827 1995                             Shogakukan 0.000000000
## 1828 2006                             Shogakukan 0.000000000
## 1829 2007                             Shogakukan 0.000000000
## 1830 2015                             Shogakukan 0.000000000
## 1831 2002           Simon & Schuster Interactive 0.000000000
## 1832 2015                   Slightly Mad Studios 0.060000000
## 1833 2009                    Slitherine Software 0.005000000
## 1834 2010                    Slitherine Software 0.010000000
## 1835  N/A                    Slitherine Software 0.010000000
## 1836 1993                                    SNK 0.000000000
## 1837 1994                                    SNK 0.000000000
## 1838 1995                                    SNK 0.000000000
## 1839 1996                                    SNK 0.000000000
## 1840 1997                                    SNK 0.010000000
## 1841 1998                                    SNK 0.003333333
## 1842 1999                                    SNK 0.000000000
## 1843 2000                                    SNK 0.005000000
## 1844 2005                                    SNK 0.010000000
## 1845 1995                           SNK Playmore 0.000000000
## 1846 1998                           SNK Playmore 0.000000000
## 1847 1999                           SNK Playmore 0.005000000
## 1848 2005                           SNK Playmore 0.003333333
## 1849 2006                           SNK Playmore 0.000000000
## 1850 2007                           SNK Playmore 0.002500000
## 1851 2008                           SNK Playmore 0.000000000
## 1852 2009                           SNK Playmore 0.000000000
## 1853 2010                           SNK Playmore 0.000000000
## 1854 1996                                Societa 0.000000000
## 1855 2016                               Sold Out 0.000000000
## 1856 1995                                 Sonnet 0.000000000
## 1857 1996                                 Sonnet 0.000000000
## 1858 1994            Sony Computer Entertainment 0.031428571
## 1859 1995            Sony Computer Entertainment 0.028387097
## 1860 1996            Sony Computer Entertainment 0.056785714
## 1861 1997            Sony Computer Entertainment 0.077352941
## 1862 1998            Sony Computer Entertainment 0.054333333
## 1863 1999            Sony Computer Entertainment 0.075200000
## 1864 2000            Sony Computer Entertainment 0.045312500
## 1865 2001            Sony Computer Entertainment 0.084210526
## 1866 2002            Sony Computer Entertainment 0.063666667
## 1867 2003            Sony Computer Entertainment 0.091250000
## 1868 2004            Sony Computer Entertainment 0.359000000
## 1869 2005            Sony Computer Entertainment 0.088958333
## 1870 2006            Sony Computer Entertainment 0.111176471
## 1871 2007            Sony Computer Entertainment 0.201951220
## 1872 2008            Sony Computer Entertainment 0.158648649
## 1873 2009            Sony Computer Entertainment 0.176222222
## 1874 2010            Sony Computer Entertainment 0.131860465
## 1875 2011            Sony Computer Entertainment 0.106666667
## 1876 2012            Sony Computer Entertainment 0.074166667
## 1877 2013            Sony Computer Entertainment 0.165000000
## 1878 2014            Sony Computer Entertainment 0.245384615
## 1879 2015            Sony Computer Entertainment 0.179000000
## 1880 2016            Sony Computer Entertainment 0.210000000
## 1881  N/A            Sony Computer Entertainment 0.050000000
## 1882 2014    Sony Computer Entertainment America 0.043333333
## 1883 2001     Sony Computer Entertainment Europe 0.170000000
## 1884 2004     Sony Computer Entertainment Europe 0.180000000
## 1885 2012     Sony Computer Entertainment Europe 0.060000000
## 1886 2013     Sony Computer Entertainment Europe 0.248571429
## 1887 2014     Sony Computer Entertainment Europe 0.255000000
## 1888 2015     Sony Computer Entertainment Europe 0.250000000
## 1889 2001               Sony Music Entertainment 0.000000000
## 1890 2003              Sony Online Entertainment 0.035000000
## 1891 2004              Sony Online Entertainment 0.160000000
## 1892 2005              Sony Online Entertainment 0.080000000
## 1893 2006              Sony Online Entertainment 0.010000000
## 1894 2011              Sony Online Entertainment 0.026666667
## 1895 1999                        SouthPeak Games 0.010000000
## 1896 2004                        SouthPeak Games 0.160000000
## 1897 2005                        SouthPeak Games 0.040000000
## 1898 2006                        SouthPeak Games 0.005000000
## 1899 2007                        SouthPeak Games 0.022500000
## 1900 2008                        SouthPeak Games 0.006250000
## 1901 2009                        SouthPeak Games 0.012307692
## 1902 2010                        SouthPeak Games 0.005714286
## 1903 2001                                  Spike 0.000000000
## 1904 2002                                  Spike 0.000000000
## 1905 2004                                  Spike 0.000000000
## 1906 2006                                  Spike 0.022500000
## 1907 2007                                  Spike 0.020000000
## 1908 2008                                  Spike 0.002500000
## 1909 2009                                  Spike 0.011250000
## 1910 2010                                  Spike 0.005000000
## 1911 2011                                  Spike 0.000000000
## 1912 2012                                  Spike 0.000000000
## 1913 1996                                    SPS 0.010000000
## 1914 1991                                 Square 0.120000000
## 1915 1994                                 Square 0.000000000
## 1916 1997                                 Square 0.040000000
## 1917 1999                                 Square 0.020000000
## 1918 2001                                 Square 0.030000000
## 1919 1999                              Square EA 0.050000000
## 1920 2003                            Square Enix 0.023333333
## 1921 2004                            Square Enix 0.053333333
## 1922 2005                            Square Enix 0.045000000
## 1923 2006                            Square Enix 0.171666667
## 1924 2007                            Square Enix 0.056086957
## 1925 2008                            Square Enix 0.033333333
## 1926 2009                            Square Enix 0.047222222
## 1927 2010                            Square Enix 0.072800000
## 1928 2011                            Square Enix 0.057727273
## 1929 2012                            Square Enix 0.096363636
## 1930 2013                            Square Enix 0.105625000
## 1931 2014                            Square Enix 0.048846154
## 1932 2015                            Square Enix 0.051875000
## 1933 2016                            Square Enix 0.008500000
## 1934  N/A                            Square Enix 0.025000000
## 1935 1987                             SquareSoft 0.000000000
## 1936 1988                             SquareSoft 0.000000000
## 1937 1989                             SquareSoft 0.000000000
## 1938 1990                             SquareSoft 0.010000000
## 1939 1991                             SquareSoft 0.000000000
## 1940 1992                             SquareSoft 0.010000000
## 1941 1993                             SquareSoft 0.010000000
## 1942 1994                             SquareSoft 0.010000000
## 1943 1995                             SquareSoft 0.005000000
## 1944 1996                             SquareSoft 0.000000000
## 1945 1997                             SquareSoft 0.041250000
## 1946 1998                             SquareSoft 0.042500000
## 1947 1999                             SquareSoft 0.073750000
## 1948 2000                             SquareSoft 0.035000000
## 1949 2001                             SquareSoft 0.000000000
## 1950 2002                             SquareSoft 0.000000000
## 1951 2003                             SquareSoft 0.050000000
## 1952 1996                                    SSI 0.010000000
## 1953 2016                        Stainless Games 0.000000000
## 1954 1997                               Starfish 0.020000000
## 1955 1999                               Starfish 0.010000000
## 1956 2001                               Starfish 0.000000000
## 1957 2007                               Starfish 0.000000000
## 1958 2009                               Starfish 0.000000000
## 1959 2010                               Starfish 0.000000000
## 1960 2011                               Starfish 0.000000000
## 1961 2012                               Starfish 0.000000000
## 1962 1981                         Starpath Corp. 0.000000000
## 1963 2004                                  Sting 0.000000000
## 1964 2006                                  Sting 0.000000000
## 1965 2007                                  Sting 0.010000000
## 1966 2008                                  Sting 0.004000000
## 1967 2010                                  Sting 0.000000000
## 1968 2009                       Storm City Games 0.006666667
## 1969 2010                       Storm City Games 0.004615385
## 1970 2011                       Storm City Games 0.000000000
## 1971 2001                         Strategy First 0.000000000
## 1972 1998                                Success 0.070000000
## 1973 1999                                Success 0.000000000
## 1974 2000                                Success 0.000000000
## 1975 2001                                Success 0.010000000
## 1976 2002                                Success 0.000000000
## 1977 2005                                Success 0.000000000
## 1978 2006                                Success 0.000000000
## 1979 2007                                Success 0.000000000
## 1980 2008                                Success 0.003333333
## 1981 2009                                Success 0.000000000
## 1982 2013                                Success 0.000000000
## 1983 2014                                Success 0.000000000
## 1984 2004                             Summitsoft 0.000000000
## 1985 2004                             Sunflowers 0.010000000
## 1986 2000                    Sunrise Interactive 0.000000000
## 1987 2006                    Sunrise Interactive 0.000000000
## 1988 2007                    Sunrise Interactive 0.000000000
## 1989 1994                                Sunsoft 0.000000000
## 1990 1995                                Sunsoft 0.000000000
## 1991 1996                                Sunsoft 0.000000000
## 1992 1997                                Sunsoft 0.000000000
## 1993 1998                                Sunsoft 0.010000000
## 1994 1999                                Sunsoft 0.010000000
## 1995 2000                                Sunsoft 0.020000000
## 1996 2011                                Sunsoft 0.000000000
## 1997 2006                                 Sweets 0.000000000
## 1998 2009                                 Sweets 0.000000000
## 1999 1998                   Swing! Entertainment 0.000000000
## 2000 2000                   Swing! Entertainment 0.010000000
## 2001 2001                   Swing! Entertainment 0.005000000
## 2002 2002                   Swing! Entertainment 0.010000000
## 2003 1998                                 Syscom 0.010000000
## 2004 1999                                 Syscom 0.010000000
## 2005 2013                               System 3 0.010000000
## 2006 2006               System 3 Arcade Software 0.003333333
## 2007 2007               System 3 Arcade Software 0.015000000
## 2008 2008               System 3 Arcade Software 0.025000000
## 2009 2009               System 3 Arcade Software 0.005000000
## 2010  N/A               System 3 Arcade Software 0.000000000
## 2011 2008                            System Soft 0.000000000
## 2012 2010                            System Soft 0.000000000
## 2013 2011                            System Soft 0.000000000
## 2014 1993                               T&E Soft 0.000000000
## 2015 1981                                  Taito 0.000000000
## 2016 1994                                  Taito 0.000000000
## 2017 1995                                  Taito 0.000000000
## 2018 1997                                  Taito 0.070000000
## 2019 1999                                  Taito 0.050000000
## 2020 2001                                  Taito 0.000000000
## 2021 2002                                  Taito 0.006666667
## 2022 2003                                  Taito 0.000000000
## 2023 2006                                  Taito 0.000000000
## 2024 2007                                  Taito 0.000000000
## 2025 2010                                  Taito 0.000000000
## 2026 1992                                 Takara 0.000000000
## 2027 1993                                 Takara 0.000000000
## 2028 1994                                 Takara 0.000000000
## 2029 1995                                 Takara 0.000000000
## 2030 1996                                 Takara 0.020000000
## 2031 1997                                 Takara 0.020000000
## 2032 1998                                 Takara 0.010000000
## 2033 1999                                 Takara 0.000000000
## 2034 2001                                 Takara 0.000000000
## 2035 2002                                 Takara 0.000000000
## 2036 2003                                 Takara 0.000000000
## 2037 2006                            Takara Tomy 0.006666667
## 2038 2007                            Takara Tomy 0.001250000
## 2039 2008                            Takara Tomy 0.003076923
## 2040 2009                            Takara Tomy 0.002000000
## 2041 2010                            Takara Tomy 0.000000000
## 2042 2011                            Takara Tomy 0.000000000
## 2043 2013                            Takara Tomy 0.000000000
## 2044 2015                            Takara Tomy 0.000000000
## 2045 1997                   Take-Two Interactive 0.046666667
## 2046 1998                   Take-Two Interactive 0.055000000
## 2047 1999                   Take-Two Interactive 0.017500000
## 2048 2000                   Take-Two Interactive 0.081666667
## 2049 2001                   Take-Two Interactive 0.150833333
## 2050 2002                   Take-Two Interactive 0.262500000
## 2051 2003                   Take-Two Interactive 0.070714286
## 2052 2004                   Take-Two Interactive 0.904166667
## 2053 2005                   Take-Two Interactive 0.099756098
## 2054 2006                   Take-Two Interactive 0.088787879
## 2055 2007                   Take-Two Interactive 0.056216216
## 2056 2008                   Take-Two Interactive 0.128780488
## 2057 2009                   Take-Two Interactive 0.050243902
## 2058 2010                   Take-Two Interactive 0.116000000
## 2059 2011                   Take-Two Interactive 0.060967742
## 2060 2012                   Take-Two Interactive 0.082500000
## 2061 2013                   Take-Two Interactive 0.443125000
## 2062 2014                   Take-Two Interactive 0.278000000
## 2063 2015                   Take-Two Interactive 0.118823529
## 2064 2016                   Take-Two Interactive 0.036666667
## 2065  N/A                   Take-Two Interactive 0.040000000
## 2066 2011                                 Takuyo 0.000000000
## 2067 2001                              TalonSoft 0.060000000
## 2068 2000                               TDK Core 0.010000000
## 2069 2002                               TDK Core 0.000000000
## 2070 2006                               TDK Core 0.000000000
## 2071 2007                               TDK Core 0.000000000
## 2072 2001                         TDK Mediactive 0.008000000
## 2073 2002                         TDK Mediactive 0.011250000
## 2074 2003                         TDK Mediactive 0.004285714
## 2075 2004                         TDK Mediactive 0.170000000
## 2076 2010                        Team17 Software 0.010000000
## 2077 1995              Technos Japan Corporation 0.000000000
## 2078 1998                             TechnoSoft 0.000000000
## 2079 1991                             Tecmo Koei 0.000000000
## 2080 1992                             Tecmo Koei 0.000000000
## 2081 1993                             Tecmo Koei 0.000000000
## 2082 1994                             Tecmo Koei 0.000000000
## 2083 1995                             Tecmo Koei 0.003333333
## 2084 1996                             Tecmo Koei 0.007500000
## 2085 1997                             Tecmo Koei 0.027500000
## 2086 1998                             Tecmo Koei 0.005000000
## 2087 1999                             Tecmo Koei 0.006000000
## 2088 2000                             Tecmo Koei 0.012000000
## 2089 2001                             Tecmo Koei 0.012500000
## 2090 2002                             Tecmo Koei 0.009090909
## 2091 2003                             Tecmo Koei 0.030000000
## 2092 2004                             Tecmo Koei 0.009230769
## 2093 2005                             Tecmo Koei 0.016153846
## 2094 2006                             Tecmo Koei 0.014230769
## 2095 2007                             Tecmo Koei 0.009354839
## 2096 2008                             Tecmo Koei 0.007666667
## 2097 2009                             Tecmo Koei 0.004761905
## 2098 2010                             Tecmo Koei 0.006842105
## 2099 2011                             Tecmo Koei 0.012352941
## 2100 2012                             Tecmo Koei 0.021000000
## 2101 2013                             Tecmo Koei 0.008421053
## 2102 2014                             Tecmo Koei 0.009259259
## 2103 2015                             Tecmo Koei 0.004000000
## 2104 2016                             Tecmo Koei 0.001176471
## 2105 1999                              Telegames 0.000000000
## 2106 2003                              Telegames 0.000000000
## 2107 2005                              Telegames 0.000000000
## 2108 2007                              Telegames 0.020000000
## 2109 2008                              Telegames 0.010000000
## 2110 2010                              Telegames 0.010000000
## 2111 2011                         Telltale Games 0.003333333
## 2112 2014                         Telltale Games 0.027272727
## 2113 2015                         Telltale Games 0.007142857
## 2114 2016                         Telltale Games 0.007500000
## 2115 1995                                Telstar 0.000000000
## 2116 1998                                Telstar 0.010000000
## 2117 2011                          Tetris Online 0.030000000
## 2118 2009                                    TGL 0.000000000
## 2119 2015                                    TGL 0.000000000
## 2120 2008                  The Adventure Company 0.010000000
## 2121 2009                  The Adventure Company 0.010000000
## 2122 2000                   The Learning Company 0.000000000
## 2123 1995                                    THQ 0.005000000
## 2124 1997                                    THQ 0.010000000
## 2125 1998                                    THQ 0.048181818
## 2126 1999                                    THQ 0.012500000
## 2127 2000                                    THQ 0.054000000
## 2128 2001                                    THQ 0.040833333
## 2129 2002                                    THQ 0.040181818
## 2130 2003                                    THQ 0.028593750
## 2131 2004                                    THQ 0.036734694
## 2132 2005                                    THQ 0.023492063
## 2133 2006                                    THQ 0.045438596
## 2134 2007                                    THQ 0.072027027
## 2135 2008                                    THQ 0.066721311
## 2136 2009                                    THQ 0.055000000
## 2137 2010                                    THQ 0.037543860
## 2138 2011                                    THQ 0.038157895
## 2139 2012                                    THQ 0.100000000
## 2140 2013                                    THQ 0.050000000
## 2141  N/A                                    THQ 0.010000000
## 2142 1981                            Tigervision 0.005000000
## 2143 1982                            Tigervision 0.000000000
## 2144 1994                Time Warner Interactive 0.010000000
## 2145 1995                Time Warner Interactive 0.010000000
## 2146 1996                Time Warner Interactive 0.003333333
## 2147 1993                                  Titus 0.000000000
## 2148 1997                                  Titus 0.010000000
## 2149 1998                                  Titus 0.010000000
## 2150 1999                                  Titus 0.005000000
## 2151 2000                                  Titus 0.000000000
## 2152 2001                                  Titus 0.032500000
## 2153 2002                                  Titus 0.005000000
## 2154 2003                                  Titus 0.000000000
## 2155 2008                                 Tivola 0.000000000
## 2156 2009                                 Tivola 0.010000000
## 2157 1993                                   TOHO 0.000000000
## 2158 2007                                  Tommo 0.000000000
## 2159 2009                                  Tommo 0.000000000
## 2160 2011                                  Tommo 0.000000000
## 2161 1995                       Tomy Corporation 0.020000000
## 2162 1996                       Tomy Corporation 0.010000000
## 2163 1998                       Tomy Corporation 0.010000000
## 2164 2003                       Tomy Corporation 0.006000000
## 2165 2004                       Tomy Corporation 0.010000000
## 2166 2005                       Tomy Corporation 0.003333333
## 2167 2006                       Tomy Corporation 0.000000000
## 2168 2007                       Tomy Corporation 0.110000000
## 2169 2008                       Tomy Corporation 0.030000000
## 2170 2009                       Tomy Corporation 0.000000000
## 2171 2010                       Tomy Corporation 0.010000000
## 2172 2011                    TopWare Interactive 0.000000000
## 2173 2015                    TopWare Interactive 0.000000000
## 2174  N/A                    TopWare Interactive 0.010000000
## 2175 2007                             Touchstone 0.020000000
## 2176 2008                             Touchstone 0.056666667
## 2177 2010                              Tradewest 0.003333333
## 2178 2012                           Trion Worlds 0.000000000
## 2179 2013                           Trion Worlds 0.036666667
## 2180 2011                   Tripwire Interactive 0.020000000
## 2181 2014                  Tru Blu Entertainment 0.000000000
## 2182 2015                  Tru Blu Entertainment 0.003333333
## 2183 2008                               Tryfirst 0.000000000
## 2184 1998                                    TYO 0.030000000
## 2185 2014                              Type-Moon 0.000000000
## 2186 1995                              U.S. Gold 0.005000000
## 2187 1996                              U.S. Gold 0.005000000
## 2188 1995                                Ubisoft 0.160000000
## 2189 1996                                Ubisoft 0.010000000
## 2190 1997                                Ubisoft 0.010000000
## 2191 1998                                Ubisoft 0.003333333
## 2192 1999                                Ubisoft 0.016923077
## 2193 2000                                Ubisoft 0.016666667
## 2194 2001                                Ubisoft 0.011200000
## 2195 2002                                Ubisoft 0.018181818
## 2196 2003                                Ubisoft 0.030425532
## 2197 2004                                Ubisoft 0.042187500
## 2198 2005                                Ubisoft 0.022807018
## 2199 2006                                Ubisoft 0.024590164
## 2200 2007                                Ubisoft 0.061136364
## 2201 2008                                Ubisoft 0.052678571
## 2202 2009                                Ubisoft 0.051372549
## 2203 2010                                Ubisoft 0.058611111
## 2204 2011                                Ubisoft 0.066091954
## 2205 2012                                Ubisoft 0.143750000
## 2206 2013                                Ubisoft 0.110000000
## 2207 2014                                Ubisoft 0.127954545
## 2208 2015                                Ubisoft 0.047812500
## 2209 2016                                Ubisoft 0.098461538
## 2210 2020                                Ubisoft 0.020000000
## 2211  N/A                                Ubisoft 0.033333333
## 2212 2009                         Ubisoft Annecy 0.043333333
## 2213 2010                         Ubisoft Annecy 0.017500000
## 2214 2011                         Ubisoft Annecy 0.016666667
## 2215 2012                         Ubisoft Annecy 0.005000000
## 2216 1997                            UEP Systems 0.080000000
## 2217 2007                        UFO Interactive 0.000000000
## 2218 2008                        UFO Interactive 0.000000000
## 2219 2009                        UFO Interactive 0.003333333
## 2220 2010                        UFO Interactive 0.006000000
## 2221 2011                        UFO Interactive 0.000000000
## 2222 2012                        UFO Interactive 0.000000000
## 2223 2016                      UIG Entertainment 0.000000000
## 2224  N/A                            Ultravision 0.000000000
## 2225 1982                        Universal Gamex 0.010000000
## 2226 2001                  Universal Interactive 0.440000000
## 2227 2002                  Universal Interactive 0.043571429
## 2228 2003                  Universal Interactive 0.040000000
## 2229  N/A                  Universal Interactive 0.020000000
## 2230 1981                                Unknown 0.000000000
## 2231 1998                                Unknown 0.050000000
## 2232 2001                                Unknown 0.113333333
## 2233 2002                                Unknown 0.000000000
## 2234 2003                                Unknown 0.020000000
## 2235 2004                                Unknown 0.000000000
## 2236 2005                                Unknown 0.120000000
## 2237 2006                                Unknown 0.000000000
## 2238 2007                                Unknown 0.000000000
## 2239 2008                                Unknown 0.010000000
## 2240 2009                                Unknown 0.000000000
## 2241 2010                                Unknown 0.002777778
## 2242 2011                                Unknown 0.008571429
## 2243 2012                                Unknown 0.000000000
## 2244 2013                                Unknown 0.000000000
## 2245 2014                                Unknown 0.010000000
## 2246 2015                                Unknown 0.000000000
## 2247 2016                                Unknown 0.000000000
## 2248  N/A                                Unknown 0.014466019
## 2249 2005                           Valcon Games 0.010000000
## 2250 2006                           Valcon Games 0.000000000
## 2251 2008                           Valcon Games 0.005000000
## 2252 2009                           Valcon Games 0.003333333
## 2253 2010                           Valcon Games 0.000000000
## 2254 2005                               ValuSoft 0.030000000
## 2255 2008                               ValuSoft 0.000000000
## 2256 2009                               ValuSoft 0.010000000
## 2257 2011                               ValuSoft 0.000000000
## 2258 2011                                  Valve 0.250000000
## 2259 2009                         Valve Software 0.040000000
## 2260 2011                         Valve Software 0.140000000
## 2261 1994                                    Vap 0.000000000
## 2262 2000                  Vatical Entertainment 0.005000000
## 2263 1996                              Vic Tokai 0.010000000
## 2264 1997                              Vic Tokai 0.000000000
## 2265 1993                     Victor Interactive 0.000000000
## 2266 1995                     Victor Interactive 0.000000000
## 2267 1997                     Victor Interactive 0.000000000
## 2268 1998                     Victor Interactive 0.010000000
## 2269 2000                     Victor Interactive 0.010000000
## 2270 2001                     Victor Interactive 0.000000000
## 2271 2002                     Victor Interactive 0.000000000
## 2272 1992                           Video System 0.000000000
## 2273 1997                           Video System 0.000000000
## 2274 1998                           Video System 0.080000000
## 2275 2000                           Video System 0.010000000
## 2276 2012                                  Views 0.000000000
## 2277 2014                                  Views 0.000000000
## 2278 2008                          Vir2L Studios 0.000000000
## 2279 2009                          Vir2L Studios 0.010000000
## 2280 1992                     Virgin Interactive 0.000000000
## 2281 1994                     Virgin Interactive 0.090000000
## 2282 1995                     Virgin Interactive 0.015000000
## 2283 1996                     Virgin Interactive 0.103076923
## 2284 1997                     Virgin Interactive 0.015555556
## 2285 1998                     Virgin Interactive 0.060000000
## 2286 1999                     Virgin Interactive 0.006666667
## 2287 2000                     Virgin Interactive 0.031666667
## 2288 2001                     Virgin Interactive 0.061666667
## 2289 2002                     Virgin Interactive 0.005000000
## 2290 2010                     Virtual Play Games 0.000000000
## 2291 2011                                  Visco 0.000000000
## 2292 1995                          Vivendi Games 0.000000000
## 2293 1997                          Vivendi Games 0.000000000
## 2294 1998                          Vivendi Games 0.003333333
## 2295 1999                          Vivendi Games 0.030000000
## 2296 2000                          Vivendi Games 0.010000000
## 2297 2001                          Vivendi Games 0.050000000
## 2298 2002                          Vivendi Games 0.011875000
## 2299 2003                          Vivendi Games 0.047187500
## 2300 2004                          Vivendi Games 0.018333333
## 2301 2005                          Vivendi Games 0.019600000
## 2302 2006                          Vivendi Games 0.021578947
## 2303 2007                          Vivendi Games 0.032857143
## 2304 2008                          Vivendi Games 0.053125000
## 2305 2009                          Vivendi Games 0.020000000
## 2306  N/A                          Vivendi Games 0.040000000
## 2307 2001                                Wanadoo 0.020000000
## 2308 2002                                Wanadoo 0.050000000
## 2309 2003                                Wanadoo 0.000000000
## 2310 2005                                Wanadoo 0.000000000
## 2311 2007                                Warashi 0.000000000
## 2312 2011                          Wargaming.net 0.060000000
## 2313 2003 Warner Bros. Interactive Entertainment 0.030000000
## 2314 2005 Warner Bros. Interactive Entertainment 0.010000000
## 2315 2006 Warner Bros. Interactive Entertainment 0.020000000
## 2316 2007 Warner Bros. Interactive Entertainment 0.032000000
## 2317 2008 Warner Bros. Interactive Entertainment 0.157000000
## 2318 2009 Warner Bros. Interactive Entertainment 0.051379310
## 2319 2010 Warner Bros. Interactive Entertainment 0.049393939
## 2320 2011 Warner Bros. Interactive Entertainment 0.115789474
## 2321 2012 Warner Bros. Interactive Entertainment 0.076190476
## 2322 2013 Warner Bros. Interactive Entertainment 0.100769231
## 2323 2014 Warner Bros. Interactive Entertainment 0.081000000
## 2324 2015 Warner Bros. Interactive Entertainment 0.111538462
## 2325 2016 Warner Bros. Interactive Entertainment 0.032142857
## 2326  N/A Warner Bros. Interactive Entertainment 0.094666667
## 2327 1997                                   Warp 0.000000000
## 2328 2015                WayForward Technologies 0.010000000
## 2329 1999                       Westwood Studios 0.000000000
## 2330 2007                White Park Bay Software 0.010000000
## 2331 1982                     Wizard Video Games 0.010000000
## 2332 2002                      Xicat Interactive 0.005000000
## 2333 2003                      Xicat Interactive 0.000000000
## 2334 1997                     Xing Entertainment 0.020000000
## 2335 2005                                Xplosiv 0.030000000
## 2336 2006                                Xplosiv 0.015000000
## 2337 2007                                Xplosiv 0.010000000
## 2338 2008                                Xplosiv 0.020000000
## 2339 2002                               XS Games 0.020000000
## 2340 2004                               XS Games 0.000000000
## 2341 2005                               XS Games 0.020000000
## 2342 2007                               XS Games 0.000000000
## 2343 2008                               XS Games 0.000000000
## 2344 2009                               XS Games 0.016666667
## 2345 2010                               XS Games 0.020000000
## 2346 2012                            Xseed Games 0.030000000
## 2347 2013                            Xseed Games 0.010000000
## 2348 2014                            Xseed Games 0.020000000
## 2349 2015                            Xseed Games 0.010000000
## 2350 2015                       Yacht Club Games 0.010000000
## 2351 2006                   Yamasa Entertainment 0.000000000
## 2352 2006                                   Yeti 0.000000000
## 2353 2007                                   Yeti 0.000000000
## 2354 2008                                   Yeti 0.000000000
## 2355 2009                                   Yeti 0.000000000
## 2356 2010                                   Yeti 0.000000000
## 2357 2012                                   Yeti 0.000000000
## 2358 2016                                   Yeti 0.000000000
## 2359 2005                                 Yuke's 0.000000000
## 2360 2006                                 Yuke's 0.000000000
## 2361 2007                                 Yuke's 0.000000000
## 2362 1995                                Yumedia 0.000000000
## 2363 2006                                 Zenrin 0.000000000
## 2364 2007                                 Zenrin 0.000000000
## 2365 2002                 Zoo Digital Publishing 0.001666667
## 2366 2003                 Zoo Digital Publishing 0.021111111
## 2367 2004                 Zoo Digital Publishing 0.011176471
## 2368 2005                 Zoo Digital Publishing 0.003548387
## 2369 2006                 Zoo Digital Publishing 0.005000000
## 2370 2007                 Zoo Digital Publishing 0.005833333
## 2371 2008                 Zoo Digital Publishing 0.008333333
## 2372 2009                 Zoo Digital Publishing 0.007272727
## 2373 2008                              Zoo Games 0.007500000
## 2374 2009                              Zoo Games 0.012727273
## 2375 2010                              Zoo Games 0.004166667
## 2376 2011                              Zoo Games 0.010000000
## 2377 2007                            Zushi Games 0.000000000
## 2378 2008                            Zushi Games 0.010000000
## 2379 2009                            Zushi Games 0.005384615
aggregate(Other_Sales,by=list(Genre = Genre,Publisher=Publisher),mean)
##             Genre                              Publisher            x
## 1       Adventure                        10TACLE Studios 0.0000000000
## 2          Puzzle                        10TACLE Studios 0.0000000000
## 3        Strategy                        10TACLE Studios 0.0000000000
## 4          Racing                             1C Company 0.0100000000
## 5    Role-Playing                             1C Company 0.0000000000
## 6        Strategy                             1C Company 0.0100000000
## 7          Action           20th Century Fox Video Games 0.0025000000
## 8         Shooter           20th Century Fox Video Games 0.0000000000
## 9          Puzzle                                 2D Boy 0.0100000000
## 10         Action                                    3DO 0.0170588235
## 11      Adventure                                    3DO 0.0133333333
## 12       Fighting                                    3DO 0.0400000000
## 13       Platform                                    3DO 0.0200000000
## 14         Puzzle                                    3DO 0.0100000000
## 15   Role-Playing                                    3DO 0.0200000000
## 16        Shooter                                    3DO 0.0080000000
## 17         Sports                                    3DO 0.0266666667
## 18       Strategy                                    3DO 0.0100000000
## 19         Sports                                49Games 0.0000000000
## 20         Action                              505 Games 0.0147619048
## 21      Adventure                              505 Games 0.0071428571
## 22       Fighting                              505 Games 0.0090909091
## 23           Misc                              505 Games 0.0109677419
## 24       Platform                              505 Games 0.0033333333
## 25         Puzzle                              505 Games 0.0126666667
## 26         Racing                              505 Games 0.0050000000
## 27   Role-Playing                              505 Games 0.0110000000
## 28        Shooter                              505 Games 0.0388888889
## 29     Simulation                              505 Games 0.0517073171
## 30         Sports                              505 Games 0.0540740741
## 31       Strategy                              505 Games 0.0100000000
## 32         Action                                    5pb 0.0000000000
## 33      Adventure                                    5pb 0.0000000000
## 34       Fighting                                    5pb 0.0000000000
## 35   Role-Playing                                    5pb 0.0000000000
## 36        Shooter                                    5pb 0.0000000000
## 37     Simulation                                    5pb 0.0000000000
## 38           Misc                               7G//AMES 0.0000000000
## 39         Puzzle                               7G//AMES 0.0000000000
## 40     Simulation                               7G//AMES 0.0000000000
## 41         Sports                             989 Sports 0.0200000000
## 42         Action                            989 Studios 0.0550000000
## 43         Racing                            989 Studios 0.0233333333
## 44         Sports                            989 Studios 0.0544444444
## 45         Action                               Abylight 0.0100000000
## 46         Action                  Acclaim Entertainment 0.0078571429
## 47      Adventure                  Acclaim Entertainment 0.0225000000
## 48       Fighting                  Acclaim Entertainment 0.0222580645
## 49           Misc                  Acclaim Entertainment 0.0120000000
## 50       Platform                  Acclaim Entertainment 0.0160000000
## 51         Puzzle                  Acclaim Entertainment 0.0088888889
## 52         Racing                  Acclaim Entertainment 0.0222727273
## 53   Role-Playing                  Acclaim Entertainment 0.0100000000
## 54        Shooter                  Acclaim Entertainment 0.0205882353
## 55         Sports                  Acclaim Entertainment 0.0173076923
## 56       Strategy                  Acclaim Entertainment 0.0100000000
## 57       Platform                               Accolade 0.0100000000
## 58         Racing                               Accolade 0.0500000000
## 59         Sports                               Accolade 0.0100000000
## 60         Action                            Ackkstudios 0.0000000000
## 61      Adventure                            Ackkstudios 0.0000000000
## 62   Role-Playing                            Ackkstudios 0.0050000000
## 63         Sports                            Ackkstudios 0.0000000000
## 64       Strategy                            Ackkstudios 0.0000000000
## 65         Action                                Acquire 0.0100000000
## 66      Adventure                                Acquire 0.0000000000
## 67   Role-Playing                                Acquire 0.0012500000
## 68       Strategy                                Acquire 0.0000000000
## 69         Action                             Activision 0.0446129032
## 70      Adventure                             Activision 0.0164000000
## 71       Fighting                             Activision 0.0214285714
## 72           Misc                             Activision 0.0977669903
## 73       Platform                             Activision 0.0335000000
## 74         Puzzle                             Activision 0.0028571429
## 75         Racing                             Activision 0.0182432432
## 76   Role-Playing                             Activision 0.1109756098
## 77        Shooter                             Activision 0.2211320755
## 78     Simulation                             Activision 0.0347826087
## 79         Sports                             Activision 0.0376388889
## 80       Strategy                             Activision 0.0713636364
## 81         Action                    Activision Blizzard 0.0400000000
## 82         Action                       Activision Value 0.0000000000
## 83           Misc                       Activision Value 0.0000000000
## 84        Shooter                       Activision Value 0.0150000000
## 85         Sports                       Activision Value 0.0231818182
## 86       Strategy                       Activision Value 0.0000000000
## 87         Action                       Adeline Software 0.0100000000
## 88     Simulation                               Aerosoft 0.0000000000
## 89         Action                 Agatsuma Entertainment 0.0100000000
## 90           Misc                 Agatsuma Entertainment 0.0000000000
## 91       Platform                 Agatsuma Entertainment 0.0000000000
## 92         Action                                 Agetec 0.0050000000
## 93       Fighting                                 Agetec 0.0100000000
## 94           Misc                                 Agetec 0.0100000000
## 95         Racing                                 Agetec 0.0000000000
## 96     Simulation                                 Agetec 0.0200000000
## 97         Sports                                 Agetec 0.1400000000
## 98       Strategy                                 Agetec 0.0000000000
## 99         Action                            Aksys Games 0.0000000000
## 100     Adventure                            Aksys Games 0.0066666667
## 101  Role-Playing                            Aksys Games 0.0075000000
## 102        Action                   Alawar Entertainment 0.0000000000
## 103      Strategy                   Alawar Entertainment 0.0100000000
## 104        Action                              Alchemist 0.0000000000
## 105     Adventure                              Alchemist 0.0046875000
## 106          Misc                              Alchemist 0.0000000000
## 107  Role-Playing                              Alchemist 0.0000000000
## 108       Shooter                              Alchemist 0.0000000000
## 109        Action                   Alternative Software 0.0000000000
## 110        Sports                   Alternative Software 0.0060000000
## 111       Shooter                                 Altron 0.0000000000
## 112          Misc                                 Alvion 0.0000000000
## 113        Action                     American Softworks 0.0200000000
## 114      Fighting                          Angel Studios 0.0000000000
## 115  Role-Playing                          Angel Studios 0.0000000000
## 116      Strategy                          Angel Studios 0.0000000000
## 117        Action                        Answer Software 0.0100000000
## 118      Fighting                         AQ Interactive 0.0100000000
## 119          Misc                         AQ Interactive 0.0100000000
## 120     Adventure                              Aqua Plus 0.0007692308
## 121      Fighting                              Aqua Plus 0.0100000000
## 122          Misc                              Aqua Plus 0.0000000000
## 123  Role-Playing                              Aqua Plus 0.0000000000
## 124      Strategy                              Aqua Plus 0.0000000000
## 125        Sports                                  Aques 0.0100000000
## 126        Action                       Arc System Works 0.0000000000
## 127     Adventure                       Arc System Works 0.0020000000
## 128      Fighting                       Arc System Works 0.0128571429
## 129          Misc                       Arc System Works 0.0000000000
## 130  Role-Playing                       Arc System Works 0.0000000000
## 131        Sports                       Arc System Works 0.0025000000
## 132      Fighting                    Arena Entertainment 0.0900000000
## 133        Sports                    Arena Entertainment 0.0500000000
## 134     Adventure                                   Aria 0.0000000000
## 135          Misc                                  Arika 0.0000000000
## 136  Role-Playing                                  Arika 0.0100000000
## 137       Shooter                                  Arika 0.0000000000
## 138  Role-Playing                                ArtDink 0.0033333333
## 139    Simulation                                ArtDink 0.0000000000
## 140      Strategy                                ArtDink 0.0100000000
## 141          Misc                             Aruze Corp 0.0266666667
## 142        Action                              ASC Games 0.0000000000
## 143        Racing                              ASC Games 0.0900000000
## 144        Sports                              ASC Games 0.0400000000
## 145      Strategy                  Ascaron Entertainment 0.0000000000
## 146  Role-Playing             Ascaron Entertainment GmbH 0.0100000000
## 147      Strategy             Ascaron Entertainment GmbH 0.0050000000
## 148     Adventure                    ASCII Entertainment 0.0200000000
## 149          Misc                    ASCII Entertainment 0.0100000000
## 150        Racing                    ASCII Entertainment 0.0033333333
## 151  Role-Playing                    ASCII Entertainment 0.0100000000
## 152    Simulation                    ASCII Entertainment 0.0000000000
## 153        Sports                    ASCII Entertainment 0.0325000000
## 154      Strategy                    ASCII Entertainment 0.0000000000
## 155     Adventure                      ASCII Media Works 0.0000000000
## 156  Role-Playing                      ASCII Media Works 0.0000000000
## 157        Action                                 Asgard 0.0000000000
## 158          Misc                                 Asgard 0.0000000000
## 159          Misc                                    ASK 0.0000000000
## 160     Adventure                Asmik Ace Entertainment 0.0000000000
## 161      Fighting                Asmik Ace Entertainment 0.0100000000
## 162    Simulation                Asmik Ace Entertainment 0.0000000000
## 163        Sports                             Asmik Corp 0.0000000000
## 164     Adventure                                  Aspyr 0.0000000000
## 165          Misc                                  Aspyr 0.0066666667
## 166  Role-Playing                                  Aspyr 0.0100000000
## 167    Simulation                                  Aspyr 0.0100000000
## 168        Sports                                  Aspyr 0.0050000000
## 169        Action                               Astragon 0.0100000000
## 170     Adventure                               Astragon 0.0200000000
## 171        Puzzle                               Astragon 0.0050000000
## 172    Simulation                               Astragon 0.0000000000
## 173     Adventure                   Asylum Entertainment 0.0166666667
## 174      Platform                   Asylum Entertainment 0.0100000000
## 175    Simulation                   Asylum Entertainment 0.0000000000
## 176        Action                                  Atari 0.0268518519
## 177     Adventure                                  Atari 0.0100000000
## 178      Fighting                                  Atari 0.0700000000
## 179          Misc                                  Atari 0.0153846154
## 180      Platform                                  Atari 0.0076190476
## 181        Puzzle                                  Atari 0.0177272727
## 182        Racing                                  Atari 0.0369444444
## 183  Role-Playing                                  Atari 0.0185714286
## 184       Shooter                                  Atari 0.0145000000
## 185    Simulation                                  Atari 0.0177777778
## 186        Sports                                  Atari 0.0173214286
## 187      Strategy                                  Atari 0.0170588235
## 188     Adventure                                 Athena 0.0000000000
## 189        Sports                                 Athena 0.0000000000
## 190        Action                                  Atlus 0.0000000000
## 191     Adventure                                  Atlus 0.0000000000
## 192      Fighting                                  Atlus 0.0200000000
## 193          Misc                                  Atlus 0.0000000000
## 194      Platform                                  Atlus 0.0000000000
## 195        Racing                                  Atlus 0.0000000000
## 196  Role-Playing                                  Atlus 0.0141304348
## 197       Shooter                                  Atlus 0.0000000000
## 198    Simulation                                  Atlus 0.0100000000
## 199        Sports                                  Atlus 0.0000000000
## 200      Strategy                                  Atlus 0.0050000000
## 201        Action                     Avalon Interactive 0.0000000000
## 202        Racing                     Avalon Interactive 0.0100000000
## 203  Role-Playing                     Avalon Interactive 0.0050000000
## 204       Shooter                     Avalon Interactive 0.0000000000
## 205    Simulation                     Avalon Interactive 0.0100000000
## 206        Action                              Avanquest 0.0125000000
## 207     Adventure                              Avanquest 0.0000000000
## 208          Misc                              Avanquest 0.0166666667
## 209        Puzzle                              Avanquest 0.0107142857
## 210    Simulation                              Avanquest 0.0000000000
## 211        Sports                              Avanquest 0.0000000000
## 212        Action                     Avanquest Software 0.0000000000
## 213     Adventure                     Avanquest Software 0.0566666667
## 214          Misc                     Avanquest Software 0.0000000000
## 215        Sports                                  Axela 0.0200000000
## 216        Action                     BAM! Entertainment 0.0100000000
## 217     Adventure                     BAM! Entertainment 0.0066666667
## 218      Fighting                     BAM! Entertainment 0.0100000000
## 219          Misc                     BAM! Entertainment 0.0000000000
## 220      Platform                     BAM! Entertainment 0.0100000000
## 221        Racing                     BAM! Entertainment 0.0071428571
## 222       Shooter                     BAM! Entertainment 0.0037500000
## 223        Sports                     BAM! Entertainment 0.0000000000
## 224        Action                              Banpresto 0.0000000000
## 225     Adventure                              Banpresto 0.0016666667
## 226      Fighting                              Banpresto 0.0050000000
## 227          Misc                              Banpresto 0.0000000000
## 228      Platform                              Banpresto 0.0000000000
## 229        Puzzle                              Banpresto 0.0050000000
## 230        Racing                              Banpresto 0.0000000000
## 231  Role-Playing                              Banpresto 0.0052941176
## 232       Shooter                              Banpresto 0.0100000000
## 233    Simulation                              Banpresto 0.0000000000
## 234        Sports                              Banpresto 0.0033333333
## 235      Strategy                              Banpresto 0.0071428571
## 236          Misc                                Benesse 0.0000000000
## 237        Action                               Berkeley 0.0000000000
## 238        Action                     Bethesda Softworks 0.0717647059
## 239        Racing                     Bethesda Softworks 0.0314285714
## 240  Role-Playing                     Bethesda Softworks 0.3929411765
## 241       Shooter                     Bethesda Softworks 0.0861904762
## 242    Simulation                     Bethesda Softworks 0.0100000000
## 243        Sports                     Bethesda Softworks 0.0380000000
## 244      Strategy                     Bethesda Softworks 0.0100000000
## 245     Adventure                    Big Ben Interactive 0.0000000000
## 246      Platform                    Big Ben Interactive 0.0000000000
## 247        Racing                    Big Ben Interactive 0.0000000000
## 248       Shooter                    Big Ben Interactive 0.0100000000
## 249        Sports                    Big Ben Interactive 0.0300000000
## 250        Action                         Big Fish Games 0.0000000000
## 251     Adventure                         Big Fish Games 0.0000000000
## 252        Sports                     Bigben Interactive 0.0100000000
## 253        Racing                      bitComposer Games 0.0100000000
## 254    Simulation                      bitComposer Games 0.0175000000
## 255        Action                       Black Bean Games 0.0100000000
## 256          Misc                       Black Bean Games 0.0060000000
## 257        Racing                       Black Bean Games 0.0126315789
## 258        Sports                       Black Bean Games 0.0162500000
## 259      Strategy                       Black Bean Games 0.0000000000
## 260        Action                      Black Label Games 0.1500000000
## 261        Action               Blast! Entertainment Ltd 0.0150000000
## 262     Adventure               Blast! Entertainment Ltd 0.0000000000
## 263        Sports               Blast! Entertainment Ltd 0.0000000000
## 264    Simulation                              Blue Byte 0.0000000000
## 265      Strategy                              Blue Byte 0.0000000000
## 266      Platform          BMG Interactive Entertainment 0.0166666667
## 267        Racing          BMG Interactive Entertainment 0.0100000000
## 268       Shooter          BMG Interactive Entertainment 0.0050000000
## 269        Sports          BMG Interactive Entertainment 0.0000000000
## 270       Shooter                    Bohemia Interactive 0.0200000000
## 271        Action                                   Bomb 0.0000000000
## 272     Adventure                               Boost On 0.0000000000
## 273        Puzzle                                    BPS 0.0000000000
## 274        Racing                                    BPS 0.0000000000
## 275          Misc                    Brash Entertainment 0.0100000000
## 276      Platform                    Brash Entertainment 0.0114285714
## 277        Action                               Broccoli 0.0000000000
## 278     Adventure                               Broccoli 0.0000000000
## 279      Fighting                               Broccoli 0.0000000000
## 280          Misc                               Broccoli 0.0000000000
## 281  Role-Playing                               Broccoli 0.0000000000
## 282    Simulation                               Broccoli 0.0000000000
## 283      Strategy                               Broccoli 0.0000000000
## 284     Adventure                              BushiRoad 0.0000000000
## 285        Action                                 Capcom 0.0427922078
## 286     Adventure                                 Capcom 0.0240909091
## 287      Fighting                                 Capcom 0.0379310345
## 288          Misc                                 Capcom 0.0127272727
## 289      Platform                                 Capcom 0.0239130435
## 290        Puzzle                                 Capcom 0.0083333333
## 291        Racing                                 Capcom 0.0400000000
## 292  Role-Playing                                 Capcom 0.0678947368
## 293       Shooter                                 Capcom 0.0432000000
## 294    Simulation                                 Capcom 0.0050000000
## 295        Sports                                 Capcom 0.0066666667
## 296      Strategy                                 Capcom 0.0066666667
## 297        Action                                   Cave 0.0000000000
## 298     Adventure                                   Cave 0.0000000000
## 299          Misc                                   Cave 0.0100000000
## 300       Shooter                                   Cave 0.0000000000
## 301        Action                        CBS Electronics 0.0000000000
## 302  Role-Playing                                    CCP 0.0200000000
## 303     Adventure             CDV Software Entertainment 0.0100000000
## 304        Puzzle             CDV Software Entertainment 0.0000000000
## 305    Simulation             CDV Software Entertainment 0.0000000000
## 306      Strategy             CDV Software Entertainment 0.0000000000
## 307        Action                               ChunSoft 0.0000000000
## 308     Adventure                               ChunSoft 0.0036363636
## 309  Role-Playing                               ChunSoft 0.0083333333
## 310        Action                       City Interactive 0.0300000000
## 311     Adventure                       City Interactive 0.0100000000
## 312          Misc                       City Interactive 0.0000000000
## 313        Puzzle                       City Interactive 0.0050000000
## 314       Shooter                       City Interactive 0.0537500000
## 315    Simulation                       City Interactive 0.0050000000
## 316      Fighting       Cloud Imperium Games Corporation 0.0000000000
## 317     Adventure                         Coconuts Japan 0.0000000000
## 318          Misc                         Coconuts Japan 0.0000000000
## 319        Action                            Codemasters 0.0188888889
## 320     Adventure                            Codemasters 0.0100000000
## 321          Misc                            Codemasters 0.0214285714
## 322        Puzzle                            Codemasters 0.0100000000
## 323        Racing                            Codemasters 0.0550561798
## 324  Role-Playing                            Codemasters 0.0133333333
## 325       Shooter                            Codemasters 0.0295000000
## 326    Simulation                            Codemasters 0.0133333333
## 327        Sports                            Codemasters 0.0310000000
## 328      Strategy                            Codemasters 0.0075000000
## 329  Role-Playing                     Codemasters Online 0.0000000000
## 330        Action                      CokeM Interactive 0.0200000000
## 331        Action                                 Coleco 0.0033333333
## 332      Platform                                 Coleco 0.0200000000
## 333       Shooter                                 Coleco 0.0000000000
## 334        Action                                Comfort 0.0000000000
## 335     Adventure                                Comfort 0.0000000000
## 336          Misc                               Commseed 0.0000000000
## 337        Puzzle                                Compile 0.0200000000
## 338  Role-Playing                                Compile 0.0000000000
## 339        Action                          Compile Heart 0.0000000000
## 340     Adventure                          Compile Heart 0.0000000000
## 341  Role-Playing                          Compile Heart 0.0046153846
## 342      Strategy                          Compile Heart 0.0100000000
## 343        Action               Conspiracy Entertainment 0.0066666667
## 344          Misc               Conspiracy Entertainment 0.0050000000
## 345      Platform               Conspiracy Entertainment 0.0000000000
## 346        Puzzle               Conspiracy Entertainment 0.0000000000
## 347        Racing               Conspiracy Entertainment 0.0000000000
## 348       Shooter               Conspiracy Entertainment 0.0000000000
## 349    Simulation               Conspiracy Entertainment 0.0000000000
## 350        Sports               Conspiracy Entertainment 0.0100000000
## 351        Action                       Core Design Ltd. 0.0100000000
## 352    Simulation                       Core Design Ltd. 0.0100000000
## 353        Action                           CPG Products 0.0100000000
## 354        Action                    Crave Entertainment 0.0045454545
## 355     Adventure                    Crave Entertainment 0.0100000000
## 356      Fighting                    Crave Entertainment 0.0060000000
## 357          Misc                    Crave Entertainment 0.0083333333
## 358      Platform                    Crave Entertainment 0.0000000000
## 359        Puzzle                    Crave Entertainment 0.0040000000
## 360        Racing                    Crave Entertainment 0.0425000000
## 361  Role-Playing                    Crave Entertainment 0.0400000000
## 362       Shooter                    Crave Entertainment 0.0000000000
## 363    Simulation                    Crave Entertainment 0.0100000000
## 364        Sports                    Crave Entertainment 0.0110000000
## 365      Strategy                    Crave Entertainment 0.0050000000
## 366     Adventure                          Creative Core 0.0000000000
## 367          Misc                          Creative Core 0.0000000000
## 368    Simulation                          Creative Core 0.0000000000
## 369        Action                            Crimson Cow 0.0100000000
## 370     Adventure                            Crimson Cow 0.0000000000
## 371     Adventure                       Crystal Dynamics 0.0100000000
## 372      Platform                       Crystal Dynamics 0.0600000000
## 373        Racing                       Crystal Dynamics 0.0100000000
## 374  Role-Playing                       Crystal Dynamics 0.0300000000
## 375        Sports                       Crystal Dynamics 0.0100000000
## 376       Shooter                                CTO SpA 0.0600000000
## 377        Sports                                CTO SpA 0.0000000000
## 378     Adventure                          Culture Brain 0.0000000000
## 379          Misc                          Culture Brain 0.0000000000
## 380  Role-Playing                          Culture Brain 0.0000000000
## 381        Sports                          Culture Brain 0.0000000000
## 382        Puzzle                     Culture Publishers 0.0100000000
## 383        Action                             CyberFront 0.0000000000
## 384     Adventure                             CyberFront 0.0000000000
## 385          Misc                             CyberFront 0.0000000000
## 386  Role-Playing                             CyberFront 0.0000000000
## 387      Strategy                             CyberFront 0.0000000000
## 388      Platform                                Cygames 0.0000000000
## 389        Action                            D3Publisher 0.0354716981
## 390     Adventure                            D3Publisher 0.0000000000
## 391      Fighting                            D3Publisher 0.0000000000
## 392          Misc                            D3Publisher 0.0056250000
## 393      Platform                            D3Publisher 0.0241666667
## 394        Puzzle                            D3Publisher 0.0127272727
## 395        Racing                            D3Publisher 0.0100000000
## 396  Role-Playing                            D3Publisher 0.0100000000
## 397       Shooter                            D3Publisher 0.0216666667
## 398    Simulation                            D3Publisher 0.0000000000
## 399        Sports                            D3Publisher 0.0027272727
## 400      Strategy                            D3Publisher 0.0000000000
## 401     Adventure                               Daedalic 0.0200000000
## 402     Adventure                 Daedalic Entertainment 0.0033333333
## 403          Misc                                  Daito 0.0000000000
## 404        Action                               Data Age 0.0000000000
## 405          Misc                Data Design Interactive 0.0000000000
## 406        Racing                Data Design Interactive 0.0100000000
## 407        Sports                Data Design Interactive 0.0100000000
## 408     Adventure                              Data East 0.0000000000
## 409  Role-Playing                              Data East 0.0000000000
## 410     Adventure                         Datam Polystar 0.0000000000
## 411        Action                            Deep Silver 0.0588888889
## 412     Adventure                            Deep Silver 0.0170000000
## 413      Fighting                            Deep Silver 0.0100000000
## 414          Misc                            Deep Silver 0.0128571429
## 415      Platform                            Deep Silver 0.0033333333
## 416        Puzzle                            Deep Silver 0.0114285714
## 417        Racing                            Deep Silver 0.0085714286
## 418  Role-Playing                            Deep Silver 0.0223529412
## 419       Shooter                            Deep Silver 0.0120000000
## 420    Simulation                            Deep Silver 0.0100000000
## 421        Sports                            Deep Silver 0.0190000000
## 422      Strategy                            Deep Silver 0.0060000000
## 423        Action              Destination Software, Inc 0.0000000000
## 424          Misc              Destination Software, Inc 0.0000000000
## 425        Puzzle              Destination Software, Inc 0.0000000000
## 426        Racing              Destination Software, Inc 0.0066666667
## 427  Role-Playing              Destination Software, Inc 0.0000000000
## 428    Simulation              Destination Software, Inc 0.0050000000
## 429        Sports              Destination Software, Inc 0.0000000000
## 430        Action                              Destineer 0.0083333333
## 431     Adventure                              Destineer 0.0050000000
## 432          Misc                              Destineer 0.0100000000
## 433      Platform                              Destineer 0.0000000000
## 434        Puzzle                              Destineer 0.0042857143
## 435        Racing                              Destineer 0.0075000000
## 436       Shooter                              Destineer 0.0000000000
## 437    Simulation                              Destineer 0.0045454545
## 438        Sports                              Destineer 0.0062500000
## 439        Sports                            Detn8 Games 0.0200000000
## 440        Puzzle                       Devolver Digital 0.0000000000
## 441       Shooter                       Devolver Digital 0.0000000000
## 442        Puzzle                        DHM Interactive 0.0000000000
## 443       Shooter                        DHM Interactive 0.0000000000
## 444    Simulation                        DHM Interactive 0.0100000000
## 445        Sports                               DigiCube 0.0000000000
## 446        Action             Disney Interactive Studios 0.0580208333
## 447     Adventure             Disney Interactive Studios 0.0562068966
## 448          Misc             Disney Interactive Studios 0.0856818182
## 449      Platform             Disney Interactive Studios 0.0295000000
## 450        Puzzle             Disney Interactive Studios 0.1000000000
## 451        Racing             Disney Interactive Studios 0.0728571429
## 452  Role-Playing             Disney Interactive Studios 0.0400000000
## 453       Shooter             Disney Interactive Studios 0.0066666667
## 454    Simulation             Disney Interactive Studios 0.0160000000
## 455        Sports             Disney Interactive Studios 0.0800000000
## 456          Misc                                 Dorart 0.0000000000
## 457        Action                        dramatic create 0.0000000000
## 458     Adventure                        dramatic create 0.0000000000
## 459     Adventure               DreamCatcher Interactive 0.0033333333
## 460          Misc               DreamCatcher Interactive 0.0066666667
## 461      Platform               DreamCatcher Interactive 0.0100000000
## 462        Puzzle               DreamCatcher Interactive 0.0050000000
## 463       Shooter               DreamCatcher Interactive 0.0000000000
## 464    Simulation               DreamCatcher Interactive 0.0025000000
## 465        Sports               DreamCatcher Interactive 0.0100000000
## 466      Platform                 DreamWorks Interactive 0.0100000000
## 467        Action                              DSI Games 0.0000000000
## 468     Adventure                              DSI Games 0.0000000000
## 469          Misc                              DSI Games 0.0050000000
## 470    Simulation                              DSI Games 0.0000000000
## 471        Sports                              DSI Games 0.0000000000
## 472        Action                      DTP Entertainment 0.0140000000
## 473     Adventure                      DTP Entertainment 0.0050000000
## 474          Misc                      DTP Entertainment 0.0060000000
## 475        Puzzle                      DTP Entertainment 0.0000000000
## 476  Role-Playing                      DTP Entertainment 0.0114285714
## 477       Shooter                      DTP Entertainment 0.0100000000
## 478    Simulation                      DTP Entertainment 0.0066666667
## 479        Sports                      DTP Entertainment 0.0190909091
## 480      Strategy                      DTP Entertainment 0.0200000000
## 481        Racing               Dusenberry Martin Racing 0.0050000000
## 482       Shooter                               EA Games 0.0200000000
## 483        Puzzle                       Easy Interactive 0.0000000000
## 484      Fighting                                  Ecole 0.0000000000
## 485          Misc                                   Edia 0.0000000000
## 486        Action                      Eidos Interactive 0.0644047619
## 487     Adventure                      Eidos Interactive 0.0160000000
## 488      Fighting                      Eidos Interactive 0.0328571429
## 489          Misc                      Eidos Interactive 0.0160000000
## 490      Platform                      Eidos Interactive 0.0225000000
## 491        Puzzle                      Eidos Interactive 0.0087500000
## 492        Racing                      Eidos Interactive 0.0242857143
## 493  Role-Playing                      Eidos Interactive 0.0122222222
## 494       Shooter                      Eidos Interactive 0.0220000000
## 495    Simulation                      Eidos Interactive 0.0125000000
## 496        Sports                      Eidos Interactive 0.0412500000
## 497      Strategy                      Eidos Interactive 0.0372727273
## 498        Action                        Electronic Arts 0.0804918033
## 499     Adventure                        Electronic Arts 0.0338461538
## 500      Fighting                        Electronic Arts 0.0712820513
## 501          Misc                        Electronic Arts 0.0586956522
## 502      Platform                        Electronic Arts 0.0462500000
## 503        Puzzle                        Electronic Arts 0.0657142857
## 504        Racing                        Electronic Arts 0.1125786164
## 505  Role-Playing                        Electronic Arts 0.0977142857
## 506       Shooter                        Electronic Arts 0.1309352518
## 507    Simulation                        Electronic Arts 0.0751724138
## 508        Sports                        Electronic Arts 0.1051871658
## 509      Strategy                        Electronic Arts 0.0181081081
## 510        Action                 Electronic Arts Victor 0.0000000000
## 511        Sports                 Electronic Arts Victor 0.0300000000
## 512     Adventure                                    Elf 0.0000000000
## 513      Strategy                                    Elf 0.0000000000
## 514    Simulation                                  Elite 0.0000000000
## 515        Action                     Empire Interactive 0.0200000000
## 516     Adventure                     Empire Interactive 0.0000000000
## 517      Fighting                     Empire Interactive 0.0100000000
## 518          Misc                     Empire Interactive 0.0100000000
## 519        Puzzle                     Empire Interactive 0.0162500000
## 520        Racing                     Empire Interactive 0.0295238095
## 521  Role-Playing                     Empire Interactive 0.0000000000
## 522       Shooter                     Empire Interactive 0.0340000000
## 523    Simulation                     Empire Interactive 0.0200000000
## 524        Sports                     Empire Interactive 0.0100000000
## 525        Action                                 Encore 0.0000000000
## 526        Racing                                 Encore 0.0000000000
## 527  Role-Playing                                 Encore 0.0000000000
## 528        Action                       Enix Corporation 0.0100000000
## 529          Misc                       Enix Corporation 0.0100000000
## 530  Role-Playing                       Enix Corporation 0.0086956522
## 531    Simulation                       Enix Corporation 0.0200000000
## 532        Sports                       Enix Corporation 0.0000000000
## 533       Shooter                      Enjoy Gaming ltd. 0.0100000000
## 534     Adventure                             Enterbrain 0.0000000000
## 535      Fighting                             Enterbrain 0.0100000000
## 536  Role-Playing                             Enterbrain 0.0100000000
## 537    Simulation                             Enterbrain 0.0000000000
## 538        Sports                             Enterbrain 0.0000000000
## 539      Strategy              EON Digital Entertainment 0.0000000000
## 540        Action                             Epic Games 0.0000000000
## 541          Misc                                  Epoch 0.0000000000
## 542      Platform                                  Epoch 0.0300000000
## 543  Role-Playing                                  Epoch 0.0000000000
## 544        Sports                                  Epoch 0.0000000000
## 545    Simulation                                 Ertain 0.0000000000
## 546      Fighting                                    ESP 0.0000000000
## 547      Platform                                    ESP 0.0000000000
## 548  Role-Playing                                    ESP 0.0000000000
## 549       Shooter                                    ESP 0.0000000000
## 550    Simulation                                    ESP 0.0000000000
## 551        Action                        Essential Games 0.0000000000
## 552       Shooter                        Essential Games 0.0000000000
## 553      Strategy                        Essential Games 0.0000000000
## 554        Action                        Evolution Games 0.0000000000
## 555      Platform                          Evolved Games 0.0000000000
## 556        Racing                          Evolved Games 0.0050000000
## 557       Shooter                          Evolved Games 0.0050000000
## 558        Action                   Excalibur Publishing 0.0200000000
## 559    Simulation                   Excalibur Publishing 0.0066666667
## 560  Role-Playing                        Experience Inc. 0.0000000000
## 561  Role-Playing            Extreme Entertainment Group 0.0000000000
## 562      Fighting                     Falcom Corporation 0.0000000000
## 563  Role-Playing                     Falcom Corporation 0.0020000000
## 564          Misc                                 Fields 0.0000000000
## 565        Action                       Flashpoint Games 0.0000000000
## 566      Platform                       Flashpoint Games 0.0000000000
## 567  Role-Playing                            Flight-Plan 0.0000000000
## 568      Strategy                            Flight-Plan 0.0000000000
## 569        Action                 Focus Home Interactive 0.0000000000
## 570     Adventure                 Focus Home Interactive 0.0164705882
## 571          Misc                 Focus Home Interactive 0.0000000000
## 572      Platform                 Focus Home Interactive 0.0050000000
## 573        Puzzle                 Focus Home Interactive 0.0150000000
## 574        Racing                 Focus Home Interactive 0.0166666667
## 575  Role-Playing                 Focus Home Interactive 0.0150000000
## 576    Simulation                 Focus Home Interactive 0.0633333333
## 577        Sports                 Focus Home Interactive 0.0042857143
## 578      Strategy                 Focus Home Interactive 0.0066666667
## 579          Misc                       Focus Multimedia 0.0000000000
## 580        Puzzle                       Focus Multimedia 0.0000000000
## 581    Simulation                                 fonfun 0.0000000000
## 582     Adventure                    Foreign Media Games 0.0100000000
## 583          Misc                    Foreign Media Games 0.0050000000
## 584        Puzzle                    Foreign Media Games 0.0075000000
## 585    Simulation                    Foreign Media Games 0.0000000000
## 586     Adventure                              Fortyfive 0.0000000000
## 587        Action                        Fox Interactive 0.0300000000
## 588      Platform                        Fox Interactive 0.1250000000
## 589       Shooter                        Fox Interactive 0.0466666667
## 590        Sports                        Fox Interactive 0.0050000000
## 591        Action                          From Software 0.0000000000
## 592     Adventure                          From Software 0.0100000000
## 593  Role-Playing                          From Software 0.0125000000
## 594       Shooter                          From Software 0.0000000000
## 595    Simulation                          From Software 0.0066666667
## 596     Adventure                                   Fuji 0.0000000000
## 597        Action                           Funbox Media 0.0033333333
## 598     Adventure                           Funbox Media 0.0100000000
## 599          Misc                           Funbox Media 0.0400000000
## 600      Strategy                           Funbox Media 0.0000000000
## 601  Role-Playing                                 Funcom 0.0100000000
## 602        Racing                                FunSoft 0.0100000000
## 603        Puzzle                                 Funsta 0.0033333333
## 604       Shooter                                 Funsta 0.0000000000
## 605        Action                                  FuRyu 0.0000000000
## 606     Adventure                                  FuRyu 0.0000000000
## 607          Misc                                  FuRyu 0.0000000000
## 608  Role-Playing                                  FuRyu 0.0012500000
## 609    Simulation                                  FuRyu 0.0000000000
## 610        Action                      FuRyu Corporation 0.0100000000
## 611      Fighting                                  G.Rev 0.0000000000
## 612       Shooter                                  G.Rev 0.0000000000
## 613       Shooter                                   Gaga 0.0000000000
## 614     Adventure                 Gainax Network Systems 0.0100000000
## 615          Misc                 Gainax Network Systems 0.0000000000
## 616          Misc                                 Gakken 0.0000000000
## 617  Role-Playing                              Game Arts 0.0000000000
## 618        Action                           Game Factory 0.0012500000
## 619     Adventure                           Game Factory 0.0125000000
## 620      Fighting                           Game Factory 0.0000000000
## 621          Misc                           Game Factory 0.0040000000
## 622      Platform                           Game Factory 0.0000000000
## 623        Puzzle                           Game Factory 0.0100000000
## 624        Racing                           Game Factory 0.0050000000
## 625  Role-Playing                           Game Factory 0.0000000000
## 626    Simulation                           Game Factory 0.0500000000
## 627          Misc                              Game Life 0.0200000000
## 628    Simulation                              Game Life 0.0100000000
## 629        Action                             Gamebridge 0.0300000000
## 630        Action                               Gamecock 0.0000000000
## 631          Misc                               Gamecock 0.0000000000
## 632      Strategy                               Gamecock 0.0000000000
## 633          Misc                               Gameloft 0.0100000000
## 634        Action                 GameMill Entertainment 0.0066666667
## 635     Adventure                 GameMill Entertainment 0.0100000000
## 636          Misc                 GameMill Entertainment 0.0166666667
## 637        Sports                 GameMill Entertainment 0.0100000000
## 638          Misc                                GameTek 0.0000000000
## 639          Misc                Gathering of Developers 0.0100000000
## 640        Racing                Gathering of Developers 0.0250000000
## 641       Shooter                Gathering of Developers 0.0066666667
## 642      Strategy                Gathering of Developers 0.0150000000
## 643      Strategy                  General Entertainment 0.0100000000
## 644        Action                                  Genki 0.0000000000
## 645        Racing                                  Genki 0.0220000000
## 646        Sports                                  Genki 0.0000000000
## 647        Puzzle                            Genterprise 0.0000000000
## 648  Role-Playing                             Ghostlight 0.0200000000
## 649    Simulation                             Ghostlight 0.0000000000
## 650        Sports                             Ghostlight 0.0066666667
## 651      Strategy                             Ghostlight 0.0100000000
## 652     Adventure                                   Giga 0.0000000000
## 653        Action                                 Giza10 0.0000000000
## 654      Strategy                                  Glams 0.0000000000
## 655          Misc                 Global A Entertainment 0.0000000000
## 656  Role-Playing                 Global A Entertainment 0.0033333333
## 657        Action                            Global Star 0.0000000000
## 658     Adventure                            Global Star 0.0133333333
## 659      Fighting                            Global Star 0.0200000000
## 660      Platform                            Global Star 0.0020000000
## 661        Racing                            Global Star 0.0080000000
## 662       Shooter                            Global Star 0.0025000000
## 663    Simulation                            Global Star 0.0050000000
## 664        Sports                            Global Star 0.0450000000
## 665      Strategy                            Global Star 0.0000000000
## 666     Adventure                            GN Software 0.0000000000
## 667  Role-Playing                                    GOA 0.0000000000
## 668      Fighting                           Gotham Games 0.0550000000
## 669      Platform                           Gotham Games 0.0066666667
## 670       Shooter                           Gotham Games 0.0600000000
## 671        Sports                           Gotham Games 0.0300000000
## 672          Misc                               Graffiti 0.0050000000
## 673  Role-Playing                               Graffiti 0.0000000000
## 674       Shooter                               Graffiti 0.0000000000
## 675    Simulation                               Graffiti 0.0000000000
## 676      Fighting                       Grand Prix Games 0.0000000000
## 677    Simulation                 Graphsim Entertainment 0.0000000000
## 678        Action                Gremlin Interactive Ltd 0.0100000000
## 679      Platform                Gremlin Interactive Ltd 0.0000000000
## 680        Racing                Gremlin Interactive Ltd 0.0050000000
## 681       Shooter                Gremlin Interactive Ltd 0.0000000000
## 682        Sports                Gremlin Interactive Ltd 0.0075000000
## 683        Sports                  Griffin International 0.0100000000
## 684       Shooter                           Groove Games 0.0000000000
## 685     Adventure                                    GSP 0.0266666667
## 686          Misc                                    GSP 0.0320000000
## 687        Puzzle                                    GSP 0.0133333333
## 688    Simulation                                    GSP 0.0050000000
## 689        Action                         GT Interactive 0.0430000000
## 690      Fighting                         GT Interactive 0.0400000000
## 691          Misc                         GT Interactive 0.0600000000
## 692      Platform                         GT Interactive 0.0466666667
## 693        Racing                         GT Interactive 0.0116666667
## 694       Shooter                         GT Interactive 0.0133333333
## 695    Simulation                         GT Interactive 0.0000000000
## 696        Sports                         GT Interactive 0.0000000000
## 697        Action                                 GungHo 0.0000000000
## 698     Adventure                                 GungHo 0.0000000000
## 699          Misc                                 GungHo 0.0000000000
## 700  Role-Playing                                 GungHo 0.0122222222
## 701     Adventure                                   Gust 0.0000000000
## 702  Role-Playing                                   Gust 0.0045454545
## 703      Strategy                                   Gust 0.0000000000
## 704          Misc                              Hackberry 0.0000000000
## 705        Puzzle                         HAL Laboratory 0.0000000000
## 706        Action                    Hamster Corporation 0.0200000000
## 707    Simulation                    Hamster Corporation 0.0000000000
## 708     Adventure                               Happinet 0.0000000000
## 709          Misc                               Happinet 0.0000000000
## 710    Simulation                               Happinet 0.0000000000
## 711          Misc                 Harmonix Music Systems 0.0550000000
## 712        Action                     Hasbro Interactive 0.1000000000
## 713          Misc                     Hasbro Interactive 0.0362500000
## 714      Platform                     Hasbro Interactive 0.0100000000
## 715        Puzzle                     Hasbro Interactive 0.0400000000
## 716        Racing                     Hasbro Interactive 0.0200000000
## 717       Shooter                     Hasbro Interactive 0.0200000000
## 718  Role-Playing                      Havas Interactive 0.0200000000
## 719     Adventure                           Headup Games 0.0000000000
## 720    Simulation                           Hearty Robin 0.0100000000
## 721    Simulation                                   Hect 0.0000000000
## 722        Action                            Hello Games 0.2600000000
## 723     Adventure                        Her Interactive 0.0000000000
## 724        Action                        Hip Interactive 0.0000000000
## 725       Shooter                        Hip Interactive 0.0000000000
## 726     Adventure                        HMH Interactive 0.0200000000
## 727          Misc                        HMH Interactive 0.0000000000
## 728        Sports           Home Entertainment Suppliers 0.0240000000
## 729          Misc                   Hudson Entertainment 0.0133333333
## 730      Platform                   Hudson Entertainment 0.0000000000
## 731        Puzzle                   Hudson Entertainment 0.0000000000
## 732  Role-Playing                   Hudson Entertainment 0.0000000000
## 733       Shooter                   Hudson Entertainment 0.0000000000
## 734    Simulation                   Hudson Entertainment 0.0500000000
## 735        Sports                   Hudson Entertainment 0.0100000000
## 736        Action                            Hudson Soft 0.0000000000
## 737     Adventure                            Hudson Soft 0.0000000000
## 738      Fighting                            Hudson Soft 0.0000000000
## 739          Misc                            Hudson Soft 0.0004761905
## 740      Platform                            Hudson Soft 0.0000000000
## 741        Puzzle                            Hudson Soft 0.0116666667
## 742  Role-Playing                            Hudson Soft 0.0008333333
## 743       Shooter                            Hudson Soft 0.0025000000
## 744    Simulation                            Hudson Soft 0.0033333333
## 745        Sports                            Hudson Soft 0.0116666667
## 746      Strategy                            Hudson Soft 0.0000000000
## 747     Adventure                    Human Entertainment 0.0100000000
## 748      Fighting                    Human Entertainment 0.0033333333
## 749        Racing                    Human Entertainment 0.0300000000
## 750    Simulation                    Human Entertainment 0.0200000000
## 751        Sports                    Human Entertainment 0.0050000000
## 752      Strategy                    Human Entertainment 0.0000000000
## 753        Action                                  HuneX 0.0000000000
## 754     Adventure                                  HuneX 0.0000000000
## 755  Role-Playing                    Iceberg Interactive 0.0000000000
## 756      Strategy                    Iceberg Interactive 0.0000000000
## 757       Shooter                            id Software 0.0000000000
## 758        Action                           Idea Factory 0.0000000000
## 759     Adventure                           Idea Factory 0.0004938272
## 760          Misc                           Idea Factory 0.0000000000
## 761  Role-Playing                           Idea Factory 0.0046153846
## 762      Strategy                           Idea Factory 0.0000000000
## 763        Action             Idea Factory International 0.0225000000
## 764  Role-Playing             Idea Factory International 0.0000000000
## 765        Action                           IE Institute 0.0000000000
## 766          Misc                           IE Institute 0.0000000000
## 767        Action                 Ignition Entertainment 0.0100000000
## 768     Adventure                 Ignition Entertainment 0.0000000000
## 769      Fighting                 Ignition Entertainment 0.0095238095
## 770          Misc                 Ignition Entertainment 0.0100000000
## 771      Platform                 Ignition Entertainment 0.0000000000
## 772        Puzzle                 Ignition Entertainment 0.0225000000
## 773        Racing                 Ignition Entertainment 0.0200000000
## 774  Role-Playing                 Ignition Entertainment 0.0033333333
## 775       Shooter                 Ignition Entertainment 0.0050000000
## 776        Sports                 Ignition Entertainment 0.0016666667
## 777      Strategy                 Ignition Entertainment 0.0100000000
## 778        Action                     Illusion Softworks 0.0900000000
## 779     Adventure                                 Imadio 0.0000000000
## 780  Role-Playing                            Image Epoch 0.0000000000
## 781     Adventure                        imageepoch Inc. 0.0000000000
## 782  Role-Playing                        imageepoch Inc. 0.0000000000
## 783    Simulation                             Imageworks 0.0000000000
## 784        Action                                 Imagic 0.0000000000
## 785       Shooter                                 Imagic 0.0133333333
## 786     Adventure                              Imagineer 0.0000000000
## 787      Fighting                              Imagineer 0.0000000000
## 788        Racing                              Imagineer 0.0000000000
## 789  Role-Playing                              Imagineer 0.0000000000
## 790    Simulation                              Imagineer 0.0000000000
## 791        Sports                              Imagineer 0.0000000000
## 792          Misc                                   Imax 0.0000000000
## 793     Adventure                            Indie Games 0.0000000000
## 794    Simulation                            Indie Games 0.0200000000
## 795        Action                             Infogrames 0.0060000000
## 796     Adventure                             Infogrames 0.0100000000
## 797      Fighting                             Infogrames 0.0100000000
## 798          Misc                             Infogrames 0.0228571429
## 799      Platform                             Infogrames 0.0060000000
## 800        Racing                             Infogrames 0.0166666667
## 801  Role-Playing                             Infogrames 0.0300000000
## 802       Shooter                             Infogrames 0.0316666667
## 803    Simulation                             Infogrames 0.0000000000
## 804        Sports                             Infogrames 0.0057142857
## 805      Strategy                             Infogrames 0.0000000000
## 806        Action                        Insomniac Games 0.0033333333
## 807     Adventure                           Interchannel 0.0000000000
## 808      Strategy                     Interchannel-Holon 0.0000000000
## 809      Platform                              Intergrow 0.0000000000
## 810        Action                              Interplay 0.0183333333
## 811     Adventure                              Interplay 0.0500000000
## 812      Fighting                              Interplay 0.0000000000
## 813          Misc                              Interplay 0.0350000000
## 814      Platform                              Interplay 0.0066666667
## 815        Racing                              Interplay 0.0100000000
## 816  Role-Playing                              Interplay 0.0333333333
## 817       Shooter                              Interplay 0.0100000000
## 818    Simulation                              Interplay 0.0050000000
## 819        Sports                              Interplay 0.0100000000
## 820       Shooter                  Interplay Productions 0.0100000000
## 821        Sports             Interworks Unlimited, Inc. 0.0000000000
## 822        Action                           Inti Creates 0.0000000000
## 823        Action                  Introversion Software 0.0000000000
## 824  Role-Playing                   inXile Entertainment 0.0100000000
## 825        Action              Irem Software Engineering 0.0033333333
## 826      Fighting              Irem Software Engineering 0.0000000000
## 827          Misc              Irem Software Engineering 0.0000000000
## 828  Role-Playing              Irem Software Engineering 0.0000000000
## 829       Shooter              Irem Software Engineering 0.0000000000
## 830      Strategy              Irem Software Engineering 0.0000000000
## 831        Action                       ITT Family Games 0.0000000000
## 832        Puzzle                              Ivolgamus 0.0000000000
## 833        Puzzle                                   iWin 0.0100000000
## 834      Platform                      Jack of All Games 0.0050000000
## 835       Shooter                      Jack of All Games 0.0000000000
## 836        Action                                 Jaleco 0.0050000000
## 837      Fighting                                 Jaleco 0.0000000000
## 838          Misc                                 Jaleco 0.0000000000
## 839        Puzzle                                 Jaleco 0.0033333333
## 840        Racing                                 Jaleco 0.0033333333
## 841       Shooter                                 Jaleco 0.0000000000
## 842        Sports                                 Jaleco 0.0080000000
## 843      Strategy                                 Jaleco 0.0066666667
## 844          Misc                     Jester Interactive 0.0000000000
## 845        Racing                     Jester Interactive 0.0700000000
## 846    Simulation                                Jorudan 0.0066666667
## 847        Action                     JoWood Productions 0.0033333333
## 848     Adventure                     JoWood Productions 0.0066666667
## 849          Misc                     JoWood Productions 0.0000000000
## 850      Platform                     JoWood Productions 0.0000000000
## 851        Puzzle                     JoWood Productions 0.0000000000
## 852  Role-Playing                     JoWood Productions 0.0140000000
## 853    Simulation                     JoWood Productions 0.0050000000
## 854        Sports                     JoWood Productions 0.0200000000
## 855      Strategy                     JoWood Productions 0.0025000000
## 856    Simulation                            Just Flight 0.0100000000
## 857        Action                                    JVC 0.0000000000
## 858      Fighting                                    JVC 0.0000000000
## 859          Misc                                    JVC 0.0000000000
## 860        Puzzle                                    JVC 0.0700000000
## 861        Racing                                    JVC 0.0000000000
## 862       Shooter                                    JVC 0.0000000000
## 863        Action                         Kadokawa Games 0.0000000000
## 864     Adventure                         Kadokawa Games 0.0000000000
## 865          Misc                         Kadokawa Games 0.0000000000
## 866  Role-Playing                         Kadokawa Games 0.0000000000
## 867    Simulation                         Kadokawa Games 0.0000000000
## 868        Action                        Kadokawa Shoten 0.0000000000
## 869     Adventure                        Kadokawa Shoten 0.0000000000
## 870          Misc                        Kadokawa Shoten 0.0000000000
## 871  Role-Playing                        Kadokawa Shoten 0.0063636364
## 872    Simulation                        Kadokawa Shoten 0.0000000000
## 873        Sports                        Kadokawa Shoten 0.0000000000
## 874      Strategy                        Kadokawa Shoten 0.0000000000
## 875        Action                            Kaga Create 0.0000000000
## 876     Adventure                            Kaga Create 0.0000000000
## 877          Misc                            Kaga Create 0.0000000000
## 878        Action                          Kalypso Media 0.0066666667
## 879     Adventure                          Kalypso Media 0.0000000000
## 880          Misc                          Kalypso Media 0.0000000000
## 881    Simulation                          Kalypso Media 0.0142857143
## 882      Strategy                          Kalypso Media 0.0081250000
## 883          Misc                                  Kamui 0.0000000000
## 884    Simulation                            Kando Games 0.0000000000
## 885          Misc                    Karin Entertainment 0.0000000000
## 886        Action                                  Kemco 0.0050000000
## 887     Adventure                                  Kemco 0.0000000000
## 888          Misc                                  Kemco 0.0000000000
## 889      Platform                                  Kemco 0.0050000000
## 890        Puzzle                                  Kemco 0.0000000000
## 891        Racing                                  Kemco 0.0000000000
## 892  Role-Playing                                  Kemco 0.0000000000
## 893       Shooter                                  Kemco 0.0000000000
## 894        Sports                                  Kemco 0.0000000000
## 895     Adventure                                    KID 0.0000000000
## 896     Adventure                           Kids Station 0.0000000000
## 897  Role-Playing                           King Records 0.0000000000
## 898        Action                    Knowledge Adventure 0.0000000000
## 899     Adventure                    Knowledge Adventure 0.0300000000
## 900          Misc                    Knowledge Adventure 0.0300000000
## 901        Sports                    Knowledge Adventure 0.0100000000
## 902        Action                             Koch Media 0.1475000000
## 903     Adventure                             Koch Media 0.0050000000
## 904        Puzzle                             Koch Media 0.0000000000
## 905  Role-Playing                             Koch Media 0.0000000000
## 906    Simulation                             Koch Media 0.0316666667
## 907        Sports                             Koch Media 0.0150000000
## 908      Strategy                             Koch Media 0.0000000000
## 909      Fighting               Kokopeli Digital Studios 0.0000000000
## 910        Action           Konami Digital Entertainment 0.0582432432
## 911     Adventure           Konami Digital Entertainment 0.0084905660
## 912      Fighting           Konami Digital Entertainment 0.0045000000
## 913          Misc           Konami Digital Entertainment 0.0157142857
## 914      Platform           Konami Digital Entertainment 0.0182500000
## 915        Puzzle           Konami Digital Entertainment 0.0060000000
## 916        Racing           Konami Digital Entertainment 0.0061538462
## 917  Role-Playing           Konami Digital Entertainment 0.0132432432
## 918       Shooter           Konami Digital Entertainment 0.0162500000
## 919    Simulation           Konami Digital Entertainment 0.0324418605
## 920        Sports           Konami Digital Entertainment 0.0517857143
## 921      Strategy           Konami Digital Entertainment 0.0228571429
## 922      Strategy                              Kool Kizz 0.0000000000
## 923          Misc                                    KSS 0.0000000000
## 924        Action                                 Laguna 0.0000000000
## 925      Platform                                 Laguna 0.0050000000
## 926  Role-Playing                                 Laguna 0.0000000000
## 927     Adventure                     Legacy Interactive 0.0000000000
## 928        Action                             LEGO Media 0.0000000000
## 929     Adventure                             LEGO Media 0.0100000000
## 930      Platform                             LEGO Media 0.0000000000
## 931        Racing                             LEGO Media 0.0100000000
## 932      Strategy                             LEGO Media 0.0100000000
## 933        Action                                Level 5 0.0000000000
## 934     Adventure                                Level 5 0.0000000000
## 935          Misc                                Level 5 0.0000000000
## 936        Puzzle                                Level 5 0.0133333333
## 937  Role-Playing                                Level 5 0.0000000000
## 938        Sports                                Level 5 0.0000000000
## 939      Strategy                                Level 5 0.0000000000
## 940       Shooter                  Lexicon Entertainment 0.0000000000
## 941    Simulation                  Lexicon Entertainment 0.0000000000
## 942        Action                            Licensed 4U 0.0000000000
## 943        Puzzle                            Licensed 4U 0.0000000000
## 944    Simulation                 Lighthouse Interactive 0.0000000000
## 945        Puzzle                           Liquid Games 0.0000000000
## 946        Racing                           Liquid Games 0.0000000000
## 947        Action                           Little Orbit 0.0041176471
## 948     Adventure                           Little Orbit 0.0128571429
## 949    Simulation                           Little Orbit 0.0000000000
## 950  Role-Playing                                  Locus 0.0000000000
## 951        Action                              LSP Games 0.0000000000
## 952      Platform                              LSP Games 0.0050000000
## 953       Shooter                              LSP Games 0.0000000000
## 954        Action                              LucasArts 0.1668750000
## 955     Adventure                              LucasArts 0.0500000000
## 956        Racing                              LucasArts 0.0300000000
## 957  Role-Playing                              LucasArts 0.0150000000
## 958       Shooter                              LucasArts 0.1005263158
## 959    Simulation                              LucasArts 0.0333333333
## 960      Strategy                              LucasArts 0.0140000000
## 961          Misc                               Mad Catz 0.0100000000
## 962    Simulation                               Mad Catz 0.0100000000
## 963        Sports                               Mad Catz 0.0000000000
## 964        Sports                        Magical Company 0.0300000000
## 965          Misc                                  Magix 0.0200000000
## 966        Action                  Majesco Entertainment 0.0093333333
## 967     Adventure                  Majesco Entertainment 0.0050000000
## 968      Fighting                  Majesco Entertainment 0.0066666667
## 969          Misc                  Majesco Entertainment 0.0066666667
## 970      Platform                  Majesco Entertainment 0.0075000000
## 971        Puzzle                  Majesco Entertainment 0.0077777778
## 972        Racing                  Majesco Entertainment 0.0060000000
## 973  Role-Playing                  Majesco Entertainment 0.0000000000
## 974       Shooter                  Majesco Entertainment 0.0044444444
## 975    Simulation                  Majesco Entertainment 0.0092307692
## 976        Sports                  Majesco Entertainment 0.0680000000
## 977      Strategy                  Majesco Entertainment 0.0050000000
## 978     Adventure                            Mamba Games 0.0100000000
## 979      Strategy                            Mamba Games 0.0000000000
## 980        Action                   Marvel Entertainment 0.0000000000
## 981        Action                Marvelous Entertainment 0.0100000000
## 982      Fighting                Marvelous Entertainment 0.0500000000
## 983          Misc                Marvelous Entertainment 0.0000000000
## 984  Role-Playing                Marvelous Entertainment 0.0150000000
## 985    Simulation                Marvelous Entertainment 0.0100000000
## 986     Adventure                        Marvelous Games 0.0000000000
## 987        Action                  Marvelous Interactive 0.0050000000
## 988     Adventure                  Marvelous Interactive 0.0035714286
## 989      Fighting                  Marvelous Interactive 0.0000000000
## 990          Misc                  Marvelous Interactive 0.0000000000
## 991  Role-Playing                  Marvelous Interactive 0.0046153846
## 992    Simulation                  Marvelous Interactive 0.0016666667
## 993        Sports                  Marvelous Interactive 0.0050000000
## 994    Simulation                      Masque Publishing 0.0000000000
## 995     Adventure                           Mastertronic 0.0000000000
## 996          Misc                           Mastertronic 0.0000000000
## 997        Puzzle                           Mastertronic 0.0075000000
## 998        Racing                           Mastertronic 0.0000000000
## 999       Shooter                           Mastertronic 0.0050000000
## 1000       Sports                           Mastertronic 0.0000000000
## 1001     Strategy                           Mastertronic 0.0800000000
## 1002    Adventure                                Mastiff 0.0000000000
## 1003         Misc                                Mastiff 0.0050000000
## 1004      Shooter                                Mastiff 0.0075000000
## 1005   Simulation                                Mastiff 0.0000000000
## 1006       Sports                                Mastiff 0.0125000000
## 1007       Action                     Mattel Interactive 0.0025000000
## 1008    Adventure                     Mattel Interactive 0.0100000000
## 1009       Puzzle                     Mattel Interactive 0.0100000000
## 1010       Racing                     Mattel Interactive 0.0000000000
## 1011      Shooter                     Mattel Interactive 0.0000000000
## 1012       Sports                     Mattel Interactive 0.0033333333
## 1013 Role-Playing                               Max Five 0.0000000000
## 1014       Action                   Maximum Family Games 0.0000000000
## 1015   Simulation                                  Maxis 0.0633333333
## 1016    Adventure                      MC2 Entertainment 0.0000000000
## 1017      Shooter                      MC2 Entertainment 0.0000000000
## 1018         Misc                    Media Entertainment 0.0000000000
## 1019    Adventure                          Media Factory 0.0000000000
## 1020       Sports                          Media Factory 0.0000000000
## 1021       Racing                            Media Rings 0.0000000000
## 1022 Role-Playing                            Media Rings 0.0000000000
## 1023       Sports                            Media Rings 0.0000000000
## 1024    Adventure                            Media Works 0.0000000000
## 1025         Misc                            Media Works 0.0000000000
## 1026     Strategy                            Media Works 0.0000000000
## 1027       Puzzle                             MediaQuest 0.0000000000
## 1028       Action                           Men-A-Vision 0.0100000000
## 1029         Misc                     Mentor Interactive 0.0140000000
## 1030 Role-Playing                          Mercury Games 0.0050000000
## 1031   Simulation                          Mercury Games 0.0050000000
## 1032    Adventure                            Merscom LLC 0.0300000000
## 1033     Fighting                               Metro 3D 0.0000000000
## 1034     Platform                               Metro 3D 0.0000000000
## 1035       Racing                               Metro 3D 0.0025000000
## 1036 Role-Playing                               Metro 3D 0.0100000000
## 1037      Shooter                               Metro 3D 0.0200000000
## 1038   Simulation                               Metro 3D 0.0333333333
## 1039 Role-Playing                            Michaelsoft 0.0000000000
## 1040       Puzzle                            Micro Cabin 0.0000000000
## 1041 Role-Playing                            Micro Cabin 0.0000000000
## 1042   Simulation                            Micro Cabin 0.0000000000
## 1043       Action                               Microids 0.0000000000
## 1044    Adventure                               Microids 0.0016666667
## 1045       Sports                               Microids 0.0000000000
## 1046         Misc                             Microprose 0.0400000000
## 1047   Simulation                             Microprose 0.0200000000
## 1048     Strategy                             Microprose 0.0250000000
## 1049       Action                 Microsoft Game Studios 0.0385714286
## 1050    Adventure                 Microsoft Game Studios 0.0266666667
## 1051     Fighting                 Microsoft Game Studios 0.0180000000
## 1052         Misc                 Microsoft Game Studios 0.1091176471
## 1053     Platform                 Microsoft Game Studios 0.0200000000
## 1054       Puzzle                 Microsoft Game Studios 0.0000000000
## 1055       Racing                 Microsoft Game Studios 0.1236363636
## 1056 Role-Playing                 Microsoft Game Studios 0.1025000000
## 1057      Shooter                 Microsoft Game Studios 0.2542857143
## 1058   Simulation                 Microsoft Game Studios 0.0450000000
## 1059       Sports                 Microsoft Game Studios 0.0558823529
## 1060     Strategy                 Microsoft Game Studios 0.0283333333
## 1061       Action        Midas Interactive Entertainment 0.0000000000
## 1062     Fighting        Midas Interactive Entertainment 0.0000000000
## 1063         Misc        Midas Interactive Entertainment 0.0000000000
## 1064     Platform        Midas Interactive Entertainment 0.0100000000
## 1065       Puzzle        Midas Interactive Entertainment 0.0000000000
## 1066       Racing        Midas Interactive Entertainment 0.0266666667
## 1067 Role-Playing        Midas Interactive Entertainment 0.0000000000
## 1068      Shooter        Midas Interactive Entertainment 0.0175000000
## 1069   Simulation        Midas Interactive Entertainment 0.0000000000
## 1070       Sports        Midas Interactive Entertainment 0.0250000000
## 1071     Strategy        Midas Interactive Entertainment 0.0000000000
## 1072       Action                           Midway Games 0.0211111111
## 1073    Adventure                           Midway Games 0.0050000000
## 1074     Fighting                           Midway Games 0.0584000000
## 1075         Misc                           Midway Games 0.0410000000
## 1076     Platform                           Midway Games 0.0107142857
## 1077       Puzzle                           Midway Games 0.0900000000
## 1078       Racing                           Midway Games 0.0204000000
## 1079 Role-Playing                           Midway Games 0.0275000000
## 1080      Shooter                           Midway Games 0.0335294118
## 1081       Sports                           Midway Games 0.0201724138
## 1082      Shooter                              Milestone 0.0000000000
## 1083       Racing                        Milestone S.r.l 0.0050000000
## 1084       Racing                       Milestone S.r.l. 0.0100000000
## 1085       Action                         Minato Station 0.0000000000
## 1086    Adventure                         Minato Station 0.0000000000
## 1087       Action                              Mindscape 0.0075000000
## 1088    Adventure                              Mindscape 0.0000000000
## 1089         Misc                              Mindscape 0.0293333333
## 1090       Puzzle                              Mindscape 0.0060000000
## 1091       Racing                              Mindscape 0.0000000000
## 1092 Role-Playing                              Mindscape 0.0000000000
## 1093       Sports                              Mindscape 0.0100000000
## 1094     Strategy                              Mindscape 0.0133333333
## 1095         Misc                          Mirai Shounen 0.0000000000
## 1096       Sports                                 Misawa 0.0000000000
## 1097      Shooter                                 Mitsui 0.0000000000
## 1098       Action                              mixi, Inc 0.0000000000
## 1099       Sports                                MLB.com 0.0000000000
## 1100    Adventure                                 Mojang 0.0720000000
## 1101   Simulation               Monte Christo Multimedia 0.0100000000
## 1102      Shooter                                   Moss 0.0050000000
## 1103       Action                                    MTO 0.0000000000
## 1104       Racing                                    MTO 0.0100000000
## 1105   Simulation                                    MTO 0.0000000000
## 1106         Misc                              MTV Games 0.0495121951
## 1107         Misc                   Mud Duck Productions 0.0250000000
## 1108       Sports                   Mud Duck Productions 0.0100000000
## 1109       Puzzle                            Mumbo Jumbo 0.0100000000
## 1110       Sports                            Mumbo Jumbo 0.0000000000
## 1111     Strategy                            Mumbo Jumbo 0.0000000000
## 1112       Action                                  Mycom 0.0000000000
## 1113         Misc                           Myelin Media 0.0033333333
## 1114       Action                               Mystique 0.0100000000
## 1115       Action                                    N/A 0.0042857143
## 1116    Adventure                                    N/A 0.0000000000
## 1117     Fighting                                    N/A 0.2200000000
## 1118         Misc                                    N/A 0.0037037037
## 1119     Platform                                    N/A 0.0000000000
## 1120       Puzzle                                    N/A 0.0000000000
## 1121       Racing                                    N/A 0.0000000000
## 1122 Role-Playing                                    N/A 0.0000000000
## 1123      Shooter                                    N/A 0.0000000000
## 1124   Simulation                                    N/A 0.0000000000
## 1125       Sports                                    N/A 0.0333333333
## 1126     Strategy                                    N/A 0.0000000000
## 1127       Action                     Namco Bandai Games 0.0073387097
## 1128    Adventure                     Namco Bandai Games 0.0032758621
## 1129     Fighting                     Namco Bandai Games 0.0391791045
## 1130         Misc                     Namco Bandai Games 0.0113402062
## 1131     Platform                     Namco Bandai Games 0.0063157895
## 1132       Puzzle                     Namco Bandai Games 0.0110000000
## 1133       Racing                     Namco Bandai Games 0.0255555556
## 1134 Role-Playing                     Namco Bandai Games 0.0231125828
## 1135      Shooter                     Namco Bandai Games 0.0175675676
## 1136   Simulation                     Namco Bandai Games 0.0158620690
## 1137       Sports                     Namco Bandai Games 0.0096078431
## 1138     Strategy                     Namco Bandai Games 0.0034426230
## 1139    Adventure                                Natsume 0.0100000000
## 1140     Fighting                                Natsume 0.0000000000
## 1141         Misc                                Natsume 0.0000000000
## 1142     Platform                                Natsume 0.0000000000
## 1143       Puzzle                                Natsume 0.0050000000
## 1144 Role-Playing                                Natsume 0.0000000000
## 1145   Simulation                                Natsume 0.0133333333
## 1146       Sports                                Natsume 0.0260000000
## 1147     Strategy                                Natsume 0.0100000000
## 1148       Sports                           Navarre Corp 0.0000000000
## 1149         Misc                             Naxat Soft 0.0000000000
## 1150     Strategy                                    NCS 0.0000000000
## 1151       Action                                 NCSoft 0.2900000000
## 1152 Role-Playing                                 NCSoft 0.0080000000
## 1153      Shooter                        NDA Productions 0.0000000000
## 1154    Adventure                                    NEC 0.0000000000
## 1155 Role-Playing                                    NEC 0.0000000000
## 1156    Adventure                       NEC Interchannel 0.0000000000
## 1157 Role-Playing                       NEC Interchannel 0.0000000000
## 1158   Simulation                       NEC Interchannel 0.0000000000
## 1159     Strategy                       NEC Interchannel 0.0000000000
## 1160       Action                     Neko Entertainment 0.0000000000
## 1161    Adventure                     Neko Entertainment 0.0000000000
## 1162         Misc                     Neko Entertainment 0.0000000000
## 1163       Puzzle                     Neko Entertainment 0.0000000000
## 1164      Shooter                     Neko Entertainment 0.0100000000
## 1165       Action                                NetRevo 0.0000000000
## 1166    Adventure                                NetRevo 0.0000000000
## 1167     Fighting                                    New 0.0200000000
## 1168     Strategy                    New World Computing 0.0000000000
## 1169       Action                               NewKidCo 0.0000000000
## 1170    Adventure                               NewKidCo 0.0000000000
## 1171     Fighting                               NewKidCo 0.0000000000
## 1172         Misc                               NewKidCo 0.0100000000
## 1173     Platform                               NewKidCo 0.0000000000
## 1174 Role-Playing                                  Nexon 0.0000000000
## 1175         Misc                             Nichibutsu 0.0000000000
## 1176       Action               Nihon Falcom Corporation 0.0200000000
## 1177 Role-Playing               Nihon Falcom Corporation 0.0000000000
## 1178       Action                               Nintendo 0.0820253165
## 1179    Adventure                               Nintendo 0.0365714286
## 1180     Fighting                               Nintendo 0.1472222222
## 1181         Misc                               Nintendo 0.1178000000
## 1182     Platform                               Nintendo 0.1738392857
## 1183       Puzzle                               Nintendo 0.0747297297
## 1184       Racing                               Nintendo 0.2381081081
## 1185 Role-Playing                               Nintendo 0.1233018868
## 1186      Shooter                               Nintendo 0.0919230769
## 1187   Simulation                               Nintendo 0.2020689655
## 1188       Sports                               Nintendo 0.3123636364
## 1189     Strategy                               Nintendo 0.0259375000
## 1190         Misc                           Nippon Amuse 0.0000000000
## 1191       Action                        Nippon Columbia 0.0000000000
## 1192         Misc                        Nippon Columbia 0.0000000000
## 1193       Action                   Nippon Ichi Software 0.0107692308
## 1194    Adventure                   Nippon Ichi Software 0.0008333333
## 1195     Fighting                   Nippon Ichi Software 0.0350000000
## 1196         Misc                   Nippon Ichi Software 0.0633333333
## 1197     Platform                   Nippon Ichi Software 0.0066666667
## 1198 Role-Playing                   Nippon Ichi Software 0.0133333333
## 1199      Shooter                   Nippon Ichi Software 0.0000000000
## 1200     Strategy                   Nippon Ichi Software 0.0000000000
## 1201         Misc                         Nippon Telenet 0.0000000000
## 1202    Adventure                              Nitroplus 0.0000000000
## 1203     Fighting                              Nitroplus 0.0000000000
## 1204       Action                                Nobilis 0.0000000000
## 1205    Adventure                                Nobilis 0.0000000000
## 1206         Misc                                Nobilis 0.0300000000
## 1207       Racing                                Nobilis 0.0000000000
## 1208 Role-Playing                                Nobilis 0.0050000000
## 1209   Simulation                                Nobilis 0.0200000000
## 1210       Action                            Nordcurrent 0.0000000000
## 1211         Misc                            Nordcurrent 0.0200000000
## 1212       Puzzle                            Nordcurrent 0.0200000000
## 1213       Sports                            Nordcurrent 0.0050000000
## 1214       Action                           Nordic Games 0.0125000000
## 1215    Adventure                           Nordic Games 0.0050000000
## 1216         Misc                           Nordic Games 0.0318181818
## 1217       Racing                           Nordic Games 0.0028571429
## 1218 Role-Playing                           Nordic Games 0.0100000000
## 1219      Shooter                           Nordic Games 0.0050000000
## 1220       Sports                           Nordic Games 0.0050000000
## 1221     Strategy                           Nordic Games 0.0000000000
## 1222      Shooter                              NovaLogic 0.0233333333
## 1223     Platform                            Number None 0.0100000000
## 1224    Adventure                                O-Games 0.0100000000
## 1225         Misc                                O-Games 0.0075000000
## 1226       Puzzle                                O-Games 0.0060000000
## 1227       Racing                                O-Games 0.0000000000
## 1228      Shooter                                O-Games 0.0000000000
## 1229       Sports                                O-Games 0.0100000000
## 1230       Puzzle                       O3 Entertainment 0.0000000000
## 1231      Shooter                       O3 Entertainment 0.0000000000
## 1232   Simulation                       O3 Entertainment 0.0100000000
## 1233       Action                                  Ocean 0.0166666667
## 1234     Fighting                                  Ocean 0.0000000000
## 1235         Misc                                  Ocean 0.0000000000
## 1236     Platform                                  Ocean 0.0166666667
## 1237       Puzzle                                  Ocean 0.0000000000
## 1238       Racing                                  Ocean 0.0000000000
## 1239      Shooter                                  Ocean 0.0100000000
## 1240       Sports                                  Ocean 0.0000000000
## 1241   Simulation                          Office Create 0.0000000000
## 1242 Role-Playing                              On Demand 0.0100000000
## 1243   Simulation                              Ongakukan 0.0000000000
## 1244   Simulation                         Origin Systems 0.0100000000
## 1245    Adventure                                Otomate 0.0000000000
## 1246       Action                     Oxygen Interactive 0.0033333333
## 1247    Adventure                     Oxygen Interactive 0.0100000000
## 1248         Misc                     Oxygen Interactive 0.0375000000
## 1249     Platform                     Oxygen Interactive 0.0000000000
## 1250       Puzzle                     Oxygen Interactive 0.0000000000
## 1251       Sports                     Oxygen Interactive 0.0060000000
## 1252         Misc                               P2 Games 0.0200000000
## 1253       Puzzle                               P2 Games 0.0000000000
## 1254         Misc            Pacific Century Cyber Works 0.0300000000
## 1255    Adventure                          Pack-In-Video 0.0000000000
## 1256   Simulation                          Pack-In-Video 0.0000000000
## 1257   Simulation                           Pack In Soft 0.0600000000
## 1258       Action                                 Palcom 0.0400000000
## 1259 Role-Playing                       Panther Software 0.0100000000
## 1260         Misc                                   Paon 0.0000000000
## 1261         Misc                       Paon Corporation 0.0000000000
## 1262   Simulation                    Paradox Development 0.0000000000
## 1263         Misc                    Paradox Interactive 0.0000000000
## 1264 Role-Playing                    Paradox Interactive 0.0020000000
## 1265   Simulation                    Paradox Interactive 0.0075000000
## 1266     Strategy                    Paradox Interactive 0.0030769231
## 1267       Action                           Parker Bros. 0.0060000000
## 1268     Platform                           Parker Bros. 0.0100000000
## 1269       Puzzle                           Parker Bros. 0.0100000000
## 1270       Puzzle          Performance Designed Products 0.0100000000
## 1271   Simulation                             Phantagram 0.0000000000
## 1272      Shooter                            Phantom EFX 0.0100000000
## 1273     Platform                             Phenomedia 0.0000000000
## 1274       Puzzle                             Phenomedia 0.0000000000
## 1275       Racing                             Phenomedia 0.0000000000
## 1276      Shooter                          Phoenix Games 0.0000000000
## 1277    Adventure                                 Piacci 0.0000000000
## 1278         Misc                               Pinnacle 0.0450000000
## 1279       Puzzle                               Pinnacle 0.0000000000
## 1280       Sports                               Pinnacle 0.0000000000
## 1281     Strategy                               Pinnacle 0.0100000000
## 1282    Adventure                            Pioneer LDC 0.0033333333
## 1283       Racing                            Pioneer LDC 0.0300000000
## 1284         Misc                                Play It 0.0525000000
## 1285     Platform                                Play It 0.0000000000
## 1286       Racing                                Play It 0.0500000000
## 1287      Shooter                                Play It 0.0150000000
## 1288       Sports                                Play It 0.0800000000
## 1289       Action                 Playlogic Game Factory 0.0116666667
## 1290         Misc                 Playlogic Game Factory 0.0100000000
## 1291       Puzzle                 Playlogic Game Factory 0.0000000000
## 1292      Shooter                 Playlogic Game Factory 0.0150000000
## 1293       Sports                 Playlogic Game Factory 0.0000000000
## 1294     Strategy                 Playlogic Game Factory 0.0000000000
## 1295       Racing                              Playmates 0.0200000000
## 1296     Fighting                               Playmore 0.0000000000
## 1297       Action                                  PlayV 0.0200000000
## 1298         Misc                                  PlayV 0.0000000000
## 1299       Puzzle                                  PlayV 0.0150000000
## 1300         Misc                                 Plenty 0.0000000000
## 1301         Misc                             PM Studios 0.0100000000
## 1302         Misc                            Pony Canyon 0.0000000000
## 1303    Adventure                           PopCap Games 0.0200000000
## 1304         Misc                           PopCap Games 0.0000000000
## 1305       Puzzle                           PopCap Games 0.0066666667
## 1306     Strategy                           PopCap Games 0.0133333333
## 1307       Action                         Popcorn Arcade 0.0100000000
## 1308     Platform                         Popcorn Arcade 0.0000000000
## 1309       Puzzle                         Popcorn Arcade 0.0000000000
## 1310       Racing                         Popcorn Arcade 0.0000000000
## 1311      Shooter                         Popcorn Arcade 0.0000000000
## 1312     Strategy                        PopTop Software 0.0100000000
## 1313       Puzzle                                    Pow 0.0000000000
## 1314       Action                                  PQube 0.0060000000
## 1315    Adventure                                  PQube 0.0120000000
## 1316     Fighting                                  PQube 0.0147058824
## 1317         Misc                                  PQube 0.0100000000
## 1318       Racing                                  PQube 0.0100000000
## 1319      Shooter                                  PQube 0.0000000000
## 1320   Simulation                                  PQube 0.0000000000
## 1321       Sports                                  PQube 0.0050000000
## 1322    Adventure                          Princess Soft 0.0000000000
## 1323       Action                              Prototype 0.0000000000
## 1324    Adventure                              Prototype 0.0000000000
## 1325       Action                              Psygnosis 0.0160000000
## 1326    Adventure                              Psygnosis 0.0033333333
## 1327         Misc                              Psygnosis 0.0000000000
## 1328     Platform                              Psygnosis 0.0000000000
## 1329       Puzzle                              Psygnosis 0.0000000000
## 1330       Racing                              Psygnosis 0.0337500000
## 1331 Role-Playing                              Psygnosis 0.0100000000
## 1332      Shooter                              Psygnosis 0.0033333333
## 1333   Simulation                              Psygnosis 0.0150000000
## 1334       Sports                              Psygnosis 0.0000000000
## 1335         Misc                                 Quelle 0.0100000000
## 1336 Role-Playing                                  Quest 0.0000000000
## 1337       Action                               Quinrose 0.0000000000
## 1338    Adventure                               Quinrose 0.0000000000
## 1339    Adventure                                Quintet 0.0000000000
## 1340     Fighting                          Rage Software 0.0400000000
## 1341       Puzzle                          Rage Software 0.0000000000
## 1342       Racing                          Rage Software 0.0050000000
## 1343      Shooter                          Rage Software 0.0000000000
## 1344     Platform                             Rain Games 0.0000000000
## 1345       Racing                              Rebellion 0.0050000000
## 1346      Shooter                 Rebellion Developments 0.0200000000
## 1347    Adventure                      RED Entertainment 0.0000000000
## 1348    Adventure                                Red Orb 0.0500000000
## 1349       Action                Red Storm Entertainment 0.0000000000
## 1350      Shooter                Red Storm Entertainment 0.0450000000
## 1351         Misc                              RedOctane 0.2275000000
## 1352    Adventure                     Reef Entertainment 0.0025000000
## 1353      Shooter                     Reef Entertainment 0.0100000000
## 1354       Sports                     Reef Entertainment 0.0000000000
## 1355       Sports                           responDESIGN 0.0050000000
## 1356    Adventure                     Revolution (Japan) 0.0000000000
## 1357    Adventure                    Revolution Software 0.0050000000
## 1358       Action                      Rising Star Games 0.0175000000
## 1359    Adventure                      Rising Star Games 0.0020000000
## 1360     Fighting                      Rising Star Games 0.0233333333
## 1361         Misc                      Rising Star Games 0.0300000000
## 1362     Platform                      Rising Star Games 0.0000000000
## 1363       Puzzle                      Rising Star Games 0.0061538462
## 1364 Role-Playing                      Rising Star Games 0.0150000000
## 1365      Shooter                      Rising Star Games 0.0075000000
## 1366   Simulation                      Rising Star Games 0.0245454545
## 1367       Sports                      Rising Star Games 0.0025000000
## 1368     Strategy                      Rising Star Games 0.0100000000
## 1369   Simulation                          Riverhillsoft 0.0000000000
## 1370       Action                         Rocket Company 0.0000000000
## 1371    Adventure                         Rocket Company 0.0000000000
## 1372         Misc                         Rocket Company 0.0000000000
## 1373 Role-Playing                         Rocket Company 0.0000000000
## 1374   Simulation                         Rocket Company 0.0000000000
## 1375       Sports                         Rocket Company 0.0000000000
## 1376       Action                             Rondomedia 0.0500000000
## 1377    Adventure                             Rondomedia 0.0033333333
## 1378         Misc                             Rondomedia 0.0000000000
## 1379       Puzzle                             Rondomedia 0.0200000000
## 1380       Racing                             Rondomedia 0.0050000000
## 1381   Simulation                             Rondomedia 0.0450000000
## 1382       Racing                                    RTL 0.0000000000
## 1383   Simulation                                    RTL 0.0050000000
## 1384       Sports                                    RTL 0.0380000000
## 1385       Action                                 Russel 0.0000000000
## 1386    Adventure                                 Russel 0.0000000000
## 1387       Sports                                 Russel 0.0000000000
## 1388    Adventure                      Sammy Corporation 0.0100000000
## 1389     Fighting                      Sammy Corporation 0.0100000000
## 1390         Misc                      Sammy Corporation 0.0000000000
## 1391   Simulation                      Sammy Corporation 0.0250000000
## 1392       Action                                 Saurus 0.0000000000
## 1393       Action                        Scholastic Inc. 0.0200000000
## 1394    Adventure                        Scholastic Inc. 0.0160000000
## 1395         Misc                        Scholastic Inc. 0.0000000000
## 1396       Puzzle                        Scholastic Inc. 0.0266666667
## 1397       Action                                    SCi 0.0060000000
## 1398     Platform                                    SCi 0.0050000000
## 1399       Racing                                    SCi 0.0050000000
## 1400      Shooter                                    SCi 0.0262500000
## 1401       Action                             Screenlife 0.0000000000
## 1402     Fighting                             Screenlife 0.0000000000
## 1403 Role-Playing                             Screenlife 0.0150000000
## 1404       Action                           SCS Software 0.0200000000
## 1405       Puzzle                                  Sears 0.0000000000
## 1406       Action                                   Sega 0.0319801980
## 1407    Adventure                                   Sega 0.0074193548
## 1408     Fighting                                   Sega 0.0275675676
## 1409         Misc                                   Sega 0.0230645161
## 1410     Platform                                   Sega 0.0994230769
## 1411       Puzzle                                   Sega 0.0022727273
## 1412       Racing                                   Sega 0.0497916667
## 1413 Role-Playing                                   Sega 0.0132812500
## 1414      Shooter                                   Sega 0.0392500000
## 1415   Simulation                                   Sega 0.0100000000
## 1416       Sports                                   Sega 0.0580740741
## 1417     Strategy                                   Sega 0.0177142857
## 1418         Misc                       Seta Corporation 0.0075000000
## 1419 Role-Playing                       Seta Corporation 0.0100000000
## 1420       Sports                       Seta Corporation 0.0000000000
## 1421       Action                          Seventh Chord 0.0000000000
## 1422    Adventure                             Shogakukan 0.0000000000
## 1423         Misc                             Shogakukan 0.0000000000
## 1424       Sports           Simon & Schuster Interactive 0.0000000000
## 1425       Racing                   Slightly Mad Studios 0.0600000000
## 1426     Strategy                    Slitherine Software 0.0075000000
## 1427     Fighting                                    SNK 0.0018181818
## 1428    Adventure                           SNK Playmore 0.0000000000
## 1429     Fighting                           SNK Playmore 0.0016666667
## 1430 Role-Playing                           SNK Playmore 0.0000000000
## 1431      Shooter                           SNK Playmore 0.0050000000
## 1432    Adventure                                Societa 0.0000000000
## 1433       Action                               Sold Out 0.0000000000
## 1434         Misc                                 Sonnet 0.0000000000
## 1435       Action            Sony Computer Entertainment 0.1620000000
## 1436    Adventure            Sony Computer Entertainment 0.0451219512
## 1437     Fighting            Sony Computer Entertainment 0.0693333333
## 1438         Misc            Sony Computer Entertainment 0.1243750000
## 1439     Platform            Sony Computer Entertainment 0.1590909091
## 1440       Puzzle            Sony Computer Entertainment 0.0283333333
## 1441       Racing            Sony Computer Entertainment 0.2895384615
## 1442 Role-Playing            Sony Computer Entertainment 0.0579591837
## 1443      Shooter            Sony Computer Entertainment 0.1345098039
## 1444   Simulation            Sony Computer Entertainment 0.0500000000
## 1445       Sports            Sony Computer Entertainment 0.0454032258
## 1446     Strategy            Sony Computer Entertainment 0.0233333333
## 1447       Sports    Sony Computer Entertainment America 0.0433333333
## 1448       Action     Sony Computer Entertainment Europe 1.0100000000
## 1449    Adventure     Sony Computer Entertainment Europe 0.1666666667
## 1450         Misc     Sony Computer Entertainment Europe 0.2550000000
## 1451     Platform     Sony Computer Entertainment Europe 0.0800000000
## 1452      Shooter     Sony Computer Entertainment Europe 0.2200000000
## 1453   Simulation     Sony Computer Entertainment Europe 0.1750000000
## 1454         Misc               Sony Music Entertainment 0.0000000000
## 1455 Role-Playing              Sony Online Entertainment 0.0557142857
## 1456     Strategy              Sony Online Entertainment 0.0100000000
## 1457       Action                        SouthPeak Games 0.0066666667
## 1458    Adventure                        SouthPeak Games 0.0100000000
## 1459     Fighting                        SouthPeak Games 0.0033333333
## 1460         Misc                        SouthPeak Games 0.0050000000
## 1461       Puzzle                        SouthPeak Games 0.0000000000
## 1462       Racing                        SouthPeak Games 0.0666666667
## 1463 Role-Playing                        SouthPeak Games 0.0700000000
## 1464      Shooter                        SouthPeak Games 0.0100000000
## 1465   Simulation                        SouthPeak Games 0.0150000000
## 1466       Sports                        SouthPeak Games 0.0000000000
## 1467     Strategy                        SouthPeak Games 0.0100000000
## 1468       Action                                  Spike 0.0010000000
## 1469    Adventure                                  Spike 0.0000000000
## 1470     Fighting                                  Spike 0.0000000000
## 1471         Misc                                  Spike 0.0000000000
## 1472 Role-Playing                                  Spike 0.0033333333
## 1473   Simulation                                  Spike 0.0000000000
## 1474       Sports                                  Spike 0.0309090909
## 1475       Sports                                    SPS 0.0100000000
## 1476       Racing                                 Square 0.0100000000
## 1477 Role-Playing                                 Square 0.0440000000
## 1478 Role-Playing                              Square EA 0.0500000000
## 1479       Action                            Square Enix 0.0744230769
## 1480    Adventure                            Square Enix 0.0250000000
## 1481     Fighting                            Square Enix 0.1333333333
## 1482         Misc                            Square Enix 0.0066666667
## 1483       Puzzle                            Square Enix 0.0125000000
## 1484 Role-Playing                            Square Enix 0.0640310078
## 1485      Shooter                            Square Enix 0.0531250000
## 1486   Simulation                            Square Enix 0.0125000000
## 1487     Strategy                            Square Enix 0.0133333333
## 1488     Fighting                             SquareSoft 0.0200000000
## 1489       Racing                             SquareSoft 0.0300000000
## 1490 Role-Playing                             SquareSoft 0.0347368421
## 1491      Shooter                             SquareSoft 0.0200000000
## 1492   Simulation                             SquareSoft 0.0200000000
## 1493       Sports                             SquareSoft 0.0000000000
## 1494     Strategy                             SquareSoft 0.0175000000
## 1495     Strategy                                    SSI 0.0100000000
## 1496       Action                        Stainless Games 0.0000000000
## 1497       Action                               Starfish 0.0000000000
## 1498 Role-Playing                               Starfish 0.0000000000
## 1499      Shooter                               Starfish 0.0000000000
## 1500       Sports                               Starfish 0.0100000000
## 1501       Action                         Starpath Corp. 0.0000000000
## 1502 Role-Playing                                  Sting 0.0033333333
## 1503       Action                       Storm City Games 0.0000000000
## 1504    Adventure                       Storm City Games 0.0000000000
## 1505         Misc                       Storm City Games 0.0000000000
## 1506     Platform                       Storm City Games 0.0000000000
## 1507       Puzzle                       Storm City Games 0.0100000000
## 1508       Racing                       Storm City Games 0.0016666667
## 1509       Sports                       Storm City Games 0.0000000000
## 1510     Strategy                       Storm City Games 0.0000000000
## 1511     Strategy                         Strategy First 0.0000000000
## 1512       Action                                Success 0.0100000000
## 1513    Adventure                                Success 0.0000000000
## 1514         Misc                                Success 0.0000000000
## 1515       Puzzle                                Success 0.0000000000
## 1516 Role-Playing                                Success 0.0000000000
## 1517      Shooter                                Success 0.0700000000
## 1518   Simulation                                Success 0.0000000000
## 1519     Strategy                                Success 0.0050000000
## 1520       Sports                             Summitsoft 0.0000000000
## 1521     Strategy                             Sunflowers 0.0100000000
## 1522       Action                    Sunrise Interactive 0.0000000000
## 1523     Fighting                    Sunrise Interactive 0.0000000000
## 1524       Racing                    Sunrise Interactive 0.0000000000
## 1525 Role-Playing                    Sunrise Interactive 0.0000000000
## 1526    Adventure                                Sunsoft 0.0050000000
## 1527     Fighting                                Sunsoft 0.0000000000
## 1528         Misc                                Sunsoft 0.0000000000
## 1529     Platform                                Sunsoft 0.0000000000
## 1530       Puzzle                                Sunsoft 0.0000000000
## 1531 Role-Playing                                Sunsoft 0.0050000000
## 1532      Shooter                                Sunsoft 0.0200000000
## 1533    Adventure                                 Sweets 0.0000000000
## 1534       Action                   Swing! Entertainment 0.0000000000
## 1535    Adventure                   Swing! Entertainment 0.0100000000
## 1536     Platform                   Swing! Entertainment 0.0000000000
## 1537      Shooter                   Swing! Entertainment 0.0100000000
## 1538   Simulation                   Swing! Entertainment 0.0100000000
## 1539         Misc                                 Syscom 0.0100000000
## 1540       Racing                                 Syscom 0.0100000000
## 1541     Platform                               System 3 0.0100000000
## 1542         Misc               System 3 Arcade Software 0.0200000000
## 1543     Platform               System 3 Arcade Software 0.0150000000
## 1544       Puzzle               System 3 Arcade Software 0.0000000000
## 1545       Racing               System 3 Arcade Software 0.0157142857
## 1546       Sports               System 3 Arcade Software 0.0000000000
## 1547    Adventure                            System Soft 0.0000000000
## 1548     Strategy                            System Soft 0.0000000000
## 1549       Sports                               T&E Soft 0.0000000000
## 1550       Action                                  Taito 0.0000000000
## 1551    Adventure                                  Taito 0.0000000000
## 1552     Fighting                                  Taito 0.0000000000
## 1553         Misc                                  Taito 0.0000000000
## 1554 Role-Playing                                  Taito 0.0050000000
## 1555      Shooter                                  Taito 0.0025000000
## 1556   Simulation                                  Taito 0.0242857143
## 1557       Action                                 Takara 0.0000000000
## 1558     Fighting                                 Takara 0.0000000000
## 1559         Misc                                 Takara 0.0100000000
## 1560       Racing                                 Takara 0.0100000000
## 1561 Role-Playing                                 Takara 0.0000000000
## 1562       Action                            Takara Tomy 0.0008333333
## 1563     Fighting                            Takara Tomy 0.0020000000
## 1564         Misc                            Takara Tomy 0.0000000000
## 1565       Racing                            Takara Tomy 0.0050000000
## 1566 Role-Playing                            Takara Tomy 0.0066666667
## 1567       Sports                            Takara Tomy 0.0033333333
## 1568     Strategy                            Takara Tomy 0.0100000000
## 1569       Action                   Take-Two Interactive 0.3739784946
## 1570    Adventure                   Take-Two Interactive 0.0733333333
## 1571     Fighting                   Take-Two Interactive 0.0000000000
## 1572         Misc                   Take-Two Interactive 0.0351851852
## 1573     Platform                   Take-Two Interactive 0.0272727273
## 1574       Puzzle                   Take-Two Interactive 0.0000000000
## 1575       Racing                   Take-Two Interactive 0.1215000000
## 1576 Role-Playing                   Take-Two Interactive 0.1833333333
## 1577      Shooter                   Take-Two Interactive 0.0909230769
## 1578   Simulation                   Take-Two Interactive 0.0175000000
## 1579       Sports                   Take-Two Interactive 0.0529801325
## 1580     Strategy                   Take-Two Interactive 0.0372727273
## 1581    Adventure                                 Takuyo 0.0000000000
## 1582      Shooter                              TalonSoft 0.0600000000
## 1583       Action                               TDK Core 0.0050000000
## 1584         Misc                               TDK Core 0.0000000000
## 1585   Simulation                               TDK Core 0.0000000000
## 1586       Action                         TDK Mediactive 0.0012500000
## 1587    Adventure                         TDK Mediactive 0.0100000000
## 1588         Misc                         TDK Mediactive 0.0100000000
## 1589     Platform                         TDK Mediactive 0.0075000000
## 1590       Racing                         TDK Mediactive 0.0350000000
## 1591      Shooter                         TDK Mediactive 0.0200000000
## 1592       Sports                         TDK Mediactive 0.0066666667
## 1593     Strategy                        Team17 Software 0.0100000000
## 1594       Sports              Technos Japan Corporation 0.0000000000
## 1595      Shooter                             TechnoSoft 0.0000000000
## 1596       Action                             Tecmo Koei 0.0120437956
## 1597    Adventure                             Tecmo Koei 0.0000000000
## 1598     Fighting                             Tecmo Koei 0.0225000000
## 1599         Misc                             Tecmo Koei 0.0007142857
## 1600     Platform                             Tecmo Koei 0.0100000000
## 1601       Racing                             Tecmo Koei 0.0040000000
## 1602 Role-Playing                             Tecmo Koei 0.0148936170
## 1603      Shooter                             Tecmo Koei 0.0133333333
## 1604   Simulation                             Tecmo Koei 0.0107692308
## 1605       Sports                             Tecmo Koei 0.0048717949
## 1606     Strategy                             Tecmo Koei 0.0030000000
## 1607         Misc                              Telegames 0.0100000000
## 1608       Puzzle                              Telegames 0.0050000000
## 1609   Simulation                              Telegames 0.0000000000
## 1610     Strategy                              Telegames 0.0100000000
## 1611       Action                         Telltale Games 0.0100000000
## 1612    Adventure                         Telltale Games 0.0160869565
## 1613       Action                                Telstar 0.0100000000
## 1614       Racing                                Telstar 0.0100000000
## 1615      Shooter                                Telstar 0.0000000000
## 1616       Puzzle                          Tetris Online 0.0300000000
## 1617    Adventure                                    TGL 0.0000000000
## 1618    Adventure                  The Adventure Company 0.0100000000
## 1619       Puzzle                  The Adventure Company 0.0100000000
## 1620       Racing                   The Learning Company 0.0000000000
## 1621       Action                                    THQ 0.0404639175
## 1622    Adventure                                    THQ 0.0306382979
## 1623     Fighting                                    THQ 0.1267605634
## 1624         Misc                                    THQ 0.0210606061
## 1625     Platform                                    THQ 0.0391764706
## 1626       Puzzle                                    THQ 0.0447058824
## 1627       Racing                                    THQ 0.0367326733
## 1628 Role-Playing                                    THQ 0.0137500000
## 1629      Shooter                                    THQ 0.0477777778
## 1630   Simulation                                    THQ 0.0203703704
## 1631       Sports                                    THQ 0.0403225806
## 1632     Strategy                                    THQ 0.0321875000
## 1633       Action                            Tigervision 0.0033333333
## 1634     Fighting                Time Warner Interactive 0.0100000000
## 1635      Shooter                Time Warner Interactive 0.0000000000
## 1636       Sports                Time Warner Interactive 0.0050000000
## 1637     Strategy                Time Warner Interactive 0.0100000000
## 1638       Action                                  Titus 0.0025000000
## 1639     Fighting                                  Titus 0.0133333333
## 1640         Misc                                  Titus 0.0000000000
## 1641     Platform                                  Titus 0.0000000000
## 1642       Racing                                  Titus 0.0075000000
## 1643 Role-Playing                                  Titus 0.0000000000
## 1644      Shooter                                  Titus 0.0000000000
## 1645   Simulation                                  Titus 0.0600000000
## 1646     Strategy                                  Titus 0.0000000000
## 1647         Misc                                 Tivola 0.0066666667
## 1648 Role-Playing                                   TOHO 0.0000000000
## 1649         Misc                                  Tommo 0.0000000000
## 1650      Shooter                                  Tommo 0.0000000000
## 1651       Sports                                  Tommo 0.0000000000
## 1652       Action                       Tomy Corporation 0.0000000000
## 1653     Fighting                       Tomy Corporation 0.0240000000
## 1654         Misc                       Tomy Corporation 0.0000000000
## 1655       Racing                       Tomy Corporation 0.0000000000
## 1656 Role-Playing                       Tomy Corporation 0.0000000000
## 1657   Simulation                       Tomy Corporation 0.0100000000
## 1658         Misc                    TopWare Interactive 0.0066666667
## 1659 Role-Playing                    TopWare Interactive 0.0000000000
## 1660       Action                             Touchstone 0.0566666667
## 1661   Simulation                             Touchstone 0.0200000000
## 1662       Sports                              Tradewest 0.0033333333
## 1663      Shooter                           Trion Worlds 0.0366666667
## 1664     Strategy                           Trion Worlds 0.0000000000
## 1665      Shooter                   Tripwire Interactive 0.0200000000
## 1666       Action                  Tru Blu Entertainment 0.0000000000
## 1667       Sports                  Tru Blu Entertainment 0.0050000000
## 1668     Fighting                               Tryfirst 0.0000000000
## 1669       Racing                                    TYO 0.0300000000
## 1670    Adventure                              Type-Moon 0.0000000000
## 1671     Platform                              U.S. Gold 0.0000000000
## 1672       Sports                              U.S. Gold 0.0066666667
## 1673       Action                                Ubisoft 0.0900000000
## 1674    Adventure                                Ubisoft 0.0411864407
## 1675     Fighting                                Ubisoft 0.0347368421
## 1676         Misc                                Ubisoft 0.0607284768
## 1677     Platform                                Ubisoft 0.0275714286
## 1678       Puzzle                                Ubisoft 0.0237500000
## 1679       Racing                                Ubisoft 0.0328846154
## 1680 Role-Playing                                Ubisoft 0.0360975610
## 1681      Shooter                                Ubisoft 0.0822826087
## 1682   Simulation                                Ubisoft 0.0342016807
## 1683       Sports                                Ubisoft 0.0302777778
## 1684     Strategy                                Ubisoft 0.0386206897
## 1685       Action                         Ubisoft Annecy 0.0180000000
## 1686     Fighting                         Ubisoft Annecy 0.0250000000
## 1687         Misc                         Ubisoft Annecy 0.0200000000
## 1688 Role-Playing                         Ubisoft Annecy 0.0200000000
## 1689       Sports                            UEP Systems 0.0800000000
## 1690       Action                        UFO Interactive 0.0000000000
## 1691         Misc                        UFO Interactive 0.0037500000
## 1692       Puzzle                        UFO Interactive 0.0025000000
## 1693      Shooter                        UFO Interactive 0.0000000000
## 1694       Sports                        UFO Interactive 0.0000000000
## 1695   Simulation                      UIG Entertainment 0.0000000000
## 1696     Fighting                            Ultravision 0.0000000000
## 1697       Action                        Universal Gamex 0.0100000000
## 1698       Action                  Universal Interactive 0.0344444444
## 1699     Fighting                  Universal Interactive 0.0100000000
## 1700         Misc                  Universal Interactive 0.0100000000
## 1701     Platform                  Universal Interactive 0.1857142857
## 1702      Shooter                  Universal Interactive 0.0150000000
## 1703       Sports                  Universal Interactive 0.0600000000
## 1704       Action                                Unknown 0.0039285714
## 1705    Adventure                                Unknown 0.0023529412
## 1706     Fighting                                Unknown 0.0000000000
## 1707         Misc                                Unknown 0.0138709677
## 1708     Platform                                Unknown 0.0020000000
## 1709       Puzzle                                Unknown 0.0052941176
## 1710       Racing                                Unknown 0.0476923077
## 1711 Role-Playing                                Unknown 0.0154545455
## 1712      Shooter                                Unknown 0.0092307692
## 1713   Simulation                                Unknown 0.0100000000
## 1714       Sports                                Unknown 0.0219230769
## 1715     Strategy                                Unknown 0.0014285714
## 1716    Adventure                           Valcon Games 0.0000000000
## 1717       Racing                           Valcon Games 0.0033333333
## 1718      Shooter                           Valcon Games 0.0100000000
## 1719   Simulation                           Valcon Games 0.0000000000
## 1720       Sports                           Valcon Games 0.0050000000
## 1721    Adventure                               ValuSoft 0.0000000000
## 1722       Puzzle                               ValuSoft 0.0050000000
## 1723       Racing                               ValuSoft 0.0300000000
## 1724      Shooter                                  Valve 0.2500000000
## 1725      Shooter                         Valve Software 0.1066666667
## 1726         Misc                                    Vap 0.0000000000
## 1727       Racing                  Vatical Entertainment 0.0050000000
## 1728     Fighting                              Vic Tokai 0.0050000000
## 1729    Adventure                     Victor Interactive 0.0000000000
## 1730         Misc                     Victor Interactive 0.0000000000
## 1731 Role-Playing                     Victor Interactive 0.0000000000
## 1732   Simulation                     Victor Interactive 0.0000000000
## 1733       Sports                     Victor Interactive 0.0050000000
## 1734       Action                           Video System 0.0000000000
## 1735       Racing                           Video System 0.0300000000
## 1736       Action                                  Views 0.0000000000
## 1737    Adventure                                  Views 0.0000000000
## 1738       Action                          Vir2L Studios 0.0100000000
## 1739       Racing                          Vir2L Studios 0.0000000000
## 1740       Sports                          Vir2L Studios 0.0000000000
## 1741       Action                     Virgin Interactive 0.1458333333
## 1742    Adventure                     Virgin Interactive 0.0000000000
## 1743     Fighting                     Virgin Interactive 0.0242105263
## 1744         Misc                     Virgin Interactive 0.0000000000
## 1745     Platform                     Virgin Interactive 0.0216666667
## 1746       Puzzle                     Virgin Interactive 0.0100000000
## 1747       Racing                     Virgin Interactive 0.0000000000
## 1748 Role-Playing                     Virgin Interactive 0.0566666667
## 1749      Shooter                     Virgin Interactive 0.0285714286
## 1750   Simulation                     Virgin Interactive 0.0100000000
## 1751       Sports                     Virgin Interactive 0.0050000000
## 1752     Strategy                     Virgin Interactive 0.0450000000
## 1753         Misc                     Virtual Play Games 0.0000000000
## 1754       Sports                     Virtual Play Games 0.0000000000
## 1755      Shooter                                  Visco 0.0000000000
## 1756       Action                          Vivendi Games 0.0263043478
## 1757    Adventure                          Vivendi Games 0.0214285714
## 1758     Fighting                          Vivendi Games 0.0100000000
## 1759         Misc                          Vivendi Games 0.0150000000
## 1760     Platform                          Vivendi Games 0.0416216216
## 1761       Puzzle                          Vivendi Games 0.0000000000
## 1762       Racing                          Vivendi Games 0.0878571429
## 1763 Role-Playing                          Vivendi Games 0.0000000000
## 1764      Shooter                          Vivendi Games 0.0166666667
## 1765   Simulation                          Vivendi Games 0.0000000000
## 1766       Sports                          Vivendi Games 0.0000000000
## 1767     Strategy                          Vivendi Games 0.0075000000
## 1768       Action                                Wanadoo 0.0350000000
## 1769     Platform                                Wanadoo 0.0000000000
## 1770       Racing                                Wanadoo 0.0000000000
## 1771      Shooter                                Warashi 0.0000000000
## 1772      Shooter                          Wargaming.net 0.0600000000
## 1773       Action Warner Bros. Interactive Entertainment 0.0897575758
## 1774    Adventure Warner Bros. Interactive Entertainment 0.0266666667
## 1775     Fighting Warner Bros. Interactive Entertainment 0.1536363636
## 1776         Misc Warner Bros. Interactive Entertainment 0.0218181818
## 1777     Platform Warner Bros. Interactive Entertainment 0.0162500000
## 1778       Puzzle Warner Bros. Interactive Entertainment 0.0650000000
## 1779       Racing Warner Bros. Interactive Entertainment 0.0300000000
## 1780      Shooter Warner Bros. Interactive Entertainment 0.0520000000
## 1781     Strategy Warner Bros. Interactive Entertainment 0.1200000000
## 1782    Adventure                                   Warp 0.0000000000
## 1783    Adventure                WayForward Technologies 0.0100000000
## 1784     Strategy                       Westwood Studios 0.0000000000
## 1785       Puzzle                White Park Bay Software 0.0100000000
## 1786       Action                     Wizard Video Games 0.0100000000
## 1787       Racing                      Xicat Interactive 0.0000000000
## 1788 Role-Playing                      Xicat Interactive 0.0000000000
## 1789       Sports                      Xicat Interactive 0.0100000000
## 1790     Fighting                     Xing Entertainment 0.0200000000
## 1791         Misc                                Xplosiv 0.0066666667
## 1792       Puzzle                                Xplosiv 0.0300000000
## 1793       Racing                                Xplosiv 0.0180000000
## 1794         Misc                               XS Games 0.0000000000
## 1795       Racing                               XS Games 0.0080000000
## 1796       Sports                               XS Games 0.0140000000
## 1797       Action                            Xseed Games 0.0200000000
## 1798 Role-Playing                            Xseed Games 0.0200000000
## 1799      Shooter                            Xseed Games 0.0100000000
## 1800     Platform                       Yacht Club Games 0.0100000000
## 1801         Misc                   Yamasa Entertainment 0.0000000000
## 1802       Action                                   Yeti 0.0000000000
## 1803    Adventure                                   Yeti 0.0000000000
## 1804     Fighting                                   Yeti 0.0000000000
## 1805     Fighting                                 Yuke's 0.0000000000
## 1806       Racing                                 Yuke's 0.0000000000
## 1807    Adventure                                Yumedia 0.0000000000
## 1808         Misc                                 Zenrin 0.0000000000
## 1809       Action                 Zoo Digital Publishing 0.0037500000
## 1810    Adventure                 Zoo Digital Publishing 0.0014285714
## 1811     Fighting                 Zoo Digital Publishing 0.0066666667
## 1812         Misc                 Zoo Digital Publishing 0.0033333333
## 1813     Platform                 Zoo Digital Publishing 0.0050000000
## 1814       Puzzle                 Zoo Digital Publishing 0.0050000000
## 1815       Racing                 Zoo Digital Publishing 0.0080769231
## 1816      Shooter                 Zoo Digital Publishing 0.0050000000
## 1817   Simulation                 Zoo Digital Publishing 0.0000000000
## 1818       Sports                 Zoo Digital Publishing 0.0200000000
## 1819     Strategy                 Zoo Digital Publishing 0.0100000000
## 1820       Action                              Zoo Games 0.0033333333
## 1821    Adventure                              Zoo Games 0.0000000000
## 1822         Misc                              Zoo Games 0.0145454545
## 1823       Puzzle                              Zoo Games 0.0066666667
## 1824       Racing                              Zoo Games 0.0050000000
## 1825      Shooter                              Zoo Games 0.0075000000
## 1826   Simulation                              Zoo Games 0.0000000000
## 1827       Sports                              Zoo Games 0.0050000000
## 1828       Action                            Zushi Games 0.0000000000
## 1829    Adventure                            Zushi Games 0.0000000000
## 1830         Misc                            Zushi Games 0.0100000000
## 1831       Puzzle                            Zushi Games 0.0000000000
## 1832       Racing                            Zushi Games 0.0033333333
## 1833 Role-Playing                            Zushi Games 0.0100000000
## 1834      Shooter                            Zushi Games 0.0100000000
## 1835   Simulation                            Zushi Games 0.0000000000
## 1836       Sports                            Zushi Games 0.0200000000
## 1837     Strategy                            Zushi Games 0.0000000000
aggregate(Global_Sales,by=list(Platform = Platform,Year = Year),sum)
##     Platform Year      x
## 1       2600 1980  11.38
## 2       2600 1981  35.77
## 3       2600 1982  28.86
## 4       2600 1983   5.83
## 5        NES 1983  10.96
## 6       2600 1984   0.27
## 7        NES 1984  50.09
## 8       2600 1985   0.45
## 9         DS 1985   0.02
## 10       NES 1985  53.44
## 11        PC 1985   0.03
## 12      2600 1986   0.66
## 13       NES 1986  36.41
## 14      2600 1987   1.98
## 15       NES 1987  19.76
## 16      2600 1988   0.75
## 17        GB 1988   1.43
## 18       NES 1988  45.01
## 19        PC 1988   0.03
## 20      2600 1989   0.62
## 21        GB 1989  64.98
## 22       NES 1989   7.85
## 23        GB 1990   4.89
## 24       GEN 1990   2.60
## 25       NES 1990  15.74
## 26      SNES 1990  26.16
## 27        GB 1991   5.57
## 28       GEN 1991   4.34
## 29       NES 1991   6.11
## 30      SNES 1991  16.21
## 31        GB 1992  25.48
## 32       GEN 1992  12.66
## 33        GG 1992   0.04
## 34       NES 1992   1.98
## 35        PC 1992   3.02
## 36      SNES 1992  32.98
## 37       GEN 1993   0.65
## 38       NES 1993   3.61
## 39        NG 1993   0.21
## 40       SCD 1993   1.50
## 41      SNES 1993  40.01
## 42       3DO 1994   0.02
## 43        GB 1994  12.17
## 44       GEN 1994   8.11
## 45       NES 1994   0.11
## 46        NG 1994   0.80
## 47        PC 1994  12.85
## 48        PS 1994   6.02
## 49       SAT 1994   3.64
## 50       SCD 1994   0.37
## 51      SNES 1994  35.08
## 52       3DO 1995   0.08
## 53        GB 1995   3.60
## 54        NG 1995   0.33
## 55        PC 1995   4.23
## 56        PS 1995  35.92
## 57       SAT 1995  11.58
## 58      SNES 1995  32.21
## 59      TG16 1995   0.16
## 60        GB 1996  36.02
## 61       N64 1996  34.11
## 62        NG 1996   0.10
## 63        PC 1996  10.59
## 64      PCFX 1996   0.03
## 65        PS 1996  94.68
## 66       SAT 1996   7.69
## 67      SNES 1996  15.93
## 68        GB 1997   6.37
## 69       N64 1997  39.51
## 70        PC 1997  11.26
## 71        PS 1997 136.08
## 72       SAT 1997   6.77
## 73      SNES 1997   0.99
## 74        DC 1998   3.39
## 75        GB 1998  26.90
## 76       N64 1998  49.28
## 77        PC 1998   3.28
## 78        PS 1998 169.58
## 79       SAT 1998   3.82
## 80      SNES 1998   0.22
## 81        DC 1999   5.17
## 82        GB 1999  38.01
## 83       N64 1999  57.96
## 84        PC 1999   4.75
## 85        PS 1999 144.57
## 86       SAT 1999   0.09
## 87      SNES 1999   0.26
## 88        WS 1999   0.46
## 89        DC 2000   5.99
## 90        GB 2000  19.76
## 91       GBA 2000   0.06
## 92       N64 2000  34.01
## 93        PC 2000   4.68
## 94        PS 2000  96.28
## 95       PS2 2000  39.11
## 96        WS 2000   0.68
## 97        XB 2000   0.99
## 98        DC 2001   1.07
## 99        GB 2001   9.24
## 100      GBA 2001  61.62
## 101       GC 2001  26.30
## 102      N64 2001   3.26
## 103       PC 2001   5.51
## 104       PS 2001  35.52
## 105      PS2 2001 166.43
## 106       WS 2001   0.28
## 107       XB 2001  22.24
## 108       DC 2002   0.29
## 109      GBA 2002  74.38
## 110       GC 2002  51.93
## 111      N64 2002   0.08
## 112       PC 2002   8.60
## 113       PS 2002   6.69
## 114      PS2 2002 205.40
## 115       XB 2002  48.15
## 116      GBA 2003  56.73
## 117       GC 2003  50.66
## 118       PC 2003   8.96
## 119       PS 2003   2.05
## 120      PS2 2003 184.29
## 121       XB 2003  55.16
## 122       DS 2004  17.46
## 123      GBA 2004  78.09
## 124       GC 2004  28.89
## 125       PC 2004  10.46
## 126      PS2 2004 211.78
## 127      PSP 2004   7.13
## 128       XB 2004  65.50
## 129       DS 2005 131.40
## 130      GBA 2005  33.90
## 131       GC 2005  27.80
## 132       PC 2005   4.47
## 133      PS2 2005 160.65
## 134      PSP 2005  44.23
## 135     X360 2005   8.32
## 136       XB 2005  49.17
## 137       DS 2006 121.15
## 138      GBA 2006   5.35
## 139       GC 2006  11.29
## 140       PC 2006   2.97
## 141      PS2 2006 103.42
## 142      PS3 2006  21.07
## 143      PSP 2006  55.85
## 144      Wii 2006 137.91
## 145     X360 2006  51.88
## 146       XB 2006  10.15
## 147       DC 2007   0.02
## 148       DS 2007 149.36
## 149      GBA 2007   3.43
## 150       GC 2007   0.27
## 151       PC 2007   9.40
## 152      PS2 2007  76.00
## 153      PS3 2007  73.81
## 154      PSP 2007  47.48
## 155      Wii 2007 154.97
## 156     X360 2007  95.84
## 157       XB 2007   0.55
## 158       DC 2008   0.04
## 159       DS 2008 147.89
## 160       PC 2008  12.67
## 161      PS2 2008  53.83
## 162      PS3 2008 119.69
## 163      PSP 2008  34.68
## 164      Wii 2008 174.16
## 165     X360 2008 135.76
## 166       XB 2008   0.18
## 167       DS 2009 121.99
## 168       PC 2009  17.16
## 169      PS2 2009  26.45
## 170      PS3 2009 132.34
## 171      PSP 2009  38.07
## 172      Wii 2009 210.44
## 173     X360 2009 120.85
## 174       DS 2010  87.98
## 175       PC 2010  24.46
## 176      PS2 2010   5.63
## 177      PS3 2010 144.42
## 178      PSP 2010  35.11
## 179      Wii 2010 131.80
## 180     X360 2010 171.05
## 181      3DS 2011  62.53
## 182       DS 2011  27.80
## 183       PC 2011  35.25
## 184      PS2 2011   0.47
## 185      PS3 2011 159.37
## 186      PSP 2011  17.89
## 187      PSV 2011   5.15
## 188      Wii 2011  62.41
## 189     X360 2011 145.12
## 190      3DS 2012  51.14
## 191       DS 2012  11.64
## 192       PC 2012  23.53
## 193      PS3 2012 109.49
## 194      PSP 2012   7.72
## 195      PSV 2012  18.53
## 196      Wii 2012  22.77
## 197     WiiU 2012  17.84
## 198     X360 2012 100.88
## 199      3DS 2013  55.88
## 200       DS 2013   1.96
## 201       PC 2013  12.83
## 202      PS3 2013 117.39
## 203      PS4 2013  24.76
## 204      PSP 2013   3.19
## 205      PSV 2013  12.69
## 206      Wii 2013   9.36
## 207     WiiU 2013  21.84
## 208     X360 2013  89.61
## 209     XOne 2013  18.60
## 210      3DS 2014  43.14
## 211       DS 2014   0.02
## 212       PC 2014  13.39
## 213      PS3 2014  50.96
## 214      PS4 2014  98.76
## 215      PSP 2014   0.24
## 216      PSV 2014  14.74
## 217      Wii 2014   4.44
## 218     WiiU 2014  22.51
## 219     X360 2014  36.42
## 220     XOne 2014  52.43
## 221      3DS 2015  26.99
## 222       PC 2015   8.07
## 223      PS3 2015  18.22
## 224      PS4 2015 115.30
## 225      PSP 2015   0.12
## 226      PSV 2015   7.10
## 227      Wii 2015   1.55
## 228     WiiU 2015  16.38
## 229     X360 2015  13.05
## 230     XOne 2015  57.66
## 231      3DS 2016   6.60
## 232       PC 2016   2.60
## 233      PS3 2016   2.59
## 234      PS4 2016  39.25
## 235      PSV 2016   3.40
## 236     WiiU 2016   3.29
## 237     X360 2016   0.83
## 238     XOne 2016  12.37
## 239      PS4 2017   0.03
## 240      PSV 2017   0.02
## 241       DS 2020   0.29
## 242     2600  N/A  10.51
## 243      3DS  N/A   1.18
## 244       DS  N/A   3.53
## 245       GB  N/A   1.03
## 246      GBA  N/A   4.94
## 247       GC  N/A   2.22
## 248      N64  N/A   0.67
## 249       PC  N/A   3.77
## 250       PS  N/A   3.27
## 251      PS2  N/A  22.18
## 252      PS3  N/A   8.49
## 253      PSP  N/A   4.57
## 254      PSV  N/A   0.30
## 255      Wii  N/A  16.90
## 256     X360  N/A  10.35
## 257       XB  N/A   6.17
aggregate(Global_Sales,by=list(Platform = Platform,Genre = Genre),sum)
##     Platform        Genre      x
## 1       2600       Action  29.34
## 2        3DS       Action  57.02
## 3         DC       Action   1.26
## 4         DS       Action 115.56
## 5         GB       Action   7.92
## 6        GBA       Action  55.76
## 7         GC       Action  37.84
## 8        GEN       Action   2.74
## 9        N64       Action  29.58
## 10       NES       Action  28.75
## 11        PC       Action  31.53
## 12        PS       Action 127.05
## 13       PS2       Action 272.76
## 14       PS3       Action 307.88
## 15       PS4       Action  87.06
## 16       PSP       Action  64.72
## 17       PSV       Action  20.01
## 18       SAT       Action   0.65
## 19      SNES       Action  10.08
## 20       Wii       Action 118.58
## 21      WiiU       Action  19.35
## 22      X360       Action 242.67
## 23        XB       Action  49.28
## 24      XOne       Action  33.79
## 25      2600    Adventure   1.70
## 26       3DO    Adventure   0.06
## 27       3DS    Adventure   4.81
## 28        DC    Adventure   2.50
## 29        DS    Adventure  47.29
## 30        GB    Adventure  17.16
## 31       GBA    Adventure  14.68
## 32        GC    Adventure   5.93
## 33       GEN    Adventure   0.19
## 34       N64    Adventure   0.45
## 35       NES    Adventure   4.38
## 36        PC    Adventure  10.09
## 37        PS    Adventure  20.97
## 38       PS2    Adventure  21.16
## 39       PS3    Adventure  22.90
## 40       PS4    Adventure   4.70
## 41       PSP    Adventure  10.69
## 42       PSV    Adventure   4.18
## 43       SAT    Adventure   4.16
## 44      SNES    Adventure   1.50
## 45      TG16    Adventure   0.14
## 46       Wii    Adventure  18.43
## 47      WiiU    Adventure   0.17
## 48      X360    Adventure  15.23
## 49        XB    Adventure   3.06
## 50      XOne    Adventure   2.51
## 51      2600     Fighting   1.24
## 52       3DS     Fighting  10.46
## 53        DC     Fighting   1.83
## 54        DS     Fighting   7.20
## 55       GBA     Fighting   4.21
## 56        GC     Fighting  18.43
## 57       GEN     Fighting   5.90
## 58       N64     Fighting  22.08
## 59       NES     Fighting   6.54
## 60        NG     Fighting   1.42
## 61        PC     Fighting   0.27
## 62        PS     Fighting  72.68
## 63       PS2     Fighting  92.60
## 64       PS3     Fighting  51.70
## 65       PS4     Fighting   8.04
## 66       PSP     Fighting  21.97
## 67       PSV     Fighting   3.15
## 68       SAT     Fighting   8.52
## 69      SNES     Fighting  26.95
## 70       Wii     Fighting  23.86
## 71      WiiU     Fighting   6.36
## 72      X360     Fighting  37.64
## 73        XB     Fighting  13.55
## 74      XOne     Fighting   2.31
## 75      2600         Misc   3.58
## 76       3DS         Misc  10.48
## 77        DS         Misc 137.76
## 78        GB         Misc  13.35
## 79       GBA         Misc  36.25
## 80        GC         Misc  16.73
## 81       GEN         Misc   0.03
## 82       N64         Misc  11.19
## 83       NES         Misc   3.59
## 84        PC         Misc   8.56
## 85        PS         Misc  44.90
## 86       PS2         Misc 101.14
## 87       PS3         Misc  47.85
## 88       PS4         Misc   7.40
## 89       PSP         Misc  13.96
## 90       PSV         Misc   5.18
## 91       SAT         Misc   1.20
## 92       SCD         Misc   0.10
## 93      SNES         Misc   5.02
## 94       Wii         Misc 221.06
## 95      WiiU         Misc  12.23
## 96      X360         Misc  91.96
## 97        XB         Misc   9.58
## 98      XOne         Misc   6.86
## 99      2600     Platform  13.27
## 100      3DS     Platform  32.23
## 101       DC     Platform   2.54
## 102       DS     Platform  77.45
## 103       GB     Platform  54.91
## 104      GBA     Platform  78.30
## 105       GC     Platform  28.66
## 106      GEN     Platform  15.45
## 107       GG     Platform   0.04
## 108      N64     Platform  36.13
## 109      NES     Platform  95.78
## 110       PC     Platform   0.49
## 111       PS     Platform  64.21
## 112      PS2     Platform  72.51
## 113      PS3     Platform  30.33
## 114      PS4     Platform   7.01
## 115      PSP     Platform  17.28
## 116      PSV     Platform   3.03
## 117      SAT     Platform   0.76
## 118      SCD     Platform   1.50
## 119     SNES     Platform  65.65
## 120      Wii     Platform  90.74
## 121     WiiU     Platform  21.24
## 122     X360     Platform  11.39
## 123       XB     Platform   9.66
## 124     XOne     Platform   0.81
## 125     2600       Puzzle  14.68
## 126      3DO       Puzzle   0.02
## 127      3DS       Puzzle   5.57
## 128       DS       Puzzle  84.29
## 129       GB       Puzzle  47.47
## 130      GBA       Puzzle  12.92
## 131       GC       Puzzle   4.70
## 132      N64       Puzzle   3.41
## 133      NES       Puzzle  21.00
## 134       PC       Puzzle   0.92
## 135       PS       Puzzle  12.08
## 136      PS2       Puzzle   5.90
## 137      PS3       Puzzle   0.60
## 138      PS4       Puzzle   0.02
## 139      PSP       Puzzle   5.52
## 140      PSV       Puzzle   0.20
## 141      SAT       Puzzle   1.00
## 142     SNES       Puzzle   6.38
## 143      Wii       Puzzle  15.67
## 144     WiiU       Puzzle   1.33
## 145     X360       Puzzle   0.85
## 146       XB       Puzzle   0.42
## 147     2600       Racing   2.91
## 148      3DS       Racing  14.49
## 149       DC       Racing   2.65
## 150       DS       Racing  38.64
## 151       GB       Racing   4.55
## 152      GBA       Racing  18.80
## 153       GC       Racing  21.89
## 154      GEN       Racing   0.26
## 155      N64       Racing  40.09
## 156      NES       Racing   9.78
## 157       PC       Racing   4.06
## 158       PS       Racing 103.19
## 159      PS2       Racing 156.28
## 160      PS3       Racing  73.95
## 161      PS4       Racing  11.53
## 162      PSP       Racing  34.73
## 163      PSV       Racing   2.95
## 164      SAT       Racing   2.40
## 165      SCD       Racing   0.07
## 166     SNES       Racing  13.49
## 167      Wii       Racing  61.28
## 168     WiiU       Racing   7.77
## 169     X360       Racing  65.99
## 170       XB       Racing  31.49
## 171     XOne       Racing   8.80
## 172      3DS Role-Playing  75.74
## 173       DC Role-Playing   0.68
## 174       DS Role-Playing 126.85
## 175       GB Role-Playing  88.24
## 176      GBA Role-Playing  64.21
## 177       GC Role-Playing  13.15
## 178      GEN Role-Playing   0.27
## 179      N64 Role-Playing   3.36
## 180      NES Role-Playing  18.78
## 181       PC Role-Playing  47.78
## 182     PCFX Role-Playing   0.03
## 183       PS Role-Playing  78.30
## 184      PS2 Role-Playing  93.50
## 185      PS3 Role-Playing  75.30
## 186      PS4 Role-Playing  25.77
## 187      PSP Role-Playing  49.05
## 188      PSV Role-Playing  13.39
## 189      SAT Role-Playing   3.76
## 190      SCD Role-Playing   0.06
## 191     SNES Role-Playing  36.43
## 192      Wii Role-Playing  14.06
## 193     WiiU Role-Playing   2.47
## 194       WS Role-Playing   1.22
## 195     X360 Role-Playing  71.98
## 196       XB Role-Playing  13.51
## 197     XOne Role-Playing   9.48
## 198     2600      Shooter  26.48
## 199      3DS      Shooter   1.29
## 200       DC      Shooter   0.33
## 201       DS      Shooter   8.20
## 202       GB      Shooter   1.20
## 203      GBA      Shooter   3.60
## 204       GC      Shooter  13.63
## 205      GEN      Shooter   0.13
## 206      N64      Shooter  19.27
## 207      NES      Shooter  35.62
## 208       PC      Shooter  45.32
## 209       PS      Shooter  39.31
## 210      PS2      Shooter 108.57
## 211      PS3      Shooter 196.04
## 212      PS4      Shooter  75.32
## 213      PSP      Shooter  19.77
## 214      PSV      Shooter   4.57
## 215      SAT      Shooter   3.98
## 216     SNES      Shooter   6.07
## 217     TG16      Shooter   0.02
## 218      Wii      Shooter  28.77
## 219     WiiU      Shooter   6.17
## 220     X360      Shooter 278.55
## 221       XB      Shooter  63.55
## 222     XOne      Shooter  51.61
## 223     2600   Simulation   0.45
## 224      3DO   Simulation   0.02
## 225      3DS   Simulation  27.08
## 226       DC   Simulation   0.52
## 227       DS   Simulation 132.03
## 228       GB   Simulation   3.55
## 229      GBA   Simulation   5.91
## 230       GC   Simulation   8.59
## 231      N64   Simulation  10.19
## 232       PC   Simulation  51.91
## 233       PS   Simulation  25.33
## 234      PS2   Simulation  42.66
## 235      PS3   Simulation  10.79
## 236      PS4   Simulation   0.77
## 237      PSP   Simulation   6.28
## 238      PSV   Simulation   0.08
## 239      SAT   Simulation   1.13
## 240     SNES   Simulation   5.63
## 241      Wii   Simulation  36.97
## 242     WiiU   Simulation   0.21
## 243     X360   Simulation  14.45
## 244       XB   Simulation   7.11
## 245     XOne   Simulation   0.54
## 246     2600       Sports   3.43
## 247      3DS       Sports   6.20
## 248       DC       Sports   3.66
## 249       DS       Sports  31.83
## 250       GB       Sports   9.05
## 251      GBA       Sports  16.41
## 252       GC       Sports  25.49
## 253      GEN       Sports   3.20
## 254      N64       Sports  32.80
## 255      NES       Sports  26.85
## 256       NG       Sports   0.02
## 257       PC       Sports  12.01
## 258       PS       Sports 120.97
## 259      PS2       Sports 273.41
## 260      PS3       Sports 135.56
## 261      PS4       Sports  50.07
## 262      PSP       Sports  41.69
## 263      PSV       Sports   4.88
## 264      SAT       Sports   2.79
## 265     SNES       Sports  17.87
## 266      Wii       Sports 292.06
## 267     WiiU       Sports   3.32
## 268     X360       Sports 139.12
## 269       XB       Sports  54.27
## 270     XOne       Sports  23.97
## 271      3DS     Strategy   2.09
## 272       DS     Strategy  15.39
## 273       GB     Strategy   8.05
## 274      GBA     Strategy   7.45
## 275       GC     Strategy   4.32
## 276      GEN     Strategy   0.19
## 277      N64     Strategy  10.33
## 278       PC     Strategy  45.88
## 279       PS     Strategy  21.67
## 280      PS2     Strategy  15.15
## 281      PS3     Strategy   4.94
## 282      PS4     Strategy   0.41
## 283      PSP     Strategy  10.62
## 284      PSV     Strategy   0.31
## 285      SAT     Strategy   3.24
## 286      SCD     Strategy   0.14
## 287     SNES     Strategy   4.98
## 288      Wii     Strategy   5.23
## 289     WiiU     Strategy   1.24
## 290       WS     Strategy   0.20
## 291     X360     Strategy  10.13
## 292       XB     Strategy   2.78
## 293     XOne     Strategy   0.38
aggregate(Global_Sales,by=list(Platform = Platform,Publisher = Publisher),sum)
##      Platform                              Publisher      x
## 1          DS                        10TACLE Studios   0.09
## 2         PS2                        10TACLE Studios   0.02
## 3          PC                             1C Company   0.10
## 4        2600           20th Century Fox Video Games   1.94
## 5          PC                                 2D Boy   0.04
## 6          GC                                    3DO   0.01
## 7         N64                                    3DO   2.19
## 8          PS                                    3DO   5.93
## 9         PS2                                    3DO   1.91
## 10         XB                                    3DO   0.08
## 11       X360                                49Games   0.04
## 12        3DS                              505 Games   0.80
## 13         DS                              505 Games  19.92
## 14         PC                              505 Games   0.24
## 15        PS2                              505 Games   2.69
## 16        PS3                              505 Games   4.99
## 17        PS4                              505 Games   1.42
## 18        PSP                              505 Games   1.21
## 19        PSV                              505 Games   0.09
## 20        Wii                              505 Games  15.06
## 21       WiiU                              505 Games   0.05
## 22       X360                              505 Games   8.68
## 23         XB                              505 Games   0.05
## 24       XOne                              505 Games   0.71
## 25        3DS                                    5pb   0.04
## 26        PS2                                    5pb   0.19
## 27        PS3                                    5pb   0.33
## 28        PS4                                    5pb   0.01
## 29        PSP                                    5pb   0.32
## 30        PSV                                    5pb   0.29
## 31       X360                                    5pb   0.44
## 32       XOne                                    5pb   0.01
## 33         DS                               7G//AMES   0.03
## 34        Wii                               7G//AMES   0.05
## 35         PS                             989 Sports   0.38
## 36         PS                            989 Studios  13.32
## 37        PS3                               Abylight   0.08
## 38         DC                  Acclaim Entertainment   0.14
## 39        GBA                  Acclaim Entertainment   1.04
## 40         GC                  Acclaim Entertainment   3.53
## 41        GEN                  Acclaim Entertainment   2.45
## 42        N64                  Acclaim Entertainment  12.88
## 43         PC                  Acclaim Entertainment   0.01
## 44         PS                  Acclaim Entertainment  19.31
## 45        PS2                  Acclaim Entertainment  15.11
## 46        SAT                  Acclaim Entertainment   0.56
## 47       SNES                  Acclaim Entertainment   5.86
## 48         XB                  Acclaim Entertainment   3.25
## 49         PS                               Accolade   1.68
## 50        3DS                            Ackkstudios   0.06
## 51         DS                            Ackkstudios   0.07
## 52        PS3                            Ackkstudios   0.41
## 53        PSP                            Ackkstudios   0.11
## 54        Wii                            Ackkstudios   0.19
## 55        3DS                                Acquire   0.06
## 56        PS2                                Acquire   0.05
## 57        PS3                                Acquire   0.11
## 58        PS4                                Acquire   0.11
## 59        PSP                                Acquire   0.74
## 60       2600                             Activision  19.42
## 61        3DS                             Activision   4.66
## 62         DC                             Activision   0.10
## 63         DS                             Activision  42.11
## 64         GB                             Activision   1.33
## 65        GBA                             Activision  15.30
## 66         GC                             Activision  13.35
## 67        N64                             Activision   6.58
## 68         PC                             Activision  47.58
## 69         PS                             Activision  30.05
## 70        PS2                             Activision  85.59
## 71        PS3                             Activision 126.39
## 72        PS4                             Activision  40.26
## 73        PSP                             Activision  10.81
## 74        PSV                             Activision   1.86
## 75        Wii                             Activision  62.56
## 76       WiiU                             Activision   4.15
## 77       X360                             Activision 159.02
## 78         XB                             Activision  32.79
## 79       XOne                             Activision  23.55
## 80         PC                    Activision Blizzard   0.48
## 81        GBA                       Activision Value   0.09
## 82         GC                       Activision Value   0.05
## 83         PS                       Activision Value   0.21
## 84        PS2                       Activision Value   1.81
## 85        PS3                       Activision Value   0.92
## 86        PSP                       Activision Value   0.11
## 87        Wii                       Activision Value   2.57
## 88       X360                       Activision Value   0.93
## 89         XB                       Activision Value   0.27
## 90         PS                       Adeline Software   0.17
## 91         PC                               Aerosoft   0.03
## 92        3DS                 Agatsuma Entertainment   0.23
## 93        GBA                 Agatsuma Entertainment   0.08
## 94         PS                                 Agetec   0.22
## 95        PS2                                 Agetec   1.68
## 96        PSP                                 Agetec   0.04
## 97        3DS                            Aksys Games   0.06
## 98         DS                            Aksys Games   0.02
## 99        PS3                            Aksys Games   0.06
## 100       PS4                            Aksys Games   0.03
## 101       PSV                            Aksys Games   0.27
## 102        PC                   Alawar Entertainment   0.05
## 103       3DS                              Alchemist   0.29
## 104        DS                              Alchemist   0.31
## 105       PS2                              Alchemist   1.57
## 106       PS3                              Alchemist   0.04
## 107       PSP                              Alchemist   0.37
## 108      X360                              Alchemist   0.05
## 109        PC                   Alternative Software   0.02
## 110       PS3                   Alternative Software   0.04
## 111       PS4                   Alternative Software   0.04
## 112       Wii                   Alternative Software   0.07
## 113      X360                   Alternative Software   0.02
## 114      XOne                   Alternative Software   0.01
## 115       GBA                                 Altron   0.07
## 116        DS                                 Alvion   0.04
## 117        PS                     American Softworks   0.23
## 118      SNES                          Angel Studios   0.44
## 119      2600                        Answer Software   0.50
## 120        DS                         AQ Interactive   0.32
## 121       PS2                         AQ Interactive   0.19
## 122       PSP                         AQ Interactive   0.02
## 123        PS                              Aqua Plus   0.14
## 124       PS2                              Aqua Plus   0.12
## 125       PS3                              Aqua Plus   0.42
## 126       PS4                              Aqua Plus   0.10
## 127       PSP                              Aqua Plus   0.28
## 128       PSV                              Aqua Plus   0.19
## 129        PS                                  Aques   0.16
## 130       3DS                       Arc System Works   0.08
## 131        DS                       Arc System Works   0.42
## 132       PS3                       Arc System Works   0.54
## 133       PS4                       Arc System Works   0.16
## 134       PSP                       Arc System Works   0.02
## 135       PSV                       Arc System Works   0.26
## 136       GEN                    Arena Entertainment   4.72
## 137       PS2                                   Aria   0.07
## 138        DS                                  Arika   0.02
## 139       PS2                                  Arika   0.07
## 140       3DS                                ArtDink   0.06
## 141        DS                                ArtDink   0.04
## 142        PS                                ArtDink   0.56
## 143       PS2                                ArtDink   0.05
## 144       PSP                                ArtDink   0.02
## 145        PS                             Aruze Corp   1.18
## 146        PS                              ASC Games   2.02
## 147        PC                  Ascaron Entertainment   0.01
## 148        PC             Ascaron Entertainment GmbH   0.11
## 149        GB                    ASCII Entertainment   0.37
## 150       N64                    ASCII Entertainment   0.07
## 151        PS                    ASCII Entertainment   5.50
## 152       PS2                    ASCII Entertainment   0.32
## 153       SAT                    ASCII Entertainment   0.09
## 154      SNES                    ASCII Entertainment   4.54
## 155        DS                      ASCII Media Works   0.12
## 156       PS2                      ASCII Media Works   0.02
## 157       PSP                      ASCII Media Works   0.12
## 158       PSV                      ASCII Media Works   0.01
## 159       PSP                                 Asgard   0.23
## 160       PSV                                 Asgard   0.02
## 161       SAT                                    ASK   0.03
## 162        PS                Asmik Ace Entertainment   0.10
## 163       PS2                Asmik Ace Entertainment   0.13
## 164      SNES                             Asmik Corp   0.17
## 165        DS                                  Aspyr   0.40
## 166       GBA                                  Aspyr   0.02
## 167        PC                                  Aspyr   0.04
## 168      X360                                  Aspyr   0.16
## 169        DS                               Astragon   0.58
## 170        PC                               Astragon   0.06
## 171       3DS                   Asylum Entertainment   0.07
## 172        DS                   Asylum Entertainment   0.28
## 173       Wii                   Asylum Entertainment   0.24
## 174      2600                                  Atari  50.09
## 175       3DS                                  Atari   0.05
## 176        DS                                  Atari   7.13
## 177       GBA                                  Atari  12.90
## 178        GC                                  Atari   6.42
## 179        PC                                  Atari   2.60
## 180        PS                                  Atari   9.06
## 181       PS2                                  Atari  41.82
## 182       PS3                                  Atari   2.42
## 183       PSP                                  Atari   2.62
## 184       Wii                                  Atari   7.80
## 185      X360                                  Atari   6.66
## 186        XB                                  Atari   7.65
## 187       N64                                 Athena   0.02
## 188       PS2                                 Athena   0.07
## 189       3DS                                  Atlus   2.20
## 190        DS                                  Atlus   1.73
## 191       GBA                                  Atlus   0.16
## 192        GC                                  Atlus   0.03
## 193       N64                                  Atlus   0.31
## 194        PS                                  Atlus   1.43
## 195       PS2                                  Atlus   1.31
## 196       PS3                                  Atlus   0.88
## 197       PS4                                  Atlus   0.34
## 198       PSP                                  Atlus   1.11
## 199       PSV                                  Atlus   1.56
## 200       SAT                                  Atlus   0.92
## 201      SNES                                  Atlus   0.45
## 202      WiiU                                  Atlus   0.03
## 203      X360                                  Atlus   0.21
## 204        XB                                  Atlus   0.07
## 205      2600                     Avalon Interactive   0.17
## 206        PS                     Avalon Interactive   0.10
## 207       PS2                     Avalon Interactive   0.12
## 208        XB                     Avalon Interactive   0.09
## 209        DS                              Avanquest   2.55
## 210        PC                              Avanquest   0.07
## 211       PS4                              Avanquest   0.04
## 212       Wii                              Avanquest   0.34
## 213       3DS                     Avanquest Software   0.04
## 214        DS                     Avanquest Software   0.06
## 215        PC                     Avanquest Software   0.05
## 216       PS3                     Avanquest Software   0.79
## 217      X360                     Avanquest Software   0.75
## 218        PS                                  Axela   0.25
## 219       GBA                     BAM! Entertainment   2.22
## 220        GC                     BAM! Entertainment   0.46
## 221       N64                     BAM! Entertainment   0.16
## 222        PS                     BAM! Entertainment   0.36
## 223       PS2                     BAM! Entertainment   1.48
## 224        XB                     BAM! Entertainment   0.27
## 225        DS                              Banpresto   0.65
## 226        GB                              Banpresto   0.39
## 227       GBA                              Banpresto   1.56
## 228       N64                              Banpresto   0.27
## 229        PS                              Banpresto   3.53
## 230       PS2                              Banpresto   5.17
## 231       PSP                              Banpresto   0.70
## 232       SAT                              Banpresto   1.10
## 233      SNES                              Banpresto   3.72
## 234      X360                              Banpresto   0.31
## 235        DS                                Benesse   0.33
## 236        PS                               Berkeley   0.03
## 237        PC                     Bethesda Softworks  10.30
## 238       PS2                     Bethesda Softworks   1.97
## 239       PS3                     Bethesda Softworks  20.72
## 240       PS4                     Bethesda Softworks  14.25
## 241       Wii                     Bethesda Softworks   1.46
## 242      X360                     Bethesda Softworks  25.45
## 243        XB                     Bethesda Softworks   0.34
## 244      XOne                     Bethesda Softworks   7.65
## 245       3DS                    Big Ben Interactive   0.02
## 246        DS                    Big Ben Interactive   0.07
## 247       PS2                    Big Ben Interactive   0.09
## 248       Wii                    Big Ben Interactive   0.82
## 249        PC                         Big Fish Games   0.05
## 250       PS3                     Bigben Interactive   0.30
## 251       PS4                     Bigben Interactive   0.22
## 252       PSV                     Bigben Interactive   0.14
## 253      X360                     Bigben Interactive   0.08
## 254      XOne                     Bigben Interactive   0.10
## 255        PC                      bitComposer Games   0.14
## 256       PS3                      bitComposer Games   0.19
## 257      X360                      bitComposer Games   0.08
## 258        DS                       Black Bean Games   0.16
## 259        PC                       Black Bean Games   0.04
## 260       PS2                       Black Bean Games   0.10
## 261       PS3                       Black Bean Games   1.44
## 262       PSP                       Black Bean Games   0.05
## 263       Wii                       Black Bean Games   0.62
## 264      X360                       Black Bean Games   0.88
## 265       PS2                      Black Label Games   1.20
## 266        DS               Blast! Entertainment Ltd   0.14
## 267       PS2               Blast! Entertainment Ltd   0.17
## 268       Wii               Blast! Entertainment Ltd   0.07
## 269        PC                              Blue Byte   0.03
## 270        PS          BMG Interactive Entertainment   1.18
## 271        PC                    Bohemia Interactive   0.12
## 272      2600                                   Bomb   0.22
## 273       PSP                               Boost On   0.01
## 274       NES                                    BPS   0.32
## 275      SNES                                    BPS   0.20
## 276        DS                    Brash Entertainment   0.45
## 277       PS2                    Brash Entertainment   0.54
## 278       Wii                    Brash Entertainment   0.13
## 279      X360                    Brash Entertainment   0.11
## 280        DS                               Broccoli   0.04
## 281       PS2                               Broccoli   0.12
## 282       PSP                               Broccoli   0.74
## 283       PSV                               Broccoli   0.06
## 284       PSP                              BushiRoad   0.03
## 285       3DS                                 Capcom  10.68
## 286        DC                                 Capcom   0.27
## 287        DS                                 Capcom   9.45
## 288        GB                                 Capcom   1.57
## 289       GBA                                 Capcom   6.65
## 290        GC                                 Capcom   6.77
## 291       GEN                                 Capcom   0.22
## 292       N64                                 Capcom   0.22
## 293       NES                                 Capcom  14.89
## 294        PC                                 Capcom   0.82
## 295        PS                                 Capcom   9.88
## 296       PS2                                 Capcom  34.64
## 297       PS3                                 Capcom  30.38
## 298       PS4                                 Capcom   2.60
## 299       PSP                                 Capcom  18.01
## 300       PSV                                 Capcom   0.70
## 301       SAT                                 Capcom   1.29
## 302      SNES                                 Capcom  18.88
## 303       Wii                                 Capcom   8.59
## 304      WiiU                                 Capcom   0.26
## 305      X360                                 Capcom  22.40
## 306        XB                                 Capcom   1.37
## 307      XOne                                 Capcom   0.35
## 308        DS                                   Cave   0.10
## 309      X360                                   Cave   0.23
## 310      2600                        CBS Electronics   0.31
## 311        PC                                    CCP   0.22
## 312        DS             CDV Software Entertainment   0.07
## 313        PC             CDV Software Entertainment   0.03
## 314       Wii             CDV Software Entertainment   0.10
## 315       3DS                               ChunSoft   0.03
## 316        DS                               ChunSoft   0.51
## 317        GB                               ChunSoft   0.27
## 318       N64                               ChunSoft   0.37
## 319        PS                               ChunSoft   0.17
## 320       PS2                               ChunSoft   0.36
## 321       PSP                               ChunSoft   0.03
## 322       PSV                               ChunSoft   0.08
## 323       SAT                               ChunSoft   0.09
## 324      SNES                               ChunSoft   2.15
## 325      X360                               ChunSoft   0.01
## 326        DS                       City Interactive   0.91
## 327        PC                       City Interactive   0.73
## 328       PS3                       City Interactive   1.22
## 329       Wii                       City Interactive   0.37
## 330      X360                       City Interactive   1.38
## 331       PS3       Cloud Imperium Games Corporation   0.04
## 332      X360       Cloud Imperium Games Corporation   0.04
## 333        PS                         Coconuts Japan   0.02
## 334      SNES                         Coconuts Japan   0.05
## 335       3DS                            Codemasters   0.16
## 336        DS                            Codemasters   0.67
## 337       GBA                            Codemasters   0.24
## 338        GC                            Codemasters   0.05
## 339       N64                            Codemasters   0.14
## 340        PC                            Codemasters   1.29
## 341        PS                            Codemasters   9.45
## 342       PS2                            Codemasters   6.09
## 343       PS3                            Codemasters  13.43
## 344       PS4                            Codemasters   1.25
## 345       PSP                            Codemasters   0.89
## 346       PSV                            Codemasters   0.15
## 347       Wii                            Codemasters   2.01
## 348      X360                            Codemasters  10.64
## 349        XB                            Codemasters   0.97
## 350      XOne                            Codemasters   0.44
## 351        PC                     Codemasters Online   0.02
## 352        DS                      CokeM Interactive   0.31
## 353      2600                                 Coleco   3.06
## 354       PS2                                Comfort   0.03
## 355       PSP                                Comfort   0.12
## 356        DS                               Commseed   0.01
## 357       N64                                Compile   0.19
## 358        PS                                Compile   1.15
## 359       SAT                                Compile   0.63
## 360      SNES                                Compile   0.49
## 361       PS3                          Compile Heart   0.48
## 362       PS4                          Compile Heart   0.02
## 363       PSP                          Compile Heart   0.06
## 364       PSV                          Compile Heart   0.50
## 365      X360                          Compile Heart   0.31
## 366        DS               Conspiracy Entertainment   0.14
## 367       GBA               Conspiracy Entertainment   0.05
## 368        PS               Conspiracy Entertainment   0.27
## 369       PS2               Conspiracy Entertainment   0.08
## 370       PS3               Conspiracy Entertainment   0.05
## 371       PSP               Conspiracy Entertainment   0.04
## 372       Wii               Conspiracy Entertainment   0.16
## 373      X360               Conspiracy Entertainment   0.05
## 374        PS                       Core Design Ltd.   0.29
## 375      2600                           CPG Products   0.54
## 376       3DS                    Crave Entertainment   0.39
## 377        DS                    Crave Entertainment   0.39
## 378       GBA                    Crave Entertainment   0.62
## 379        GC                    Crave Entertainment   0.19
## 380       N64                    Crave Entertainment   0.65
## 381        PS                    Crave Entertainment   1.53
## 382       PS2                    Crave Entertainment   2.27
## 383       PS3                    Crave Entertainment   0.37
## 384       PSP                    Crave Entertainment   0.69
## 385       Wii                    Crave Entertainment   1.35
## 386      X360                    Crave Entertainment   0.38
## 387        XB                    Crave Entertainment   1.10
## 388        DS                          Creative Core   0.10
## 389        PC                            Crimson Cow   0.08
## 390        PS                       Crystal Dynamics   1.71
## 391        PS                                CTO SpA   0.90
## 392        DS                          Culture Brain   0.04
## 393      SNES                          Culture Brain   0.23
## 394        PS                     Culture Publishers   0.09
## 395       PS2                             CyberFront   0.06
## 396       PSP                             CyberFront   0.13
## 397       PSV                             CyberFront   0.04
## 398      X360                             CyberFront   0.04
## 399       PSV                                Cygames   0.03
## 400       3DS                            D3Publisher   0.46
## 401        DS                            D3Publisher   6.93
## 402       GBA                            D3Publisher   0.08
## 403        GC                            D3Publisher   0.16
## 404        PS                            D3Publisher   1.75
## 405       PS2                            D3Publisher   2.83
## 406       PS3                            D3Publisher   1.72
## 407       PS4                            D3Publisher   0.12
## 408       PSP                            D3Publisher   2.64
## 409       PSV                            D3Publisher   0.35
## 410       Wii                            D3Publisher   4.97
## 411      WiiU                            D3Publisher   0.09
## 412      X360                            D3Publisher   2.03
## 413        PC                               Daedalic   0.28
## 414        PC                 Daedalic Entertainment   0.14
## 415       PS2                                  Daito   0.14
## 416       PSP                                  Daito   0.09
## 417      2600                               Data Age   0.71
## 418       Wii                Data Design Interactive   0.29
## 419       SAT                              Data East   0.11
## 420      SNES                              Data East   0.04
## 421       PS2                         Datam Polystar   0.03
## 422       3DS                            Deep Silver   0.27
## 423        DS                            Deep Silver   1.77
## 424        PC                            Deep Silver   2.05
## 425       PS3                            Deep Silver   7.67
## 426       PS4                            Deep Silver   1.86
## 427       PSP                            Deep Silver   0.22
## 428       Wii                            Deep Silver   2.71
## 429      WiiU                            Deep Silver   0.02
## 430      X360                            Deep Silver   7.88
## 431        XB                            Deep Silver   0.49
## 432      XOne                            Deep Silver   0.73
## 433        DS              Destination Software, Inc   0.55
## 434       GBA              Destination Software, Inc   0.33
## 435        DS                              Destineer   1.90
## 436        PC                              Destineer   0.01
## 437       PS2                              Destineer   0.03
## 438       PSP                              Destineer   0.08
## 439       Wii                              Destineer   2.34
## 440       Wii                            Detn8 Games   0.23
## 441        PC                       Devolver Digital   0.02
## 442       PS4                       Devolver Digital   0.02
## 443        DS                        DHM Interactive   0.12
## 444       PSP                        DHM Interactive   0.06
## 445       PS2                               DigiCube   0.06
## 446       3DS             Disney Interactive Studios   2.38
## 447        DS             Disney Interactive Studios  37.40
## 448       GBA             Disney Interactive Studios   7.33
## 449        GC             Disney Interactive Studios   0.59
## 450        PC             Disney Interactive Studios   2.08
## 451       PS2             Disney Interactive Studios   7.34
## 452       PS3             Disney Interactive Studios  11.55
## 453       PS4             Disney Interactive Studios   1.28
## 454       PSP             Disney Interactive Studios   2.64
## 455       PSV             Disney Interactive Studios   0.21
## 456       Wii             Disney Interactive Studios  31.74
## 457      WiiU             Disney Interactive Studios   2.17
## 458      X360             Disney Interactive Studios  11.88
## 459        XB             Disney Interactive Studios   0.49
## 460      XOne             Disney Interactive Studios   0.88
## 461       PSP                                 Dorart   0.03
## 462       PSV                        dramatic create   0.11
## 463        DS               DreamCatcher Interactive   0.65
## 464        PC               DreamCatcher Interactive   0.07
## 465       PS2               DreamCatcher Interactive   0.14
## 466        XB               DreamCatcher Interactive   0.09
## 467        PS                 DreamWorks Interactive   0.13
## 468        DS                              DSI Games   0.18
## 469       GBA                              DSI Games   0.17
## 470       3DS                      DTP Entertainment   0.09
## 471        DS                      DTP Entertainment   0.65
## 472       GBA                      DTP Entertainment   0.23
## 473        PC                      DTP Entertainment   0.59
## 474       PS2                      DTP Entertainment   0.18
## 475       PS3                      DTP Entertainment   0.37
## 476       Wii                      DTP Entertainment   0.68
## 477      X360                      DTP Entertainment   0.80
## 478       PS4               Dusenberry Martin Racing   0.03
## 479      XOne               Dusenberry Martin Racing   0.02
## 480       PS3                               EA Games   0.15
## 481        DS                       Easy Interactive   0.05
## 482       PS2                                  Ecole   0.06
## 483       PSP                                   Edia   0.09
## 484        DC                      Eidos Interactive   1.28
## 485        DS                      Eidos Interactive   2.75
## 486        GB                      Eidos Interactive   2.35
## 487       GBA                      Eidos Interactive   1.17
## 488        GC                      Eidos Interactive   2.33
## 489        PC                      Eidos Interactive   8.51
## 490        PS                      Eidos Interactive  35.05
## 491       PS2                      Eidos Interactive  19.36
## 492       PS3                      Eidos Interactive   8.05
## 493       PSP                      Eidos Interactive   1.48
## 494       Wii                      Eidos Interactive   2.89
## 495      X360                      Eidos Interactive   7.96
## 496        XB                      Eidos Interactive   5.80
## 497       3DS                        Electronic Arts   2.72
## 498        DS                        Electronic Arts  32.95
## 499        GB                        Electronic Arts   1.73
## 500       GBA                        Electronic Arts  14.31
## 501        GC                        Electronic Arts  27.96
## 502       N64                        Electronic Arts  13.35
## 503        PC                        Electronic Arts  71.44
## 504        PS                        Electronic Arts  90.46
## 505       PS2                        Electronic Arts 255.79
## 506       PS3                        Electronic Arts 168.71
## 507       PS4                        Electronic Arts  55.32
## 508       PSP                        Electronic Arts  39.02
## 509       PSV                        Electronic Arts   3.91
## 510       SAT                        Electronic Arts   0.08
## 511       Wii                        Electronic Arts  62.58
## 512      WiiU                        Electronic Arts   1.28
## 513      X360                        Electronic Arts 181.04
## 514        XB                        Electronic Arts  58.33
## 515      XOne                        Electronic Arts  29.34
## 516        PS                 Electronic Arts Victor   0.42
## 517       SAT                                    Elf   0.64
## 518        PS                                  Elite   0.07
## 519        DS                     Empire Interactive   1.09
## 520       GBA                     Empire Interactive   0.09
## 521        GC                     Empire Interactive   0.21
## 522        PC                     Empire Interactive   0.09
## 523        PS                     Empire Interactive   1.93
## 524       PS2                     Empire Interactive   6.03
## 525       PSP                     Empire Interactive   0.58
## 526      X360                     Empire Interactive   0.11
## 527        XB                     Empire Interactive   1.16
## 528        GC                                 Encore   0.01
## 529        PC                                 Encore   0.02
## 530        PS                                 Encore   0.03
## 531        XB                                 Encore   0.01
## 532        GB                       Enix Corporation   3.28
## 533       GBA                       Enix Corporation   0.66
## 534       N64                       Enix Corporation   0.16
## 535       NES                       Enix Corporation   9.55
## 536        PS                       Enix Corporation   7.72
## 537       PS2                       Enix Corporation   2.76
## 538      SNES                       Enix Corporation   9.61
## 539        DS                      Enjoy Gaming ltd.   0.10
## 540        DS                             Enterbrain   0.50
## 541       GBA                             Enterbrain   0.13
## 542        PS                             Enterbrain   0.39
## 543       PS2                             Enterbrain   1.11
## 544       PSP                             Enterbrain   0.10
## 545        PS              EON Digital Entertainment   0.01
## 546       PS4                             Epic Games   0.01
## 547       N64                                  Epoch   0.15
## 548      SNES                                  Epoch   0.90
## 549        DS                                 Ertain   0.05
## 550       GBA                                    ESP   0.03
## 551        PS                                    ESP   0.05
## 552       SAT                                    ESP   0.51
## 553       PS2                        Essential Games   0.23
## 554        PS                        Evolution Games   0.07
## 555        PC                          Evolved Games   0.01
## 556       PS2                          Evolved Games   0.07
## 557       PS3                          Evolved Games   0.06
## 558      X360                          Evolved Games   0.16
## 559        XB                          Evolved Games   0.02
## 560       3DS                   Excalibur Publishing   0.14
## 561        PC                   Excalibur Publishing   0.14
## 562       PSV                        Experience Inc.   0.06
## 563       3DS            Extreme Entertainment Group   0.03
## 564       PS3                     Falcom Corporation   0.07
## 565       PSP                     Falcom Corporation   1.07
## 566       PSV                     Falcom Corporation   0.07
## 567       PS3                                 Fields   0.03
## 568       GBA                       Flashpoint Games   0.04
## 569       Wii                       Flashpoint Games   0.04
## 570       PS2                            Flight-Plan   0.12
## 571        DS                 Focus Home Interactive   0.79
## 572        PC                 Focus Home Interactive   3.37
## 573       PS3                 Focus Home Interactive   0.77
## 574       PS4                 Focus Home Interactive   0.86
## 575       PSV                 Focus Home Interactive   0.02
## 576       Wii                 Focus Home Interactive   0.28
## 577      X360                 Focus Home Interactive   1.25
## 578      XOne                 Focus Home Interactive   0.17
## 579        PC                       Focus Multimedia   0.05
## 580       PSP                                 fonfun   0.02
## 581        DS                    Foreign Media Games   0.63
## 582        DC                              Fortyfive   0.06
## 583       N64                        Fox Interactive   0.25
## 584        PS                        Fox Interactive   7.14
## 585        DS                          From Software   0.05
## 586        PS                          From Software   1.10
## 587       PS2                          From Software   0.09
## 588       PS3                          From Software   0.12
## 589       PSP                          From Software   0.16
## 590        XB                          From Software   0.11
## 591        PS                                   Fuji   0.03
## 592       3DS                           Funbox Media   0.12
## 593       PS3                           Funbox Media   0.06
## 594       PSV                           Funbox Media   0.01
## 595       Wii                           Funbox Media   0.72
## 596        PC                                 Funcom   0.20
## 597        PS                                FunSoft   0.12
## 598        DS                                 Funsta   0.14
## 599       PSP                                 Funsta   0.02
## 600       Wii                                 Funsta   0.04
## 601       3DS                                  FuRyu   0.93
## 602        DS                                  FuRyu   0.01
## 603       PSP                                  FuRyu   0.16
## 604       PSV                                  FuRyu   0.22
## 605       PS4                      FuRyu Corporation   0.03
## 606      X360                                  G.Rev   0.04
## 607       SAT                                   Gaga   0.02
## 608        PS                 Gainax Network Systems   0.16
## 609        DS                                 Gakken   0.04
## 610       GEN                              Game Arts   0.14
## 611        DS                           Game Factory   2.45
## 612       GBA                           Game Factory   0.35
## 613       PS2                           Game Factory   0.08
## 614       PSP                           Game Factory   0.06
## 615       Wii                           Game Factory   0.85
## 616        DS                              Game Life   0.30
## 617       PS3                             Gamebridge   0.52
## 618      X360                             Gamebridge   0.21
## 619        DS                               Gamecock   0.07
## 620        PC                               Gamecock   0.02
## 621       PS3                               Gamecock   0.05
## 622      X360                               Gamecock   0.06
## 623        DS                               Gameloft   0.11
## 624        DS                 GameMill Entertainment   0.57
## 625       Wii                 GameMill Entertainment   0.64
## 626      X360                 GameMill Entertainment   0.17
## 627       N64                                GameTek   0.10
## 628        PC                Gathering of Developers   0.17
## 629       PS2                Gathering of Developers   0.63
## 630        XB                Gathering of Developers   0.39
## 631        PS                  General Entertainment   0.14
## 632       3DS                                  Genki   0.05
## 633        DC                                  Genki   0.17
## 634        DS                                  Genki   0.04
## 635       PS2                                  Genki   1.09
## 636       PS3                                  Genki   0.03
## 637       PSP                                  Genki   0.02
## 638        XB                                  Genki   0.06
## 639        DS                            Genterprise   0.01
## 640       3DS                             Ghostlight   0.38
## 641        DS                             Ghostlight   0.55
## 642       PS2                             Ghostlight   0.73
## 643       PS3                             Ghostlight   0.19
## 644       PSP                             Ghostlight   0.84
## 645       Wii                             Ghostlight   0.10
## 646       PSV                                   Giga   0.02
## 647       PSP                                 Giza10   0.02
## 648       SAT                                  Glams   0.08
## 649        DS                 Global A Entertainment   0.05
## 650       PSP                 Global A Entertainment   0.10
## 651       GBA                            Global Star   0.40
## 652        GC                            Global Star   0.59
## 653       PS2                            Global Star   4.36
## 654        XB                            Global Star   2.30
## 655       PS2                            GN Software   0.04
## 656       PSP                            GN Software   0.01
## 657        PC                                    GOA   0.02
## 658       GBA                           Gotham Games   0.61
## 659        GC                           Gotham Games   0.05
## 660        PS                           Gotham Games   0.42
## 661       PS2                           Gotham Games   2.43
## 662        XB                           Gotham Games   0.21
## 663        DS                               Graffiti   0.13
## 664       PSP                               Graffiti   0.05
## 665       Wii                               Graffiti   0.20
## 666       PSP                       Grand Prix Games   0.06
## 667        PC                 Graphsim Entertainment   0.02
## 668       N64                Gremlin Interactive Ltd   0.20
## 669        PS                Gremlin Interactive Ltd   0.90
## 670      X360                  Griffin International   0.09
## 671        XB                           Groove Games   0.09
## 672        DS                                    GSP   3.45
## 673        PC                                    GSP   0.03
## 674       Wii                                    GSP   0.21
## 675       N64                         GT Interactive   6.00
## 676        PS                         GT Interactive  19.23
## 677       3DS                                 GungHo   1.71
## 678        DS                                 GungHo   0.42
## 679       PS3                                 GungHo   0.04
## 680       PSP                                 GungHo   0.40
## 681       PSV                                 GungHo   0.58
## 682        DS                                   Gust   0.16
## 683        PS                                   Gust   0.26
## 684       PS2                                   Gust   0.36
## 685       PSP                                   Gust   0.07
## 686       PSV                                   Gust   0.25
## 687       PS2                              Hackberry   0.31
## 688       NES                         HAL Laboratory   0.06
## 689        PS                    Hamster Corporation   0.28
## 690       PS2                    Hamster Corporation   0.02
## 691       3DS                               Happinet   0.18
## 692       PS4                 Harmonix Music Systems   0.37
## 693      XOne                 Harmonix Music Systems   0.43
## 694       GBA                     Hasbro Interactive   0.02
## 695       N64                     Hasbro Interactive   1.12
## 696        PC                     Hasbro Interactive   2.39
## 697        PS                     Hasbro Interactive  11.69
## 698        PC                      Havas Interactive   0.13
## 699        PC                           Headup Games   0.03
## 700        PS                           Hearty Robin   0.09
## 701        PS                                   Hect   0.04
## 702      SNES                                   Hect   0.46
## 703       PS4                            Hello Games   1.60
## 704        PC                        Her Interactive   0.03
## 705       GBA                        Hip Interactive   0.19
## 706       PS2                        Hip Interactive   0.04
## 707        XB                        Hip Interactive   0.13
## 708        DS                        HMH Interactive   0.03
## 709        PC                        HMH Interactive   0.11
## 710        PC           Home Entertainment Suppliers   0.05
## 711       PS3           Home Entertainment Suppliers   0.29
## 712      X360           Home Entertainment Suppliers   0.37
## 713        DS                   Hudson Entertainment   0.02
## 714       GBA                   Hudson Entertainment   0.19
## 715       N64                   Hudson Entertainment   0.06
## 716        PS                   Hudson Entertainment   1.26
## 717       PSP                   Hudson Entertainment   0.06
## 718       Wii                   Hudson Entertainment   0.10
## 719       3DS                            Hudson Soft   0.20
## 720        DS                            Hudson Soft   1.60
## 721       GBA                            Hudson Soft   0.11
## 722        GC                            Hudson Soft   0.16
## 723       N64                            Hudson Soft   1.26
## 724       NES                            Hudson Soft   7.23
## 725        NG                            Hudson Soft   0.03
## 726        PS                            Hudson Soft   0.19
## 727       PS2                            Hudson Soft   1.90
## 728       PS3                            Hudson Soft   0.03
## 729       PSP                            Hudson Soft   0.11
## 730       SAT                            Hudson Soft   0.47
## 731      SNES                            Hudson Soft   7.03
## 732      TG16                            Hudson Soft   0.02
## 733       Wii                            Hudson Soft   2.30
## 734      X360                            Hudson Soft   0.33
## 735        XB                            Hudson Soft   0.04
## 736        PS                    Human Entertainment   1.48
## 737       SAT                    Human Entertainment   0.12
## 738      SNES                    Human Entertainment   1.40
## 739       PSV                                  HuneX   0.03
## 740        PC                    Iceberg Interactive   0.08
## 741        PC                            id Software   0.03
## 742        DS                           Idea Factory   0.20
## 743       PS2                           Idea Factory   0.46
## 744       PS3                           Idea Factory   0.06
## 745       PS4                           Idea Factory   0.02
## 746       PSP                           Idea Factory   2.10
## 747       PSV                           Idea Factory   1.07
## 748      X360                           Idea Factory   0.11
## 749       PS4             Idea Factory International   0.11
## 750       PSV             Idea Factory International   0.50
## 751       3DS                           IE Institute   0.02
## 752        DS                           IE Institute   0.94
## 753        DS                 Ignition Entertainment   1.49
## 754       GBA                 Ignition Entertainment   0.28
## 755        GC                 Ignition Entertainment   0.08
## 756       PS2                 Ignition Entertainment   2.27
## 757       PS3                 Ignition Entertainment   0.51
## 758       PSP                 Ignition Entertainment   1.10
## 759       Wii                 Ignition Entertainment   0.60
## 760      X360                 Ignition Entertainment   0.27
## 761        XB                 Ignition Entertainment   0.22
## 762       PS2                     Illusion Softworks   0.70
## 763       SAT                                 Imadio   0.14
## 764       PSP                            Image Epoch   0.10
## 765       3DS                        imageepoch Inc.   0.04
## 766       3DO                             Imageworks   0.02
## 767      2600                                 Imagic   4.82
## 768        GB                              Imagineer   1.33
## 769       N64                              Imagineer   0.53
## 770        PS                              Imagineer   0.01
## 771       SAT                              Imagineer   0.40
## 772      SNES                              Imagineer   0.38
## 773      SNES                                   Imax   0.06
## 774       PS2                            Indie Games   0.32
## 775        DC                             Infogrames   0.06
## 776       GBA                             Infogrames   3.87
## 777        GC                             Infogrames   3.25
## 778       N64                             Infogrames   0.46
## 779        PC                             Infogrames   0.02
## 780        PS                             Infogrames   4.93
## 781       PS2                             Infogrames   2.75
## 782        XB                             Infogrames   1.00
## 783        PC                        Insomniac Games   0.02
## 784       PS4                        Insomniac Games   0.06
## 785      XOne                        Insomniac Games   0.04
## 786       PS2                           Interchannel   0.10
## 787       PS2                     Interchannel-Holon   0.01
## 788       3DS                              Intergrow   0.03
## 789       GBA                              Interplay   0.57
## 790       N64                              Interplay   0.43
## 791        PC                              Interplay   0.07
## 792        PS                              Interplay   3.65
## 793       PS2                              Interplay   1.38
## 794      SNES                              Interplay   0.01
## 795        XB                              Interplay   0.55
## 796        PS                  Interplay Productions   0.10
## 797       PS3             Interworks Unlimited, Inc.   0.01
## 798       3DS                           Inti Creates   0.01
## 799       PS4                  Introversion Software   0.02
## 800        PC                   inXile Entertainment   0.10
## 801       3DS              Irem Software Engineering   0.04
## 802        PS              Irem Software Engineering   0.03
## 803       PS2              Irem Software Engineering   0.11
## 804       PS3              Irem Software Engineering   0.02
## 805       PSP              Irem Software Engineering   0.26
## 806      2600                       ITT Family Games   0.34
## 807       PSP                              Ivolgamus   0.04
## 808        DS                                   iWin   0.06
## 809        DS                      Jack of All Games   0.04
## 810       GBA                      Jack of All Games   0.38
## 811        DS                                 Jaleco   0.28
## 812       GBA                                 Jaleco   0.01
## 813        GC                                 Jaleco   0.07
## 814        PS                                 Jaleco   1.00
## 815       PS2                                 Jaleco   0.23
## 816       SAT                                 Jaleco   0.10
## 817       Wii                                 Jaleco   0.03
## 818        XB                                 Jaleco   0.22
## 819       PS2                     Jester Interactive   1.15
## 820        GB                                Jorudan   0.30
## 821       GBA                                Jorudan   0.65
## 822        DS                     JoWood Productions   0.32
## 823        GC                     JoWood Productions   0.04
## 824        PC                     JoWood Productions   0.43
## 825       PS2                     JoWood Productions   0.07
## 826       Wii                     JoWood Productions   0.50
## 827      X360                     JoWood Productions   0.10
## 828        XB                     JoWood Productions   0.03
## 829        PC                            Just Flight   0.03
## 830        PS                                    JVC   2.68
## 831       SAT                                    JVC   0.12
## 832       3DS                         Kadokawa Games   0.01
## 833       PS3                         Kadokawa Games   0.02
## 834       PSP                         Kadokawa Games   0.06
## 835       PSV                         Kadokawa Games   0.49
## 836       3DS                        Kadokawa Shoten   0.20
## 837        DS                        Kadokawa Shoten   0.14
## 838        PS                        Kadokawa Shoten   0.98
## 839       PS2                        Kadokawa Shoten   0.50
## 840       PSP                        Kadokawa Shoten   1.02
## 841       PSV                        Kadokawa Shoten   0.20
## 842       SAT                        Kadokawa Shoten   0.64
## 843       Wii                        Kadokawa Shoten   0.09
## 844       PS3                            Kaga Create   0.01
## 845       PSP                            Kaga Create   0.01
## 846       PSV                            Kaga Create   0.12
## 847        PC                          Kalypso Media   0.98
## 848       PS3                          Kalypso Media   0.07
## 849       PS4                          Kalypso Media   0.37
## 850      X360                          Kalypso Media   1.03
## 851        DS                                  Kamui   0.03
## 852       PS2                            Kando Games   0.03
## 853       PSP                    Karin Entertainment   0.02
## 854       GBA                                  Kemco   0.10
## 855        GC                                  Kemco   0.24
## 856       N64                                  Kemco   1.16
## 857        PS                                  Kemco   0.14
## 858       PS2                                  Kemco   0.26
## 859      SNES                                  Kemco   0.05
## 860        XB                                  Kemco   0.27
## 861       PS2                                    KID   0.05
## 862       SAT                                    KID   0.03
## 863        DS                           Kids Station   0.03
## 864       GBA                           King Records   0.02
## 865       GBA                    Knowledge Adventure   0.61
## 866       Wii                    Knowledge Adventure   0.86
## 867       3DS                             Koch Media   0.04
## 868        DS                             Koch Media   0.95
## 869        PC                             Koch Media   0.13
## 870       PS2                             Koch Media   0.57
## 871       PS3                             Koch Media   0.55
## 872       PS4                             Koch Media   0.35
## 873       PSP                             Koch Media   0.59
## 874       Wii                             Koch Media   0.88
## 875      X360                             Koch Media   0.45
## 876      XOne                             Koch Media   0.20
## 877        PS               Kokopeli Digital Studios   0.03
## 878       3DO           Konami Digital Entertainment   0.06
## 879       3DS           Konami Digital Entertainment   2.31
## 880        DC           Konami Digital Entertainment   0.06
## 881        DS           Konami Digital Entertainment  13.52
## 882        GB           Konami Digital Entertainment   6.48
## 883       GBA           Konami Digital Entertainment  19.20
## 884        GC           Konami Digital Entertainment   3.07
## 885       GEN           Konami Digital Entertainment   0.04
## 886       N64           Konami Digital Entertainment   7.05
## 887       NES           Konami Digital Entertainment  10.46
## 888        PC           Konami Digital Entertainment   0.63
## 889        PS           Konami Digital Entertainment  33.12
## 890       PS2           Konami Digital Entertainment  82.02
## 891       PS3           Konami Digital Entertainment  33.57
## 892       PS4           Konami Digital Entertainment   6.93
## 893       PSP           Konami Digital Entertainment  20.81
## 894       PSV           Konami Digital Entertainment   1.59
## 895       SAT           Konami Digital Entertainment   0.76
## 896      SNES           Konami Digital Entertainment   4.67
## 897       Wii           Konami Digital Entertainment  17.82
## 898      X360           Konami Digital Entertainment  13.47
## 899        XB           Konami Digital Entertainment   4.74
## 900      XOne           Konami Digital Entertainment   1.26
## 901        XB                              Kool Kizz   0.04
## 902      SNES                                    KSS   0.03
## 903      SNES                                 Laguna   1.55
## 904        DS                     Legacy Interactive   0.04
## 905       GBA                             LEGO Media   0.20
## 906       N64                             LEGO Media   0.71
## 907        PC                             LEGO Media   0.01
## 908        PS                             LEGO Media   0.64
## 909       3DS                                Level 5   8.66
## 910        DS                                Level 5   2.29
## 911       PSP                                Level 5   0.81
## 912       PSV                                Level 5   0.09
## 913       Wii                                Level 5   0.29
## 914      WiiU                                Level 5   0.03
## 915        DS                  Lexicon Entertainment   0.05
## 916       3DS                            Licensed 4U   0.02
## 917        DS                            Licensed 4U   0.05
## 918        PC                 Lighthouse Interactive   0.02
## 919       GBA                           Liquid Games   0.27
## 920       3DS                           Little Orbit   0.50
## 921        DS                           Little Orbit   0.06
## 922       PS3                           Little Orbit   0.32
## 923       PS4                           Little Orbit   0.09
## 924       Wii                           Little Orbit   0.39
## 925      WiiU                           Little Orbit   0.17
## 926      X360                           Little Orbit   0.46
## 927      XOne                           Little Orbit   0.05
## 928        PS                                  Locus   0.07
## 929       GBA                              LSP Games   0.07
## 930       PS2                              LSP Games   0.05
## 931       3DS                              LucasArts   1.13
## 932        DS                              LucasArts  10.05
## 933       GBA                              LucasArts   0.09
## 934        GC                              LucasArts   3.93
## 935       N64                              LucasArts   0.26
## 936        PC                              LucasArts   3.31
## 937        PS                              LucasArts   4.18
## 938       PS2                              LucasArts  20.05
## 939       PS3                              LucasArts   8.04
## 940       PSP                              LucasArts   8.28
## 941       Wii                              LucasArts  15.79
## 942      X360                              LucasArts   9.95
## 943        XB                              LucasArts   2.28
## 944        GC                               Mad Catz   0.20
## 945      X360                               Mad Catz   0.07
## 946        XB                               Mad Catz   0.03
## 947        PS                        Magical Company   0.41
## 948       PS2                                  Magix   0.35
## 949       3DS                  Majesco Entertainment   0.47
## 950        DS                  Majesco Entertainment   4.03
## 951       GBA                  Majesco Entertainment   4.42
## 952       PS2                  Majesco Entertainment   0.09
## 953       PS3                  Majesco Entertainment   0.04
## 954       PSP                  Majesco Entertainment   0.19
## 955       Wii                  Majesco Entertainment   6.13
## 956      X360                  Majesco Entertainment   0.43
## 957        XB                  Majesco Entertainment   0.05
## 958      XOne                  Majesco Entertainment   0.23
## 959        PC                            Mamba Games   0.05
## 960       PSV                   Marvel Entertainment   0.05
## 961       3DS                Marvelous Entertainment   1.47
## 962       PSP                Marvelous Entertainment   0.13
## 963       PSV                Marvelous Entertainment   0.73
## 964       PSV                        Marvelous Games   0.02
## 965       3DS                  Marvelous Interactive   0.54
## 966        DS                  Marvelous Interactive   0.78
## 967       GBA                  Marvelous Interactive   0.14
## 968        GC                  Marvelous Interactive   0.24
## 969       PS2                  Marvelous Interactive   0.20
## 970       PS3                  Marvelous Interactive   0.31
## 971       PS4                  Marvelous Interactive   0.21
## 972       PSP                  Marvelous Interactive   0.80
## 973       PSV                  Marvelous Interactive   0.49
## 974       Wii                  Marvelous Interactive   0.44
## 975      X360                  Marvelous Interactive   0.02
## 976        PC                      Masque Publishing   0.02
## 977        DS                           Mastertronic   1.42
## 978        PC                           Mastertronic   0.20
## 979       PS2                           Mastertronic   0.02
## 980       Wii                           Mastertronic   0.01
## 981      X360                           Mastertronic   0.08
## 982       3DS                                Mastiff   0.04
## 983        DS                                Mastiff   0.49
## 984       GBA                                Mastiff   0.10
## 985        PC                                Mastiff   0.02
## 986       PS2                                Mastiff   0.06
## 987       Wii                                Mastiff   1.50
## 988        XB                                Mastiff   0.02
## 989      2600                     Mattel Interactive   2.92
## 990        PS                     Mattel Interactive   0.59
## 991        PS                               Max Five   0.05
## 992       3DS                   Maximum Family Games   0.03
## 993        PC                                  Maxis   2.17
## 994        PS                                  Maxis   1.22
## 995        PC                      MC2 Entertainment   0.04
## 996        XB                      MC2 Entertainment   0.04
## 997       PS2                    Media Entertainment   0.01
## 998        GB                          Media Factory   0.14
## 999       N64                          Media Factory   0.15
## 1000      GBA                            Media Rings   0.19
## 1001     SNES                            Media Rings   0.46
## 1002       PS                            Media Works   0.10
## 1003      PS2                            Media Works   0.05
## 1004      SAT                            Media Works   0.03
## 1005       PS                             MediaQuest   0.05
## 1006     2600                           Men-A-Vision   0.77
## 1007       DS                     Mentor Interactive   1.07
## 1008       DS                          Mercury Games   0.13
## 1009      PSP                          Mercury Games   0.08
## 1010       PC                            Merscom LLC   0.20
## 1011      PS2                               Metro 3D   1.65
## 1012      Wii                               Metro 3D   0.17
## 1013       XB                               Metro 3D   0.02
## 1014      PS2                            Michaelsoft   0.01
## 1015      3DO                            Micro Cabin   0.02
## 1016      SAT                            Micro Cabin   0.18
## 1017      GBA                               Microids   0.01
## 1018       PC                               Microids   0.07
## 1019      PS2                               Microids   0.07
## 1020      PS4                               Microids   0.02
## 1021       XB                               Microids   0.23
## 1022       PC                             Microprose   0.05
## 1023       PS                             Microprose   1.97
## 1024       PC                 Microsoft Game Studios   7.83
## 1025     WiiU                 Microsoft Game Studios   0.43
## 1026     X360                 Microsoft Game Studios 165.16
## 1027       XB                 Microsoft Game Studios  46.97
## 1028     XOne                 Microsoft Game Studios  25.40
## 1029       DS        Midas Interactive Entertainment   0.19
## 1030       PS        Midas Interactive Entertainment   0.56
## 1031      PS2        Midas Interactive Entertainment   1.83
## 1032      PSP        Midas Interactive Entertainment   0.06
## 1033      Wii        Midas Interactive Entertainment   0.08
## 1034       DS                           Midway Games   3.79
## 1035      GBA                           Midway Games   0.49
## 1036       GC                           Midway Games   3.46
## 1037      N64                           Midway Games   7.32
## 1038       PC                           Midway Games   0.08
## 1039       PS                           Midway Games   6.97
## 1040      PS2                           Midway Games  24.40
## 1041      PS3                           Midway Games   3.76
## 1042      PSP                           Midway Games   1.34
## 1043      Wii                           Midway Games   5.52
## 1044     X360                           Midway Games   4.82
## 1045       XB                           Midway Games   7.90
## 1046      Wii                              Milestone   0.08
## 1047      PS4                        Milestone S.r.l   0.04
## 1048     XOne                        Milestone S.r.l   0.01
## 1049       PC                       Milestone S.r.l.   0.04
## 1050      PS3                       Milestone S.r.l.   0.27
## 1051      PS4                       Milestone S.r.l.   0.65
## 1052      PSV                       Milestone S.r.l.   0.02
## 1053     X360                       Milestone S.r.l.   0.12
## 1054     XOne                       Milestone S.r.l.   0.18
## 1055      PS2                         Minato Station   0.02
## 1056      PS3                         Minato Station   0.02
## 1057      PSV                         Minato Station   0.01
## 1058       DS                              Mindscape   3.01
## 1059      N64                              Mindscape   0.02
## 1060       PS                              Mindscape   0.89
## 1061      PS2                              Mindscape   0.14
## 1062      Wii                              Mindscape   3.51
## 1063     X360                              Mindscape   0.12
## 1064       XB                              Mindscape   0.05
## 1065       DS                          Mirai Shounen   0.02
## 1066     SNES                                 Misawa   0.07
## 1067      N64                                 Mitsui   0.08
## 1068      3DS                              mixi, Inc   0.86
## 1069     XOne                                MLB.com   0.04
## 1070       PC                                 Mojang   0.08
## 1071      PS3                                 Mojang   0.69
## 1072      PS4                                 Mojang   0.67
## 1073     X360                                 Mojang   0.91
## 1074     XOne                                 Mojang   0.54
## 1075       PC               Monte Christo Multimedia   0.05
## 1076     X360                                   Moss   0.13
## 1077       DS                                    MTO   0.30
## 1078       PS                                    MTO   0.10
## 1079       DS                              MTV Games   0.10
## 1080      PS2                              MTV Games   1.63
## 1081      PS3                              MTV Games   4.49
## 1082      PSP                              MTV Games   0.48
## 1083      Wii                              MTV Games   7.57
## 1084     X360                              MTV Games   6.70
## 1085      PS2                   Mud Duck Productions   0.42
## 1086       XB                   Mud Duck Productions   0.43
## 1087       DS                            Mumbo Jumbo   0.29
## 1088       PC                            Mumbo Jumbo   0.02
## 1089      PSP                            Mumbo Jumbo   0.10
## 1090      Wii                            Mumbo Jumbo   0.17
## 1091       DS                                  Mycom   0.02
## 1092      PS2                           Myelin Media   0.07
## 1093      PSP                           Myelin Media   0.03
## 1094       XB                           Myelin Media   0.03
## 1095     2600                               Mystique   0.82
## 1096      3DS                                    N/A   0.03
## 1097       DS                                    N/A   0.30
## 1098      GBA                                    N/A   8.21
## 1099       PC                                    N/A   0.36
## 1100       PS                                    N/A   1.59
## 1101      PS2                                    N/A   3.21
## 1102      PS3                                    N/A   0.55
## 1103      PSP                                    N/A   0.18
## 1104      PSV                                    N/A   0.03
## 1105      Wii                                    N/A   0.35
## 1106     X360                                    N/A   0.07
## 1107      3DS                     Namco Bandai Games  11.37
## 1108       DC                     Namco Bandai Games   0.38
## 1109       DS                     Namco Bandai Games  16.06
## 1110       GB                     Namco Bandai Games   3.23
## 1111      GBA                     Namco Bandai Games   5.82
## 1112       GC                     Namco Bandai Games   4.74
## 1113      N64                     Namco Bandai Games   2.19
## 1114      NES                     Namco Bandai Games  16.95
## 1115       PC                     Namco Bandai Games   2.10
## 1116       PS                     Namco Bandai Games  18.88
## 1117      PS2                     Namco Bandai Games  49.66
## 1118      PS3                     Namco Bandai Games  40.60
## 1119      PS4                     Namco Bandai Games  11.11
## 1120      PSP                     Namco Bandai Games  18.15
## 1121      PSV                     Namco Bandai Games   6.10
## 1122      SAT                     Namco Bandai Games   1.63
## 1123     SNES                     Namco Bandai Games  10.81
## 1124      Wii                     Namco Bandai Games  13.48
## 1125     WiiU                     Namco Bandai Games   1.84
## 1126       WS                     Namco Bandai Games   0.66
## 1127     X360                     Namco Bandai Games  13.34
## 1128       XB                     Namco Bandai Games   2.53
## 1129     XOne                     Namco Bandai Games   2.46
## 1130      3DS                                Natsume   0.15
## 1131       DS                                Natsume   0.84
## 1132      GBA                                Natsume   0.30
## 1133      N64                                Natsume   0.10
## 1134       PS                                Natsume   1.52
## 1135      PS2                                Natsume   0.65
## 1136      PSP                                Natsume   0.05
## 1137      Wii                                Natsume   0.08
## 1138     X360                           Navarre Corp   0.05
## 1139      PS2                             Naxat Soft   0.01
## 1140      SAT                                    NCS   0.40
## 1141       PC                                 NCSoft   2.59
## 1142       GC                        NDA Productions   0.12
## 1143     PCFX                                    NEC   0.03
## 1144      SAT                                    NEC   0.26
## 1145     TG16                                    NEC   0.14
## 1146       DC                       NEC Interchannel   0.18
## 1147      SAT                       NEC Interchannel   0.60
## 1148       DS                     Neko Entertainment   0.08
## 1149      Wii                     Neko Entertainment   0.23
## 1150      PSP                                NetRevo   0.03
## 1151       PS                                    New   0.36
## 1152       PC                    New World Computing   0.01
## 1153      GBA                               NewKidCo   0.34
## 1154       GC                               NewKidCo   0.07
## 1155      N64                               NewKidCo   0.37
## 1156       PS                               NewKidCo   0.55
## 1157       DS                                  Nexon   0.03
## 1158     SNES                             Nichibutsu   0.28
## 1159      PS4               Nihon Falcom Corporation   0.02
## 1160      PSP               Nihon Falcom Corporation   0.14
## 1161      PSV               Nihon Falcom Corporation   0.61
## 1162      3DS                               Nintendo 156.45
## 1163       DS                               Nintendo 349.75
## 1164       GB                               Nintendo 230.09
## 1165      GBA                               Nintendo 112.00
## 1166       GC                               Nintendo  79.15
## 1167      N64                               Nintendo 129.95
## 1168      NES                               Nintendo 183.97
## 1169     SNES                               Nintendo  96.84
## 1170      Wii                               Nintendo 390.46
## 1171     WiiU                               Nintendo  57.90
## 1172      PS2                           Nippon Amuse   0.09
## 1173      3DS                        Nippon Columbia   0.95
## 1174      3DS                   Nippon Ichi Software   1.15
## 1175       DS                   Nippon Ichi Software   0.17
## 1176       PS                   Nippon Ichi Software   0.04
## 1177      PS2                   Nippon Ichi Software   0.31
## 1178      PS3                   Nippon Ichi Software   5.67
## 1179      PS4                   Nippon Ichi Software   0.99
## 1180      PSP                   Nippon Ichi Software   1.45
## 1181      PSV                   Nippon Ichi Software   4.25
## 1182      Wii                   Nippon Ichi Software   0.13
## 1183     WiiU                   Nippon Ichi Software   0.12
## 1184     SNES                         Nippon Telenet   0.26
## 1185      PS3                              Nitroplus   0.01
## 1186      PSV                              Nitroplus   0.01
## 1187       DS                                Nobilis   1.86
## 1188       PC                                Nobilis   0.01
## 1189      Wii                                Nobilis   0.07
## 1190       DS                            Nordcurrent   0.28
## 1191      Wii                            Nordcurrent   0.31
## 1192       DS                           Nordic Games   0.27
## 1193       PC                           Nordic Games   0.25
## 1194      PS3                           Nordic Games   0.07
## 1195      PS4                           Nordic Games   0.48
## 1196      Wii                           Nordic Games   3.12
## 1197     WiiU                           Nordic Games   0.07
## 1198     X360                           Nordic Games   0.10
## 1199     XOne                           Nordic Games   0.08
## 1200       PC                              NovaLogic   0.02
## 1201      PS2                              NovaLogic   0.46
## 1202       XB                              NovaLogic   0.34
## 1203       PC                            Number None   0.03
## 1204       DS                                O-Games   0.35
## 1205      PS3                                O-Games   0.26
## 1206      Wii                                O-Games   0.44
## 1207     X360                                O-Games   0.03
## 1208       DS                       O3 Entertainment   0.13
## 1209       GC                       O3 Entertainment   0.09
## 1210      N64                                  Ocean   1.76
## 1211      NES                                  Ocean   0.36
## 1212       PS                                  Ocean   1.21
## 1213     SNES                                  Ocean   0.28
## 1214      3DS                          Office Create   0.06
## 1215       PS                              On Demand   0.21
## 1216      PS3                              Ongakukan   0.01
## 1217       PS                         Origin Systems   0.09
## 1218      PSP                                Otomate   0.01
## 1219       DS                     Oxygen Interactive   0.62
## 1220      PS2                     Oxygen Interactive   2.02
## 1221      PSP                     Oxygen Interactive   0.25
## 1222      Wii                     Oxygen Interactive   0.52
## 1223     X360                     Oxygen Interactive   0.05
## 1224       DS                               P2 Games   0.38
## 1225      Wii                               P2 Games   0.02
## 1226      PS2            Pacific Century Cyber Works   0.26
## 1227     SNES                          Pack-In-Video   0.11
## 1228      N64                           Pack In Soft   0.48
## 1229      NES                                 Palcom   4.17
## 1230       PS                       Panther Software   0.17
## 1231       DS                                   Paon   0.10
## 1232      PS2                                   Paon   0.11
## 1233      PSP                                   Paon   0.04
## 1234      PS3                       Paon Corporation   0.03
## 1235       PC                    Paradox Development   0.01
## 1236       PC                    Paradox Interactive   0.76
## 1237     2600                           Parker Bros.   4.97
## 1238       DS          Performance Designed Products   0.17
## 1239      Wii          Performance Designed Products   0.19
## 1240       XB                             Phantagram   0.05
## 1241     X360                            Phantom EFX   0.09
## 1242       DS                             Phenomedia   0.19
## 1243       DS                          Phoenix Games   0.02
## 1244      PSP                                 Piacci   0.01
## 1245       DS                               Pinnacle   1.01
## 1246       PC                               Pinnacle   0.03
## 1247      Wii                               Pinnacle   0.38
## 1248       PS                            Pioneer LDC   0.74
## 1249      GBA                                Play It   0.03
## 1250      PS2                                Play It   4.05
## 1251      PSP                                Play It   0.23
## 1252       DS                 Playlogic Game Factory   0.21
## 1253       PC                 Playlogic Game Factory   0.02
## 1254      PS2                 Playlogic Game Factory   0.12
## 1255      PS3                 Playlogic Game Factory   0.17
## 1256      PSP                 Playlogic Game Factory   0.09
## 1257      Wii                 Playlogic Game Factory   0.34
## 1258     X360                 Playlogic Game Factory   0.25
## 1259       PS                              Playmates   0.28
## 1260      PS2                               Playmore   0.04
## 1261       DS                                  PlayV   0.44
## 1262       DS                                 Plenty   0.02
## 1263      PSP                             PM Studios   0.10
## 1264       PS                            Pony Canyon   0.05
## 1265       DS                           PopCap Games   0.80
## 1266       PC                           PopCap Games   0.23
## 1267      PS3                           PopCap Games   0.19
## 1268     X360                           PopCap Games   0.35
## 1269      Wii                         Popcorn Arcade   0.49
## 1270       PS                        PopTop Software   0.11
## 1271     SNES                                    Pow   0.05
## 1272      3DS                                  PQube   0.11
## 1273       DS                                  PQube   0.20
## 1274       PC                                  PQube   0.01
## 1275      PS2                                  PQube   0.06
## 1276      PS3                                  PQube   1.64
## 1277      PS4                                  PQube   0.28
## 1278      PSP                                  PQube   0.44
## 1279      PSV                                  PQube   0.60
## 1280      Wii                                  PQube   0.14
## 1281     X360                                  PQube   0.73
## 1282     XOne                                  PQube   0.06
## 1283      PS2                          Princess Soft   0.07
## 1284      PS2                              Prototype   0.14
## 1285      PS3                              Prototype   0.03
## 1286      PSP                              Prototype   0.29
## 1287      PSV                              Prototype   0.11
## 1288     X360                              Prototype   0.04
## 1289       PS                              Psygnosis   7.27
## 1290     2600                                 Quelle   0.87
## 1291     SNES                                  Quest   0.71
## 1292      PSP                               Quinrose   0.22
## 1293      SAT                                Quintet   0.02
## 1294      GBA                          Rage Software   0.04
## 1295       GC                          Rage Software   0.09
## 1296      PS2                          Rage Software   0.96
## 1297       XB                          Rage Software   0.33
## 1298      PSV                             Rain Games   0.01
## 1299      GBA                              Rebellion   0.49
## 1300      PS4                 Rebellion Developments   0.20
## 1301     XOne                 Rebellion Developments   0.10
## 1302      PS2                      RED Entertainment   0.02
## 1303       PC                                Red Orb   5.24
## 1304      N64                Red Storm Entertainment   0.64
## 1305       PS                Red Storm Entertainment   1.68
## 1306      PS2                              RedOctane   8.68
## 1307       DS                     Reef Entertainment   0.03
## 1308       PC                     Reef Entertainment   0.03
## 1309      PS3                     Reef Entertainment   0.03
## 1310      Wii                     Reef Entertainment   0.25
## 1311      PS2                           responDESIGN   0.04
## 1312       XB                           responDESIGN   0.09
## 1313      PS2                     Revolution (Japan)   0.02
## 1314      PS4                    Revolution Software   0.06
## 1315     XOne                    Revolution Software   0.01
## 1316      3DS                      Rising Star Games   0.62
## 1317       DS                      Rising Star Games   8.12
## 1318       PC                      Rising Star Games   0.04
## 1319      PS2                      Rising Star Games   0.40
## 1320      PS3                      Rising Star Games   0.46
## 1321      PS4                      Rising Star Games   0.02
## 1322      PSP                      Rising Star Games   1.17
## 1323      PSV                      Rising Star Games   0.03
## 1324      Wii                      Rising Star Games   5.44
## 1325     X360                      Rising Star Games   1.01
## 1326       PS                          Riverhillsoft   0.04
## 1327      3DS                         Rocket Company   0.40
## 1328       DS                         Rocket Company   1.35
## 1329      Wii                         Rocket Company   0.07
## 1330       DS                             Rondomedia   1.10
## 1331       PC                             Rondomedia   0.80
## 1332      Wii                             Rondomedia   0.68
## 1333       DS                                    RTL   0.14
## 1334      Wii                                    RTL   1.76
## 1335     X360                                    RTL   0.10
## 1336       DS                                 Russel   0.03
## 1337       PC                                 Russel   1.12
## 1338      PS2                                 Russel   0.03
## 1339      PSP                                 Russel   0.03
## 1340      GBA                      Sammy Corporation   0.06
## 1341      PS2                      Sammy Corporation   2.48
## 1342     SNES                      Sammy Corporation   0.19
## 1343       PS                                 Saurus   0.02
## 1344       DS                        Scholastic Inc.   2.18
## 1345      PS2                        Scholastic Inc.   0.07
## 1346      Wii                        Scholastic Inc.   0.66
## 1347       GC                                    SCi   0.13
## 1348       PC                                    SCi   0.04
## 1349      PS2                                    SCi   1.68
## 1350       XB                                    SCi   1.67
## 1351      3DS                             Screenlife   0.60
## 1352      PSV                             Screenlife   0.32
## 1353       PC                           SCS Software   0.13
## 1354     2600                                  Sears   0.21
## 1355     2600                                   Sega   0.40
## 1356      3DS                                   Sega   5.84
## 1357       DC                                   Sega  12.52
## 1358       DS                                   Sega  29.54
## 1359      GBA                                   Sega   5.31
## 1360       GC                                   Sega   9.53
## 1361      GEN                                   Sega  19.38
## 1362       GG                                   Sega   0.04
## 1363       PC                                   Sega  11.64
## 1364      PS2                                   Sega  30.87
## 1365      PS3                                   Sega  30.40
## 1366      PS4                                   Sega   1.87
## 1367      PSP                                   Sega  16.03
## 1368      PSV                                   Sega   2.62
## 1369      SAT                                   Sega  18.91
## 1370      SCD                                   Sega   1.87
## 1371      Wii                                   Sega  41.22
## 1372     WiiU                                   Sega   1.28
## 1373     X360                                   Sega  23.39
## 1374       XB                                   Sega   9.83
## 1375     XOne                                   Sega   0.50
## 1376      N64                       Seta Corporation   0.09
## 1377       PS                       Seta Corporation   0.28
## 1378      SAT                       Seta Corporation   0.26
## 1379      3DS                          Seventh Chord   0.08
## 1380      3DS                             Shogakukan   0.03
## 1381       DS                             Shogakukan   0.30
## 1382      SAT                             Shogakukan   0.11
## 1383       XB           Simon & Schuster Interactive   0.11
## 1384       PC                   Slightly Mad Studios   0.11
## 1385      PS4                   Slightly Mad Studios   1.04
## 1386     XOne                   Slightly Mad Studios   0.23
## 1387       DS                    Slitherine Software   0.01
## 1388      PS3                    Slitherine Software   0.05
## 1389      PSP                    Slitherine Software   0.02
## 1390     X360                    Slitherine Software   0.13
## 1391       DC                                    SNK   0.17
## 1392       NG                                    SNK   1.39
## 1393       PS                                    SNK   0.43
## 1394      PS2                                    SNK   0.07
## 1395      SAT                                    SNK   0.53
## 1396       DS                           SNK Playmore   0.11
## 1397       PS                           SNK Playmore   0.17
## 1398      PS2                           SNK Playmore   0.28
## 1399      PSP                           SNK Playmore   0.03
## 1400      SAT                           SNK Playmore   0.28
## 1401       XB                           SNK Playmore   0.09
## 1402      SAT                                Societa   0.04
## 1403      PS4                               Sold Out   0.02
## 1404      SAT                                 Sonnet   0.06
## 1405       PS            Sony Computer Entertainment 193.73
## 1406      PS2            Sony Computer Entertainment 172.80
## 1407      PS3            Sony Computer Entertainment 145.98
## 1408      PS4            Sony Computer Entertainment  30.71
## 1409      PSP            Sony Computer Entertainment  54.09
## 1410      PSV            Sony Computer Entertainment  10.19
## 1411      PS3    Sony Computer Entertainment America   0.39
## 1412      PS4    Sony Computer Entertainment America   0.65
## 1413      PSV    Sony Computer Entertainment America   0.14
## 1414      PS2     Sony Computer Entertainment Europe   4.88
## 1415      PS3     Sony Computer Entertainment Europe   7.21
## 1416      PS4     Sony Computer Entertainment Europe   7.52
## 1417      PSV     Sony Computer Entertainment Europe   4.28
## 1418      PS2               Sony Music Entertainment   0.14
## 1419       PC              Sony Online Entertainment   0.30
## 1420      PS2              Sony Online Entertainment   2.55
## 1421      PS3              Sony Online Entertainment   0.52
## 1422      PSP              Sony Online Entertainment   0.16
## 1423       DS                        SouthPeak Games   1.47
## 1424       PC                        SouthPeak Games   0.03
## 1425       PS                        SouthPeak Games   0.11
## 1426      PS2                        SouthPeak Games   1.30
## 1427      PS3                        SouthPeak Games   0.77
## 1428      PSP                        SouthPeak Games   0.62
## 1429      Wii                        SouthPeak Games   0.76
## 1430     X360                        SouthPeak Games   1.29
## 1431       DS                                  Spike   0.82
## 1432      GBA                                  Spike   0.13
## 1433      PS2                                  Spike   1.47
## 1434      PS3                                  Spike   0.70
## 1435      PSP                                  Spike   1.33
## 1436     X360                                  Spike   1.70
## 1437       PS                                    SPS   0.12
## 1438      NES                                 Square   0.11
## 1439       PS                                 Square   1.76
## 1440     SNES                                 Square   1.77
## 1441       PS                              Square EA   0.80
## 1442      3DS                            Square Enix   8.44
## 1443       DS                            Square Enix  23.23
## 1444      GBA                            Square Enix   2.22
## 1445       PC                            Square Enix   4.00
## 1446      PS2                            Square Enix  25.88
## 1447      PS3                            Square Enix  29.73
## 1448      PS4                            Square Enix  10.25
## 1449      PSP                            Square Enix  14.55
## 1450      PSV                            Square Enix   1.99
## 1451      Wii                            Square Enix   3.36
## 1452     WiiU                            Square Enix   0.53
## 1453     X360                            Square Enix  16.67
## 1454     XOne                            Square Enix   4.33
## 1455       GB                             SquareSoft   2.24
## 1456      GBA                             SquareSoft   2.13
## 1457      NES                             SquareSoft   3.00
## 1458       PS                             SquareSoft  32.19
## 1459      PS2                             SquareSoft   0.86
## 1460     SNES                             SquareSoft  16.47
## 1461       WS                             SquareSoft   0.76
## 1462       PS                                    SSI   0.19
## 1463     XOne                        Stainless Games   0.01
## 1464       DS                               Starfish   0.08
## 1465      GBA                               Starfish   0.05
## 1466       PS                               Starfish   0.47
## 1467      PSP                               Starfish   0.08
## 1468      Wii                               Starfish   0.04
## 1469     2600                         Starpath Corp.   0.33
## 1470       DS                                  Sting   0.15
## 1471      GBA                                  Sting   0.13
## 1472      PS2                                  Sting   0.11
## 1473      PSP                                  Sting   0.13
## 1474      Wii                                  Sting   0.13
## 1475       DS                       Storm City Games   1.09
## 1476      Wii                       Storm City Games   0.47
## 1477       PC                         Strategy First   0.03
## 1478      3DS                                Success   0.08
## 1479       DS                                Success   0.45
## 1480       PS                                Success   1.27
## 1481      PS2                                Success   0.08
## 1482      PSP                                Success   0.01
## 1483     X360                                Success   0.07
## 1484      GBA                             Summitsoft   0.04
## 1485       PC                             Sunflowers   0.03
## 1486      PS2                    Sunrise Interactive   0.17
## 1487      3DS                                Sunsoft   0.09
## 1488      N64                                Sunsoft   0.11
## 1489       PS                                Sunsoft   0.60
## 1490      SAT                                Sunsoft   0.10
## 1491     SNES                                Sunsoft   0.05
## 1492      PS2                                 Sweets   0.05
## 1493      GBA                   Swing! Entertainment   0.03
## 1494       PS                   Swing! Entertainment   0.05
## 1495      PS2                   Swing! Entertainment   0.26
## 1496       XB                   Swing! Entertainment   0.14
## 1497       PS                                 Syscom   0.27
## 1498      PS3                               System 3   0.01
## 1499      PS4                               System 3   0.16
## 1500      PSV                               System 3   0.05
## 1501       DS               System 3 Arcade Software   0.21
## 1502      PS2               System 3 Arcade Software   0.12
## 1503      PS3               System 3 Arcade Software   0.08
## 1504      PSP               System 3 Arcade Software   0.17
## 1505      Wii               System 3 Arcade Software   1.22
## 1506      PSP                            System Soft   0.05
## 1507     SNES                               T&E Soft   0.12
## 1508     2600                                  Taito   0.24
## 1509       DS                                  Taito   0.06
## 1510      GBA                                  Taito   0.05
## 1511       GC                                  Taito   0.01
## 1512      N64                                  Taito   0.12
## 1513       PS                                  Taito   1.50
## 1514      PS2                                  Taito   0.27
## 1515      SAT                                  Taito   0.03
## 1516     SNES                                  Taito   0.49
## 1517      Wii                                  Taito   0.07
## 1518      GBA                                 Takara   0.22
## 1519      N64                                 Takara   0.05
## 1520       PS                                 Takara   1.21
## 1521      PS2                                 Takara   0.12
## 1522     SNES                                 Takara   1.85
## 1523      3DS                            Takara Tomy   0.27
## 1524       DS                            Takara Tomy   1.72
## 1525      PSP                            Takara Tomy   0.18
## 1526      Wii                            Takara Tomy   0.44
## 1527     X360                            Takara Tomy   0.09
## 1528      3DS                   Take-Two Interactive   0.15
## 1529       DS                   Take-Two Interactive   9.46
## 1530      GBA                   Take-Two Interactive   0.35
## 1531       GC                   Take-Two Interactive   0.39
## 1532      N64                   Take-Two Interactive   1.01
## 1533       PC                   Take-Two Interactive  12.41
## 1534       PS                   Take-Two Interactive  14.11
## 1535      PS2                   Take-Two Interactive  90.61
## 1536      PS3                   Take-Two Interactive  83.87
## 1537      PS4                   Take-Two Interactive  25.31
## 1538      PSP                   Take-Two Interactive  21.66
## 1539      PSV                   Take-Two Interactive   0.85
## 1540      Wii                   Take-Two Interactive  18.27
## 1541     WiiU                   Take-Two Interactive   0.14
## 1542     X360                   Take-Two Interactive  95.90
## 1543       XB                   Take-Two Interactive  12.05
## 1544     XOne                   Take-Two Interactive  13.00
## 1545      PSP                                 Takuyo   0.01
## 1546       PS                              TalonSoft   0.87
## 1547       DS                               TDK Core   0.25
## 1548      GBA                               TDK Core   0.19
## 1549       PS                               TDK Core   0.18
## 1550      GBA                         TDK Mediactive   3.45
## 1551       GC                         TDK Mediactive   0.58
## 1552       PS                         TDK Mediactive   0.31
## 1553      PS2                         TDK Mediactive   2.55
## 1554       XB                         TDK Mediactive   1.42
## 1555       PC                        Team17 Software   0.05
## 1556       NG              Technos Japan Corporation   0.02
## 1557       PS                             TechnoSoft   0.05
## 1558      3DS                             Tecmo Koei   0.67
## 1559       DS                             Tecmo Koei   1.94
## 1560      GBA                             Tecmo Koei   0.01
## 1561       GC                             Tecmo Koei   0.09
## 1562       PS                             Tecmo Koei   3.27
## 1563      PS2                             Tecmo Koei  18.97
## 1564      PS3                             Tecmo Koei  10.69
## 1565      PS4                             Tecmo Koei   2.61
## 1566      PSP                             Tecmo Koei   2.84
## 1567      PSV                             Tecmo Koei   2.80
## 1568      SAT                             Tecmo Koei   0.41
## 1569     SNES                             Tecmo Koei   2.97
## 1570      Wii                             Tecmo Koei   0.53
## 1571     WiiU                             Tecmo Koei   0.12
## 1572     X360                             Tecmo Koei   4.41
## 1573       XB                             Tecmo Koei   0.93
## 1574     XOne                             Tecmo Koei   0.29
## 1575       DS                              Telegames   0.79
## 1576      GBA                              Telegames   0.22
## 1577       PS                              Telegames   0.02
## 1578      PS3                         Telltale Games   0.48
## 1579      PS4                         Telltale Games   1.28
## 1580      PSV                         Telltale Games   0.22
## 1581      Wii                         Telltale Games   0.06
## 1582     X360                         Telltale Games   0.22
## 1583     XOne                         Telltale Games   0.46
## 1584       PS                                Telstar   0.27
## 1585      3DS                          Tetris Online   0.43
## 1586      PSP                                    TGL   0.01
## 1587      PSV                                    TGL   0.09
## 1588       DS                  The Adventure Company   0.15
## 1589      Wii                  The Adventure Company   0.36
## 1590       PS                   The Learning Company   0.05
## 1591      3DS                                    THQ   0.52
## 1592       DS                                    THQ  36.68
## 1593      GBA                                    THQ  47.83
## 1594       GC                                    THQ  13.97
## 1595      N64                                    THQ  10.71
## 1596       PC                                    THQ   3.13
## 1597       PS                                    THQ  29.54
## 1598      PS2                                    THQ  75.37
## 1599      PS3                                    THQ  27.23
## 1600      PSP                                    THQ  14.14
## 1601     SNES                                    THQ   0.49
## 1602      Wii                                    THQ  32.89
## 1603     WiiU                                    THQ   0.16
## 1604     X360                                    THQ  38.25
## 1605       XB                                    THQ   9.86
## 1606     2600                            Tigervision   1.42
## 1607       PS                Time Warner Interactive   0.35
## 1608      GBA                                  Titus   0.13
## 1609       GC                                  Titus   0.15
## 1610      N64                                  Titus   1.48
## 1611       PS                                  Titus   0.36
## 1612      PS2                                  Titus   1.11
## 1613     SNES                                  Titus   0.07
## 1614       XB                                  Titus   0.02
## 1615       DS                                 Tivola   0.17
## 1616     SNES                                   TOHO   0.11
## 1617       DS                                  Tommo   0.11
## 1618      Wii                                  Tommo   0.10
## 1619       DS                       Tomy Corporation   0.55
## 1620      GBA                       Tomy Corporation   0.30
## 1621       GC                       Tomy Corporation   1.81
## 1622       PS                       Tomy Corporation   0.90
## 1623      Wii                       Tomy Corporation   1.41
## 1624       PC                    TopWare Interactive   0.03
## 1625      PS3                    TopWare Interactive   0.05
## 1626      PS4                    TopWare Interactive   0.01
## 1627     X360                    TopWare Interactive   0.03
## 1628       DS                             Touchstone   0.14
## 1629       PC                             Touchstone   0.01
## 1630      PS3                             Touchstone   0.68
## 1631     X360                             Touchstone   0.75
## 1632      PS3                              Tradewest   0.04
## 1633      Wii                              Tradewest   0.05
## 1634     X360                              Tradewest   0.02
## 1635       PC                           Trion Worlds   0.22
## 1636      PS3                           Trion Worlds   0.36
## 1637     X360                           Trion Worlds   0.57
## 1638       PC                   Tripwire Interactive   0.14
## 1639      PS3                  Tru Blu Entertainment   0.05
## 1640      PS4                  Tru Blu Entertainment   0.14
## 1641     X360                  Tru Blu Entertainment   0.04
## 1642     XOne                  Tru Blu Entertainment   0.05
## 1643      PS2                               Tryfirst   0.03
## 1644       PS                                    TYO   0.42
## 1645      PSV                              Type-Moon   0.10
## 1646       PS                              U.S. Gold   0.33
## 1647      3DS                                Ubisoft   4.31
## 1648       DC                                Ubisoft   0.20
## 1649       DS                                Ubisoft  59.71
## 1650       GB                                Ubisoft   0.12
## 1651      GBA                                Ubisoft   9.84
## 1652       GC                                Ubisoft   4.40
## 1653      N64                                Ubisoft   1.98
## 1654       PC                                Ubisoft  15.18
## 1655       PS                                Ubisoft   8.84
## 1656      PS2                                Ubisoft  33.95
## 1657      PS3                                Ubisoft  70.82
## 1658      PS4                                Ubisoft  31.66
## 1659      PSP                                Ubisoft   9.49
## 1660      PSV                                Ubisoft   3.37
## 1661      Wii                                Ubisoft  92.21
## 1662     WiiU                                Ubisoft   5.78
## 1663     X360                                Ubisoft  81.59
## 1664       XB                                Ubisoft  23.36
## 1665     XOne                                Ubisoft  17.91
## 1666      3DS                         Ubisoft Annecy   0.55
## 1667      PS3                         Ubisoft Annecy   2.42
## 1668      PSP                         Ubisoft Annecy   0.85
## 1669     X360                         Ubisoft Annecy   0.64
## 1670       PS                            UEP Systems   2.25
## 1671      3DS                        UFO Interactive   0.01
## 1672       DS                        UFO Interactive   0.70
## 1673      Wii                        UFO Interactive   0.25
## 1674      PS4                      UIG Entertainment   0.01
## 1675     2600                            Ultravision   0.47
## 1676     2600                        Universal Gamex   0.63
## 1677      GBA                  Universal Interactive   3.19
## 1678       GC                  Universal Interactive   1.71
## 1679      PS2                  Universal Interactive  10.26
## 1680       XB                  Universal Interactive   2.61
## 1681     2600                                Unknown   0.29
## 1682      3DS                                Unknown   0.88
## 1683       DS                                Unknown   2.16
## 1684      GBA                                Unknown   2.68
## 1685       GC                                Unknown   1.20
## 1686      N64                                Unknown   0.14
## 1687       PC                                Unknown   1.97
## 1688       PS                                Unknown   1.45
## 1689      PS2                                Unknown  10.24
## 1690      PS3                                Unknown   2.17
## 1691      PS4                                Unknown   0.08
## 1692      PSP                                Unknown   3.18
## 1693      PSV                                Unknown   0.10
## 1694      Wii                                Unknown   3.77
## 1695     X360                                Unknown   2.05
## 1696       XB                                Unknown   2.27
## 1697     XOne                                Unknown   0.03
## 1698       DS                           Valcon Games   0.05
## 1699      PS2                           Valcon Games   0.14
## 1700      Wii                           Valcon Games   0.13
## 1701     X360                           Valcon Games   0.13
## 1702       DS                               ValuSoft   0.14
## 1703       PC                               ValuSoft   0.01
## 1704      PS2                               ValuSoft   0.24
## 1705      PS3                                  Valve   1.74
## 1706       PC                         Valve Software   1.13
## 1707     X360                         Valve Software   2.10
## 1708     SNES                                    Vap   0.05
## 1709      N64                  Vatical Entertainment   0.06
## 1710       PS                  Vatical Entertainment   0.16
## 1711      N64                              Vic Tokai   0.15
## 1712       PS                              Vic Tokai   0.12
## 1713       GB                     Victor Interactive   0.23
## 1714      GBA                     Victor Interactive   0.02
## 1715       PS                     Victor Interactive   0.41
## 1716      PS2                     Victor Interactive   0.10
## 1717      SAT                     Victor Interactive   0.02
## 1718     SNES                     Victor Interactive   0.11
## 1719      N64                           Video System   1.79
## 1720       PS                           Video System   0.11
## 1721     SNES                           Video System   0.28
## 1722      PS3                                  Views   0.01
## 1723      PSP                                  Views   0.02
## 1724       DS                          Vir2L Studios   0.10
## 1725      Wii                          Vir2L Studios   0.16
## 1726       DC                     Virgin Interactive   0.36
## 1727       GC                     Virgin Interactive   0.24
## 1728      GEN                     Virgin Interactive   1.41
## 1729      N64                     Virgin Interactive   0.83
## 1730       PC                     Virgin Interactive   7.26
## 1731       PS                     Virgin Interactive  25.71
## 1732      PS2                     Virgin Interactive   5.41
## 1733      SAT                     Virgin Interactive   0.66
## 1734     SNES                     Virgin Interactive   1.79
## 1735       XB                     Virgin Interactive   0.20
## 1736      Wii                     Virtual Play Games   0.06
## 1737       PC                                  Visco   0.02
## 1738       DS                          Vivendi Games   3.15
## 1739      GBA                          Vivendi Games   9.55
## 1740       GC                          Vivendi Games   3.18
## 1741       PC                          Vivendi Games   8.26
## 1742       PS                          Vivendi Games   0.50
## 1743      PS2                          Vivendi Games  19.02
## 1744      PS3                          Vivendi Games   1.81
## 1745      PSP                          Vivendi Games   1.97
## 1746      Wii                          Vivendi Games   2.35
## 1747     X360                          Vivendi Games   2.65
## 1748       XB                          Vivendi Games   5.77
## 1749      GBA                                Wanadoo   0.01
## 1750       GC                                Wanadoo   0.02
## 1751      PS2                                Wanadoo   0.60
## 1752       XB                                Wanadoo   0.02
## 1753       DC                                Warashi   0.02
## 1754       PC                          Wargaming.net   0.29
## 1755      3DS Warner Bros. Interactive Entertainment   6.43
## 1756       DS Warner Bros. Interactive Entertainment  20.30
## 1757       GC Warner Bros. Interactive Entertainment   0.17
## 1758       PC Warner Bros. Interactive Entertainment   2.98
## 1759      PS2 Warner Bros. Interactive Entertainment   3.08
## 1760      PS3 Warner Bros. Interactive Entertainment  29.58
## 1761      PS4 Warner Bros. Interactive Entertainment  19.58
## 1762      PSP Warner Bros. Interactive Entertainment   2.83
## 1763      PSV Warner Bros. Interactive Entertainment   5.29
## 1764      Wii Warner Bros. Interactive Entertainment  17.16
## 1765     WiiU Warner Bros. Interactive Entertainment   5.13
## 1766     X360 Warner Bros. Interactive Entertainment  32.16
## 1767     XOne Warner Bros. Interactive Entertainment   9.20
## 1768      SAT                                   Warp   0.07
## 1769      3DS                WayForward Technologies   0.05
## 1770       PC                       Westwood Studios   1.55
## 1771       DS                White Park Bay Software   0.16
## 1772     2600                     Wizard Video Games   0.62
## 1773      PS2                      Xicat Interactive   0.11
## 1774       XB                      Xicat Interactive   0.06
## 1775       PS                     Xing Entertainment   0.24
## 1776      PS2                                Xplosiv   0.69
## 1777      PSP                                Xplosiv   0.32
## 1778      Wii                                Xplosiv   0.63
## 1779      GBA                               XS Games   0.02
## 1780       PS                               XS Games   0.24
## 1781      PS2                               XS Games   0.19
## 1782      Wii                               XS Games   0.76
## 1783     X360                               XS Games   0.21
## 1784       XB                               XS Games   0.04
## 1785      3DS                            Xseed Games   0.55
## 1786      PS4                            Xseed Games   0.05
## 1787      PSV                            Xseed Games   0.30
## 1788      3DS                       Yacht Club Games   0.13
## 1789      PS4                       Yacht Club Games   0.08
## 1790     WiiU                       Yacht Club Games   0.11
## 1791      PS2                   Yamasa Entertainment   0.02
## 1792      PSP                   Yamasa Entertainment   0.02
## 1793      PS2                                   Yeti   0.09
## 1794      PS4                                   Yeti   0.02
## 1795      PSP                                   Yeti   0.12
## 1796     X360                                   Yeti   0.01
## 1797      PS2                                 Yuke's   0.08
## 1798      SAT                                Yumedia   0.06
## 1799      PSP                                 Zenrin   0.06
## 1800       DS                 Zoo Digital Publishing   2.07
## 1801      GBA                 Zoo Digital Publishing   4.00
## 1802       GC                 Zoo Digital Publishing   0.02
## 1803      PS2                 Zoo Digital Publishing   3.12
## 1804      Wii                 Zoo Digital Publishing   2.33
## 1805       XB                 Zoo Digital Publishing   1.33
## 1806       DS                              Zoo Games   0.82
## 1807      Wii                              Zoo Games   3.68
## 1808     X360                              Zoo Games   0.32
## 1809       DS                            Zushi Games   0.20
## 1810      PSP                            Zushi Games   0.13
## 1811      Wii                            Zushi Games   1.33
## 1812     X360                            Zushi Games   0.23
aggregate(Global_Sales,by=list(Year = Year,Genre = Genre),sum)
##     Year        Genre      x
## 1   1980       Action   0.34
## 2   1981       Action  14.84
## 3   1982       Action   6.52
## 4   1983       Action   2.86
## 5   1984       Action   1.85
## 6   1985       Action   3.52
## 7   1986       Action  13.74
## 8   1987       Action   1.12
## 9   1988       Action   1.75
## 10  1989       Action   4.64
## 11  1990       Action   6.39
## 12  1991       Action   6.76
## 13  1992       Action   3.83
## 14  1993       Action   1.81
## 15  1994       Action   1.55
## 16  1995       Action   3.57
## 17  1996       Action  20.58
## 18  1997       Action  27.58
## 19  1998       Action  39.44
## 20  1999       Action  27.78
## 21  2000       Action  34.04
## 22  2001       Action  59.39
## 23  2002       Action  86.77
## 24  2003       Action  67.93
## 25  2004       Action  76.26
## 26  2005       Action  85.69
## 27  2006       Action  66.58
## 28  2007       Action 106.50
## 29  2008       Action 136.39
## 30  2009       Action 139.36
## 31  2010       Action 117.64
## 32  2011       Action 118.96
## 33  2012       Action 122.04
## 34  2013       Action 125.22
## 35  2014       Action  99.02
## 36  2015       Action  70.70
## 37  2016       Action  19.91
## 38  2017       Action   0.01
## 39   N/A       Action  28.30
## 40  1983    Adventure   0.40
## 41  1987    Adventure   4.38
## 42  1991    Adventure   2.24
## 43  1992    Adventure  12.24
## 44  1993    Adventure   0.07
## 45  1994    Adventure   3.74
## 46  1995    Adventure   0.72
## 47  1996    Adventure   4.19
## 48  1997    Adventure   4.96
## 49  1998    Adventure   9.05
## 50  1999    Adventure   7.60
## 51  2000    Adventure   2.98
## 52  2001    Adventure   9.12
## 53  2002    Adventure  11.05
## 54  2003    Adventure   2.14
## 55  2004    Adventure   8.70
## 56  2005    Adventure   8.53
## 57  2006    Adventure  11.47
## 58  2007    Adventure  24.47
## 59  2008    Adventure  25.02
## 60  2009    Adventure  20.68
## 61  2010    Adventure  16.57
## 62  2011    Adventure  15.98
## 63  2012    Adventure   5.99
## 64  2013    Adventure   6.61
## 65  2014    Adventure   6.06
## 66  2015    Adventure   8.03
## 67  2016    Adventure   1.81
## 68   N/A    Adventure   4.24
## 69  1980     Fighting   0.77
## 70  1985     Fighting   1.05
## 71  1987     Fighting   5.42
## 72  1991     Fighting   0.39
## 73  1992     Fighting  15.25
## 74  1993     Fighting   8.75
## 75  1994     Fighting   8.47
## 76  1995     Fighting  14.85
## 77  1996     Fighting  18.06
## 78  1997     Fighting  11.76
## 79  1998     Fighting  31.66
## 80  1999     Fighting  14.26
## 81  2000     Fighting  20.22
## 82  2001     Fighting  18.12
## 83  2002     Fighting  25.02
## 84  2003     Fighting  23.73
## 85  2004     Fighting  16.78
## 86  2005     Fighting  19.72
## 87  2006     Fighting  22.55
## 88  2007     Fighting  17.61
## 89  2008     Fighting  35.38
## 90  2009     Fighting  32.15
## 91  2010     Fighting  14.89
## 92  2011     Fighting  22.68
## 93  2012     Fighting   9.51
## 94  2013     Fighting   7.21
## 95  2014     Fighting  16.15
## 96  2015     Fighting   7.78
## 97  2016     Fighting   3.86
## 98   N/A     Fighting   4.86
## 99  1980         Misc   2.71
## 100 1982         Misc   0.87
## 101 1983         Misc   2.14
## 102 1984         Misc   1.45
## 103 1989         Misc   1.28
## 104 1991         Misc   0.08
## 105 1992         Misc   4.94
## 106 1993         Misc   0.30
## 107 1994         Misc   2.86
## 108 1995         Misc   6.40
## 109 1996         Misc  10.68
## 110 1997         Misc   5.69
## 111 1998         Misc  11.94
## 112 1999         Misc  20.65
## 113 2000         Misc  15.54
## 114 2001         Misc  16.40
## 115 2002         Misc  15.67
## 116 2003         Misc  23.82
## 117 2004         Misc  31.32
## 118 2005         Misc  61.24
## 119 2006         Misc  67.35
## 120 2007         Misc  92.27
## 121 2008         Misc  87.03
## 122 2009         Misc  76.94
## 123 2010         Misc  96.86
## 124 2011         Misc  56.08
## 125 2012         Misc  22.92
## 126 2013         Misc  25.65
## 127 2014         Misc  23.68
## 128 2015         Misc  11.69
## 129 2016         Misc   1.17
## 130  N/A         Misc  12.34
## 131 1981     Platform   6.93
## 132 1982     Platform   5.03
## 133 1983     Platform   6.93
## 134 1984     Platform   0.69
## 135 1985     Platform  43.17
## 136 1986     Platform   9.39
## 137 1987     Platform   1.74
## 138 1988     Platform  27.73
## 139 1989     Platform  20.66
## 140 1990     Platform  22.97
## 141 1991     Platform   7.64
## 142 1992     Platform  13.42
## 143 1993     Platform  18.67
## 144 1994     Platform  28.74
## 145 1995     Platform  16.69
## 146 1996     Platform  28.23
## 147 1997     Platform  21.85
## 148 1998     Platform  29.88
## 149 1999     Platform  20.82
## 150 2000     Platform  16.06
## 151 2001     Platform  39.28
## 152 2002     Platform  45.97
## 153 2003     Platform  42.89
## 154 2004     Platform  47.34
## 155 2005     Platform  23.56
## 156 2006     Platform  49.80
## 157 2007     Platform  35.59
## 158 2008     Platform  35.70
## 159 2009     Platform  41.09
## 160 2010     Platform  31.90
## 161 2011     Platform  28.11
## 162 2012     Platform  18.55
## 163 2013     Platform  25.12
## 164 2014     Platform   8.89
## 165 2015     Platform   6.05
## 166 2016     Platform   2.07
## 167  N/A     Platform   2.22
## 168 1981       Puzzle   2.24
## 169 1982       Puzzle  10.03
## 170 1983       Puzzle   0.78
## 171 1984       Puzzle   3.14
## 172 1985       Puzzle   3.21
## 173 1988       Puzzle   5.58
## 174 1989       Puzzle  37.75
## 175 1990       Puzzle   6.00
## 176 1991       Puzzle   3.24
## 177 1992       Puzzle   4.84
## 178 1993       Puzzle   3.17
## 179 1994       Puzzle   1.53
## 180 1995       Puzzle   2.71
## 181 1996       Puzzle   3.91
## 182 1997       Puzzle   5.89
## 183 1998       Puzzle   6.34
## 184 1999       Puzzle   1.36
## 185 2000       Puzzle   3.82
## 186 2001       Puzzle   8.00
## 187 2002       Puzzle   5.34
## 188 2003       Puzzle   2.42
## 189 2004       Puzzle   8.43
## 190 2005       Puzzle  20.45
## 191 2006       Puzzle  10.90
## 192 2007       Puzzle  24.00
## 193 2008       Puzzle  15.59
## 194 2009       Puzzle  20.31
## 195 2010       Puzzle  11.18
## 196 2011       Puzzle   5.11
## 197 2012       Puzzle   1.76
## 198 2013       Puzzle   0.99
## 199 2014       Puzzle   1.50
## 200 2015       Puzzle   0.70
## 201  N/A       Puzzle   2.73
## 202 1981       Racing   0.48
## 203 1982       Racing   1.57
## 204 1984       Racing   5.95
## 205 1986       Racing   1.96
## 206 1988       Racing   2.14
## 207 1990       Racing   6.26
## 208 1991       Racing   1.14
## 209 1992       Racing   9.04
## 210 1993       Racing   0.36
## 211 1994       Racing   2.19
## 212 1995       Racing   6.09
## 213 1996       Racing  28.24
## 214 1997       Racing  31.91
## 215 1998       Racing  27.90
## 216 1999       Racing  37.27
## 217 2000       Racing  19.99
## 218 2001       Racing  55.81
## 219 2002       Racing  30.20
## 220 2003       Racing  52.19
## 221 2004       Racing  47.86
## 222 2005       Racing  56.42
## 223 2006       Racing  34.09
## 224 2007       Racing  39.17
## 225 2008       Racing  70.66
## 226 2009       Racing  34.19
## 227 2010       Racing  34.93
## 228 2011       Racing  35.01
## 229 2012       Racing  14.46
## 230 2013       Racing  13.04
## 231 2014       Racing  16.69
## 232 2015       Racing   7.92
## 233 2016       Racing   1.64
## 234  N/A       Racing   5.27
## 235 1986 Role-Playing   2.52
## 236 1987 Role-Playing   4.65
## 237 1988 Role-Playing   5.88
## 238 1989 Role-Playing   2.20
## 239 1990 Role-Playing   4.52
## 240 1991 Role-Playing   3.25
## 241 1992 Role-Playing   6.86
## 242 1993 Role-Playing   5.59
## 243 1994 Role-Playing   7.11
## 244 1995 Role-Playing  14.26
## 245 1996 Role-Playing  43.96
## 246 1997 Role-Playing  21.79
## 247 1998 Role-Playing  28.09
## 248 1999 Role-Playing  49.09
## 249 2000 Role-Playing  29.03
## 250 2001 Role-Playing  22.06
## 251 2002 Role-Playing  45.13
## 252 2003 Role-Playing  30.28
## 253 2004 Role-Playing  53.95
## 254 2005 Role-Playing  28.55
## 255 2006 Role-Playing  57.73
## 256 2007 Role-Playing  43.89
## 257 2008 Role-Playing  59.83
## 258 2009 Role-Playing  47.90
## 259 2010 Role-Playing  70.52
## 260 2011 Role-Playing  53.37
## 261 2012 Role-Playing  47.81
## 262 2013 Role-Playing  44.92
## 263 2014 Role-Playing  45.86
## 264 2015 Role-Playing  36.44
## 265 2016 Role-Playing   6.76
## 266 2017 Role-Playing   0.04
## 267  N/A Role-Playing   3.53
## 268 1980      Shooter   7.07
## 269 1981      Shooter  10.04
## 270 1982      Shooter   3.79
## 271 1983      Shooter   0.48
## 272 1984      Shooter  31.10
## 273 1985      Shooter   1.00
## 274 1986      Shooter   3.89
## 275 1987      Shooter   0.71
## 276 1988      Shooter   0.51
## 277 1989      Shooter   1.20
## 278 1991      Shooter   2.00
## 279 1992      Shooter   0.29
## 280 1993      Shooter   3.08
## 281 1994      Shooter   8.30
## 282 1995      Shooter   4.15
## 283 1996      Shooter   6.91
## 284 1997      Shooter  22.17
## 285 1998      Shooter   9.80
## 286 1999      Shooter  12.25
## 287 2000      Shooter   6.81
## 288 2001      Shooter  24.77
## 289 2002      Shooter  48.58
## 290 2003      Shooter  27.14
## 291 2004      Shooter  46.95
## 292 2005      Shooter  41.60
## 293 2006      Shooter  38.37
## 294 2007      Shooter  71.04
## 295 2008      Shooter  59.51
## 296 2009      Shooter  69.89
## 297 2010      Shooter  77.41
## 298 2011      Shooter  99.36
## 299 2012      Shooter  72.86
## 300 2013      Shooter  62.80
## 301 2014      Shooter  66.00
## 302 2015      Shooter  66.15
## 303 2016      Shooter  18.22
## 304  N/A      Shooter  11.17
## 305 1981   Simulation   0.45
## 306 1985   Simulation   0.03
## 307 1988   Simulation   0.03
## 308 1990   Simulation   1.14
## 309 1991   Simulation   2.14
## 310 1992   Simulation   2.14
## 311 1993   Simulation   0.19
## 312 1994   Simulation   2.73
## 313 1995   Simulation   4.18
## 314 1996   Simulation  11.33
## 315 1997   Simulation   9.65
## 316 1998   Simulation   7.11
## 317 1999   Simulation  11.44
## 318 2000   Simulation   3.38
## 319 2001   Simulation  19.54
## 320 2002   Simulation  10.81
## 321 2003   Simulation  21.21
## 322 2004   Simulation  10.85
## 323 2005   Simulation  49.27
## 324 2006   Simulation  21.77
## 325 2007   Simulation  48.97
## 326 2008   Simulation  46.76
## 327 2009   Simulation  33.71
## 328 2010   Simulation  22.15
## 329 2011   Simulation  15.28
## 330 2012   Simulation  13.38
## 331 2013   Simulation   8.67
## 332 2014   Simulation   5.55
## 333 2015   Simulation   5.62
## 334 2016   Simulation   0.39
## 335 2020   Simulation   0.29
## 336  N/A   Simulation   2.04
## 337 1980       Sports   0.49
## 338 1981       Sports   0.79
## 339 1982       Sports   1.05
## 340 1983       Sports   3.20
## 341 1984       Sports   6.18
## 342 1985       Sports   1.96
## 343 1986       Sports   5.57
## 344 1987       Sports   3.72
## 345 1988       Sports   3.60
## 346 1989       Sports   5.72
## 347 1990       Sports   2.11
## 348 1991       Sports   2.41
## 349 1992       Sports   2.95
## 350 1993       Sports   3.18
## 351 1994       Sports   8.39
## 352 1995       Sports   7.98
## 353 1996       Sports  17.45
## 354 1997       Sports  30.02
## 355 1998       Sports  41.79
## 356 1999       Sports  30.29
## 357 2000       Sports  41.19
## 358 2001       Sports  51.43
## 359 2002       Sports  65.42
## 360 2003       Sports  56.11
## 361 2004       Sports  63.68
## 362 2005       Sports  59.54
## 363 2006       Sports 136.16
## 364 2007       Sports  98.20
## 365 2008       Sports  95.34
## 366 2009       Sports 138.52
## 367 2010       Sports  92.53
## 368 2011       Sports  56.99
## 369 2012       Sports  30.93
## 370 2013       Sports  41.55
## 371 2014       Sports  46.66
## 372 2015       Sports  41.54
## 373 2016       Sports  14.60
## 374  N/A       Sports  21.69
## 375 1991     Strategy   0.94
## 376 1992     Strategy   0.36
## 377 1993     Strategy   0.81
## 378 1994     Strategy   3.56
## 379 1995     Strategy   6.51
## 380 1996     Strategy   5.61
## 381 1997     Strategy   7.71
## 382 1998     Strategy  13.47
## 383 1999     Strategy  18.46
## 384 2000     Strategy   8.50
## 385 2001     Strategy   7.55
## 386 2002     Strategy   5.56
## 387 2003     Strategy   7.99
## 388 2004     Strategy   7.19
## 389 2005     Strategy   5.37
## 390 2006     Strategy   4.27
## 391 2007     Strategy   9.42
## 392 2008     Strategy  11.69
## 393 2009     Strategy  12.56
## 394 2010     Strategy  13.87
## 395 2011     Strategy   9.06
## 396 2012     Strategy   3.33
## 397 2013     Strategy   6.33
## 398 2014     Strategy   0.99
## 399 2015     Strategy   1.82
## 400 2016     Strategy   0.50
## 401  N/A     Strategy   1.69
aggregate(Global_Sales,by=list(Year = Year,Publisher = Publisher),sum)
##      Year                              Publisher      x
## 1    2006                        10TACLE Studios   0.02
## 2    2007                        10TACLE Studios   0.09
## 3    2009                             1C Company   0.01
## 4    2011                             1C Company   0.09
## 5    1981           20th Century Fox Video Games   1.35
## 6    1982           20th Century Fox Video Games   0.59
## 7    2008                                 2D Boy   0.04
## 8    1998                                    3DO   0.40
## 9    1999                                    3DO   4.14
## 10   2000                                    3DO   3.08
## 11   2001                                    3DO   1.45
## 12   2002                                    3DO   0.60
## 13   2003                                    3DO   0.45
## 14   2009                                49Games   0.04
## 15   2002                              505 Games   0.29
## 16   2003                              505 Games   0.10
## 17   2004                              505 Games   0.89
## 18   2005                              505 Games   1.27
## 19   2006                              505 Games   7.49
## 20   2007                              505 Games  10.43
## 21   2008                              505 Games   2.77
## 22   2009                              505 Games   7.57
## 23   2010                              505 Games  14.26
## 24   2011                              505 Games   3.30
## 25   2012                              505 Games   2.34
## 26   2013                              505 Games   2.31
## 27   2014                              505 Games   1.74
## 28   2015                              505 Games   0.61
## 29   2016                              505 Games   0.54
## 30   2008                                    5pb   0.10
## 31   2009                                    5pb   0.18
## 32   2010                                    5pb   0.29
## 33   2011                                    5pb   0.27
## 34   2012                                    5pb   0.26
## 35   2013                                    5pb   0.14
## 36   2014                                    5pb   0.13
## 37   2015                                    5pb   0.22
## 38   2016                                    5pb   0.04
## 39   2010                               7G//AMES   0.01
## 40   2011                               7G//AMES   0.07
## 41   1999                             989 Sports   0.38
## 42   1997                            989 Studios   0.52
## 43   1998                            989 Studios   7.54
## 44   1999                            989 Studios   5.26
## 45   2010                               Abylight   0.08
## 46   1993                  Acclaim Entertainment   1.93
## 47   1994                  Acclaim Entertainment   5.74
## 48   1995                  Acclaim Entertainment   2.46
## 49   1996                  Acclaim Entertainment   3.23
## 50   1997                  Acclaim Entertainment   4.49
## 51   1998                  Acclaim Entertainment  13.71
## 52   1999                  Acclaim Entertainment   3.83
## 53   2000                  Acclaim Entertainment   5.59
## 54   2001                  Acclaim Entertainment   9.69
## 55   2002                  Acclaim Entertainment   7.75
## 56   2003                  Acclaim Entertainment   4.66
## 57   2004                  Acclaim Entertainment   1.06
## 58   1996                               Accolade   0.19
## 59   1997                               Accolade   1.30
## 60   1999                               Accolade   0.19
## 61   2009                            Ackkstudios   0.07
## 62   2010                            Ackkstudios   0.11
## 63   2011                            Ackkstudios   0.41
## 64   2012                            Ackkstudios   0.25
## 65   2006                                Acquire   0.05
## 66   2008                                Acquire   0.14
## 67   2009                                Acquire   0.08
## 68   2010                                Acquire   0.22
## 69   2011                                Acquire   0.30
## 70   2012                                Acquire   0.17
## 71   2014                                Acquire   0.11
## 72   1980                             Activision   3.02
## 73   1981                             Activision   8.50
## 74   1982                             Activision   1.86
## 75   1983                             Activision   1.94
## 76   1984                             Activision   0.27
## 77   1985                             Activision   0.48
## 78   1987                             Activision   1.12
## 79   1988                             Activision   0.75
## 80   1989                             Activision   0.47
## 81   1994                             Activision   2.08
## 82   1995                             Activision   4.21
## 83   1996                             Activision   1.95
## 84   1997                             Activision   2.55
## 85   1998                             Activision   7.54
## 86   1999                             Activision   7.57
## 87   2000                             Activision  14.48
## 88   2001                             Activision  18.59
## 89   2002                             Activision  25.94
## 90   2003                             Activision  21.38
## 91   2004                             Activision  39.23
## 92   2005                             Activision  35.39
## 93   2006                             Activision  17.40
## 94   2007                             Activision  63.57
## 95   2008                             Activision  67.41
## 96   2009                             Activision  78.06
## 97   2010                             Activision  63.39
## 98   2011                             Activision  51.74
## 99   2012                             Activision  53.25
## 100  2013                             Activision  43.49
## 101  2014                             Activision  44.48
## 102  2015                             Activision  35.63
## 103  2016                             Activision   3.67
## 104   N/A                             Activision   6.05
## 105  2014                    Activision Blizzard   0.48
## 106  2001                       Activision Value   0.21
## 107  2002                       Activision Value   0.09
## 108  2003                       Activision Value   0.97
## 109  2004                       Activision Value   0.06
## 110  2005                       Activision Value   0.05
## 111  2006                       Activision Value   0.25
## 112  2007                       Activision Value   0.58
## 113  2008                       Activision Value   1.46
## 114  2009                       Activision Value   3.29
## 115  1996                       Adeline Software   0.17
## 116  2010                               Aerosoft   0.01
## 117  2013                               Aerosoft   0.02
## 118  2004                 Agatsuma Entertainment   0.08
## 119  2012                 Agatsuma Entertainment   0.20
## 120  2013                 Agatsuma Entertainment   0.03
## 121  1997                                 Agetec   0.03
## 122  1998                                 Agetec   0.19
## 123  2002                                 Agetec   1.29
## 124  2003                                 Agetec   0.39
## 125  2009                                 Agetec   0.04
## 126  2008                            Aksys Games   0.02
## 127  2014                            Aksys Games   0.18
## 128  2015                            Aksys Games   0.12
## 129  2016                            Aksys Games   0.12
## 130  2009                   Alawar Entertainment   0.04
## 131  2015                   Alawar Entertainment   0.01
## 132  2006                              Alchemist   1.24
## 133  2007                              Alchemist   0.19
## 134  2008                              Alchemist   0.30
## 135  2009                              Alchemist   0.08
## 136  2010                              Alchemist   0.26
## 137  2011                              Alchemist   0.22
## 138  2012                              Alchemist   0.13
## 139  2013                              Alchemist   0.13
## 140  2015                              Alchemist   0.08
## 141  2010                   Alternative Software   0.07
## 142  2015                   Alternative Software   0.02
## 143  2016                   Alternative Software   0.11
## 144  2001                                 Altron   0.07
## 145  2009                                 Alvion   0.02
## 146  2010                                 Alvion   0.02
## 147  1996                     American Softworks   0.23
## 148  1991                          Angel Studios   0.29
## 149  1994                          Angel Studios   0.12
## 150  1995                          Angel Studios   0.03
## 151  1982                        Answer Software   0.50
## 152  2007                         AQ Interactive   0.16
## 153  2008                         AQ Interactive   0.22
## 154  2009                         AQ Interactive   0.15
## 155  1999                              Aqua Plus   0.14
## 156  2006                              Aqua Plus   0.11
## 157  2007                              Aqua Plus   0.01
## 158  2008                              Aqua Plus   0.08
## 159  2009                              Aqua Plus   0.11
## 160  2010                              Aqua Plus   0.06
## 161  2011                              Aqua Plus   0.17
## 162  2012                              Aqua Plus   0.14
## 163  2013                              Aqua Plus   0.10
## 164  2015                              Aqua Plus   0.23
## 165  2016                              Aqua Plus   0.10
## 166  1997                                  Aques   0.16
## 167  2008                       Arc System Works   0.26
## 168  2009                       Arc System Works   0.07
## 169  2010                       Arc System Works   0.10
## 170  2012                       Arc System Works   0.03
## 171  2013                       Arc System Works   0.42
## 172  2014                       Arc System Works   0.51
## 173  2015                       Arc System Works   0.09
## 174  1992                    Arena Entertainment   4.72
## 175  2006                                   Aria   0.07
## 176  2002                                  Arika   0.02
## 177  2004                                  Arika   0.05
## 178  2008                                  Arika   0.02
## 179  1994                                ArtDink   0.25
## 180  1996                                ArtDink   0.22
## 181  1998                                ArtDink   0.09
## 182  2001                                ArtDink   0.05
## 183  2009                                ArtDink   0.04
## 184  2010                                ArtDink   0.02
## 185  2014                                ArtDink   0.06
## 186  1999                             Aruze Corp   0.54
## 187  2000                             Aruze Corp   0.64
## 188  1996                              ASC Games   1.31
## 189  1998                              ASC Games   0.66
## 190  1999                              ASC Games   0.05
## 191  2012                  Ascaron Entertainment   0.01
## 192  2004             Ascaron Entertainment GmbH   0.04
## 193  2008             Ascaron Entertainment GmbH   0.07
## 194  1994                    ASCII Entertainment   0.87
## 195  1995                    ASCII Entertainment   1.25
## 196  1996                    ASCII Entertainment   2.87
## 197  1997                    ASCII Entertainment   3.32
## 198  1998                    ASCII Entertainment   0.42
## 199  1999                    ASCII Entertainment   1.84
## 200  2001                    ASCII Entertainment   0.32
## 201  2008                      ASCII Media Works   0.06
## 202  2009                      ASCII Media Works   0.07
## 203  2010                      ASCII Media Works   0.12
## 204  2011                      ASCII Media Works   0.01
## 205  2014                      ASCII Media Works   0.01
## 206  2010                                 Asgard   0.14
## 207  2011                                 Asgard   0.03
## 208  2012                                 Asgard   0.01
## 209  2013                                 Asgard   0.05
## 210  2015                                 Asgard   0.02
## 211  1996                                    ASK   0.03
## 212  1996                Asmik Ace Entertainment   0.10
## 213  2000                Asmik Ace Entertainment   0.09
## 214  2006                Asmik Ace Entertainment   0.04
## 215  1994                             Asmik Corp   0.07
## 216  1995                             Asmik Corp   0.10
## 217  2003                                  Aspyr   0.02
## 218  2007                                  Aspyr   0.01
## 219  2008                                  Aspyr   0.11
## 220  2009                                  Aspyr   0.48
## 221  2009                               Astragon   0.05
## 222  2010                               Astragon   0.53
## 223  2011                               Astragon   0.04
## 224  2016                               Astragon   0.02
## 225  2010                   Asylum Entertainment   0.52
## 226  2011                   Asylum Entertainment   0.07
## 227  1980                                  Atari   8.36
## 228  1981                                  Atari   8.45
## 229  1982                                  Atari  19.43
## 230  1983                                  Atari   3.39
## 231  1986                                  Atari   0.66
## 232  1987                                  Atari   0.86
## 233  1989                                  Atari   0.15
## 234  1998                                  Atari   1.46
## 235  1999                                  Atari   2.30
## 236  2000                                  Atari   4.81
## 237  2001                                  Atari   8.05
## 238  2002                                  Atari  21.25
## 239  2003                                  Atari  17.04
## 240  2004                                  Atari  11.55
## 241  2005                                  Atari   8.38
## 242  2006                                  Atari   4.33
## 243  2007                                  Atari  11.37
## 244  2008                                  Atari   8.69
## 245  2009                                  Atari   4.51
## 246  2010                                  Atari   1.43
## 247  2011                                  Atari   0.23
## 248  2012                                  Atari   0.05
## 249  2016                                  Atari   0.02
## 250   N/A                                  Atari  10.45
## 251  1999                                 Athena   0.02
## 252  2001                                 Athena   0.07
## 253  1994                                  Atlus   0.45
## 254  1995                                  Atlus   1.11
## 255  1996                                  Atlus   0.25
## 256  1997                                  Atlus   0.39
## 257  1998                                  Atlus   0.21
## 258  1999                                  Atlus   0.26
## 259  2000                                  Atlus   0.35
## 260  2001                                  Atlus   0.09
## 261  2002                                  Atlus   0.09
## 262  2003                                  Atlus   0.19
## 263  2004                                  Atlus   0.09
## 264  2006                                  Atlus   0.05
## 265  2007                                  Atlus   0.10
## 266  2008                                  Atlus   1.50
## 267  2009                                  Atlus   0.96
## 268  2010                                  Atlus   0.82
## 269  2011                                  Atlus   0.56
## 270  2012                                  Atlus   3.01
## 271  2013                                  Atlus   0.83
## 272  2014                                  Atlus   0.59
## 273  2015                                  Atlus   0.38
## 274  2016                                  Atlus   0.46
## 275  1982                     Avalon Interactive   0.17
## 276  1999                     Avalon Interactive   0.10
## 277  2002                     Avalon Interactive   0.05
## 278  2003                     Avalon Interactive   0.04
## 279  2004                     Avalon Interactive   0.12
## 280  2007                              Avanquest   0.53
## 281  2008                              Avanquest   0.19
## 282  2009                              Avanquest   0.90
## 283  2010                              Avanquest   0.77
## 284  2011                              Avanquest   0.51
## 285  2016                              Avanquest   0.04
## 286   N/A                              Avanquest   0.06
## 287  2012                     Avanquest Software   1.64
## 288  2013                     Avanquest Software   0.01
## 289  2015                     Avanquest Software   0.04
## 290  1998                                  Axela   0.25
## 291  2000                     BAM! Entertainment   0.11
## 292  2001                     BAM! Entertainment   1.21
## 293  2002                     BAM! Entertainment   2.88
## 294  2003                     BAM! Entertainment   0.65
## 295  2004                     BAM! Entertainment   0.10
## 296  1991                              Banpresto   0.51
## 297  1992                              Banpresto   0.16
## 298  1993                              Banpresto   1.70
## 299  1994                              Banpresto   0.62
## 300  1995                              Banpresto   0.76
## 301  1996                              Banpresto   1.06
## 302  1997                              Banpresto   0.87
## 303  1998                              Banpresto   0.70
## 304  1999                              Banpresto   0.74
## 305  2000                              Banpresto   0.80
## 306  2001                              Banpresto   1.45
## 307  2002                              Banpresto   1.02
## 308  2003                              Banpresto   1.31
## 309  2004                              Banpresto   0.77
## 310  2005                              Banpresto   1.32
## 311  2006                              Banpresto   0.61
## 312  2007                              Banpresto   1.59
## 313  2008                              Banpresto   0.47
## 314  2009                              Banpresto   0.32
## 315  2011                              Banpresto   0.62
## 316  2007                                Benesse   0.19
## 317  2008                                Benesse   0.14
## 318  2001                               Berkeley   0.03
## 319  2002                     Bethesda Softworks   1.31
## 320  2003                     Bethesda Softworks   0.20
## 321  2004                     Bethesda Softworks   0.25
## 322  2005                     Bethesda Softworks   0.19
## 323  2006                     Bethesda Softworks   0.10
## 324  2007                     Bethesda Softworks   1.03
## 325  2008                     Bethesda Softworks  11.39
## 326  2009                     Bethesda Softworks   1.29
## 327  2010                     Bethesda Softworks   8.41
## 328  2011                     Bethesda Softworks  25.09
## 329  2012                     Bethesda Softworks   4.90
## 330  2014                     Bethesda Softworks   8.68
## 331  2015                     Bethesda Softworks  16.44
## 332  2016                     Bethesda Softworks   2.25
## 333   N/A                     Bethesda Softworks   0.61
## 334  2002                    Big Ben Interactive   0.09
## 335  2004                    Big Ben Interactive   0.05
## 336  2008                    Big Ben Interactive   0.02
## 337  2009                    Big Ben Interactive   0.81
## 338  2011                    Big Ben Interactive   0.01
## 339  2013                    Big Ben Interactive   0.02
## 340  2008                         Big Fish Games   0.02
## 341  2014                         Big Fish Games   0.03
## 342  2015                     Bigben Interactive   0.84
## 343  2009                      bitComposer Games   0.03
## 344  2011                      bitComposer Games   0.38
## 345  2005                       Black Bean Games   0.01
## 346  2007                       Black Bean Games   0.11
## 347  2008                       Black Bean Games   0.59
## 348  2009                       Black Bean Games   0.33
## 349  2010                       Black Bean Games   1.20
## 350  2011                       Black Bean Games   0.63
## 351   N/A                       Black Bean Games   0.42
## 352  2002                      Black Label Games   1.20
## 353  2007               Blast! Entertainment Ltd   0.17
## 354  2008               Blast! Entertainment Ltd   0.02
## 355  2009               Blast! Entertainment Ltd   0.19
## 356  2001                              Blue Byte   0.03
## 357  1996          BMG Interactive Entertainment   0.27
## 358  1997          BMG Interactive Entertainment   0.33
## 359  1998          BMG Interactive Entertainment   0.58
## 360  2013                    Bohemia Interactive   0.12
## 361  1982                                   Bomb   0.22
## 362  2013                               Boost On   0.01
## 363  1991                                    BPS   0.32
## 364  1994                                    BPS   0.20
## 365  2007                    Brash Entertainment   0.21
## 366  2008                    Brash Entertainment   1.02
## 367  2006                               Broccoli   0.03
## 368  2007                               Broccoli   0.07
## 369  2008                               Broccoli   0.03
## 370  2009                               Broccoli   0.04
## 371  2010                               Broccoli   0.02
## 372  2011                               Broccoli   0.25
## 373  2012                               Broccoli   0.10
## 374  2013                               Broccoli   0.26
## 375  2015                               Broccoli   0.10
## 376  2016                               Broccoli   0.06
## 377  2012                              BushiRoad   0.03
## 378  1985                                 Capcom   1.00
## 379  1986                                 Capcom   5.30
## 380  1987                                 Capcom   0.81
## 381  1988                                 Capcom   2.94
## 382  1989                                 Capcom   1.67
## 383  1990                                 Capcom   3.92
## 384  1991                                 Capcom   2.23
## 385  1992                                 Capcom  12.40
## 386  1993                                 Capcom   4.85
## 387  1994                                 Capcom   0.16
## 388  1996                                 Capcom   1.34
## 389  1997                                 Capcom   3.28
## 390  1998                                 Capcom   3.74
## 391  1999                                 Capcom   0.88
## 392  2000                                 Capcom   2.02
## 393  2001                                 Capcom   7.95
## 394  2002                                 Capcom   9.85
## 395  2003                                 Capcom   9.13
## 396  2004                                 Capcom   6.86
## 397  2005                                 Capcom  13.27
## 398  2006                                 Capcom  11.40
## 399  2007                                 Capcom   9.92
## 400  2008                                 Capcom  13.32
## 401  2009                                 Capcom  19.47
## 402  2010                                 Capcom  14.38
## 403  2011                                 Capcom   7.47
## 404  2012                                 Capcom  14.68
## 405  2013                                 Capcom   7.63
## 406  2014                                 Capcom   0.32
## 407  2015                                 Capcom   5.64
## 408  2016                                 Capcom   2.12
## 409   N/A                                 Capcom   0.94
## 410  2008                                   Cave   0.10
## 411  2009                                   Cave   0.03
## 412  2010                                   Cave   0.07
## 413  2011                                   Cave   0.10
## 414  2012                                   Cave   0.02
## 415  2013                                   Cave   0.01
## 416  1982                        CBS Electronics   0.31
## 417  2003                                    CCP   0.22
## 418  2005             CDV Software Entertainment   0.01
## 419  2008             CDV Software Entertainment   0.11
## 420  2009             CDV Software Entertainment   0.05
## 421  2011             CDV Software Entertainment   0.03
## 422  1992                               ChunSoft   0.16
## 423  1993                               ChunSoft   0.78
## 424  1994                               ChunSoft   0.81
## 425  1995                               ChunSoft   0.40
## 426  1996                               ChunSoft   0.27
## 427  1998                               ChunSoft   0.09
## 428  1999                               ChunSoft   0.17
## 429  2000                               ChunSoft   0.37
## 430  2002                               ChunSoft   0.36
## 431  2006                               ChunSoft   0.03
## 432  2009                               ChunSoft   0.43
## 433  2010                               ChunSoft   0.04
## 434  2011                               ChunSoft   0.10
## 435  2012                               ChunSoft   0.06
## 436  2008                       City Interactive   0.49
## 437  2009                       City Interactive   0.45
## 438  2010                       City Interactive   1.87
## 439  2011                       City Interactive   1.05
## 440  2013                       City Interactive   0.65
## 441  2014                       City Interactive   0.07
## 442   N/A                       City Interactive   0.03
## 443  2012       Cloud Imperium Games Corporation   0.08
## 444  1993                         Coconuts Japan   0.05
## 445  1996                         Coconuts Japan   0.02
## 446  1997                            Codemasters   2.38
## 447  1998                            Codemasters   5.58
## 448  1999                            Codemasters   0.61
## 449  2000                            Codemasters   1.02
## 450  2001                            Codemasters   1.59
## 451  2002                            Codemasters   1.78
## 452  2003                            Codemasters   2.39
## 453  2004                            Codemasters   0.97
## 454  2005                            Codemasters   0.79
## 455  2006                            Codemasters   0.23
## 456  2007                            Codemasters   3.07
## 457  2008                            Codemasters   3.45
## 458  2009                            Codemasters   8.43
## 459  2010                            Codemasters   2.64
## 460  2011                            Codemasters   5.34
## 461  2012                            Codemasters   2.81
## 462  2013                            Codemasters   1.71
## 463  2014                            Codemasters   1.19
## 464  2015                            Codemasters   0.95
## 465  2016                            Codemasters   0.84
## 466   N/A                            Codemasters   0.10
## 467  2008                     Codemasters Online   0.02
## 468  2007                      CokeM Interactive   0.31
## 469  1981                                 Coleco   2.79
## 470  1982                                 Coleco   0.27
## 471  2010                                Comfort   0.03
## 472  2011                                Comfort   0.08
## 473  2012                                Comfort   0.02
## 474  2013                                Comfort   0.02
## 475  2008                               Commseed   0.01
## 476  1995                                Compile   0.47
## 477  1996                                Compile   0.02
## 478  1997                                Compile   1.94
## 479  1998                                Compile   0.03
## 480  2008                          Compile Heart   0.20
## 481  2009                          Compile Heart   0.01
## 482  2010                          Compile Heart   0.26
## 483  2011                          Compile Heart   0.09
## 484  2012                          Compile Heart   0.23
## 485  2013                          Compile Heart   0.22
## 486  2014                          Compile Heart   0.23
## 487  2015                          Compile Heart   0.11
## 488  2016                          Compile Heart   0.02
## 489  2001               Conspiracy Entertainment   0.29
## 490  2002               Conspiracy Entertainment   0.03
## 491  2007               Conspiracy Entertainment   0.07
## 492  2008               Conspiracy Entertainment   0.15
## 493  2009               Conspiracy Entertainment   0.07
## 494  2010               Conspiracy Entertainment   0.23
## 495  1994                       Core Design Ltd.   0.19
## 496  1995                       Core Design Ltd.   0.10
## 497  1982                           CPG Products   0.54
## 498  1998                    Crave Entertainment   0.37
## 499  1999                    Crave Entertainment   0.87
## 500  2000                    Crave Entertainment   2.44
## 501  2002                    Crave Entertainment   0.42
## 502  2003                    Crave Entertainment   0.07
## 503  2004                    Crave Entertainment   1.20
## 504  2005                    Crave Entertainment   0.69
## 505  2006                    Crave Entertainment   0.30
## 506  2007                    Crave Entertainment   0.43
## 507  2008                    Crave Entertainment   0.53
## 508  2009                    Crave Entertainment   0.57
## 509  2010                    Crave Entertainment   0.71
## 510  2011                    Crave Entertainment   1.33
## 511  2008                          Creative Core   0.07
## 512  2009                          Creative Core   0.03
## 513  2008                            Crimson Cow   0.02
## 514  2011                            Crimson Cow   0.06
## 515  1995                       Crystal Dynamics   1.12
## 516  1996                       Crystal Dynamics   0.59
## 517  1996                                CTO SpA   0.88
## 518  1997                                CTO SpA   0.02
## 519  1991                          Culture Brain   0.20
## 520  1994                          Culture Brain   0.03
## 521  2008                          Culture Brain   0.02
## 522  2010                          Culture Brain   0.02
## 523  1998                     Culture Publishers   0.09
## 524  2007                             CyberFront   0.02
## 525  2008                             CyberFront   0.04
## 526  2009                             CyberFront   0.02
## 527  2010                             CyberFront   0.11
## 528  2011                             CyberFront   0.02
## 529  2012                             CyberFront   0.03
## 530  2013                             CyberFront   0.03
## 531  2015                                Cygames   0.03
## 532  1998                            D3Publisher   1.06
## 533  2000                            D3Publisher   0.07
## 534  2001                            D3Publisher   0.62
## 535  2005                            D3Publisher   0.39
## 536  2006                            D3Publisher   1.37
## 537  2007                            D3Publisher   6.31
## 538  2008                            D3Publisher   2.03
## 539  2009                            D3Publisher   3.81
## 540  2010                            D3Publisher   4.56
## 541  2011                            D3Publisher   1.89
## 542  2012                            D3Publisher   0.29
## 543  2013                            D3Publisher   1.29
## 544  2014                            D3Publisher   0.08
## 545  2015                            D3Publisher   0.21
## 546  2016                            D3Publisher   0.08
## 547   N/A                            D3Publisher   0.07
## 548  2009                               Daedalic   0.11
## 549  2010                               Daedalic   0.02
## 550  2012                               Daedalic   0.15
## 551  2012                 Daedalic Entertainment   0.03
## 552  2013                 Daedalic Entertainment   0.11
## 553  2006                                  Daito   0.23
## 554  1981                               Data Age   0.39
## 555  1982                               Data Age   0.32
## 556  2007                Data Design Interactive   0.09
## 557  2008                Data Design Interactive   0.13
## 558  2009                Data Design Interactive   0.07
## 559  1995                              Data East   0.04
## 560  1998                              Data East   0.11
## 561  2002                         Datam Polystar   0.02
## 562  2007                         Datam Polystar   0.01
## 563  2004                            Deep Silver   0.32
## 564  2005                            Deep Silver   0.25
## 565  2006                            Deep Silver   0.35
## 566  2007                            Deep Silver   0.02
## 567  2008                            Deep Silver   2.91
## 568  2009                            Deep Silver   2.55
## 569  2010                            Deep Silver   2.01
## 570  2011                            Deep Silver   6.64
## 571  2012                            Deep Silver   0.64
## 572  2013                            Deep Silver   6.03
## 573  2014                            Deep Silver   1.89
## 574  2015                            Deep Silver   1.01
## 575  2016                            Deep Silver   0.97
## 576   N/A                            Deep Silver   0.08
## 577  2001              Destination Software, Inc   0.13
## 578  2002              Destination Software, Inc   0.02
## 579  2003              Destination Software, Inc   0.05
## 580  2004              Destination Software, Inc   0.04
## 581  2005              Destination Software, Inc   0.08
## 582  2006              Destination Software, Inc   0.06
## 583  2007              Destination Software, Inc   0.37
## 584  2008              Destination Software, Inc   0.13
## 585  2007                              Destineer   0.28
## 586  2008                              Destineer   1.54
## 587  2009                              Destineer   1.89
## 588  2010                              Destineer   0.57
## 589  2011                              Destineer   0.08
## 590  2007                            Detn8 Games   0.23
## 591  2010                       Devolver Digital   0.02
## 592  2015                       Devolver Digital   0.02
## 593  2007                        DHM Interactive   0.14
## 594  2009                        DHM Interactive   0.04
## 595  2002                               DigiCube   0.06
## 596  1999             Disney Interactive Studios   1.94
## 597  2002             Disney Interactive Studios   0.25
## 598  2003             Disney Interactive Studios   0.58
## 599  2004             Disney Interactive Studios   3.26
## 600  2005             Disney Interactive Studios   4.55
## 601  2006             Disney Interactive Studios   5.74
## 602  2007             Disney Interactive Studios  16.84
## 603  2008             Disney Interactive Studios  22.09
## 604  2009             Disney Interactive Studios  13.29
## 605  2010             Disney Interactive Studios  20.50
## 606  2011             Disney Interactive Studios  13.09
## 607  2012             Disney Interactive Studios   2.84
## 608  2013             Disney Interactive Studios   7.09
## 609  2014             Disney Interactive Studios   4.22
## 610  2015             Disney Interactive Studios   2.48
## 611   N/A             Disney Interactive Studios   1.20
## 612  2008                                 Dorart   0.02
## 613  2010                                 Dorart   0.01
## 614  2015                        dramatic create   0.08
## 615  2016                        dramatic create   0.03
## 616  2001               DreamCatcher Interactive   0.05
## 617  2003               DreamCatcher Interactive   0.12
## 618  2004               DreamCatcher Interactive   0.02
## 619  2005               DreamCatcher Interactive   0.02
## 620  2006               DreamCatcher Interactive   0.09
## 621  2008               DreamCatcher Interactive   0.07
## 622  2009               DreamCatcher Interactive   0.47
## 623  2010               DreamCatcher Interactive   0.11
## 624  1998                 DreamWorks Interactive   0.13
## 625  2005                              DSI Games   0.17
## 626  2006                              DSI Games   0.04
## 627  2007                              DSI Games   0.05
## 628  2008                              DSI Games   0.09
## 629  2005                      DTP Entertainment   0.23
## 630  2007                      DTP Entertainment   0.02
## 631  2008                      DTP Entertainment   0.89
## 632  2009                      DTP Entertainment   1.01
## 633  2010                      DTP Entertainment   0.41
## 634  2011                      DTP Entertainment   0.95
## 635  2012                      DTP Entertainment   0.06
## 636   N/A                      DTP Entertainment   0.02
## 637  2016               Dusenberry Martin Racing   0.05
## 638  2012                               EA Games   0.15
## 639  2012                       Easy Interactive   0.05
## 640  2009                                  Ecole   0.06
## 641  2006                                   Edia   0.07
## 642  2009                                   Edia   0.02
## 643  1996                      Eidos Interactive   5.89
## 644  1997                      Eidos Interactive  13.55
## 645  1998                      Eidos Interactive   7.68
## 646  1999                      Eidos Interactive  11.64
## 647  2000                      Eidos Interactive   4.56
## 648  2001                      Eidos Interactive   2.21
## 649  2002                      Eidos Interactive   6.88
## 650  2003                      Eidos Interactive   6.07
## 651  2004                      Eidos Interactive   3.00
## 652  2005                      Eidos Interactive   8.00
## 653  2006                      Eidos Interactive   4.38
## 654  2007                      Eidos Interactive   6.50
## 655  2008                      Eidos Interactive   5.48
## 656  2009                      Eidos Interactive  10.91
## 657   N/A                      Eidos Interactive   2.23
## 658  1992                        Electronic Arts   0.06
## 659  1994                        Electronic Arts   0.65
## 660  1995                        Electronic Arts   3.33
## 661  1996                        Electronic Arts   7.90
## 662  1997                        Electronic Arts  22.94
## 663  1998                        Electronic Arts  29.95
## 664  1999                        Electronic Arts  20.15
## 665  2000                        Electronic Arts  25.13
## 666  2001                        Electronic Arts  45.12
## 667  2002                        Electronic Arts  73.01
## 668  2003                        Electronic Arts  69.83
## 669  2004                        Electronic Arts  67.33
## 670  2005                        Electronic Arts  67.01
## 671  2006                        Electronic Arts  58.41
## 672  2007                        Electronic Arts  71.33
## 673  2008                        Electronic Arts  84.12
## 674  2009                        Electronic Arts  86.20
## 675  2010                        Electronic Arts  81.38
## 676  2011                        Electronic Arts  72.25
## 677  2012                        Electronic Arts  49.90
## 678  2013                        Electronic Arts  52.92
## 679  2014                        Electronic Arts  46.80
## 680  2015                        Electronic Arts  45.42
## 681  2016                        Electronic Arts  12.25
## 682   N/A                        Electronic Arts  16.93
## 683  1996                 Electronic Arts Victor   0.42
## 684  1996                                    Elf   0.36
## 685  1997                                    Elf   0.28
## 686  1996                                  Elite   0.07
## 687  1996                     Empire Interactive   0.41
## 688  1998                     Empire Interactive   0.03
## 689  1999                     Empire Interactive   0.02
## 690  2000                     Empire Interactive   1.14
## 691  2001                     Empire Interactive   1.00
## 692  2002                     Empire Interactive   1.36
## 693  2003                     Empire Interactive   2.41
## 694  2004                     Empire Interactive   1.93
## 695  2005                     Empire Interactive   0.46
## 696  2006                     Empire Interactive   0.26
## 697  2007                     Empire Interactive   0.86
## 698  2008                     Empire Interactive   1.26
## 699   N/A                     Empire Interactive   0.15
## 700  2001                                 Encore   0.03
## 701  2003                                 Encore   0.02
## 702  2005                                 Encore   0.02
## 703  1987                       Enix Corporation   2.56
## 704  1988                       Enix Corporation   3.87
## 705  1990                       Enix Corporation   3.12
## 706  1992                       Enix Corporation   2.79
## 707  1993                       Enix Corporation   1.15
## 708  1994                       Enix Corporation   0.72
## 709  1995                       Enix Corporation   3.32
## 710  1996                       Enix Corporation   1.79
## 711  1999                       Enix Corporation   2.49
## 712  2000                       Enix Corporation   5.36
## 713  2001                       Enix Corporation   2.91
## 714  2002                       Enix Corporation   1.35
## 715  2003                       Enix Corporation   0.66
## 716  2004                       Enix Corporation   1.65
## 717  2009                      Enjoy Gaming ltd.   0.10
## 718  2001                             Enterbrain   0.43
## 719  2002                             Enterbrain   0.33
## 720  2004                             Enterbrain   0.61
## 721  2006                             Enterbrain   0.16
## 722  2007                             Enterbrain   0.01
## 723  2008                             Enterbrain   0.38
## 724  2009                             Enterbrain   0.13
## 725  2010                             Enterbrain   0.18
## 726  1999              EON Digital Entertainment   0.01
## 727  2016                             Epic Games   0.01
## 728  1991                                  Epoch   0.08
## 729  1992                                  Epoch   0.07
## 730  1993                                  Epoch   0.05
## 731  1995                                  Epoch   0.51
## 732  1996                                  Epoch   0.19
## 733  2000                                  Epoch   0.15
## 734  2007                                 Ertain   0.05
## 735  1997                                    ESP   0.42
## 736  1998                                    ESP   0.14
## 737  2002                                    ESP   0.03
## 738  2005                        Essential Games   0.17
## 739  2006                        Essential Games   0.06
## 740  1998                        Evolution Games   0.07
## 741  2004                          Evolved Games   0.09
## 742  2009                          Evolved Games   0.10
## 743  2011                          Evolved Games   0.13
## 744  2011                   Excalibur Publishing   0.14
## 745  2012                   Excalibur Publishing   0.14
## 746  2014                        Experience Inc.   0.01
## 747  2015                        Experience Inc.   0.04
## 748  2016                        Experience Inc.   0.01
## 749  2015            Extreme Entertainment Group   0.03
## 750  2007                     Falcom Corporation   0.07
## 751  2008                     Falcom Corporation   0.11
## 752  2009                     Falcom Corporation   0.33
## 753  2010                     Falcom Corporation   0.36
## 754  2011                     Falcom Corporation   0.20
## 755  2012                     Falcom Corporation   0.11
## 756  2013                     Falcom Corporation   0.03
## 757  2012                                 Fields   0.03
## 758  2005                       Flashpoint Games   0.04
## 759  2010                       Flashpoint Games   0.04
## 760  2007                            Flight-Plan   0.08
## 761  2009                            Flight-Plan   0.04
## 762  2006                 Focus Home Interactive   0.03
## 763  2007                 Focus Home Interactive   0.03
## 764  2008                 Focus Home Interactive   0.08
## 765  2009                 Focus Home Interactive   0.91
## 766  2010                 Focus Home Interactive   0.70
## 767  2011                 Focus Home Interactive   0.62
## 768  2012                 Focus Home Interactive   1.93
## 769  2013                 Focus Home Interactive   0.57
## 770  2014                 Focus Home Interactive   2.05
## 771  2015                 Focus Home Interactive   0.36
## 772  2016                 Focus Home Interactive   0.16
## 773   N/A                 Focus Home Interactive   0.07
## 774  2012                       Focus Multimedia   0.03
## 775  2015                       Focus Multimedia   0.02
## 776  2008                                 fonfun   0.02
## 777  2010                    Foreign Media Games   0.63
## 778  1998                              Fortyfive   0.06
## 779  1996                        Fox Interactive   1.54
## 780  1997                        Fox Interactive   4.00
## 781  1998                        Fox Interactive   0.47
## 782  1999                        Fox Interactive   1.22
## 783  2000                        Fox Interactive   0.16
## 784  1994                          From Software   0.08
## 785  1996                          From Software   0.26
## 786  1997                          From Software   0.28
## 787  1998                          From Software   0.22
## 788  1999                          From Software   0.26
## 789  2001                          From Software   0.09
## 790  2002                          From Software   0.11
## 791  2006                          From Software   0.05
## 792  2009                          From Software   0.13
## 793  2010                          From Software   0.03
## 794  2013                          From Software   0.12
## 795  1995                                   Fuji   0.03
## 796  2011                           Funbox Media   0.86
## 797  2012                           Funbox Media   0.04
## 798  2015                           Funbox Media   0.01
## 799  2010                                 Funcom   0.03
## 800  2012                                 Funcom   0.17
## 801  1996                                FunSoft   0.12
## 802  2006                                 Funsta   0.02
## 803  2007                                 Funsta   0.14
## 804   N/A                                 Funsta   0.04
## 805  2010                                  FuRyu   0.01
## 806  2011                                  FuRyu   0.15
## 807  2012                                  FuRyu   0.13
## 808  2013                                  FuRyu   0.22
## 809  2014                                  FuRyu   0.16
## 810  2015                                  FuRyu   0.52
## 811  2016                                  FuRyu   0.13
## 812  2015                      FuRyu Corporation   0.03
## 813  2009                                  G.Rev   0.01
## 814  2010                                  G.Rev   0.03
## 815  1996                                   Gaga   0.02
## 816  1998                 Gainax Network Systems   0.16
## 817  2007                                 Gakken   0.04
## 818  1994                              Game Arts   0.14
## 819  2003                           Game Factory   0.04
## 820  2004                           Game Factory   0.24
## 821  2005                           Game Factory   0.06
## 822  2006                           Game Factory   0.24
## 823  2007                           Game Factory   1.53
## 824  2008                           Game Factory   1.53
## 825  2010                           Game Factory   0.15
## 826  2007                              Game Life   0.13
## 827  2009                              Game Life   0.17
## 828  2008                             Gamebridge   0.52
## 829  2009                             Gamebridge   0.21
## 830  2008                               Gamecock   0.20
## 831  2007                               Gameloft   0.11
## 832  2010                 GameMill Entertainment   0.18
## 833  2011                 GameMill Entertainment   0.99
## 834  2012                 GameMill Entertainment   0.21
## 835  1998                                GameTek   0.10
## 836  2001                Gathering of Developers   0.67
## 837  2003                Gathering of Developers   0.06
## 838  2004                Gathering of Developers   0.46
## 839  1998                  General Entertainment   0.14
## 840  1999                                  Genki   0.17
## 841  2001                                  Genki   0.06
## 842  2003                                  Genki   1.09
## 843  2007                                  Genki   0.09
## 844  2012                                  Genki   0.05
## 845  2009                            Genterprise   0.01
## 846  2003                             Ghostlight   0.38
## 847  2004                             Ghostlight   0.13
## 848  2005                             Ghostlight   0.22
## 849  2006                             Ghostlight   0.21
## 850  2007                             Ghostlight   0.17
## 851  2008                             Ghostlight   0.11
## 852  2009                             Ghostlight   0.63
## 853  2010                             Ghostlight   0.12
## 854  2011                             Ghostlight   0.70
## 855   N/A                             Ghostlight   0.12
## 856  2014                                   Giga   0.02
## 857  2012                                 Giza10   0.02
## 858  1995                                  Glams   0.08
## 859  2006                 Global A Entertainment   0.03
## 860  2007                 Global A Entertainment   0.07
## 861  2008                 Global A Entertainment   0.05
## 862  2004                            Global Star   5.53
## 863  2005                            Global Star   2.03
## 864  2006                            Global Star   0.09
## 865  2006                            GN Software   0.01
## 866  2008                            GN Software   0.03
## 867  2010                            GN Software   0.01
## 868  2008                                    GOA   0.02
## 869  2002                           Gotham Games   1.57
## 870  2003                           Gotham Games   1.54
## 871  2004                           Gotham Games   0.61
## 872  2008                               Graffiti   0.04
## 873  2009                               Graffiti   0.14
## 874  2010                               Graffiti   0.20
## 875  2007                       Grand Prix Games   0.06
## 876  2005                 Graphsim Entertainment   0.02
## 877  1996                Gremlin Interactive Ltd   0.39
## 878  1997                Gremlin Interactive Ltd   0.32
## 879  1998                Gremlin Interactive Ltd   0.39
## 880  2010                  Griffin International   0.09
## 881  2005                           Groove Games   0.06
## 882  2006                           Groove Games   0.03
## 883  2008                                    GSP   1.31
## 884  2009                                    GSP   1.60
## 885  2010                                    GSP   0.46
## 886  2011                                    GSP   0.32
## 887  1995                         GT Interactive   0.27
## 888  1996                         GT Interactive   5.71
## 889  1997                         GT Interactive   6.41
## 890  1998                         GT Interactive   5.78
## 891  1999                         GT Interactive   7.06
## 892  2008                                 GungHo   0.42
## 893  2009                                 GungHo   0.33
## 894  2011                                 GungHo   0.07
## 895  2012                                 GungHo   0.43
## 896  2013                                 GungHo   1.66
## 897  2014                                 GungHo   0.04
## 898  2016                                 GungHo   0.20
## 899  1996                                   Gust   0.01
## 900  1997                                   Gust   0.25
## 901  2001                                   Gust   0.09
## 902  2002                                   Gust   0.07
## 903  2007                                   Gust   0.04
## 904  2008                                   Gust   0.20
## 905  2009                                   Gust   0.14
## 906  2010                                   Gust   0.03
## 907  2011                                   Gust   0.02
## 908  2012                                   Gust   0.19
## 909  2013                                   Gust   0.06
## 910  2007                              Hackberry   0.22
## 911  2008                              Hackberry   0.08
## 912  2010                              Hackberry   0.01
## 913  1989                         HAL Laboratory   0.06
## 914  2002                    Hamster Corporation   0.28
## 915  2006                    Hamster Corporation   0.02
## 916  2014                               Happinet   0.11
## 917  2015                               Happinet   0.03
## 918  2016                               Happinet   0.04
## 919  2015                 Harmonix Music Systems   0.80
## 920  1994                     Hasbro Interactive   2.39
## 921  1997                     Hasbro Interactive   6.38
## 922  1998                     Hasbro Interactive   3.18
## 923  1999                     Hasbro Interactive   1.75
## 924  2000                     Hasbro Interactive   1.33
## 925  2001                     Hasbro Interactive   0.17
## 926  2006                     Hasbro Interactive   0.02
## 927  2000                      Havas Interactive   0.13
## 928  2013                           Headup Games   0.03
## 929  1996                           Hearty Robin   0.09
## 930  1993                                   Hect   0.19
## 931  1994                                   Hect   0.27
## 932  1995                                   Hect   0.04
## 933  2016                            Hello Games   1.60
## 934  2011                        Her Interactive   0.03
## 935  2004                        Hip Interactive   0.19
## 936  2005                        Hip Interactive   0.17
## 937  2008                        HMH Interactive   0.03
## 938  2009                        HMH Interactive   0.11
## 939  2010           Home Entertainment Suppliers   0.06
## 940  2011           Home Entertainment Suppliers   0.39
## 941   N/A           Home Entertainment Suppliers   0.26
## 942  1997                   Hudson Entertainment   0.79
## 943  1998                   Hudson Entertainment   0.06
## 944  1999                   Hudson Entertainment   0.47
## 945  2001                   Hudson Entertainment   0.12
## 946  2003                   Hudson Entertainment   0.07
## 947  2006                   Hudson Entertainment   0.02
## 948  2007                   Hudson Entertainment   0.06
## 949  2008                   Hudson Entertainment   0.01
## 950  2009                   Hudson Entertainment   0.09
## 951  1984                            Hudson Soft   1.10
## 952  1985                            Hudson Soft   1.03
## 953  1986                            Hudson Soft   4.66
## 954  1991                            Hudson Soft   0.44
## 955  1992                            Hudson Soft   0.79
## 956  1993                            Hudson Soft   1.02
## 957  1994                            Hudson Soft   3.05
## 958  1995                            Hudson Soft   0.82
## 959  1996                            Hudson Soft   1.10
## 960  1997                            Hudson Soft   1.86
## 961  1998                            Hudson Soft   0.03
## 962  1999                            Hudson Soft   0.17
## 963  2000                            Hudson Soft   0.16
## 964  2001                            Hudson Soft   0.49
## 965  2002                            Hudson Soft   0.65
## 966  2003                            Hudson Soft   0.56
## 967  2004                            Hudson Soft   0.08
## 968  2005                            Hudson Soft   0.22
## 969  2006                            Hudson Soft   0.23
## 970  2007                            Hudson Soft   0.51
## 971  2008                            Hudson Soft   0.77
## 972  2009                            Hudson Soft   1.82
## 973  2010                            Hudson Soft   1.22
## 974  2011                            Hudson Soft   0.23
## 975  1991                    Human Entertainment   0.39
## 976  1994                    Human Entertainment   0.73
## 977  1995                    Human Entertainment   0.39
## 978  1996                    Human Entertainment   0.12
## 979  1997                    Human Entertainment   0.44
## 980  1998                    Human Entertainment   0.62
## 981  1999                    Human Entertainment   0.31
## 982  2015                                  HuneX   0.03
## 983  2011                    Iceberg Interactive   0.06
## 984  2012                    Iceberg Interactive   0.02
## 985  1992                            id Software   0.03
## 986  2002                           Idea Factory   0.05
## 987  2005                           Idea Factory   0.03
## 988  2006                           Idea Factory   0.17
## 989  2007                           Idea Factory   0.05
## 990  2008                           Idea Factory   0.22
## 991  2009                           Idea Factory   0.31
## 992  2010                           Idea Factory   0.68
## 993  2011                           Idea Factory   0.56
## 994  2012                           Idea Factory   0.55
## 995  2013                           Idea Factory   0.31
## 996  2014                           Idea Factory   0.66
## 997  2015                           Idea Factory   0.29
## 998  2016                           Idea Factory   0.12
## 999  2017                           Idea Factory   0.01
## 1000  N/A                           Idea Factory   0.01
## 1001 2014             Idea Factory International   0.38
## 1002 2015             Idea Factory International   0.23
## 1003 2006                           IE Institute   0.73
## 1004 2007                           IE Institute   0.17
## 1005 2008                           IE Institute   0.04
## 1006 2012                           IE Institute   0.02
## 1007 2002                 Ignition Entertainment   0.53
## 1008 2003                 Ignition Entertainment   0.23
## 1009 2004                 Ignition Entertainment   0.99
## 1010 2005                 Ignition Entertainment   1.11
## 1011 2006                 Ignition Entertainment   0.81
## 1012 2007                 Ignition Entertainment   0.79
## 1013 2008                 Ignition Entertainment   1.48
## 1014 2009                 Ignition Entertainment   0.27
## 1015 2011                 Ignition Entertainment   0.45
## 1016  N/A                 Ignition Entertainment   0.16
## 1017 2004                     Illusion Softworks   0.70
## 1018 1997                                 Imadio   0.14
## 1019 2012                            Image Epoch   0.10
## 1020 2014                        imageepoch Inc.   0.04
## 1021 1995                             Imageworks   0.02
## 1022 1981                                 Imagic   4.82
## 1023 1991                              Imagineer   0.38
## 1024 1996                              Imagineer   0.45
## 1025 1997                              Imagineer   0.61
## 1026 1998                              Imagineer   0.19
## 1027 1999                              Imagineer   0.63
## 1028 2000                              Imagineer   0.27
## 1029 2001                              Imagineer   0.12
## 1030 1993                                   Imax   0.06
## 1031 2004                            Indie Games   0.32
## 1032 1994                             Infogrames   0.78
## 1033 1996                             Infogrames   0.31
## 1034 1997                             Infogrames   0.87
## 1035 1998                             Infogrames   0.68
## 1036 1999                             Infogrames   1.16
## 1037 2000                             Infogrames   1.66
## 1038 2001                             Infogrames   2.12
## 1039 2002                             Infogrames   8.46
## 1040 2003                             Infogrames   0.14
## 1041  N/A                             Infogrames   0.16
## 1042 2016                        Insomniac Games   0.12
## 1043 2006                           Interchannel   0.08
## 1044 2008                           Interchannel   0.02
## 1045 2007                     Interchannel-Holon   0.01
## 1046 2015                              Intergrow   0.03
## 1047 1993                              Interplay   0.01
## 1048 1995                              Interplay   0.30
## 1049 1996                              Interplay   1.02
## 1050 1997                              Interplay   0.99
## 1051 1998                              Interplay   0.83
## 1052 1999                              Interplay   0.21
## 1053 2000                              Interplay   1.00
## 1054 2001                              Interplay   0.63
## 1055 2002                              Interplay   0.39
## 1056 2003                              Interplay   0.60
## 1057 2004                              Interplay   0.68
## 1058 1997                  Interplay Productions   0.10
## 1059 2012             Interworks Unlimited, Inc.   0.01
## 1060 2016                           Inti Creates   0.01
## 1061 2016                  Introversion Software   0.02
## 1062 2015                   inXile Entertainment   0.10
## 1063 1998              Irem Software Engineering   0.03
## 1064 2006              Irem Software Engineering   0.06
## 1065 2007              Irem Software Engineering   0.05
## 1066 2008              Irem Software Engineering   0.15
## 1067 2009              Irem Software Engineering   0.07
## 1068 2010              Irem Software Engineering   0.05
## 1069 2011              Irem Software Engineering   0.03
## 1070 2012              Irem Software Engineering   0.02
## 1071 1982                       ITT Family Games   0.34
## 1072 2008                              Ivolgamus   0.04
## 1073 2011                                   iWin   0.06
## 1074 2005                      Jack of All Games   0.38
## 1075 2011                      Jack of All Games   0.04
## 1076 1995                                 Jaleco   0.60
## 1077 1996                                 Jaleco   0.33
## 1078 1998                                 Jaleco   0.15
## 1079 1999                                 Jaleco   0.02
## 1080 2002                                 Jaleco   0.06
## 1081 2003                                 Jaleco   0.39
## 1082 2004                                 Jaleco   0.07
## 1083 2007                                 Jaleco   0.27
## 1084 2008                                 Jaleco   0.05
## 1085 2002                     Jester Interactive   0.71
## 1086 2003                     Jester Interactive   0.04
## 1087 2005                     Jester Interactive   0.40
## 1088 1999                                Jorudan   0.30
## 1089 2002                                Jorudan   0.36
## 1090 2003                                Jorudan   0.29
## 1091 2002                     JoWood Productions   0.02
## 1092 2004                     JoWood Productions   0.05
## 1093 2005                     JoWood Productions   0.11
## 1094 2006                     JoWood Productions   0.06
## 1095 2007                     JoWood Productions   0.04
## 1096 2008                     JoWood Productions   0.43
## 1097 2009                     JoWood Productions   0.39
## 1098 2010                     JoWood Productions   0.39
## 1099 2010                            Just Flight   0.03
## 1100 1994                                    JVC   0.12
## 1101 1996                                    JVC   2.49
## 1102 1997                                    JVC   0.03
## 1103 1998                                    JVC   0.08
## 1104 1999                                    JVC   0.02
## 1105 2000                                    JVC   0.06
## 1106 2012                         Kadokawa Games   0.02
## 1107 2013                         Kadokawa Games   0.05
## 1108 2014                         Kadokawa Games   0.20
## 1109 2015                         Kadokawa Games   0.09
## 1110 2016                         Kadokawa Games   0.22
## 1111 1996                        Kadokawa Shoten   0.23
## 1112 1997                        Kadokawa Shoten   0.21
## 1113 1998                        Kadokawa Shoten   0.83
## 1114 1999                        Kadokawa Shoten   0.35
## 1115 2004                        Kadokawa Shoten   0.02
## 1116 2005                        Kadokawa Shoten   0.04
## 1117 2006                        Kadokawa Shoten   0.02
## 1118 2007                        Kadokawa Shoten   0.26
## 1119 2008                        Kadokawa Shoten   0.22
## 1120 2009                        Kadokawa Shoten   0.09
## 1121 2010                        Kadokawa Shoten   0.19
## 1122 2011                        Kadokawa Shoten   0.68
## 1123 2012                        Kadokawa Shoten   0.22
## 1124 2013                        Kadokawa Shoten   0.20
## 1125 2014                        Kadokawa Shoten   0.14
## 1126 2015                        Kadokawa Shoten   0.07
## 1127 2013                            Kaga Create   0.01
## 1128 2015                            Kaga Create   0.13
## 1129 2007                          Kalypso Media   0.01
## 1130 2008                          Kalypso Media   0.05
## 1131 2009                          Kalypso Media   0.32
## 1132 2010                          Kalypso Media   0.31
## 1133 2011                          Kalypso Media   0.63
## 1134 2012                          Kalypso Media   0.02
## 1135 2014                          Kalypso Media   0.19
## 1136 2015                          Kalypso Media   0.42
## 1137  N/A                          Kalypso Media   0.50
## 1138 2010                                  Kamui   0.03
## 1139 2006                            Kando Games   0.03
## 1140 2010                    Karin Entertainment   0.02
## 1141 1991                                  Kemco   0.05
## 1142 1997                                  Kemco   0.54
## 1143 1998                                  Kemco   0.49
## 1144 1999                                  Kemco   0.27
## 1145 2001                                  Kemco   0.10
## 1146 2002                                  Kemco   0.06
## 1147 2003                                  Kemco   0.69
## 1148 2005                                  Kemco   0.02
## 1149 1998                                    KID   0.03
## 1150 2006                                    KID   0.05
## 1151 2007                           Kids Station   0.03
## 1152 2002                           King Records   0.02
## 1153 2003                    Knowledge Adventure   0.61
## 1154 2009                    Knowledge Adventure   0.86
## 1155 2008                             Koch Media   3.01
## 1156 2011                             Koch Media   0.13
## 1157 2013                             Koch Media   0.08
## 1158 2015                             Koch Media   1.45
## 1159 2016                             Koch Media   0.04
## 1160 1995               Kokopeli Digital Studios   0.03
## 1161 1986           Konami Digital Entertainment   4.99
## 1162 1987           Konami Digital Entertainment   0.93
## 1163 1989           Konami Digital Entertainment   0.85
## 1164 1990           Konami Digital Entertainment   2.23
## 1165 1991           Konami Digital Entertainment   2.56
## 1166 1992           Konami Digital Entertainment   0.26
## 1167 1993           Konami Digital Entertainment   0.46
## 1168 1994           Konami Digital Entertainment   1.71
## 1169 1995           Konami Digital Entertainment   2.79
## 1170 1996           Konami Digital Entertainment   3.88
## 1171 1997           Konami Digital Entertainment   4.60
## 1172 1998           Konami Digital Entertainment  15.39
## 1173 1999           Konami Digital Entertainment  15.26
## 1174 2000           Konami Digital Entertainment   8.47
## 1175 2001           Konami Digital Entertainment  21.89
## 1176 2002           Konami Digital Entertainment  12.42
## 1177 2003           Konami Digital Entertainment  13.97
## 1178 2004           Konami Digital Entertainment  20.20
## 1179 2005           Konami Digital Entertainment  14.92
## 1180 2006           Konami Digital Entertainment  14.60
## 1181 2007           Konami Digital Entertainment  17.21
## 1182 2008           Konami Digital Entertainment  27.82
## 1183 2009           Konami Digital Entertainment  16.09
## 1184 2010           Konami Digital Entertainment  18.55
## 1185 2011           Konami Digital Entertainment  10.04
## 1186 2012           Konami Digital Entertainment   7.97
## 1187 2013           Konami Digital Entertainment   5.37
## 1188 2014           Konami Digital Entertainment   5.06
## 1189 2015           Konami Digital Entertainment   6.86
## 1190 2016           Konami Digital Entertainment   1.21
## 1191  N/A           Konami Digital Entertainment   5.08
## 1192 2003                              Kool Kizz   0.04
## 1193 1996                                    KSS   0.03
## 1194 1993                                 Laguna   0.56
## 1195 1994                                 Laguna   0.36
## 1196 1995                                 Laguna   0.63
## 1197 2008                     Legacy Interactive   0.04
## 1198 1999                             LEGO Media   1.18
## 1199 2001                             LEGO Media   0.24
## 1200 2002                             LEGO Media   0.14
## 1201 2009                                Level 5   0.35
## 1202 2010                                Level 5   1.94
## 1203 2011                                Level 5   0.80
## 1204 2012                                Level 5   1.78
## 1205 2013                                Level 5   0.49
## 1206 2014                                Level 5   2.68
## 1207 2015                                Level 5   2.31
## 1208 2016                                Level 5   1.82
## 1209 2007                  Lexicon Entertainment   0.03
## 1210 2008                  Lexicon Entertainment   0.02
## 1211 2012                            Licensed 4U   0.07
## 1212 2007                 Lighthouse Interactive   0.02
## 1213 2002                           Liquid Games   0.26
## 1214 2006                           Liquid Games   0.01
## 1215 2010                           Little Orbit   0.15
## 1216 2013                           Little Orbit   0.05
## 1217 2014                           Little Orbit   1.14
## 1218 2015                           Little Orbit   0.70
## 1219 1998                                  Locus   0.07
## 1220 2002                              LSP Games   0.03
## 1221 2003                              LSP Games   0.09
## 1222 1994                              LucasArts   1.95
## 1223 1996                              LucasArts   0.55
## 1224 1997                              LucasArts   0.68
## 1225 1999                              LucasArts   2.95
## 1226 2000                              LucasArts   0.26
## 1227 2001                              LucasArts   2.58
## 1228 2002                              LucasArts   2.16
## 1229 2003                              LucasArts   2.19
## 1230 2004                              LucasArts   3.93
## 1231 2005                              LucasArts   9.87
## 1232 2006                              LucasArts   7.44
## 1233 2007                              LucasArts  18.70
## 1234 2008                              LucasArts  15.79
## 1235 2009                              LucasArts   4.09
## 1236 2010                              LucasArts   4.08
## 1237 2011                              LucasArts   7.73
## 1238  N/A                              LucasArts   2.39
## 1239 2004                               Mad Catz   0.20
## 1240 2006                               Mad Catz   0.03
## 1241 2012                               Mad Catz   0.07
## 1242 1998                        Magical Company   0.41
## 1243 2001                                  Magix   0.31
## 1244 2009                                  Magix   0.04
## 1245 2001                  Majesco Entertainment   1.09
## 1246 2002                  Majesco Entertainment   0.05
## 1247 2003                  Majesco Entertainment   0.71
## 1248 2004                  Majesco Entertainment   2.54
## 1249 2005                  Majesco Entertainment   0.59
## 1250 2006                  Majesco Entertainment   0.37
## 1251 2007                  Majesco Entertainment   0.95
## 1252 2008                  Majesco Entertainment   1.37
## 1253 2009                  Majesco Entertainment   3.43
## 1254 2010                  Majesco Entertainment   0.88
## 1255 2011                  Majesco Entertainment   3.33
## 1256 2013                  Majesco Entertainment   0.50
## 1257  N/A                  Majesco Entertainment   0.27
## 1258 2008                            Mamba Games   0.03
## 1259 2010                            Mamba Games   0.02
## 1260 2015                   Marvel Entertainment   0.05
## 1261 2012                Marvelous Entertainment   1.05
## 1262 2013                Marvelous Entertainment   0.74
## 1263 2014                Marvelous Entertainment   0.31
## 1264 2015                Marvelous Entertainment   0.22
## 1265 2016                Marvelous Entertainment   0.01
## 1266 2015                        Marvelous Games   0.02
## 1267 2002                  Marvelous Interactive   0.08
## 1268 2003                  Marvelous Interactive   0.03
## 1269 2004                  Marvelous Interactive   0.24
## 1270 2005                  Marvelous Interactive   0.49
## 1271 2006                  Marvelous Interactive   0.07
## 1272 2007                  Marvelous Interactive   0.21
## 1273 2008                  Marvelous Interactive   0.31
## 1274 2009                  Marvelous Interactive   0.34
## 1275 2010                  Marvelous Interactive   0.50
## 1276 2011                  Marvelous Interactive   1.00
## 1277 2014                  Marvelous Interactive   0.27
## 1278 2015                  Marvelous Interactive   0.44
## 1279 2016                  Marvelous Interactive   0.19
## 1280 2011                      Masque Publishing   0.02
## 1281 2006                           Mastertronic   0.02
## 1282 2009                           Mastertronic   0.05
## 1283 2010                           Mastertronic   0.07
## 1284 2011                           Mastertronic   1.58
## 1285 2012                           Mastertronic   0.01
## 1286 2004                                Mastiff   0.10
## 1287 2005                                Mastiff   0.08
## 1288 2009                                Mastiff   0.62
## 1289 2010                                Mastiff   1.17
## 1290 2011                                Mastiff   0.26
## 1291 1981                     Mattel Interactive   2.53
## 1292 1982                     Mattel Interactive   0.39
## 1293 1999                     Mattel Interactive   0.36
## 1294 2000                     Mattel Interactive   0.23
## 1295 2001                               Max Five   0.05
## 1296 2012                   Maximum Family Games   0.03
## 1297 1988                                  Maxis   0.03
## 1298 1992                                  Maxis   2.14
## 1299 1996                                  Maxis   1.22
## 1300 2004                      MC2 Entertainment   0.06
## 1301 2005                      MC2 Entertainment   0.02
## 1302 2002                    Media Entertainment   0.01
## 1303 2000                          Media Factory   0.14
## 1304 2001                          Media Factory   0.15
## 1305 1994                            Media Rings   0.36
## 1306 1995                            Media Rings   0.10
## 1307 2002                            Media Rings   0.19
## 1308 1996                            Media Works   0.04
## 1309 1998                            Media Works   0.09
## 1310 2006                            Media Works   0.03
## 1311 2007                            Media Works   0.02
## 1312 1995                             MediaQuest   0.05
## 1313 1981                           Men-A-Vision   0.77
## 1314 2009                     Mentor Interactive   0.99
## 1315 2010                     Mentor Interactive   0.07
## 1316 2011                     Mentor Interactive   0.01
## 1317 2007                          Mercury Games   0.08
## 1318 2008                          Mercury Games   0.13
## 1319 2009                            Merscom LLC   0.20
## 1320 2001                               Metro 3D   0.60
## 1321 2002                               Metro 3D   0.75
## 1322 2003                               Metro 3D   0.32
## 1323 2007                               Metro 3D   0.12
## 1324 2008                               Metro 3D   0.05
## 1325 2006                            Michaelsoft   0.01
## 1326 1994                            Micro Cabin   0.02
## 1327 1995                            Micro Cabin   0.08
## 1328 1996                            Micro Cabin   0.10
## 1329 2002                               Microids   0.08
## 1330 2003                               Microids   0.12
## 1331 2004                               Microids   0.09
## 1332 2005                               Microids   0.07
## 1333 2016                               Microids   0.04
## 1334 1995                             Microprose   0.09
## 1335 1996                             Microprose   0.82
## 1336 1997                             Microprose   0.01
## 1337 1999                             Microprose   1.06
## 1338  N/A                             Microprose   0.04
## 1339 1996                 Microsoft Game Studios   5.12
## 1340 1999                 Microsoft Game Studios   0.10
## 1341 2000                 Microsoft Game Studios   0.99
## 1342 2001                 Microsoft Game Studios  13.49
## 1343 2002                 Microsoft Game Studios   6.96
## 1344 2003                 Microsoft Game Studios   8.92
## 1345 2004                 Microsoft Game Studios  13.68
## 1346 2005                 Microsoft Game Studios   5.69
## 1347 2006                 Microsoft Game Studios   9.98
## 1348 2007                 Microsoft Game Studios  26.10
## 1349 2008                 Microsoft Game Studios  15.31
## 1350 2009                 Microsoft Game Studios  15.61
## 1351 2010                 Microsoft Game Studios  49.16
## 1352 2011                 Microsoft Game Studios  21.28
## 1353 2012                 Microsoft Game Studios  15.33
## 1354 2013                 Microsoft Game Studios  16.39
## 1355 2014                 Microsoft Game Studios  10.31
## 1356 2015                 Microsoft Game Studios   9.95
## 1357 2016                 Microsoft Game Studios   1.42
## 1358 1997        Midas Interactive Entertainment   0.02
## 1359 1998        Midas Interactive Entertainment   0.12
## 1360 1999        Midas Interactive Entertainment   0.04
## 1361 2000        Midas Interactive Entertainment   1.09
## 1362 2001        Midas Interactive Entertainment   0.56
## 1363 2002        Midas Interactive Entertainment   0.56
## 1364 2005        Midas Interactive Entertainment   0.06
## 1365 2006        Midas Interactive Entertainment   0.03
## 1366 2007        Midas Interactive Entertainment   0.06
## 1367 2008        Midas Interactive Entertainment   0.03
## 1368 2009        Midas Interactive Entertainment   0.15
## 1369 1996                           Midway Games   0.13
## 1370 1997                           Midway Games   1.41
## 1371 1998                           Midway Games   5.58
## 1372 1999                           Midway Games   3.65
## 1373 2000                           Midway Games   4.20
## 1374 2001                           Midway Games   5.18
## 1375 2002                           Midway Games   8.34
## 1376 2003                           Midway Games   4.51
## 1377 2004                           Midway Games   8.22
## 1378 2005                           Midway Games   5.19
## 1379 2006                           Midway Games   5.50
## 1380 2007                           Midway Games   8.10
## 1381 2008                           Midway Games   9.28
## 1382  N/A                           Midway Games   0.56
## 1383 2008                              Milestone   0.08
## 1384 2016                        Milestone S.r.l   0.05
## 1385 2014                       Milestone S.r.l.   0.41
## 1386 2015                       Milestone S.r.l.   0.73
## 1387 2016                       Milestone S.r.l.   0.14
## 1388 2008                         Minato Station   0.02
## 1389 2012                         Minato Station   0.02
## 1390 2015                         Minato Station   0.01
## 1391 1995                              Mindscape   0.24
## 1392 1996                              Mindscape   0.25
## 1393 1997                              Mindscape   0.14
## 1394 1998                              Mindscape   0.22
## 1395 1999                              Mindscape   0.04
## 1396 2000                              Mindscape   0.02
## 1397 2003                              Mindscape   0.19
## 1398 2007                              Mindscape   2.24
## 1399 2008                              Mindscape   0.34
## 1400 2009                              Mindscape   3.49
## 1401 2010                              Mindscape   0.57
## 1402 2008                          Mirai Shounen   0.02
## 1403 1993                                 Misawa   0.05
## 1404 1994                                 Misawa   0.02
## 1405 1998                                 Mitsui   0.08
## 1406 2015                              mixi, Inc   0.86
## 1407 2016                                MLB.com   0.04
## 1408 2015                                 Mojang   2.89
## 1409 2007               Monte Christo Multimedia   0.05
## 1410 2008                                   Moss   0.12
## 1411 2013                                   Moss   0.01
## 1412 1998                                    MTO   0.10
## 1413 2006                                    MTO   0.16
## 1414 2007                                    MTO   0.11
## 1415 2008                                    MTO   0.01
## 1416 2010                                    MTO   0.02
## 1417 2008                              MTV Games   5.07
## 1418 2009                              MTV Games   6.95
## 1419 2010                              MTV Games   6.63
## 1420 2011                              MTV Games   0.21
## 1421  N/A                              MTV Games   2.11
## 1422 2003                   Mud Duck Productions   0.30
## 1423 2004                   Mud Duck Productions   0.55
## 1424 2006                            Mumbo Jumbo   0.02
## 1425 2007                            Mumbo Jumbo   0.35
## 1426 2008                            Mumbo Jumbo   0.21
## 1427 1985                                  Mycom   0.02
## 1428 2006                           Myelin Media   0.13
## 1429 1981                               Mystique   0.82
## 1430 2004                                    N/A   5.30
## 1431 2005                                    N/A   1.43
## 1432 2007                                    N/A   1.21
## 1433 2010                                    N/A   0.16
## 1434 2011                                    N/A   0.19
## 1435 2012                                    N/A   0.05
## 1436 2014                                    N/A   0.02
## 1437 2016                                    N/A   0.03
## 1438  N/A                                    N/A   6.49
## 1439 1984                     Namco Bandai Games   3.43
## 1440 1985                     Namco Bandai Games   1.46
## 1441 1986                     Namco Bandai Games   5.28
## 1442 1987                     Namco Bandai Games   2.67
## 1443 1988                     Namco Bandai Games   2.43
## 1444 1989                     Namco Bandai Games   1.10
## 1445 1990                     Namco Bandai Games   0.63
## 1446 1991                     Namco Bandai Games   1.03
## 1447 1992                     Namco Bandai Games   1.04
## 1448 1993                     Namco Bandai Games   5.38
## 1449 1994                     Namco Bandai Games   1.72
## 1450 1995                     Namco Bandai Games   2.52
## 1451 1996                     Namco Bandai Games   3.49
## 1452 1997                     Namco Bandai Games   6.34
## 1453 1998                     Namco Bandai Games   5.86
## 1454 1999                     Namco Bandai Games   4.94
## 1455 2000                     Namco Bandai Games   9.70
## 1456 2001                     Namco Bandai Games   7.88
## 1457 2002                     Namco Bandai Games  12.98
## 1458 2003                     Namco Bandai Games  10.46
## 1459 2004                     Namco Bandai Games   5.49
## 1460 2005                     Namco Bandai Games  14.79
## 1461 2006                     Namco Bandai Games  11.70
## 1462 2007                     Namco Bandai Games   7.59
## 1463 2008                     Namco Bandai Games  10.90
## 1464 2009                     Namco Bandai Games  16.77
## 1465 2010                     Namco Bandai Games  16.41
## 1466 2011                     Namco Bandai Games  22.08
## 1467 2012                     Namco Bandai Games  15.93
## 1468 2013                     Namco Bandai Games   9.96
## 1469 2014                     Namco Bandai Games   9.64
## 1470 2015                     Namco Bandai Games  15.56
## 1471 2016                     Namco Bandai Games   6.49
## 1472  N/A                     Namco Bandai Games   0.44
## 1473 1996                                Natsume   1.25
## 1474 1997                                Natsume   0.10
## 1475 2000                                Natsume   0.27
## 1476 2001                                Natsume   0.09
## 1477 2002                                Natsume   0.47
## 1478 2003                                Natsume   0.37
## 1479 2006                                Natsume   0.09
## 1480 2007                                Natsume   0.13
## 1481 2009                                Natsume   0.08
## 1482 2010                                Natsume   0.69
## 1483 2014                                Natsume   0.15
## 1484 2008                           Navarre Corp   0.05
## 1485 2008                             Naxat Soft   0.01
## 1486 1996                                    NCS   0.20
## 1487 1997                                    NCS   0.11
## 1488 1998                                    NCS   0.09
## 1489 2005                                 NCSoft   0.07
## 1490 2006                                 NCSoft   0.05
## 1491 2012                                 NCSoft   2.30
## 1492 2014                                 NCSoft   0.17
## 1493 2002                        NDA Productions   0.12
## 1494 1995                                    NEC   0.14
## 1495 1996                                    NEC   0.29
## 1496 1996                       NEC Interchannel   0.06
## 1497 1997                       NEC Interchannel   0.21
## 1498 1998                       NEC Interchannel   0.33
## 1499 2000                       NEC Interchannel   0.14
## 1500 2008                       NEC Interchannel   0.04
## 1501 2007                     Neko Entertainment   0.06
## 1502 2008                     Neko Entertainment   0.05
## 1503 2009                     Neko Entertainment   0.02
## 1504 2010                     Neko Entertainment   0.18
## 1505 2010                                NetRevo   0.02
## 1506 2012                                NetRevo   0.01
## 1507 1995                                    New   0.36
## 1508 1992                    New World Computing   0.01
## 1509 1998                               NewKidCo   0.55
## 1510 1999                               NewKidCo   0.37
## 1511 2001                               NewKidCo   0.01
## 1512 2002                               NewKidCo   0.26
## 1513 2003                               NewKidCo   0.14
## 1514 2010                                  Nexon   0.03
## 1515 1995                             Nichibutsu   0.28
## 1516 2012               Nihon Falcom Corporation   0.43
## 1517 2014               Nihon Falcom Corporation   0.06
## 1518 2015               Nihon Falcom Corporation   0.15
## 1519 2016               Nihon Falcom Corporation   0.13
## 1520 1983                               Nintendo  10.96
## 1521 1984                               Nintendo  45.56
## 1522 1985                               Nintendo  49.95
## 1523 1986                               Nintendo  16.18
## 1524 1987                               Nintendo  11.95
## 1525 1988                               Nintendo  36.44
## 1526 1989                               Nintendo  63.88
## 1527 1990                               Nintendo  35.49
## 1528 1991                               Nintendo  15.97
## 1529 1992                               Nintendo  38.11
## 1530 1993                               Nintendo  20.04
## 1531 1994                               Nintendo  24.99
## 1532 1995                               Nintendo  16.72
## 1533 1996                               Nintendo  73.70
## 1534 1997                               Nintendo  25.80
## 1535 1998                               Nintendo  48.41
## 1536 1999                               Nintendo  65.33
## 1537 2000                               Nintendo  34.05
## 1538 2001                               Nintendo  45.37
## 1539 2002                               Nintendo  48.31
## 1540 2003                               Nintendo  38.14
## 1541 2004                               Nintendo  60.65
## 1542 2005                               Nintendo 127.47
## 1543 2006                               Nintendo 205.61
## 1544 2007                               Nintendo 104.18
## 1545 2008                               Nintendo  91.22
## 1546 2009                               Nintendo 128.89
## 1547 2010                               Nintendo  61.07
## 1548 2011                               Nintendo  51.53
## 1549 2012                               Nintendo  56.47
## 1550 2013                               Nintendo  52.79
## 1551 2014                               Nintendo  48.65
## 1552 2015                               Nintendo  27.08
## 1553 2016                               Nintendo   3.47
## 1554  N/A                               Nintendo   2.13
## 1555 2002                           Nippon Amuse   0.09
## 1556 2012                        Nippon Columbia   0.28
## 1557 2013                        Nippon Columbia   0.23
## 1558 2014                        Nippon Columbia   0.24
## 1559 2015                        Nippon Columbia   0.14
## 1560 2016                        Nippon Columbia   0.06
## 1561 1998                   Nippon Ichi Software   0.04
## 1562 2007                   Nippon Ichi Software   0.47
## 1563 2008                   Nippon Ichi Software   0.64
## 1564 2009                   Nippon Ichi Software   1.24
## 1565 2010                   Nippon Ichi Software   1.06
## 1566 2011                   Nippon Ichi Software   1.79
## 1567 2012                   Nippon Ichi Software   0.43
## 1568 2013                   Nippon Ichi Software   3.47
## 1569 2014                   Nippon Ichi Software   2.80
## 1570 2015                   Nippon Ichi Software   1.47
## 1571 2016                   Nippon Ichi Software   0.57
## 1572  N/A                   Nippon Ichi Software   0.30
## 1573 1996                         Nippon Telenet   0.26
## 1574 2014                              Nitroplus   0.01
## 1575 2015                              Nitroplus   0.01
## 1576 2007                                Nobilis   0.06
## 1577 2008                                Nobilis   1.65
## 1578 2009                                Nobilis   0.09
## 1579 2010                                Nobilis   0.14
## 1580 2007                            Nordcurrent   0.05
## 1581 2008                            Nordcurrent   0.20
## 1582 2009                            Nordcurrent   0.23
## 1583 2010                            Nordcurrent   0.11
## 1584 2008                           Nordic Games   0.27
## 1585 2009                           Nordic Games   1.24
## 1586 2010                           Nordic Games   0.76
## 1587 2011                           Nordic Games   0.81
## 1588 2012                           Nordic Games   0.54
## 1589 2013                           Nordic Games   0.06
## 1590 2014                           Nordic Games   0.11
## 1591 2015                           Nordic Games   0.62
## 1592 2016                           Nordic Games   0.03
## 1593 2005                              NovaLogic   0.80
## 1594 2009                              NovaLogic   0.02
## 1595 2009                            Number None   0.03
## 1596 2009                                O-Games   0.02
## 1597 2010                                O-Games   0.79
## 1598 2011                                O-Games   0.27
## 1599 2004                       O3 Entertainment   0.09
## 1600 2006                       O3 Entertainment   0.02
## 1601 2007                       O3 Entertainment   0.11
## 1602 1992                                  Ocean   0.28
## 1603 1993                                  Ocean   0.36
## 1604 1995                                  Ocean   0.29
## 1605 1996                                  Ocean   0.13
## 1606 1997                                  Ocean   1.65
## 1607 1998                                  Ocean   0.90
## 1608 2013                          Office Create   0.03
## 1609 2014                          Office Create   0.03
## 1610 1997                              On Demand   0.21
## 1611 2006                              Ongakukan   0.01
## 1612 1997                         Origin Systems   0.09
## 1613 2013                                Otomate   0.01
## 1614 2005                     Oxygen Interactive   0.34
## 1615 2006                     Oxygen Interactive   1.80
## 1616 2007                     Oxygen Interactive   0.14
## 1617 2008                     Oxygen Interactive   0.67
## 1618 2009                     Oxygen Interactive   0.50
## 1619  N/A                     Oxygen Interactive   0.01
## 1620 2009                               P2 Games   0.08
## 1621 2011                               P2 Games   0.32
## 1622 2002            Pacific Century Cyber Works   0.26
## 1623 1995                          Pack-In-Video   0.11
## 1624 1999                           Pack In Soft   0.48
## 1625 1989                                 Palcom   4.17
## 1626 1995                       Panther Software   0.17
## 1627 2007                                   Paon   0.14
## 1628 2008                                   Paon   0.07
## 1629 2010                                   Paon   0.02
## 1630 2011                                   Paon   0.02
## 1631 2013                       Paon Corporation   0.03
## 1632 2016                    Paradox Development   0.01
## 1633 2007                    Paradox Interactive   0.03
## 1634 2008                    Paradox Interactive   0.04
## 1635 2009                    Paradox Interactive   0.12
## 1636 2010                    Paradox Interactive   0.15
## 1637 2011                    Paradox Interactive   0.18
## 1638 2012                    Paradox Interactive   0.02
## 1639 2014                    Paradox Interactive   0.02
## 1640 2015                    Paradox Interactive   0.14
## 1641 2016                    Paradox Interactive   0.06
## 1642 1981                           Parker Bros.   3.35
## 1643 1982                           Parker Bros.   1.12
## 1644 1983                           Parker Bros.   0.50
## 1645 2009          Performance Designed Products   0.36
## 1646 2002                             Phantagram   0.05
## 1647 2009                            Phantom EFX   0.09
## 1648 2007                             Phenomedia   0.11
## 1649 2008                             Phenomedia   0.03
## 1650 2009                             Phenomedia   0.05
## 1651 2007                          Phoenix Games   0.02
## 1652 2010                                 Piacci   0.01
## 1653 2008                               Pinnacle   1.04
## 1654 2009                               Pinnacle   0.38
## 1655 1996                            Pioneer LDC   0.62
## 1656 1998                            Pioneer LDC   0.07
## 1657 2001                            Pioneer LDC   0.05
## 1658 2002                                Play It   1.15
## 1659 2003                                Play It   0.31
## 1660 2004                                Play It   2.42
## 1661 2005                                Play It   0.43
## 1662 2005                 Playlogic Game Factory   0.12
## 1663 2008                 Playlogic Game Factory   0.22
## 1664 2009                 Playlogic Game Factory   0.86
## 1665 1997                              Playmates   0.28
## 1666 2002                               Playmore   0.04
## 1667 2009                                  PlayV   0.02
## 1668 2010                                  PlayV   0.42
## 1669 2011                                 Plenty   0.02
## 1670 2009                             PM Studios   0.10
## 1671 2000                            Pony Canyon   0.05
## 1672 2006                           PopCap Games   0.01
## 1673 2007                           PopCap Games   0.04
## 1674 2008                           PopCap Games   0.31
## 1675 2009                           PopCap Games   0.54
## 1676 2010                           PopCap Games   0.44
## 1677 2011                           PopCap Games   0.23
## 1678 2007                         Popcorn Arcade   0.25
## 1679 2008                         Popcorn Arcade   0.24
## 1680 1999                        PopTop Software   0.11
## 1681 1995                                    Pow   0.05
## 1682 2007                                  PQube   0.15
## 1683 2008                                  PQube   0.14
## 1684 2009                                  PQube   1.07
## 1685 2010                                  PQube   1.02
## 1686 2011                                  PQube   0.85
## 1687 2012                                  PQube   0.08
## 1688 2013                                  PQube   0.21
## 1689 2015                                  PQube   0.52
## 1690 2016                                  PQube   0.23
## 1691 2002                          Princess Soft   0.02
## 1692 2006                          Princess Soft   0.03
## 1693 2008                          Princess Soft   0.02
## 1694 2007                              Prototype   0.09
## 1695 2008                              Prototype   0.08
## 1696 2009                              Prototype   0.13
## 1697 2010                              Prototype   0.11
## 1698 2011                              Prototype   0.04
## 1699 2012                              Prototype   0.07
## 1700 2013                              Prototype   0.01
## 1701 2014                              Prototype   0.05
## 1702 2015                              Prototype   0.02
## 1703 2016                              Prototype   0.01
## 1704 1994                              Psygnosis   0.06
## 1705 1995                              Psygnosis   1.69
## 1706 1996                              Psygnosis   2.32
## 1707 1997                              Psygnosis   1.73
## 1708 1998                              Psygnosis   0.74
## 1709 1999                              Psygnosis   0.61
## 1710 2000                              Psygnosis   0.12
## 1711 1982                                 Quelle   0.87
## 1712 1995                                  Quest   0.71
## 1713 2011                               Quinrose   0.12
## 1714 2012                               Quinrose   0.06
## 1715 2013                               Quinrose   0.02
## 1716 2014                               Quinrose   0.02
## 1717 1998                                Quintet   0.02
## 1718 2001                          Rage Software   0.14
## 1719 2002                          Rage Software   1.28
## 1720 2015                             Rain Games   0.01
## 1721 2001                              Rebellion   0.48
## 1722 2002                              Rebellion   0.01
## 1723 2015                 Rebellion Developments   0.30
## 1724 2010                      RED Entertainment   0.02
## 1725 1994                                Red Orb   2.81
## 1726 1997                                Red Orb   2.43
## 1727 1999                Red Storm Entertainment   2.28
## 1728 2001                Red Storm Entertainment   0.04
## 1729 2005                              RedOctane   2.45
## 1730 2006                              RedOctane   5.12
## 1731 2007                              RedOctane   1.11
## 1732 2009                     Reef Entertainment   0.12
## 1733 2010                     Reef Entertainment   0.12
## 1734 2012                     Reef Entertainment   0.10
## 1735 2004                           responDESIGN   0.09
## 1736 2005                           responDESIGN   0.04
## 1737 2009                     Revolution (Japan)   0.02
## 1738 2015                    Revolution Software   0.07
## 1739 2005                      Rising Star Games   0.80
## 1740 2006                      Rising Star Games   1.46
## 1741 2007                      Rising Star Games   4.88
## 1742 2008                      Rising Star Games   4.42
## 1743 2009                      Rising Star Games   2.81
## 1744 2010                      Rising Star Games   0.99
## 1745 2011                      Rising Star Games   1.32
## 1746 2012                      Rising Star Games   0.09
## 1747 2013                      Rising Star Games   0.48
## 1748 2016                      Rising Star Games   0.02
## 1749  N/A                      Rising Star Games   0.04
## 1750 1995                          Riverhillsoft   0.04
## 1751 2006                         Rocket Company   0.69
## 1752 2007                         Rocket Company   0.44
## 1753 2008                         Rocket Company   0.01
## 1754 2009                         Rocket Company   0.06
## 1755 2010                         Rocket Company   0.15
## 1756 2011                         Rocket Company   0.07
## 1757 2012                         Rocket Company   0.13
## 1758 2013                         Rocket Company   0.08
## 1759 2014                         Rocket Company   0.07
## 1760 2015                         Rocket Company   0.09
## 1761 2016                         Rocket Company   0.03
## 1762 2008                             Rondomedia   0.73
## 1763 2009                             Rondomedia   1.54
## 1764 2010                             Rondomedia   0.04
## 1765 2011                             Rondomedia   0.24
## 1766 2015                             Rondomedia   0.03
## 1767 2007                                    RTL   1.26
## 1768 2008                                    RTL   0.66
## 1769 2009                                    RTL   0.08
## 1770 2007                                 Russel   1.12
## 1771 2008                                 Russel   0.01
## 1772 2009                                 Russel   0.03
## 1773 2010                                 Russel   0.05
## 1774 1993                      Sammy Corporation   0.19
## 1775 2001                      Sammy Corporation   0.34
## 1776 2002                      Sammy Corporation   0.96
## 1777 2003                      Sammy Corporation   0.16
## 1778 2004                      Sammy Corporation   1.00
## 1779 2006                      Sammy Corporation   0.08
## 1780 1998                                 Saurus   0.02
## 1781 2007                        Scholastic Inc.   0.83
## 1782 2008                        Scholastic Inc.   1.06
## 1783 2010                        Scholastic Inc.   0.58
## 1784 2011                        Scholastic Inc.   0.44
## 1785 2002                                    SCi   0.87
## 1786 2003                                    SCi   1.52
## 1787 2004                                    SCi   0.86
## 1788 2005                                    SCi   0.27
## 1789 2013                             Screenlife   0.83
## 1790 2015                             Screenlife   0.07
## 1791 2016                             Screenlife   0.02
## 1792 2012                           SCS Software   0.13
## 1793  N/A                                  Sears   0.21
## 1794 1982                                   Sega   0.40
## 1795 1990                                   Sega   2.60
## 1796 1991                                   Sega   4.34
## 1797 1992                                   Sega   7.98
## 1798 1993                                   Sega   1.93
## 1799 1994                                   Sega   7.53
## 1800 1995                                   Sega   7.93
## 1801 1996                                   Sega   4.29
## 1802 1997                                   Sega   2.14
## 1803 1998                                   Sega   4.59
## 1804 1999                                   Sega   4.36
## 1805 2000                                   Sega   3.88
## 1806 2001                                   Sega   6.60
## 1807 2002                                   Sega  12.30
## 1808 2003                                   Sega  12.53
## 1809 2004                                   Sega  11.93
## 1810 2005                                   Sega  11.59
## 1811 2006                                   Sega  15.81
## 1812 2007                                   Sega  23.69
## 1813 2008                                   Sega  37.19
## 1814 2009                                   Sega  24.92
## 1815 2010                                   Sega  22.89
## 1816 2011                                   Sega  16.79
## 1817 2012                                   Sega   9.23
## 1818 2013                                   Sega   5.26
## 1819 2014                                   Sega   5.64
## 1820 2015                                   Sega   1.55
## 1821 2016                                   Sega   0.77
## 1822 2017                                   Sega   0.04
## 1823  N/A                                   Sega   2.29
## 1824 1995                       Seta Corporation   0.33
## 1825 1996                       Seta Corporation   0.30
## 1826 2013                          Seventh Chord   0.08
## 1827 1995                             Shogakukan   0.11
## 1828 2006                             Shogakukan   0.20
## 1829 2007                             Shogakukan   0.10
## 1830 2015                             Shogakukan   0.03
## 1831 2002           Simon & Schuster Interactive   0.11
## 1832 2015                   Slightly Mad Studios   1.38
## 1833 2009                    Slitherine Software   0.03
## 1834 2010                    Slitherine Software   0.13
## 1835  N/A                    Slitherine Software   0.05
## 1836 1993                                    SNK   0.21
## 1837 1994                                    SNK   0.80
## 1838 1995                                    SNK   0.28
## 1839 1996                                    SNK   0.46
## 1840 1997                                    SNK   0.08
## 1841 1998                                    SNK   0.40
## 1842 1999                                    SNK   0.11
## 1843 2000                                    SNK   0.18
## 1844 2005                                    SNK   0.07
## 1845 1995                           SNK Playmore   0.28
## 1846 1998                           SNK Playmore   0.04
## 1847 1999                           SNK Playmore   0.13
## 1848 2005                           SNK Playmore   0.18
## 1849 2006                           SNK Playmore   0.02
## 1850 2007                           SNK Playmore   0.17
## 1851 2008                           SNK Playmore   0.04
## 1852 2009                           SNK Playmore   0.06
## 1853 2010                           SNK Playmore   0.04
## 1854 1996                                Societa   0.04
## 1855 2016                               Sold Out   0.02
## 1856 1995                                 Sonnet   0.04
## 1857 1996                                 Sonnet   0.02
## 1858 1994            Sony Computer Entertainment   3.43
## 1859 1995            Sony Computer Entertainment  18.45
## 1860 1996            Sony Computer Entertainment  35.07
## 1861 1997            Sony Computer Entertainment  43.90
## 1862 1998            Sony Computer Entertainment  34.64
## 1863 1999            Sony Computer Entertainment  36.24
## 1864 2000            Sony Computer Entertainment  21.69
## 1865 2001            Sony Computer Entertainment  43.29
## 1866 2002            Sony Computer Entertainment  25.85
## 1867 2003            Sony Computer Entertainment  24.32
## 1868 2004            Sony Computer Entertainment  35.16
## 1869 2005            Sony Computer Entertainment  26.38
## 1870 2006            Sony Computer Entertainment  33.81
## 1871 2007            Sony Computer Entertainment  37.54
## 1872 2008            Sony Computer Entertainment  26.64
## 1873 2009            Sony Computer Entertainment  36.53
## 1874 2010            Sony Computer Entertainment  34.89
## 1875 2011            Sony Computer Entertainment  27.40
## 1876 2012            Sony Computer Entertainment  12.85
## 1877 2013            Sony Computer Entertainment  12.61
## 1878 2014            Sony Computer Entertainment  19.02
## 1879 2015            Sony Computer Entertainment  11.01
## 1880 2016            Sony Computer Entertainment   6.56
## 1881  N/A            Sony Computer Entertainment   0.22
## 1882 2014    Sony Computer Entertainment America   1.18
## 1883 2001     Sony Computer Entertainment Europe   3.17
## 1884 2004     Sony Computer Entertainment Europe   1.71
## 1885 2012     Sony Computer Entertainment Europe   0.25
## 1886 2013     Sony Computer Entertainment Europe  10.52
## 1887 2014     Sony Computer Entertainment Europe   6.60
## 1888 2015     Sony Computer Entertainment Europe   1.64
## 1889 2001               Sony Music Entertainment   0.14
## 1890 2003              Sony Online Entertainment   0.62
## 1891 2004              Sony Online Entertainment   1.28
## 1892 2005              Sony Online Entertainment   0.65
## 1893 2006              Sony Online Entertainment   0.16
## 1894 2011              Sony Online Entertainment   0.82
## 1895 1999                        SouthPeak Games   0.11
## 1896 2004                        SouthPeak Games   1.20
## 1897 2005                        SouthPeak Games   0.57
## 1898 2006                        SouthPeak Games   0.14
## 1899 2007                        SouthPeak Games   1.04
## 1900 2008                        SouthPeak Games   0.74
## 1901 2009                        SouthPeak Games   1.97
## 1902 2010                        SouthPeak Games   0.58
## 1903 2001                                  Spike   0.13
## 1904 2002                                  Spike   0.12
## 1905 2004                                  Spike   0.08
## 1906 2006                                  Spike   1.14
## 1907 2007                                  Spike   1.92
## 1908 2008                                  Spike   0.39
## 1909 2009                                  Spike   1.14
## 1910 2010                                  Spike   0.63
## 1911 2011                                  Spike   0.19
## 1912 2012                                  Spike   0.41
## 1913 1996                                    SPS   0.12
## 1914 1991                                 Square   1.77
## 1915 1994                                 Square   0.11
## 1916 1997                                 Square   0.63
## 1917 1999                                 Square   0.61
## 1918 2001                                 Square   0.52
## 1919 1999                              Square EA   0.80
## 1920 2003                            Square Enix   2.42
## 1921 2004                            Square Enix   8.14
## 1922 2005                            Square Enix   6.71
## 1923 2006                            Square Enix  13.43
## 1924 2007                            Square Enix  16.30
## 1925 2008                            Square Enix  10.03
## 1926 2009                            Square Enix  10.83
## 1927 2010                            Square Enix  17.44
## 1928 2011                            Square Enix  12.46
## 1929 2012                            Square Enix  10.37
## 1930 2013                            Square Enix  13.86
## 1931 2014                            Square Enix  10.35
## 1932 2015                            Square Enix   8.86
## 1933 2016                            Square Enix   3.53
## 1934  N/A                            Square Enix   0.45
## 1935 1987                             SquareSoft   0.84
## 1936 1988                             SquareSoft   0.76
## 1937 1989                             SquareSoft   1.10
## 1938 1990                             SquareSoft   1.40
## 1939 1991                             SquareSoft   1.14
## 1940 1992                             SquareSoft   3.42
## 1941 1993                             SquareSoft   3.00
## 1942 1994                             SquareSoft   3.74
## 1943 1995                             SquareSoft   5.10
## 1944 1996                             SquareSoft   1.21
## 1945 1997                             SquareSoft   6.68
## 1946 1998                             SquareSoft   6.69
## 1947 1999                             SquareSoft  13.52
## 1948 2000                             SquareSoft   6.55
## 1949 2001                             SquareSoft   0.25
## 1950 2002                             SquareSoft   0.12
## 1951 2003                             SquareSoft   2.13
## 1952 1996                                    SSI   0.19
## 1953 2016                        Stainless Games   0.01
## 1954 1997                               Starfish   0.36
## 1955 1999                               Starfish   0.11
## 1956 2001                               Starfish   0.05
## 1957 2007                               Starfish   0.10
## 1958 2009                               Starfish   0.02
## 1959 2010                               Starfish   0.02
## 1960 2011                               Starfish   0.04
## 1961 2012                               Starfish   0.02
## 1962 1981                         Starpath Corp.   0.33
## 1963 2004                                  Sting   0.10
## 1964 2006                                  Sting   0.03
## 1965 2007                                  Sting   0.11
## 1966 2008                                  Sting   0.38
## 1967 2010                                  Sting   0.03
## 1968 2009                       Storm City Games   0.36
## 1969 2010                       Storm City Games   1.11
## 1970 2011                       Storm City Games   0.09
## 1971 2001                         Strategy First   0.03
## 1972 1998                                Success   1.15
## 1973 1999                                Success   0.02
## 1974 2000                                Success   0.01
## 1975 2001                                Success   0.09
## 1976 2002                                Success   0.03
## 1977 2005                                Success   0.07
## 1978 2006                                Success   0.03
## 1979 2007                                Success   0.32
## 1980 2008                                Success   0.15
## 1981 2009                                Success   0.01
## 1982 2013                                Success   0.07
## 1983 2014                                Success   0.01
## 1984 2004                             Summitsoft   0.04
## 1985 2004                             Sunflowers   0.03
## 1986 2000                    Sunrise Interactive   0.13
## 1987 2006                    Sunrise Interactive   0.02
## 1988 2007                    Sunrise Interactive   0.02
## 1989 1994                                Sunsoft   0.12
## 1990 1995                                Sunsoft   0.03
## 1991 1996                                Sunsoft   0.07
## 1992 1997                                Sunsoft   0.11
## 1993 1998                                Sunsoft   0.14
## 1994 1999                                Sunsoft   0.14
## 1995 2000                                Sunsoft   0.25
## 1996 2011                                Sunsoft   0.09
## 1997 2006                                 Sweets   0.02
## 1998 2009                                 Sweets   0.03
## 1999 1998                   Swing! Entertainment   0.05
## 2000 2000                   Swing! Entertainment   0.18
## 2001 2001                   Swing! Entertainment   0.11
## 2002 2002                   Swing! Entertainment   0.14
## 2003 1998                                 Syscom   0.16
## 2004 1999                                 Syscom   0.11
## 2005 2013                               System 3   0.22
## 2006 2006               System 3 Arcade Software   0.20
## 2007 2007               System 3 Arcade Software   0.19
## 2008 2008               System 3 Arcade Software   1.33
## 2009 2009               System 3 Arcade Software   0.06
## 2010  N/A               System 3 Arcade Software   0.02
## 2011 2008                            System Soft   0.02
## 2012 2010                            System Soft   0.02
## 2013 2011                            System Soft   0.01
## 2014 1993                               T&E Soft   0.12
## 2015 1981                                  Taito   0.24
## 2016 1994                                  Taito   0.46
## 2017 1995                                  Taito   0.06
## 2018 1997                                  Taito   1.09
## 2019 1999                                  Taito   0.53
## 2020 2001                                  Taito   0.06
## 2021 2002                                  Taito   0.23
## 2022 2003                                  Taito   0.01
## 2023 2006                                  Taito   0.06
## 2024 2007                                  Taito   0.08
## 2025 2010                                  Taito   0.02
## 2026 1992                                 Takara   0.39
## 2027 1993                                 Takara   0.45
## 2028 1994                                 Takara   0.96
## 2029 1995                                 Takara   0.05
## 2030 1996                                 Takara   0.29
## 2031 1997                                 Takara   0.58
## 2032 1998                                 Takara   0.32
## 2033 1999                                 Takara   0.05
## 2034 2001                                 Takara   0.28
## 2035 2002                                 Takara   0.04
## 2036 2003                                 Takara   0.04
## 2037 2006                            Takara Tomy   0.34
## 2038 2007                            Takara Tomy   0.50
## 2039 2008                            Takara Tomy   1.05
## 2040 2009                            Takara Tomy   0.30
## 2041 2010                            Takara Tomy   0.22
## 2042 2011                            Takara Tomy   0.02
## 2043 2013                            Takara Tomy   0.16
## 2044 2015                            Takara Tomy   0.11
## 2045 1997                   Take-Two Interactive   2.72
## 2046 1998                   Take-Two Interactive   5.45
## 2047 1999                   Take-Two Interactive   1.68
## 2048 2000                   Take-Two Interactive   6.03
## 2049 2001                   Take-Two Interactive  20.43
## 2050 2002                   Take-Two Interactive  20.29
## 2051 2003                   Take-Two Interactive  10.57
## 2052 2004                   Take-Two Interactive  24.11
## 2053 2005                   Take-Two Interactive  26.29
## 2054 2006                   Take-Two Interactive  20.59
## 2055 2007                   Take-Two Interactive  19.81
## 2056 2008                   Take-Two Interactive  46.18
## 2057 2009                   Take-Two Interactive  19.11
## 2058 2010                   Take-Two Interactive  35.84
## 2059 2011                   Take-Two Interactive  18.03
## 2060 2012                   Take-Two Interactive  21.58
## 2061 2013                   Take-Two Interactive  52.41
## 2062 2014                   Take-Two Interactive  30.26
## 2063 2015                   Take-Two Interactive  15.03
## 2064 2016                   Take-Two Interactive   2.89
## 2065  N/A                   Take-Two Interactive   0.24
## 2066 2011                                 Takuyo   0.01
## 2067 2001                              TalonSoft   0.87
## 2068 2000                               TDK Core   0.18
## 2069 2002                               TDK Core   0.19
## 2070 2006                               TDK Core   0.22
## 2071 2007                               TDK Core   0.03
## 2072 2001                         TDK Mediactive   0.75
## 2073 2002                         TDK Mediactive   3.48
## 2074 2003                         TDK Mediactive   2.75
## 2075 2004                         TDK Mediactive   1.33
## 2076 2010                        Team17 Software   0.05
## 2077 1995              Technos Japan Corporation   0.02
## 2078 1998                             TechnoSoft   0.05
## 2079 1991                             Tecmo Koei   0.53
## 2080 1992                             Tecmo Koei   0.29
## 2081 1993                             Tecmo Koei   1.15
## 2082 1994                             Tecmo Koei   0.53
## 2083 1995                             Tecmo Koei   0.54
## 2084 1996                             Tecmo Koei   0.65
## 2085 1997                             Tecmo Koei   1.73
## 2086 1998                             Tecmo Koei   0.38
## 2087 1999                             Tecmo Koei   0.63
## 2088 2000                             Tecmo Koei   1.87
## 2089 2001                             Tecmo Koei   0.71
## 2090 2002                             Tecmo Koei   2.30
## 2091 2003                             Tecmo Koei   4.18
## 2092 2004                             Tecmo Koei   2.50
## 2093 2005                             Tecmo Koei   3.28
## 2094 2006                             Tecmo Koei   3.63
## 2095 2007                             Tecmo Koei   5.58
## 2096 2008                             Tecmo Koei   4.08
## 2097 2009                             Tecmo Koei   2.04
## 2098 2010                             Tecmo Koei   2.42
## 2099 2011                             Tecmo Koei   3.21
## 2100 2012                             Tecmo Koei   2.43
## 2101 2013                             Tecmo Koei   2.67
## 2102 2014                             Tecmo Koei   3.04
## 2103 2015                             Tecmo Koei   2.26
## 2104 2016                             Tecmo Koei   0.92
## 2105 1999                              Telegames   0.02
## 2106 2003                              Telegames   0.20
## 2107 2005                              Telegames   0.02
## 2108 2007                              Telegames   0.54
## 2109 2008                              Telegames   0.08
## 2110 2010                              Telegames   0.17
## 2111 2011                         Telltale Games   0.19
## 2112 2014                         Telltale Games   1.93
## 2113 2015                         Telltale Games   0.39
## 2114 2016                         Telltale Games   0.21
## 2115 1995                                Telstar   0.06
## 2116 1998                                Telstar   0.21
## 2117 2011                          Tetris Online   0.43
## 2118 2009                                    TGL   0.01
## 2119 2015                                    TGL   0.09
## 2120 2008                  The Adventure Company   0.25
## 2121 2009                  The Adventure Company   0.26
## 2122 2000                   The Learning Company   0.05
## 2123 1995                                    THQ   0.63
## 2124 1997                                    THQ   1.90
## 2125 1998                                    THQ  13.17
## 2126 1999                                    THQ   4.01
## 2127 2000                                    THQ  15.86
## 2128 2001                                    THQ  22.25
## 2129 2002                                    THQ  26.88
## 2130 2003                                    THQ  29.38
## 2131 2004                                    THQ  28.69
## 2132 2005                                    THQ  22.23
## 2133 2006                                    THQ  24.94
## 2134 2007                                    THQ  33.29
## 2135 2008                                    THQ  30.45
## 2136 2009                                    THQ  30.83
## 2137 2010                                    THQ  22.11
## 2138 2011                                    THQ  26.76
## 2139 2012                                    THQ   6.70
## 2140 2013                                    THQ   0.36
## 2141  N/A                                    THQ   0.33
## 2142 1981                            Tigervision   1.14
## 2143 1982                            Tigervision   0.28
## 2144 1994                Time Warner Interactive   0.11
## 2145 1995                Time Warner Interactive   0.08
## 2146 1996                Time Warner Interactive   0.16
## 2147 1993                                  Titus   0.07
## 2148 1997                                  Titus   0.47
## 2149 1998                                  Titus   0.31
## 2150 1999                                  Titus   0.98
## 2151 2000                                  Titus   0.08
## 2152 2001                                  Titus   0.99
## 2153 2002                                  Titus   0.40
## 2154 2003                                  Titus   0.02
## 2155 2008                                 Tivola   0.05
## 2156 2009                                 Tivola   0.12
## 2157 1993                                   TOHO   0.11
## 2158 2007                                  Tommo   0.15
## 2159 2009                                  Tommo   0.02
## 2160 2011                                  Tommo   0.04
## 2161 1995                       Tomy Corporation   0.33
## 2162 1996                       Tomy Corporation   0.34
## 2163 1998                       Tomy Corporation   0.23
## 2164 2003                       Tomy Corporation   1.34
## 2165 2004                       Tomy Corporation   0.44
## 2166 2005                       Tomy Corporation   0.70
## 2167 2006                       Tomy Corporation   0.02
## 2168 2007                       Tomy Corporation   1.02
## 2169 2008                       Tomy Corporation   0.39
## 2170 2009                       Tomy Corporation   0.03
## 2171 2010                       Tomy Corporation   0.13
## 2172 2011                    TopWare Interactive   0.03
## 2173 2015                    TopWare Interactive   0.01
## 2174  N/A                    TopWare Interactive   0.08
## 2175 2007                             Touchstone   0.14
## 2176 2008                             Touchstone   1.44
## 2177 2010                              Tradewest   0.11
## 2178 2012                           Trion Worlds   0.01
## 2179 2013                           Trion Worlds   1.14
## 2180 2011                   Tripwire Interactive   0.14
## 2181 2014                  Tru Blu Entertainment   0.03
## 2182 2015                  Tru Blu Entertainment   0.25
## 2183 2008                               Tryfirst   0.03
## 2184 1998                                    TYO   0.42
## 2185 2014                              Type-Moon   0.10
## 2186 1995                              U.S. Gold   0.18
## 2187 1996                              U.S. Gold   0.15
## 2188 1995                                Ubisoft   3.03
## 2189 1996                                Ubisoft   0.16
## 2190 1997                                Ubisoft   0.25
## 2191 1998                                Ubisoft   0.30
## 2192 1999                                Ubisoft   4.61
## 2193 2000                                Ubisoft   4.75
## 2194 2001                                Ubisoft   4.99
## 2195 2002                                Ubisoft  16.21
## 2196 2003                                Ubisoft  16.89
## 2197 2004                                Ubisoft  15.40
## 2198 2005                                Ubisoft  16.49
## 2199 2006                                Ubisoft  17.27
## 2200 2007                                Ubisoft  48.60
## 2201 2008                                Ubisoft  57.44
## 2202 2009                                Ubisoft  47.01
## 2203 2010                                Ubisoft  42.62
## 2204 2011                                Ubisoft  48.03
## 2205 2012                                Ubisoft  37.31
## 2206 2013                                Ubisoft  27.39
## 2207 2014                                Ubisoft  41.95
## 2208 2015                                Ubisoft  12.79
## 2209 2016                                Ubisoft   9.76
## 2210 2020                                Ubisoft   0.29
## 2211  N/A                                Ubisoft   1.18
## 2212 2009                         Ubisoft Annecy   1.43
## 2213 2010                         Ubisoft Annecy   1.13
## 2214 2011                         Ubisoft Annecy   1.23
## 2215 2012                         Ubisoft Annecy   0.67
## 2216 1997                            UEP Systems   2.25
## 2217 2007                        UFO Interactive   0.03
## 2218 2008                        UFO Interactive   0.15
## 2219 2009                        UFO Interactive   0.17
## 2220 2010                        UFO Interactive   0.56
## 2221 2011                        UFO Interactive   0.04
## 2222 2012                        UFO Interactive   0.01
## 2223 2016                      UIG Entertainment   0.01
## 2224  N/A                            Ultravision   0.47
## 2225 1982                        Universal Gamex   0.63
## 2226 2001                  Universal Interactive   5.92
## 2227 2002                  Universal Interactive   8.75
## 2228 2003                  Universal Interactive   2.93
## 2229  N/A                  Universal Interactive   0.17
## 2230 1981                                Unknown   0.29
## 2231 1998                                Unknown   0.83
## 2232 2001                                Unknown   2.25
## 2233 2002                                Unknown   0.10
## 2234 2003                                Unknown   0.93
## 2235 2004                                Unknown   0.03
## 2236 2005                                Unknown   0.89
## 2237 2006                                Unknown   0.12
## 2238 2007                                Unknown   0.25
## 2239 2008                                Unknown   0.32
## 2240 2009                                Unknown   0.02
## 2241 2010                                Unknown   1.80
## 2242 2011                                Unknown   4.79
## 2243 2012                                Unknown   0.32
## 2244 2013                                Unknown   0.06
## 2245 2014                                Unknown   0.38
## 2246 2015                                Unknown   0.10
## 2247 2016                                Unknown   0.16
## 2248  N/A                                Unknown  21.02
## 2249 2005                           Valcon Games   0.11
## 2250 2006                           Valcon Games   0.03
## 2251 2008                           Valcon Games   0.14
## 2252 2009                           Valcon Games   0.16
## 2253 2010                           Valcon Games   0.01
## 2254 2005                               ValuSoft   0.24
## 2255 2008                               ValuSoft   0.03
## 2256 2009                               ValuSoft   0.11
## 2257 2011                               ValuSoft   0.01
## 2258 2011                                  Valve   1.74
## 2259 2009                         Valve Software   0.37
## 2260 2011                         Valve Software   2.86
## 2261 1994                                    Vap   0.05
## 2262 2000                  Vatical Entertainment   0.22
## 2263 1996                              Vic Tokai   0.12
## 2264 1997                              Vic Tokai   0.15
## 2265 1993                     Victor Interactive   0.11
## 2266 1995                     Victor Interactive   0.09
## 2267 1997                     Victor Interactive   0.23
## 2268 1998                     Victor Interactive   0.16
## 2269 2000                     Victor Interactive   0.18
## 2270 2001                     Victor Interactive   0.10
## 2271 2002                     Victor Interactive   0.02
## 2272 1992                           Video System   0.28
## 2273 1997                           Video System   0.19
## 2274 1998                           Video System   1.60
## 2275 2000                           Video System   0.11
## 2276 2012                                  Views   0.02
## 2277 2014                                  Views   0.01
## 2278 2008                          Vir2L Studios   0.10
## 2279 2009                          Vir2L Studios   0.16
## 2280 1992                     Virgin Interactive   0.78
## 2281 1994                     Virgin Interactive   6.81
## 2282 1995                     Virgin Interactive   1.56
## 2283 1996                     Virgin Interactive  14.83
## 2284 1997                     Virgin Interactive   2.28
## 2285 1998                     Virgin Interactive   8.67
## 2286 1999                     Virgin Interactive   1.28
## 2287 2000                     Virgin Interactive   2.55
## 2288 2001                     Virgin Interactive   4.57
## 2289 2002                     Virgin Interactive   0.54
## 2290 2010                     Virtual Play Games   0.06
## 2291 2011                                  Visco   0.02
## 2292 1995                          Vivendi Games   0.02
## 2293 1997                          Vivendi Games   4.13
## 2294 1998                          Vivendi Games   0.08
## 2295 1999                          Vivendi Games   0.40
## 2296 2000                          Vivendi Games   0.10
## 2297 2001                          Vivendi Games   3.94
## 2298 2002                          Vivendi Games   4.35
## 2299 2003                          Vivendi Games  15.43
## 2300 2004                          Vivendi Games   6.76
## 2301 2005                          Vivendi Games   6.22
## 2302 2006                          Vivendi Games   4.58
## 2303 2007                          Vivendi Games   5.33
## 2304 2008                          Vivendi Games   5.33
## 2305 2009                          Vivendi Games   0.26
## 2306  N/A                          Vivendi Games   1.28
## 2307 2001                                Wanadoo   0.14
## 2308 2002                                Wanadoo   0.46
## 2309 2003                                Wanadoo   0.03
## 2310 2005                                Wanadoo   0.02
## 2311 2007                                Warashi   0.02
## 2312 2011                          Wargaming.net   0.29
## 2313 2003 Warner Bros. Interactive Entertainment   0.67
## 2314 2005 Warner Bros. Interactive Entertainment   0.06
## 2315 2006 Warner Bros. Interactive Entertainment   0.29
## 2316 2007 Warner Bros. Interactive Entertainment   1.40
## 2317 2008 Warner Bros. Interactive Entertainment  11.72
## 2318 2009 Warner Bros. Interactive Entertainment  14.22
## 2319 2010 Warner Bros. Interactive Entertainment  15.57
## 2320 2011 Warner Bros. Interactive Entertainment  20.04
## 2321 2012 Warner Bros. Interactive Entertainment  14.33
## 2322 2013 Warner Bros. Interactive Entertainment  20.36
## 2323 2014 Warner Bros. Interactive Entertainment  18.42
## 2324 2015 Warner Bros. Interactive Entertainment  21.74
## 2325 2016 Warner Bros. Interactive Entertainment   3.52
## 2326  N/A Warner Bros. Interactive Entertainment  11.55
## 2327 1997                                   Warp   0.07
## 2328 2015                WayForward Technologies   0.05
## 2329 1999                       Westwood Studios   1.55
## 2330 2007                White Park Bay Software   0.16
## 2331 1982                     Wizard Video Games   0.62
## 2332 2002                      Xicat Interactive   0.14
## 2333 2003                      Xicat Interactive   0.03
## 2334 1997                     Xing Entertainment   0.24
## 2335 2005                                Xplosiv   0.20
## 2336 2006                                Xplosiv   0.40
## 2337 2007                                Xplosiv   0.22
## 2338 2008                                Xplosiv   0.82
## 2339 2002                               XS Games   0.24
## 2340 2004                               XS Games   0.06
## 2341 2005                               XS Games   0.13
## 2342 2007                               XS Games   0.02
## 2343 2008                               XS Games   0.06
## 2344 2009                               XS Games   0.71
## 2345 2010                               XS Games   0.24
## 2346 2012                            Xseed Games   0.55
## 2347 2013                            Xseed Games   0.19
## 2348 2014                            Xseed Games   0.11
## 2349 2015                            Xseed Games   0.05
## 2350 2015                       Yacht Club Games   0.32
## 2351 2006                   Yamasa Entertainment   0.04
## 2352 2006                                   Yeti   0.01
## 2353 2007                                   Yeti   0.01
## 2354 2008                                   Yeti   0.05
## 2355 2009                                   Yeti   0.03
## 2356 2010                                   Yeti   0.11
## 2357 2012                                   Yeti   0.01
## 2358 2016                                   Yeti   0.02
## 2359 2005                                 Yuke's   0.03
## 2360 2006                                 Yuke's   0.03
## 2361 2007                                 Yuke's   0.02
## 2362 1995                                Yumedia   0.06
## 2363 2006                                 Zenrin   0.04
## 2364 2007                                 Zenrin   0.02
## 2365 2002                 Zoo Digital Publishing   0.37
## 2366 2003                 Zoo Digital Publishing   2.26
## 2367 2004                 Zoo Digital Publishing   2.92
## 2368 2005                 Zoo Digital Publishing   3.19
## 2369 2006                 Zoo Digital Publishing   0.37
## 2370 2007                 Zoo Digital Publishing   1.17
## 2371 2008                 Zoo Digital Publishing   1.45
## 2372 2009                 Zoo Digital Publishing   1.14
## 2373 2008                              Zoo Games   0.94
## 2374 2009                              Zoo Games   2.43
## 2375 2010                              Zoo Games   1.10
## 2376 2011                              Zoo Games   0.35
## 2377 2007                            Zushi Games   0.05
## 2378 2008                            Zushi Games   0.56
## 2379 2009                            Zushi Games   1.28
aggregate(Global_Sales,by=list(Genre = Genre,Publisher=Publisher),sum)
##             Genre                              Publisher      x
## 1       Adventure                        10TACLE Studios   0.02
## 2          Puzzle                        10TACLE Studios   0.03
## 3        Strategy                        10TACLE Studios   0.06
## 4          Racing                             1C Company   0.04
## 5    Role-Playing                             1C Company   0.01
## 6        Strategy                             1C Company   0.05
## 7          Action           20th Century Fox Video Games   1.72
## 8         Shooter           20th Century Fox Video Games   0.22
## 9          Puzzle                                 2D Boy   0.04
## 10         Action                                    3DO   6.28
## 11      Adventure                                    3DO   0.35
## 12       Fighting                                    3DO   0.55
## 13       Platform                                    3DO   0.13
## 14         Puzzle                                    3DO   0.11
## 15   Role-Playing                                    3DO   0.25
## 16        Shooter                                    3DO   0.77
## 17         Sports                                    3DO   1.57
## 18       Strategy                                    3DO   0.11
## 19         Sports                                49Games   0.04
## 20         Action                              505 Games   3.22
## 21      Adventure                              505 Games   0.74
## 22       Fighting                              505 Games   0.91
## 23           Misc                              505 Games   4.53
## 24       Platform                              505 Games   0.57
## 25         Puzzle                              505 Games   2.38
## 26         Racing                              505 Games   0.06
## 27   Role-Playing                              505 Games   1.17
## 28        Shooter                              505 Games   5.57
## 29     Simulation                              505 Games  22.24
## 30         Sports                              505 Games  14.32
## 31       Strategy                              505 Games   0.20
## 32         Action                                    5pb   0.13
## 33      Adventure                                    5pb   1.34
## 34       Fighting                                    5pb   0.04
## 35   Role-Playing                                    5pb   0.03
## 36        Shooter                                    5pb   0.05
## 37     Simulation                                    5pb   0.04
## 38           Misc                               7G//AMES   0.03
## 39         Puzzle                               7G//AMES   0.01
## 40     Simulation                               7G//AMES   0.04
## 41         Sports                             989 Sports   0.38
## 42         Action                            989 Studios   2.63
## 43         Racing                            989 Studios   1.72
## 44         Sports                            989 Studios   8.97
## 45         Action                               Abylight   0.08
## 46         Action                  Acclaim Entertainment   1.53
## 47      Adventure                  Acclaim Entertainment   1.24
## 48       Fighting                  Acclaim Entertainment  16.80
## 49           Misc                  Acclaim Entertainment   1.19
## 50       Platform                  Acclaim Entertainment   2.34
## 51         Puzzle                  Acclaim Entertainment   1.35
## 52         Racing                  Acclaim Entertainment  14.72
## 53   Role-Playing                  Acclaim Entertainment   0.26
## 54        Shooter                  Acclaim Entertainment   6.41
## 55         Sports                  Acclaim Entertainment  18.07
## 56       Strategy                  Acclaim Entertainment   0.23
## 57       Platform                               Accolade   0.19
## 58         Racing                               Accolade   1.30
## 59         Sports                               Accolade   0.19
## 60         Action                            Ackkstudios   0.51
## 61      Adventure                            Ackkstudios   0.07
## 62   Role-Playing                            Ackkstudios   0.14
## 63         Sports                            Ackkstudios   0.11
## 64       Strategy                            Ackkstudios   0.01
## 65         Action                                Acquire   0.16
## 66      Adventure                                Acquire   0.22
## 67   Role-Playing                                Acquire   0.61
## 68       Strategy                                Acquire   0.08
## 69         Action                             Activision 142.33
## 70      Adventure                             Activision   5.42
## 71       Fighting                             Activision   2.86
## 72           Misc                             Activision  76.55
## 73       Platform                             Activision  33.40
## 74         Puzzle                             Activision   1.06
## 75         Racing                             Activision  17.31
## 76   Role-Playing                             Activision  46.79
## 77        Shooter                             Activision 299.87
## 78     Simulation                             Activision   8.26
## 79         Sports                             Activision  75.91
## 80       Strategy                             Activision  17.70
## 81         Action                    Activision Blizzard   0.48
## 82         Action                       Activision Value   0.05
## 83           Misc                       Activision Value   0.05
## 84        Shooter                       Activision Value   0.66
## 85         Sports                       Activision Value   6.14
## 86       Strategy                       Activision Value   0.06
## 87         Action                       Adeline Software   0.17
## 88     Simulation                               Aerosoft   0.03
## 89         Action                 Agatsuma Entertainment   0.20
## 90           Misc                 Agatsuma Entertainment   0.08
## 91       Platform                 Agatsuma Entertainment   0.03
## 92         Action                                 Agetec   0.23
## 93       Fighting                                 Agetec   0.17
## 94           Misc                                 Agetec   0.08
## 95         Racing                                 Agetec   0.04
## 96     Simulation                                 Agetec   0.31
## 97         Sports                                 Agetec   1.08
## 98       Strategy                                 Agetec   0.03
## 99         Action                            Aksys Games   0.05
## 100     Adventure                            Aksys Games   0.14
## 101  Role-Playing                            Aksys Games   0.25
## 102        Action                   Alawar Entertainment   0.01
## 103      Strategy                   Alawar Entertainment   0.04
## 104        Action                              Alchemist   0.19
## 105     Adventure                              Alchemist   2.16
## 106          Misc                              Alchemist   0.18
## 107  Role-Playing                              Alchemist   0.02
## 108       Shooter                              Alchemist   0.08
## 109        Action                   Alternative Software   0.02
## 110        Sports                   Alternative Software   0.18
## 111       Shooter                                 Altron   0.07
## 112          Misc                                 Alvion   0.04
## 113        Action                     American Softworks   0.23
## 114      Fighting                          Angel Studios   0.12
## 115  Role-Playing                          Angel Studios   0.29
## 116      Strategy                          Angel Studios   0.03
## 117        Action                        Answer Software   0.50
## 118      Fighting                         AQ Interactive   0.19
## 119          Misc                         AQ Interactive   0.34
## 120     Adventure                              Aqua Plus   0.77
## 121      Fighting                              Aqua Plus   0.10
## 122          Misc                              Aqua Plus   0.15
## 123  Role-Playing                              Aqua Plus   0.11
## 124      Strategy                              Aqua Plus   0.12
## 125        Sports                                  Aques   0.16
## 126        Action                       Arc System Works   0.06
## 127     Adventure                       Arc System Works   0.27
## 128      Fighting                       Arc System Works   0.84
## 129          Misc                       Arc System Works   0.05
## 130  Role-Playing                       Arc System Works   0.01
## 131        Sports                       Arc System Works   0.25
## 132      Fighting                    Arena Entertainment   2.67
## 133        Sports                    Arena Entertainment   2.05
## 134     Adventure                                   Aria   0.07
## 135          Misc                                  Arika   0.02
## 136  Role-Playing                                  Arika   0.05
## 137       Shooter                                  Arika   0.02
## 138  Role-Playing                                ArtDink   0.24
## 139    Simulation                                ArtDink   0.13
## 140      Strategy                                ArtDink   0.36
## 141          Misc                             Aruze Corp   1.18
## 142        Action                              ASC Games   0.05
## 143        Racing                              ASC Games   1.31
## 144        Sports                              ASC Games   0.66
## 145      Strategy                  Ascaron Entertainment   0.01
## 146  Role-Playing             Ascaron Entertainment GmbH   0.06
## 147      Strategy             Ascaron Entertainment GmbH   0.05
## 148     Adventure                    ASCII Entertainment   0.71
## 149          Misc                    ASCII Entertainment   0.42
## 150        Racing                    ASCII Entertainment   1.08
## 151  Role-Playing                    ASCII Entertainment   0.91
## 152    Simulation                    ASCII Entertainment   0.32
## 153        Sports                    ASCII Entertainment   7.08
## 154      Strategy                    ASCII Entertainment   0.37
## 155     Adventure                      ASCII Media Works   0.21
## 156  Role-Playing                      ASCII Media Works   0.06
## 157        Action                                 Asgard   0.03
## 158          Misc                                 Asgard   0.22
## 159          Misc                                    ASK   0.03
## 160     Adventure                Asmik Ace Entertainment   0.04
## 161      Fighting                Asmik Ace Entertainment   0.10
## 162    Simulation                Asmik Ace Entertainment   0.09
## 163        Sports                             Asmik Corp   0.17
## 164     Adventure                                  Aspyr   0.03
## 165          Misc                                  Aspyr   0.12
## 166  Role-Playing                                  Aspyr   0.09
## 167    Simulation                                  Aspyr   0.20
## 168        Sports                                  Aspyr   0.18
## 169        Action                               Astragon   0.04
## 170     Adventure                               Astragon   0.38
## 171        Puzzle                               Astragon   0.20
## 172    Simulation                               Astragon   0.02
## 173     Adventure                   Asylum Entertainment   0.43
## 174      Platform                   Asylum Entertainment   0.07
## 175    Simulation                   Asylum Entertainment   0.09
## 176        Action                                  Atari  26.65
## 177     Adventure                                  Atari   3.56
## 178      Fighting                                  Atari  25.98
## 179          Misc                                  Atari   7.21
## 180      Platform                                  Atari   7.45
## 181        Puzzle                                  Atari  21.59
## 182        Racing                                  Atari  12.73
## 183  Role-Playing                                  Atari   8.07
## 184       Shooter                                  Atari  22.69
## 185    Simulation                                  Atari   4.88
## 186        Sports                                  Atari  12.54
## 187      Strategy                                  Atari   3.87
## 188     Adventure                                 Athena   0.07
## 189        Sports                                 Athena   0.02
## 190        Action                                  Atlus   0.17
## 191     Adventure                                  Atlus   0.03
## 192      Fighting                                  Atlus   1.19
## 193          Misc                                  Atlus   0.02
## 194      Platform                                  Atlus   0.03
## 195        Racing                                  Atlus   0.12
## 196  Role-Playing                                  Atlus  10.49
## 197       Shooter                                  Atlus   0.11
## 198    Simulation                                  Atlus   0.11
## 199        Sports                                  Atlus   0.36
## 200      Strategy                                  Atlus   0.11
## 201        Action                     Avalon Interactive   0.17
## 202        Racing                     Avalon Interactive   0.05
## 203  Role-Playing                     Avalon Interactive   0.12
## 204       Shooter                     Avalon Interactive   0.04
## 205    Simulation                     Avalon Interactive   0.10
## 206        Action                              Avanquest   0.48
## 207     Adventure                              Avanquest   0.01
## 208          Misc                              Avanquest   0.58
## 209        Puzzle                              Avanquest   1.77
## 210    Simulation                              Avanquest   0.08
## 211        Sports                              Avanquest   0.08
## 212        Action                     Avanquest Software   0.08
## 213     Adventure                     Avanquest Software   1.57
## 214          Misc                     Avanquest Software   0.04
## 215        Sports                                  Axela   0.25
## 216        Action                     BAM! Entertainment   1.09
## 217     Adventure                     BAM! Entertainment   0.79
## 218      Fighting                     BAM! Entertainment   0.11
## 219          Misc                     BAM! Entertainment   0.20
## 220      Platform                     BAM! Entertainment   0.76
## 221        Racing                     BAM! Entertainment   0.78
## 222       Shooter                     BAM! Entertainment   0.87
## 223        Sports                     BAM! Entertainment   0.35
## 224        Action                              Banpresto   0.30
## 225     Adventure                              Banpresto   0.64
## 226      Fighting                              Banpresto   0.25
## 227          Misc                              Banpresto   0.01
## 228      Platform                              Banpresto   0.04
## 229        Puzzle                              Banpresto   1.97
## 230        Racing                              Banpresto   0.04
## 231  Role-Playing                              Banpresto   2.62
## 232       Shooter                              Banpresto   0.08
## 233    Simulation                              Banpresto   0.70
## 234        Sports                              Banpresto   0.57
## 235      Strategy                              Banpresto  10.18
## 236          Misc                                Benesse   0.33
## 237        Action                               Berkeley   0.03
## 238        Action                     Bethesda Softworks   9.64
## 239        Racing                     Bethesda Softworks   1.93
## 240  Role-Playing                     Bethesda Softworks  54.16
## 241       Shooter                     Bethesda Softworks  13.65
## 242    Simulation                     Bethesda Softworks   0.19
## 243        Sports                     Bethesda Softworks   2.34
## 244      Strategy                     Bethesda Softworks   0.23
## 245     Adventure                    Big Ben Interactive   0.02
## 246      Platform                    Big Ben Interactive   0.02
## 247        Racing                    Big Ben Interactive   0.06
## 248       Shooter                    Big Ben Interactive   0.09
## 249        Sports                    Big Ben Interactive   0.81
## 250        Action                         Big Fish Games   0.03
## 251     Adventure                         Big Fish Games   0.02
## 252        Sports                     Bigben Interactive   0.84
## 253        Racing                      bitComposer Games   0.03
## 254    Simulation                      bitComposer Games   0.38
## 255        Action                       Black Bean Games   0.15
## 256          Misc                       Black Bean Games   0.33
## 257        Racing                       Black Bean Games   1.77
## 258        Sports                       Black Bean Games   0.98
## 259      Strategy                       Black Bean Games   0.06
## 260        Action                      Black Label Games   1.20
## 261        Action               Blast! Entertainment Ltd   0.27
## 262     Adventure               Blast! Entertainment Ltd   0.07
## 263        Sports               Blast! Entertainment Ltd   0.04
## 264    Simulation                              Blue Byte   0.01
## 265      Strategy                              Blue Byte   0.02
## 266      Platform          BMG Interactive Entertainment   0.86
## 267        Racing          BMG Interactive Entertainment   0.15
## 268       Shooter          BMG Interactive Entertainment   0.14
## 269        Sports          BMG Interactive Entertainment   0.03
## 270       Shooter                    Bohemia Interactive   0.12
## 271        Action                                   Bomb   0.22
## 272     Adventure                               Boost On   0.01
## 273        Puzzle                                    BPS   0.32
## 274        Racing                                    BPS   0.20
## 275          Misc                    Brash Entertainment   0.39
## 276      Platform                    Brash Entertainment   0.84
## 277        Action                               Broccoli   0.28
## 278     Adventure                               Broccoli   0.43
## 279      Fighting                               Broccoli   0.03
## 280          Misc                               Broccoli   0.10
## 281  Role-Playing                               Broccoli   0.01
## 282    Simulation                               Broccoli   0.03
## 283      Strategy                               Broccoli   0.08
## 284     Adventure                              BushiRoad   0.03
## 285        Action                                 Capcom  85.16
## 286     Adventure                                 Capcom  10.25
## 287      Fighting                                 Capcom  33.01
## 288          Misc                                 Capcom   1.94
## 289      Platform                                 Capcom  22.62
## 290        Puzzle                                 Capcom   0.80
## 291        Racing                                 Capcom   2.38
## 292  Role-Playing                                 Capcom  32.67
## 293       Shooter                                 Capcom  11.15
## 294    Simulation                                 Capcom   0.15
## 295        Sports                                 Capcom   0.46
## 296      Strategy                                 Capcom   0.30
## 297        Action                                   Cave   0.02
## 298     Adventure                                   Cave   0.01
## 299          Misc                                   Cave   0.10
## 300       Shooter                                   Cave   0.20
## 301        Action                        CBS Electronics   0.31
## 302  Role-Playing                                    CCP   0.22
## 303     Adventure             CDV Software Entertainment   0.10
## 304        Puzzle             CDV Software Entertainment   0.03
## 305    Simulation             CDV Software Entertainment   0.01
## 306      Strategy             CDV Software Entertainment   0.06
## 307        Action                               ChunSoft   0.04
## 308     Adventure                               ChunSoft   2.16
## 309  Role-Playing                               ChunSoft   1.87
## 310        Action                       City Interactive   0.34
## 311     Adventure                       City Interactive   0.59
## 312          Misc                       City Interactive   0.06
## 313        Puzzle                       City Interactive   0.11
## 314       Shooter                       City Interactive   3.33
## 315    Simulation                       City Interactive   0.18
## 316      Fighting       Cloud Imperium Games Corporation   0.08
## 317     Adventure                         Coconuts Japan   0.02
## 318          Misc                         Coconuts Japan   0.05
## 319        Action                            Codemasters   1.43
## 320     Adventure                            Codemasters   0.78
## 321          Misc                            Codemasters   1.70
## 322        Puzzle                            Codemasters   0.07
## 323        Racing                            Codemasters  34.62
## 324  Role-Playing                            Codemasters   0.37
## 325       Shooter                            Codemasters   4.86
## 326    Simulation                            Codemasters   0.44
## 327        Sports                            Codemasters   3.13
## 328      Strategy                            Codemasters   0.47
## 329  Role-Playing                     Codemasters Online   0.02
## 330        Action                      CokeM Interactive   0.31
## 331        Action                                 Coleco   1.26
## 332      Platform                                 Coleco   1.46
## 333       Shooter                                 Coleco   0.34
## 334        Action                                Comfort   0.02
## 335     Adventure                                Comfort   0.13
## 336          Misc                               Commseed   0.01
## 337        Puzzle                                Compile   2.43
## 338  Role-Playing                                Compile   0.03
## 339        Action                          Compile Heart   0.06
## 340     Adventure                          Compile Heart   0.11
## 341  Role-Playing                          Compile Heart   1.10
## 342      Strategy                          Compile Heart   0.10
## 343        Action               Conspiracy Entertainment   0.37
## 344          Misc               Conspiracy Entertainment   0.13
## 345      Platform               Conspiracy Entertainment   0.03
## 346        Puzzle               Conspiracy Entertainment   0.04
## 347        Racing               Conspiracy Entertainment   0.06
## 348       Shooter               Conspiracy Entertainment   0.10
## 349    Simulation               Conspiracy Entertainment   0.03
## 350        Sports               Conspiracy Entertainment   0.08
## 351        Action                       Core Design Ltd.   0.10
## 352    Simulation                       Core Design Ltd.   0.19
## 353        Action                           CPG Products   0.54
## 354        Action                    Crave Entertainment   1.09
## 355     Adventure                    Crave Entertainment   0.15
## 356      Fighting                    Crave Entertainment   0.47
## 357          Misc                    Crave Entertainment   2.61
## 358      Platform                    Crave Entertainment   0.31
## 359        Puzzle                    Crave Entertainment   0.70
## 360        Racing                    Crave Entertainment   1.65
## 361  Role-Playing                    Crave Entertainment   1.14
## 362       Shooter                    Crave Entertainment   0.23
## 363    Simulation                    Crave Entertainment   0.28
## 364        Sports                    Crave Entertainment   1.16
## 365      Strategy                    Crave Entertainment   0.14
## 366     Adventure                          Creative Core   0.03
## 367          Misc                          Creative Core   0.01
## 368    Simulation                          Creative Core   0.06
## 369        Action                            Crimson Cow   0.06
## 370     Adventure                            Crimson Cow   0.02
## 371     Adventure                       Crystal Dynamics   0.15
## 372      Platform                       Crystal Dynamics   0.87
## 373        Racing                       Crystal Dynamics   0.17
## 374  Role-Playing                       Crystal Dynamics   0.44
## 375        Sports                       Crystal Dynamics   0.08
## 376       Shooter                                CTO SpA   0.88
## 377        Sports                                CTO SpA   0.02
## 378     Adventure                          Culture Brain   0.02
## 379          Misc                          Culture Brain   0.02
## 380  Role-Playing                          Culture Brain   0.03
## 381        Sports                          Culture Brain   0.20
## 382        Puzzle                     Culture Publishers   0.09
## 383        Action                             CyberFront   0.02
## 384     Adventure                             CyberFront   0.15
## 385          Misc                             CyberFront   0.04
## 386  Role-Playing                             CyberFront   0.03
## 387      Strategy                             CyberFront   0.03
## 388      Platform                                Cygames   0.03
## 389        Action                            D3Publisher   9.80
## 390     Adventure                            D3Publisher   0.77
## 391      Fighting                            D3Publisher   0.26
## 392          Misc                            D3Publisher   3.75
## 393      Platform                            D3Publisher   2.40
## 394        Puzzle                            D3Publisher   1.86
## 395        Racing                            D3Publisher   0.64
## 396  Role-Playing                            D3Publisher   0.69
## 397       Shooter                            D3Publisher   2.83
## 398    Simulation                            D3Publisher   0.31
## 399        Sports                            D3Publisher   0.78
## 400      Strategy                            D3Publisher   0.04
## 401     Adventure                               Daedalic   0.28
## 402     Adventure                 Daedalic Entertainment   0.14
## 403          Misc                                  Daito   0.23
## 404        Action                               Data Age   0.71
## 405          Misc                Data Design Interactive   0.07
## 406        Racing                Data Design Interactive   0.09
## 407        Sports                Data Design Interactive   0.13
## 408     Adventure                              Data East   0.11
## 409  Role-Playing                              Data East   0.04
## 410     Adventure                         Datam Polystar   0.03
## 411        Action                            Deep Silver  13.36
## 412     Adventure                            Deep Silver   1.67
## 413      Fighting                            Deep Silver   0.19
## 414          Misc                            Deep Silver   0.72
## 415      Platform                            Deep Silver   0.08
## 416        Puzzle                            Deep Silver   0.99
## 417        Racing                            Deep Silver   0.61
## 418  Role-Playing                            Deep Silver   2.96
## 419       Shooter                            Deep Silver   0.53
## 420    Simulation                            Deep Silver   1.64
## 421        Sports                            Deep Silver   2.03
## 422      Strategy                            Deep Silver   0.89
## 423        Action              Destination Software, Inc   0.04
## 424          Misc              Destination Software, Inc   0.08
## 425        Puzzle              Destination Software, Inc   0.18
## 426        Racing              Destination Software, Inc   0.39
## 427  Role-Playing              Destination Software, Inc   0.03
## 428    Simulation              Destination Software, Inc   0.15
## 429        Sports              Destination Software, Inc   0.01
## 430        Action                              Destineer   0.75
## 431     Adventure                              Destineer   0.18
## 432          Misc                              Destineer   0.63
## 433      Platform                              Destineer   0.02
## 434        Puzzle                              Destineer   0.54
## 435        Racing                              Destineer   0.33
## 436       Shooter                              Destineer   0.05
## 437    Simulation                              Destineer   1.03
## 438        Sports                              Destineer   0.83
## 439        Sports                            Detn8 Games   0.23
## 440        Puzzle                       Devolver Digital   0.02
## 441       Shooter                       Devolver Digital   0.02
## 442        Puzzle                        DHM Interactive   0.02
## 443       Shooter                        DHM Interactive   0.04
## 444    Simulation                        DHM Interactive   0.12
## 445        Sports                               DigiCube   0.06
## 446        Action             Disney Interactive Studios  52.20
## 447     Adventure             Disney Interactive Studios  17.76
## 448          Misc             Disney Interactive Studios  24.89
## 449      Platform             Disney Interactive Studios   9.85
## 450        Puzzle             Disney Interactive Studios   2.54
## 451        Racing             Disney Interactive Studios   9.12
## 452  Role-Playing             Disney Interactive Studios   1.47
## 453       Shooter             Disney Interactive Studios   0.28
## 454    Simulation             Disney Interactive Studios   0.88
## 455        Sports             Disney Interactive Studios   0.97
## 456          Misc                                 Dorart   0.03
## 457        Action                        dramatic create   0.01
## 458     Adventure                        dramatic create   0.10
## 459     Adventure               DreamCatcher Interactive   0.09
## 460          Misc               DreamCatcher Interactive   0.23
## 461      Platform               DreamCatcher Interactive   0.05
## 462        Puzzle               DreamCatcher Interactive   0.17
## 463       Shooter               DreamCatcher Interactive   0.08
## 464    Simulation               DreamCatcher Interactive   0.24
## 465        Sports               DreamCatcher Interactive   0.09
## 466      Platform                 DreamWorks Interactive   0.13
## 467        Action                              DSI Games   0.04
## 468     Adventure                              DSI Games   0.01
## 469          Misc                              DSI Games   0.26
## 470    Simulation                              DSI Games   0.02
## 471        Sports                              DSI Games   0.02
## 472        Action                      DTP Entertainment   0.52
## 473     Adventure                      DTP Entertainment   0.46
## 474          Misc                      DTP Entertainment   0.26
## 475        Puzzle                      DTP Entertainment   0.06
## 476  Role-Playing                      DTP Entertainment   0.68
## 477       Shooter                      DTP Entertainment   0.18
## 478    Simulation                      DTP Entertainment   0.20
## 479        Sports                      DTP Entertainment   1.12
## 480      Strategy                      DTP Entertainment   0.11
## 481        Racing               Dusenberry Martin Racing   0.05
## 482       Shooter                               EA Games   0.15
## 483        Puzzle                       Easy Interactive   0.05
## 484      Fighting                                  Ecole   0.06
## 485          Misc                                   Edia   0.09
## 486        Action                      Eidos Interactive  65.60
## 487     Adventure                      Eidos Interactive   0.68
## 488      Fighting                      Eidos Interactive   2.73
## 489          Misc                      Eidos Interactive   1.12
## 490      Platform                      Eidos Interactive   1.38
## 491        Puzzle                      Eidos Interactive   0.90
## 492        Racing                      Eidos Interactive   3.99
## 493  Role-Playing                      Eidos Interactive   3.52
## 494       Shooter                      Eidos Interactive   8.06
## 495    Simulation                      Eidos Interactive   1.01
## 496        Sports                      Eidos Interactive   3.87
## 497      Strategy                      Eidos Interactive   6.12
## 498        Action                        Electronic Arts 115.54
## 499     Adventure                        Electronic Arts   4.75
## 500      Fighting                        Electronic Arts  31.39
## 501          Misc                        Electronic Arts  24.95
## 502      Platform                        Electronic Arts   6.53
## 503        Puzzle                        Electronic Arts   4.55
## 504        Racing                        Electronic Arts 145.77
## 505  Role-Playing                        Electronic Arts  35.30
## 506       Shooter                        Electronic Arts 158.26
## 507    Simulation                        Electronic Arts  89.53
## 508        Sports                        Electronic Arts 479.67
## 509      Strategy                        Electronic Arts  14.08
## 510        Action                 Electronic Arts Victor   0.04
## 511        Sports                 Electronic Arts Victor   0.38
## 512     Adventure                                    Elf   0.36
## 513      Strategy                                    Elf   0.28
## 514    Simulation                                  Elite   0.07
## 515        Action                     Empire Interactive   0.69
## 516     Adventure                     Empire Interactive   0.11
## 517      Fighting                     Empire Interactive   0.47
## 518          Misc                     Empire Interactive   0.77
## 519        Puzzle                     Empire Interactive   1.53
## 520        Racing                     Empire Interactive   5.72
## 521  Role-Playing                     Empire Interactive   0.09
## 522       Shooter                     Empire Interactive   1.48
## 523    Simulation                     Empire Interactive   0.25
## 524        Sports                     Empire Interactive   0.18
## 525        Action                                 Encore   0.03
## 526        Racing                                 Encore   0.02
## 527  Role-Playing                                 Encore   0.02
## 528        Action                       Enix Corporation   0.07
## 529          Misc                       Enix Corporation   0.55
## 530  Role-Playing                       Enix Corporation  32.41
## 531    Simulation                       Enix Corporation   0.59
## 532        Sports                       Enix Corporation   0.12
## 533       Shooter                      Enjoy Gaming ltd.   0.10
## 534     Adventure                             Enterbrain   0.25
## 535      Fighting                             Enterbrain   0.07
## 536  Role-Playing                             Enterbrain   0.77
## 537    Simulation                             Enterbrain   0.04
## 538        Sports                             Enterbrain   1.10
## 539      Strategy              EON Digital Entertainment   0.01
## 540        Action                             Epic Games   0.01
## 541          Misc                                  Epoch   0.08
## 542      Platform                                  Epoch   0.21
## 543  Role-Playing                                  Epoch   0.12
## 544        Sports                                  Epoch   0.64
## 545    Simulation                                 Ertain   0.05
## 546      Fighting                                    ESP   0.03
## 547      Platform                                    ESP   0.05
## 548  Role-Playing                                    ESP   0.42
## 549       Shooter                                    ESP   0.03
## 550    Simulation                                    ESP   0.06
## 551        Action                        Essential Games   0.02
## 552       Shooter                        Essential Games   0.17
## 553      Strategy                        Essential Games   0.04
## 554        Action                        Evolution Games   0.07
## 555      Platform                          Evolved Games   0.03
## 556        Racing                          Evolved Games   0.19
## 557       Shooter                          Evolved Games   0.10
## 558        Action                   Excalibur Publishing   0.14
## 559    Simulation                   Excalibur Publishing   0.14
## 560  Role-Playing                        Experience Inc.   0.06
## 561  Role-Playing            Extreme Entertainment Group   0.03
## 562      Fighting                     Falcom Corporation   0.06
## 563  Role-Playing                     Falcom Corporation   1.15
## 564          Misc                                 Fields   0.03
## 565        Action                       Flashpoint Games   0.04
## 566      Platform                       Flashpoint Games   0.04
## 567  Role-Playing                            Flight-Plan   0.08
## 568      Strategy                            Flight-Plan   0.04
## 569        Action                 Focus Home Interactive   0.01
## 570     Adventure                 Focus Home Interactive   1.93
## 571          Misc                 Focus Home Interactive   0.01
## 572      Platform                 Focus Home Interactive   0.06
## 573        Puzzle                 Focus Home Interactive   0.43
## 574        Racing                 Focus Home Interactive   0.37
## 575  Role-Playing                 Focus Home Interactive   1.41
## 576    Simulation                 Focus Home Interactive   2.81
## 577        Sports                 Focus Home Interactive   0.36
## 578      Strategy                 Focus Home Interactive   0.12
## 579          Misc                       Focus Multimedia   0.02
## 580        Puzzle                       Focus Multimedia   0.03
## 581    Simulation                                 fonfun   0.02
## 582     Adventure                    Foreign Media Games   0.13
## 583          Misc                    Foreign Media Games   0.11
## 584        Puzzle                    Foreign Media Games   0.33
## 585    Simulation                    Foreign Media Games   0.06
## 586     Adventure                              Fortyfive   0.06
## 587        Action                        Fox Interactive   0.49
## 588      Platform                        Fox Interactive   4.29
## 589       Shooter                        Fox Interactive   2.14
## 590        Sports                        Fox Interactive   0.47
## 591        Action                          From Software   0.07
## 592     Adventure                          From Software   0.12
## 593  Role-Playing                          From Software   0.53
## 594       Shooter                          From Software   0.11
## 595    Simulation                          From Software   0.80
## 596     Adventure                                   Fuji   0.03
## 597        Action                           Funbox Media   0.11
## 598     Adventure                           Funbox Media   0.11
## 599          Misc                           Funbox Media   0.68
## 600      Strategy                           Funbox Media   0.01
## 601  Role-Playing                                 Funcom   0.20
## 602        Racing                                FunSoft   0.12
## 603        Puzzle                                 Funsta   0.18
## 604       Shooter                                 Funsta   0.02
## 605        Action                                  FuRyu   0.51
## 606     Adventure                                  FuRyu   0.06
## 607          Misc                                  FuRyu   0.24
## 608  Role-Playing                                  FuRyu   0.48
## 609    Simulation                                  FuRyu   0.03
## 610        Action                      FuRyu Corporation   0.03
## 611      Fighting                                  G.Rev   0.03
## 612       Shooter                                  G.Rev   0.01
## 613       Shooter                                   Gaga   0.02
## 614     Adventure                 Gainax Network Systems   0.11
## 615          Misc                 Gainax Network Systems   0.05
## 616          Misc                                 Gakken   0.04
## 617  Role-Playing                              Game Arts   0.14
## 618        Action                           Game Factory   0.36
## 619     Adventure                           Game Factory   0.86
## 620      Fighting                           Game Factory   0.09
## 621          Misc                           Game Factory   0.41
## 622      Platform                           Game Factory   0.10
## 623        Puzzle                           Game Factory   0.52
## 624        Racing                           Game Factory   0.09
## 625  Role-Playing                           Game Factory   0.06
## 626    Simulation                           Game Factory   1.30
## 627          Misc                              Game Life   0.17
## 628    Simulation                              Game Life   0.13
## 629        Action                             Gamebridge   0.73
## 630        Action                               Gamecock   0.07
## 631          Misc                               Gamecock   0.11
## 632      Strategy                               Gamecock   0.02
## 633          Misc                               Gameloft   0.11
## 634        Action                 GameMill Entertainment   0.30
## 635     Adventure                 GameMill Entertainment   0.09
## 636          Misc                 GameMill Entertainment   0.81
## 637        Sports                 GameMill Entertainment   0.18
## 638          Misc                                GameTek   0.10
## 639          Misc                Gathering of Developers   0.20
## 640        Racing                Gathering of Developers   0.56
## 641       Shooter                Gathering of Developers   0.28
## 642      Strategy                Gathering of Developers   0.15
## 643      Strategy                  General Entertainment   0.14
## 644        Action                                  Genki   0.11
## 645        Racing                                  Genki   1.31
## 646        Sports                                  Genki   0.04
## 647        Puzzle                            Genterprise   0.01
## 648  Role-Playing                             Ghostlight   2.34
## 649    Simulation                             Ghostlight   0.02
## 650        Sports                             Ghostlight   0.21
## 651      Strategy                             Ghostlight   0.22
## 652     Adventure                                   Giga   0.02
## 653        Action                                 Giza10   0.02
## 654      Strategy                                  Glams   0.08
## 655          Misc                 Global A Entertainment   0.01
## 656  Role-Playing                 Global A Entertainment   0.14
## 657        Action                            Global Star   0.11
## 658     Adventure                            Global Star   1.30
## 659      Fighting                            Global Star   0.18
## 660      Platform                            Global Star   0.29
## 661        Racing                            Global Star   0.42
## 662       Shooter                            Global Star   0.55
## 663    Simulation                            Global Star   0.14
## 664        Sports                            Global Star   4.59
## 665      Strategy                            Global Star   0.07
## 666     Adventure                            GN Software   0.05
## 667  Role-Playing                                    GOA   0.02
## 668      Fighting                           Gotham Games   0.97
## 669      Platform                           Gotham Games   0.76
## 670       Shooter                           Gotham Games   1.57
## 671        Sports                           Gotham Games   0.42
## 672          Misc                               Graffiti   0.20
## 673  Role-Playing                               Graffiti   0.09
## 674       Shooter                               Graffiti   0.04
## 675    Simulation                               Graffiti   0.05
## 676      Fighting                       Grand Prix Games   0.06
## 677    Simulation                 Graphsim Entertainment   0.02
## 678        Action                Gremlin Interactive Ltd   0.17
## 679      Platform                Gremlin Interactive Ltd   0.05
## 680        Racing                Gremlin Interactive Ltd   0.19
## 681       Shooter                Gremlin Interactive Ltd   0.20
## 682        Sports                Gremlin Interactive Ltd   0.49
## 683        Sports                  Griffin International   0.09
## 684       Shooter                           Groove Games   0.09
## 685     Adventure                                    GSP   1.62
## 686          Misc                                    GSP   1.51
## 687        Puzzle                                    GSP   0.31
## 688    Simulation                                    GSP   0.25
## 689        Action                         GT Interactive   8.88
## 690      Fighting                         GT Interactive   6.84
## 691          Misc                         GT Interactive   0.94
## 692      Platform                         GT Interactive   2.54
## 693        Racing                         GT Interactive   2.02
## 694       Shooter                         GT Interactive   3.16
## 695    Simulation                         GT Interactive   0.07
## 696        Sports                         GT Interactive   0.78
## 697        Action                                 GungHo   0.21
## 698     Adventure                                 GungHo   0.02
## 699          Misc                                 GungHo   0.04
## 700  Role-Playing                                 GungHo   2.88
## 701     Adventure                                   Gust   0.10
## 702  Role-Playing                                   Gust   0.99
## 703      Strategy                                   Gust   0.01
## 704          Misc                              Hackberry   0.31
## 705        Puzzle                         HAL Laboratory   0.06
## 706        Action                    Hamster Corporation   0.28
## 707    Simulation                    Hamster Corporation   0.02
## 708     Adventure                               Happinet   0.15
## 709          Misc                               Happinet   0.02
## 710    Simulation                               Happinet   0.01
## 711          Misc                 Harmonix Music Systems   0.80
## 712        Action                     Hasbro Interactive   5.59
## 713          Misc                     Hasbro Interactive   6.80
## 714      Platform                     Hasbro Interactive   0.91
## 715        Puzzle                     Hasbro Interactive   1.12
## 716        Racing                     Hasbro Interactive   0.56
## 717       Shooter                     Hasbro Interactive   0.24
## 718  Role-Playing                      Havas Interactive   0.13
## 719     Adventure                           Headup Games   0.03
## 720    Simulation                           Hearty Robin   0.09
## 721    Simulation                                   Hect   0.50
## 722        Action                            Hello Games   1.60
## 723     Adventure                        Her Interactive   0.03
## 724        Action                        Hip Interactive   0.33
## 725       Shooter                        Hip Interactive   0.03
## 726     Adventure                        HMH Interactive   0.11
## 727          Misc                        HMH Interactive   0.03
## 728        Sports           Home Entertainment Suppliers   0.71
## 729          Misc                   Hudson Entertainment   0.60
## 730      Platform                   Hudson Entertainment   0.08
## 731        Puzzle                   Hudson Entertainment   0.03
## 732  Role-Playing                   Hudson Entertainment   0.04
## 733       Shooter                   Hudson Entertainment   0.06
## 734    Simulation                   Hudson Entertainment   0.79
## 735        Sports                   Hudson Entertainment   0.09
## 736        Action                            Hudson Soft   1.42
## 737     Adventure                            Hudson Soft   0.24
## 738      Fighting                            Hudson Soft   0.17
## 739          Misc                            Hudson Soft   4.88
## 740      Platform                            Hudson Soft   2.77
## 741        Puzzle                            Hudson Soft   6.61
## 742  Role-Playing                            Hudson Soft   1.87
## 743       Shooter                            Hudson Soft   1.23
## 744    Simulation                            Hudson Soft   1.03
## 745        Sports                            Hudson Soft   2.76
## 746      Strategy                            Hudson Soft   0.03
## 747     Adventure                    Human Entertainment   0.29
## 748      Fighting                    Human Entertainment   1.46
## 749        Racing                    Human Entertainment   0.38
## 750    Simulation                    Human Entertainment   0.32
## 751        Sports                    Human Entertainment   0.48
## 752      Strategy                    Human Entertainment   0.07
## 753        Action                                  HuneX   0.01
## 754     Adventure                                  HuneX   0.02
## 755  Role-Playing                    Iceberg Interactive   0.04
## 756      Strategy                    Iceberg Interactive   0.04
## 757       Shooter                            id Software   0.03
## 758        Action                           Idea Factory   0.64
## 759     Adventure                           Idea Factory   2.42
## 760          Misc                           Idea Factory   0.15
## 761  Role-Playing                           Idea Factory   0.71
## 762      Strategy                           Idea Factory   0.10
## 763        Action             Idea Factory International   0.50
## 764  Role-Playing             Idea Factory International   0.11
## 765        Action                           IE Institute   0.02
## 766          Misc                           IE Institute   0.94
## 767        Action                 Ignition Entertainment   0.76
## 768     Adventure                 Ignition Entertainment   0.04
## 769      Fighting                 Ignition Entertainment   2.26
## 770          Misc                 Ignition Entertainment   0.46
## 771      Platform                 Ignition Entertainment   0.10
## 772        Puzzle                 Ignition Entertainment   1.44
## 773        Racing                 Ignition Entertainment   0.53
## 774  Role-Playing                 Ignition Entertainment   0.36
## 775       Shooter                 Ignition Entertainment   0.54
## 776        Sports                 Ignition Entertainment   0.23
## 777      Strategy                 Ignition Entertainment   0.10
## 778        Action                     Illusion Softworks   0.70
## 779     Adventure                                 Imadio   0.14
## 780  Role-Playing                            Image Epoch   0.10
## 781     Adventure                        imageepoch Inc.   0.01
## 782  Role-Playing                        imageepoch Inc.   0.03
## 783    Simulation                             Imageworks   0.02
## 784        Action                                 Imagic   0.37
## 785       Shooter                                 Imagic   4.45
## 786     Adventure                              Imagineer   0.40
## 787      Fighting                              Imagineer   0.05
## 788        Racing                              Imagineer   0.04
## 789  Role-Playing                              Imagineer   1.33
## 790    Simulation                              Imagineer   0.16
## 791        Sports                              Imagineer   0.67
## 792          Misc                                   Imax   0.06
## 793     Adventure                            Indie Games   0.06
## 794    Simulation                            Indie Games   0.26
## 795        Action                             Infogrames   0.77
## 796     Adventure                             Infogrames   0.72
## 797      Fighting                             Infogrames   0.55
## 798          Misc                             Infogrames   3.73
## 799      Platform                             Infogrames   1.26
## 800        Racing                             Infogrames   3.67
## 801  Role-Playing                             Infogrames   2.14
## 802       Shooter                             Infogrames   2.10
## 803    Simulation                             Infogrames   0.06
## 804        Sports                             Infogrames   1.26
## 805      Strategy                             Infogrames   0.08
## 806        Action                        Insomniac Games   0.12
## 807     Adventure                           Interchannel   0.10
## 808      Strategy                     Interchannel-Holon   0.01
## 809      Platform                              Intergrow   0.03
## 810        Action                              Interplay   1.38
## 811     Adventure                              Interplay   0.83
## 812      Fighting                              Interplay   0.21
## 813          Misc                              Interplay   1.02
## 814      Platform                              Interplay   0.69
## 815        Racing                              Interplay   0.37
## 816  Role-Playing                              Interplay   0.73
## 817       Shooter                              Interplay   0.66
## 818    Simulation                              Interplay   0.10
## 819        Sports                              Interplay   0.67
## 820       Shooter                  Interplay Productions   0.10
## 821        Sports             Interworks Unlimited, Inc.   0.01
## 822        Action                           Inti Creates   0.01
## 823        Action                  Introversion Software   0.02
## 824  Role-Playing                   inXile Entertainment   0.10
## 825        Action              Irem Software Engineering   0.16
## 826      Fighting              Irem Software Engineering   0.06
## 827          Misc              Irem Software Engineering   0.17
## 828  Role-Playing              Irem Software Engineering   0.01
## 829       Shooter              Irem Software Engineering   0.03
## 830      Strategy              Irem Software Engineering   0.03
## 831        Action                       ITT Family Games   0.34
## 832        Puzzle                              Ivolgamus   0.04
## 833        Puzzle                                   iWin   0.06
## 834      Platform                      Jack of All Games   0.40
## 835       Shooter                      Jack of All Games   0.02
## 836        Action                                 Jaleco   0.15
## 837      Fighting                                 Jaleco   0.01
## 838          Misc                                 Jaleco   0.11
## 839        Puzzle                                 Jaleco   0.14
## 840        Racing                                 Jaleco   0.46
## 841       Shooter                                 Jaleco   0.01
## 842        Sports                                 Jaleco   0.79
## 843      Strategy                                 Jaleco   0.27
## 844          Misc                     Jester Interactive   0.04
## 845        Racing                     Jester Interactive   1.11
## 846    Simulation                                Jorudan   0.95
## 847        Action                     JoWood Productions   0.15
## 848     Adventure                     JoWood Productions   0.26
## 849          Misc                     JoWood Productions   0.05
## 850      Platform                     JoWood Productions   0.04
## 851        Puzzle                     JoWood Productions   0.05
## 852  Role-Playing                     JoWood Productions   0.46
## 853    Simulation                     JoWood Productions   0.16
## 854        Sports                     JoWood Productions   0.21
## 855      Strategy                     JoWood Productions   0.11
## 856    Simulation                            Just Flight   0.03
## 857        Action                                    JVC   0.06
## 858      Fighting                                    JVC   0.12
## 859          Misc                                    JVC   0.08
## 860        Puzzle                                    JVC   2.40
## 861        Racing                                    JVC   0.09
## 862       Shooter                                    JVC   0.05
## 863        Action                         Kadokawa Games   0.27
## 864     Adventure                         Kadokawa Games   0.12
## 865          Misc                         Kadokawa Games   0.12
## 866  Role-Playing                         Kadokawa Games   0.05
## 867    Simulation                         Kadokawa Games   0.02
## 868        Action                        Kadokawa Shoten   0.09
## 869     Adventure                        Kadokawa Shoten   1.70
## 870          Misc                        Kadokawa Shoten   0.02
## 871  Role-Playing                        Kadokawa Shoten   1.78
## 872    Simulation                        Kadokawa Shoten   0.02
## 873        Sports                        Kadokawa Shoten   0.14
## 874      Strategy                        Kadokawa Shoten   0.02
## 875        Action                            Kaga Create   0.07
## 876     Adventure                            Kaga Create   0.02
## 877          Misc                            Kaga Create   0.05
## 878        Action                          Kalypso Media   0.21
## 879     Adventure                          Kalypso Media   0.04
## 880          Misc                          Kalypso Media   0.01
## 881    Simulation                          Kalypso Media   0.88
## 882      Strategy                          Kalypso Media   1.31
## 883          Misc                                  Kamui   0.03
## 884    Simulation                            Kando Games   0.03
## 885          Misc                    Karin Entertainment   0.02
## 886        Action                                  Kemco   0.63
## 887     Adventure                                  Kemco   0.07
## 888          Misc                                  Kemco   0.10
## 889      Platform                                  Kemco   0.15
## 890        Puzzle                                  Kemco   0.05
## 891        Racing                                  Kemco   0.95
## 892  Role-Playing                                  Kemco   0.05
## 893       Shooter                                  Kemco   0.02
## 894        Sports                                  Kemco   0.20
## 895     Adventure                                    KID   0.08
## 896     Adventure                           Kids Station   0.03
## 897  Role-Playing                           King Records   0.02
## 898        Action                    Knowledge Adventure   0.24
## 899     Adventure                    Knowledge Adventure   0.42
## 900          Misc                    Knowledge Adventure   0.44
## 901        Sports                    Knowledge Adventure   0.37
## 902        Action                             Koch Media   2.92
## 903     Adventure                             Koch Media   0.09
## 904        Puzzle                             Koch Media   0.04
## 905  Role-Playing                             Koch Media   0.02
## 906    Simulation                             Koch Media   1.50
## 907        Sports                             Koch Media   0.13
## 908      Strategy                             Koch Media   0.01
## 909      Fighting               Kokopeli Digital Studios   0.03
## 910        Action           Konami Digital Entertainment  71.33
## 911     Adventure           Konami Digital Entertainment   9.57
## 912      Fighting           Konami Digital Entertainment   1.73
## 913          Misc           Konami Digital Entertainment  18.62
## 914      Platform           Konami Digital Entertainment  14.83
## 915        Puzzle           Konami Digital Entertainment   0.83
## 916        Racing           Konami Digital Entertainment   1.27
## 917  Role-Playing           Konami Digital Entertainment  13.74
## 918       Shooter           Konami Digital Entertainment   9.47
## 919    Simulation           Konami Digital Entertainment  32.31
## 920        Sports           Konami Digital Entertainment  98.95
## 921      Strategy           Konami Digital Entertainment  10.99
## 922      Strategy                              Kool Kizz   0.04
## 923          Misc                                    KSS   0.03
## 924        Action                                 Laguna   0.35
## 925      Platform                                 Laguna   0.84
## 926  Role-Playing                                 Laguna   0.36
## 927     Adventure                     Legacy Interactive   0.04
## 928        Action                             LEGO Media   0.01
## 929     Adventure                             LEGO Media   0.18
## 930      Platform                             LEGO Media   0.06
## 931        Racing                             LEGO Media   1.21
## 932      Strategy                             LEGO Media   0.10
## 933        Action                                Level 5   4.84
## 934     Adventure                                Level 5   0.12
## 935          Misc                                Level 5   0.03
## 936        Puzzle                                Level 5   1.10
## 937  Role-Playing                                Level 5   5.69
## 938        Sports                                Level 5   0.26
## 939      Strategy                                Level 5   0.13
## 940       Shooter                  Lexicon Entertainment   0.02
## 941    Simulation                  Lexicon Entertainment   0.03
## 942        Action                            Licensed 4U   0.05
## 943        Puzzle                            Licensed 4U   0.02
## 944    Simulation                 Lighthouse Interactive   0.02
## 945        Puzzle                           Liquid Games   0.01
## 946        Racing                           Liquid Games   0.26
## 947        Action                           Little Orbit   0.92
## 948     Adventure                           Little Orbit   0.97
## 949    Simulation                           Little Orbit   0.15
## 950  Role-Playing                                  Locus   0.07
## 951        Action                              LSP Games   0.03
## 952      Platform                              LSP Games   0.08
## 953       Shooter                              LSP Games   0.01
## 954        Action                              LucasArts  62.02
## 955     Adventure                              LucasArts   2.01
## 956        Racing                              LucasArts   0.47
## 957  Role-Playing                              LucasArts   0.20
## 958       Shooter                              LucasArts  17.03
## 959    Simulation                              LucasArts   4.11
## 960      Strategy                              LucasArts   1.50
## 961          Misc                               Mad Catz   0.20
## 962    Simulation                               Mad Catz   0.07
## 963        Sports                               Mad Catz   0.03
## 964        Sports                        Magical Company   0.41
## 965          Misc                                  Magix   0.35
## 966        Action                  Majesco Entertainment   2.95
## 967     Adventure                  Majesco Entertainment   0.91
## 968      Fighting                  Majesco Entertainment   0.28
## 969          Misc                  Majesco Entertainment   2.70
## 970      Platform                  Majesco Entertainment   0.41
## 971        Puzzle                  Majesco Entertainment   1.16
## 972        Racing                  Majesco Entertainment   0.89
## 973  Role-Playing                  Majesco Entertainment   0.11
## 974       Shooter                  Majesco Entertainment   0.75
## 975    Simulation                  Majesco Entertainment   2.03
## 976        Sports                  Majesco Entertainment   3.66
## 977      Strategy                  Majesco Entertainment   0.23
## 978     Adventure                            Mamba Games   0.03
## 979      Strategy                            Mamba Games   0.02
## 980        Action                   Marvel Entertainment   0.05
## 981        Action                Marvelous Entertainment   1.40
## 982      Fighting                Marvelous Entertainment   0.36
## 983          Misc                Marvelous Entertainment   0.10
## 984  Role-Playing                Marvelous Entertainment   0.32
## 985    Simulation                Marvelous Entertainment   0.15
## 986     Adventure                        Marvelous Games   0.02
## 987        Action                  Marvelous Interactive   0.80
## 988     Adventure                  Marvelous Interactive   0.55
## 989      Fighting                  Marvelous Interactive   0.30
## 990          Misc                  Marvelous Interactive   0.03
## 991  Role-Playing                  Marvelous Interactive   1.55
## 992    Simulation                  Marvelous Interactive   0.72
## 993        Sports                  Marvelous Interactive   0.22
## 994    Simulation                      Masque Publishing   0.02
## 995     Adventure                           Mastertronic   0.03
## 996          Misc                           Mastertronic   0.03
## 997        Puzzle                           Mastertronic   0.28
## 998        Racing                           Mastertronic   0.01
## 999       Shooter                           Mastertronic   0.18
## 1000       Sports                           Mastertronic   0.02
## 1001     Strategy                           Mastertronic   1.18
## 1002    Adventure                                Mastiff   0.05
## 1003         Misc                                Mastiff   0.08
## 1004      Shooter                                Mastiff   0.41
## 1005   Simulation                                Mastiff   0.10
## 1006       Sports                                Mastiff   1.59
## 1007       Action                     Mattel Interactive   1.51
## 1008    Adventure                     Mattel Interactive   0.31
## 1009       Puzzle                     Mattel Interactive   0.59
## 1010       Racing                     Mattel Interactive   0.39
## 1011      Shooter                     Mattel Interactive   0.24
## 1012       Sports                     Mattel Interactive   0.47
## 1013 Role-Playing                               Max Five   0.05
## 1014       Action                   Maximum Family Games   0.03
## 1015   Simulation                                  Maxis   3.39
## 1016    Adventure                      MC2 Entertainment   0.06
## 1017      Shooter                      MC2 Entertainment   0.02
## 1018         Misc                    Media Entertainment   0.01
## 1019    Adventure                          Media Factory   0.14
## 1020       Sports                          Media Factory   0.15
## 1021       Racing                            Media Rings   0.10
## 1022 Role-Playing                            Media Rings   0.19
## 1023       Sports                            Media Rings   0.36
## 1024    Adventure                            Media Works   0.05
## 1025         Misc                            Media Works   0.04
## 1026     Strategy                            Media Works   0.09
## 1027       Puzzle                             MediaQuest   0.05
## 1028       Action                           Men-A-Vision   0.77
## 1029         Misc                     Mentor Interactive   1.07
## 1030 Role-Playing                          Mercury Games   0.08
## 1031   Simulation                          Mercury Games   0.13
## 1032    Adventure                            Merscom LLC   0.20
## 1033     Fighting                               Metro 3D   0.02
## 1034     Platform                               Metro 3D   0.07
## 1035       Racing                               Metro 3D   0.21
## 1036 Role-Playing                               Metro 3D   0.19
## 1037      Shooter                               Metro 3D   0.19
## 1038   Simulation                               Metro 3D   1.16
## 1039 Role-Playing                            Michaelsoft   0.01
## 1040       Puzzle                            Micro Cabin   0.02
## 1041 Role-Playing                            Micro Cabin   0.10
## 1042   Simulation                            Micro Cabin   0.08
## 1043       Action                               Microids   0.15
## 1044    Adventure                               Microids   0.21
## 1045       Sports                               Microids   0.04
## 1046         Misc                             Microprose   0.55
## 1047   Simulation                             Microprose   0.27
## 1048     Strategy                             Microprose   1.20
## 1049       Action                 Microsoft Game Studios  12.45
## 1050    Adventure                 Microsoft Game Studios   1.63
## 1051     Fighting                 Microsoft Game Studios   2.43
## 1052         Misc                 Microsoft Game Studios  46.99
## 1053     Platform                 Microsoft Game Studios   1.65
## 1054       Puzzle                 Microsoft Game Studios   0.10
## 1055       Racing                 Microsoft Game Studios  33.08
## 1056 Role-Playing                 Microsoft Game Studios  20.58
## 1057      Shooter                 Microsoft Game Studios  95.46
## 1058   Simulation                 Microsoft Game Studios  12.49
## 1059       Sports                 Microsoft Game Studios  14.64
## 1060     Strategy                 Microsoft Game Studios   4.29
## 1061       Action        Midas Interactive Entertainment   0.09
## 1062     Fighting        Midas Interactive Entertainment   0.07
## 1063         Misc        Midas Interactive Entertainment   0.03
## 1064     Platform        Midas Interactive Entertainment   0.05
## 1065       Puzzle        Midas Interactive Entertainment   0.13
## 1066       Racing        Midas Interactive Entertainment   0.61
## 1067 Role-Playing        Midas Interactive Entertainment   0.06
## 1068      Shooter        Midas Interactive Entertainment   0.60
## 1069   Simulation        Midas Interactive Entertainment   0.02
## 1070       Sports        Midas Interactive Entertainment   0.93
## 1071     Strategy        Midas Interactive Entertainment   0.13
## 1072       Action                           Midway Games   7.35
## 1073    Adventure                           Midway Games   0.37
## 1074     Fighting                           Midway Games  16.51
## 1075         Misc                           Midway Games   9.61
## 1076     Platform                           Midway Games   1.74
## 1077       Puzzle                           Midway Games   3.05
## 1078       Racing                           Midway Games   6.56
## 1079 Role-Playing                           Midway Games   1.10
## 1080      Shooter                           Midway Games   5.62
## 1081       Sports                           Midway Games  17.94
## 1082      Shooter                              Milestone   0.08
## 1083       Racing                        Milestone S.r.l   0.05
## 1084       Racing                       Milestone S.r.l.   1.28
## 1085       Action                         Minato Station   0.02
## 1086    Adventure                         Minato Station   0.03
## 1087       Action                              Mindscape   0.38
## 1088    Adventure                              Mindscape   0.03
## 1089         Misc                              Mindscape   6.03
## 1090       Puzzle                              Mindscape   0.40
## 1091       Racing                              Mindscape   0.13
## 1092 Role-Playing                              Mindscape   0.05
## 1093       Sports                              Mindscape   0.14
## 1094     Strategy                              Mindscape   0.58
## 1095         Misc                          Mirai Shounen   0.02
## 1096       Sports                                 Misawa   0.07
## 1097      Shooter                                 Mitsui   0.08
## 1098       Action                              mixi, Inc   0.86
## 1099       Sports                                MLB.com   0.04
## 1100    Adventure                                 Mojang   2.89
## 1101   Simulation               Monte Christo Multimedia   0.05
## 1102      Shooter                                   Moss   0.13
## 1103       Action                                    MTO   0.06
## 1104       Racing                                    MTO   0.10
## 1105   Simulation                                    MTO   0.24
## 1106         Misc                              MTV Games  20.97
## 1107         Misc                   Mud Duck Productions   0.55
## 1108       Sports                   Mud Duck Productions   0.30
## 1109       Puzzle                            Mumbo Jumbo   0.54
## 1110       Sports                            Mumbo Jumbo   0.02
## 1111     Strategy                            Mumbo Jumbo   0.02
## 1112       Action                                  Mycom   0.02
## 1113         Misc                           Myelin Media   0.13
## 1114       Action                               Mystique   0.82
## 1115       Action                                    N/A   0.85
## 1116    Adventure                                    N/A   0.27
## 1117     Fighting                                    N/A   3.21
## 1118         Misc                                    N/A   7.81
## 1119     Platform                                    N/A   0.50
## 1120       Puzzle                                    N/A   0.01
## 1121       Racing                                    N/A   0.01
## 1122 Role-Playing                                    N/A   0.06
## 1123      Shooter                                    N/A   0.05
## 1124   Simulation                                    N/A   0.24
## 1125       Sports                                    N/A   1.58
## 1126     Strategy                                    N/A   0.29
## 1127       Action                     Namco Bandai Games  36.90
## 1128    Adventure                     Namco Bandai Games   5.29
## 1129     Fighting                     Namco Bandai Games  61.22
## 1130         Misc                     Namco Bandai Games  29.55
## 1131     Platform                     Namco Bandai Games   2.89
## 1132       Puzzle                     Namco Bandai Games   6.12
## 1133       Racing                     Namco Bandai Games   7.01
## 1134 Role-Playing                     Namco Bandai Games  53.82
## 1135      Shooter                     Namco Bandai Games   9.87
## 1136   Simulation                     Namco Bandai Games  10.43
## 1137       Sports                     Namco Bandai Games  19.16
## 1138     Strategy                     Namco Bandai Games  11.83
## 1139    Adventure                                Natsume   0.08
## 1140     Fighting                                Natsume   0.10
## 1141         Misc                                Natsume   0.04
## 1142     Platform                                Natsume   0.02
## 1143       Puzzle                                Natsume   0.20
## 1144 Role-Playing                                Natsume   0.30
## 1145   Simulation                                Natsume   0.75
## 1146       Sports                                Natsume   2.11
## 1147     Strategy                                Natsume   0.09
## 1148       Sports                           Navarre Corp   0.05
## 1149         Misc                             Naxat Soft   0.01
## 1150     Strategy                                    NCS   0.40
## 1151       Action                                 NCSoft   2.30
## 1152 Role-Playing                                 NCSoft   0.29
## 1153      Shooter                        NDA Productions   0.12
## 1154    Adventure                                    NEC   0.14
## 1155 Role-Playing                                    NEC   0.29
## 1156    Adventure                       NEC Interchannel   0.51
## 1157 Role-Playing                       NEC Interchannel   0.13
## 1158   Simulation                       NEC Interchannel   0.06
## 1159     Strategy                       NEC Interchannel   0.08
## 1160       Action                     Neko Entertainment   0.02
## 1161    Adventure                     Neko Entertainment   0.06
## 1162         Misc                     Neko Entertainment   0.03
## 1163       Puzzle                     Neko Entertainment   0.02
## 1164      Shooter                     Neko Entertainment   0.18
## 1165       Action                                NetRevo   0.01
## 1166    Adventure                                NetRevo   0.02
## 1167     Fighting                                    New   0.36
## 1168     Strategy                    New World Computing   0.01
## 1169       Action                               NewKidCo   0.06
## 1170    Adventure                               NewKidCo   0.26
## 1171     Fighting                               NewKidCo   0.07
## 1172         Misc                               NewKidCo   0.92
## 1173     Platform                               NewKidCo   0.02
## 1174 Role-Playing                                  Nexon   0.03
## 1175         Misc                             Nichibutsu   0.28
## 1176       Action               Nihon Falcom Corporation   0.43
## 1177 Role-Playing               Nihon Falcom Corporation   0.34
## 1178       Action                               Nintendo 128.18
## 1179    Adventure                               Nintendo  35.71
## 1180     Fighting                               Nintendo  53.35
## 1181         Misc                               Nintendo 180.67
## 1182     Platform                               Nintendo 427.21
## 1183       Puzzle                               Nintendo 124.88
## 1184       Racing                               Nintendo 151.30
## 1185 Role-Playing                               Nintendo 284.90
## 1186      Shooter                               Nintendo  69.73
## 1187   Simulation                               Nintendo  85.27
## 1188       Sports                               Nintendo 218.01
## 1189     Strategy                               Nintendo  27.35
## 1190         Misc                           Nippon Amuse   0.09
## 1191       Action                        Nippon Columbia   0.53
## 1192         Misc                        Nippon Columbia   0.42
## 1193       Action                   Nippon Ichi Software   1.32
## 1194    Adventure                   Nippon Ichi Software   0.42
## 1195     Fighting                   Nippon Ichi Software   0.63
## 1196         Misc                   Nippon Ichi Software   1.13
## 1197     Platform                   Nippon Ichi Software   0.24
## 1198 Role-Playing                   Nippon Ichi Software  10.48
## 1199      Shooter                   Nippon Ichi Software   0.02
## 1200     Strategy                   Nippon Ichi Software   0.04
## 1201         Misc                         Nippon Telenet   0.26
## 1202    Adventure                              Nitroplus   0.01
## 1203     Fighting                              Nitroplus   0.01
## 1204       Action                                Nobilis   0.06
## 1205    Adventure                                Nobilis   0.03
## 1206         Misc                                Nobilis   0.35
## 1207       Racing                                Nobilis   0.03
## 1208 Role-Playing                                Nobilis   0.15
## 1209   Simulation                                Nobilis   1.32
## 1210       Action                            Nordcurrent   0.05
## 1211         Misc                            Nordcurrent   0.23
## 1212       Puzzle                            Nordcurrent   0.20
## 1213       Sports                            Nordcurrent   0.11
## 1214       Action                           Nordic Games   0.65
## 1215    Adventure                           Nordic Games   0.08
## 1216         Misc                           Nordic Games   3.24
## 1217       Racing                           Nordic Games   0.26
## 1218 Role-Playing                           Nordic Games   0.05
## 1219      Shooter                           Nordic Games   0.06
## 1220       Sports                           Nordic Games   0.08
## 1221     Strategy                           Nordic Games   0.02
## 1222      Shooter                              NovaLogic   0.82
## 1223     Platform                            Number None   0.03
## 1224    Adventure                                O-Games   0.06
## 1225         Misc                                O-Games   0.32
## 1226       Puzzle                                O-Games   0.29
## 1227       Racing                                O-Games   0.02
## 1228      Shooter                                O-Games   0.03
## 1229       Sports                                O-Games   0.36
## 1230       Puzzle                       O3 Entertainment   0.02
## 1231      Shooter                       O3 Entertainment   0.09
## 1232   Simulation                       O3 Entertainment   0.11
## 1233       Action                                  Ocean   1.62
## 1234     Fighting                                  Ocean   0.22
## 1235         Misc                                  Ocean   0.04
## 1236     Platform                                  Ocean   0.79
## 1237       Puzzle                                  Ocean   0.08
## 1238       Racing                                  Ocean   0.35
## 1239      Shooter                                  Ocean   0.23
## 1240       Sports                                  Ocean   0.28
## 1241   Simulation                          Office Create   0.06
## 1242 Role-Playing                              On Demand   0.21
## 1243   Simulation                              Ongakukan   0.01
## 1244   Simulation                         Origin Systems   0.09
## 1245    Adventure                                Otomate   0.01
## 1246       Action                     Oxygen Interactive   0.20
## 1247    Adventure                     Oxygen Interactive   0.18
## 1248         Misc                     Oxygen Interactive   2.48
## 1249     Platform                     Oxygen Interactive   0.06
## 1250       Puzzle                     Oxygen Interactive   0.10
## 1251       Sports                     Oxygen Interactive   0.44
## 1252         Misc                               P2 Games   0.38
## 1253       Puzzle                               P2 Games   0.02
## 1254         Misc            Pacific Century Cyber Works   0.26
## 1255    Adventure                          Pack-In-Video   0.05
## 1256   Simulation                          Pack-In-Video   0.06
## 1257   Simulation                           Pack In Soft   0.48
## 1258       Action                                 Palcom   4.17
## 1259 Role-Playing                       Panther Software   0.17
## 1260         Misc                                   Paon   0.25
## 1261         Misc                       Paon Corporation   0.03
## 1262   Simulation                    Paradox Development   0.01
## 1263         Misc                    Paradox Interactive   0.03
## 1264 Role-Playing                    Paradox Interactive   0.11
## 1265   Simulation                    Paradox Interactive   0.26
## 1266     Strategy                    Paradox Interactive   0.36
## 1267       Action                           Parker Bros.   3.85
## 1268     Platform                           Parker Bros.   0.54
## 1269       Puzzle                           Parker Bros.   0.58
## 1270       Puzzle          Performance Designed Products   0.36
## 1271   Simulation                             Phantagram   0.05
## 1272      Shooter                            Phantom EFX   0.09
## 1273     Platform                             Phenomedia   0.05
## 1274       Puzzle                             Phenomedia   0.11
## 1275       Racing                             Phenomedia   0.03
## 1276      Shooter                          Phoenix Games   0.02
## 1277    Adventure                                 Piacci   0.01
## 1278         Misc                               Pinnacle   1.26
## 1279       Puzzle                               Pinnacle   0.03
## 1280       Sports                               Pinnacle   0.10
## 1281     Strategy                               Pinnacle   0.03
## 1282    Adventure                            Pioneer LDC   0.33
## 1283       Racing                            Pioneer LDC   0.41
## 1284         Misc                                Play It   1.67
## 1285     Platform                                Play It   0.03
## 1286       Racing                                Play It   1.52
## 1287      Shooter                                Play It   0.47
## 1288       Sports                                Play It   0.62
## 1289       Action                 Playlogic Game Factory   0.68
## 1290         Misc                 Playlogic Game Factory   0.10
## 1291       Puzzle                 Playlogic Game Factory   0.10
## 1292      Shooter                 Playlogic Game Factory   0.20
## 1293       Sports                 Playlogic Game Factory   0.05
## 1294     Strategy                 Playlogic Game Factory   0.07
## 1295       Racing                              Playmates   0.28
## 1296     Fighting                               Playmore   0.04
## 1297       Action                                  PlayV   0.16
## 1298         Misc                                  PlayV   0.02
## 1299       Puzzle                                  PlayV   0.26
## 1300         Misc                                 Plenty   0.02
## 1301         Misc                             PM Studios   0.10
## 1302         Misc                            Pony Canyon   0.05
## 1303    Adventure                           PopCap Games   0.24
## 1304         Misc                           PopCap Games   0.05
## 1305       Puzzle                           PopCap Games   0.78
## 1306     Strategy                           PopCap Games   0.50
## 1307       Action                         Popcorn Arcade   0.08
## 1308     Platform                         Popcorn Arcade   0.07
## 1309       Puzzle                         Popcorn Arcade   0.21
## 1310       Racing                         Popcorn Arcade   0.09
## 1311      Shooter                         Popcorn Arcade   0.04
## 1312     Strategy                        PopTop Software   0.11
## 1313       Puzzle                                    Pow   0.05
## 1314       Action                                  PQube   0.63
## 1315    Adventure                                  PQube   0.50
## 1316     Fighting                                  PQube   2.80
## 1317         Misc                                  PQube   0.04
## 1318       Racing                                  PQube   0.10
## 1319      Shooter                                  PQube   0.09
## 1320   Simulation                                  PQube   0.05
## 1321       Sports                                  PQube   0.06
## 1322    Adventure                          Princess Soft   0.07
## 1323       Action                              Prototype   0.03
## 1324    Adventure                              Prototype   0.58
## 1325       Action                              Psygnosis   1.26
## 1326    Adventure                              Psygnosis   0.42
## 1327         Misc                              Psygnosis   0.03
## 1328     Platform                              Psygnosis   0.03
## 1329       Puzzle                              Psygnosis   0.06
## 1330       Racing                              Psygnosis   4.13
## 1331 Role-Playing                              Psygnosis   0.23
## 1332      Shooter                              Psygnosis   0.20
## 1333   Simulation                              Psygnosis   0.85
## 1334       Sports                              Psygnosis   0.06
## 1335         Misc                                 Quelle   0.87
## 1336 Role-Playing                                  Quest   0.71
## 1337       Action                               Quinrose   0.05
## 1338    Adventure                               Quinrose   0.17
## 1339    Adventure                                Quintet   0.02
## 1340     Fighting                          Rage Software   1.10
## 1341       Puzzle                          Rage Software   0.04
## 1342       Racing                          Rage Software   0.17
## 1343      Shooter                          Rage Software   0.11
## 1344     Platform                             Rain Games   0.01
## 1345       Racing                              Rebellion   0.49
## 1346      Shooter                 Rebellion Developments   0.30
## 1347    Adventure                      RED Entertainment   0.02
## 1348    Adventure                                Red Orb   5.24
## 1349       Action                Red Storm Entertainment   0.04
## 1350      Shooter                Red Storm Entertainment   2.28
## 1351         Misc                              RedOctane   8.68
## 1352    Adventure                     Reef Entertainment   0.10
## 1353      Shooter                     Reef Entertainment   0.20
## 1354       Sports                     Reef Entertainment   0.04
## 1355       Sports                           responDESIGN   0.13
## 1356    Adventure                     Revolution (Japan)   0.02
## 1357    Adventure                    Revolution Software   0.07
## 1358       Action                      Rising Star Games   1.64
## 1359    Adventure                      Rising Star Games   0.21
## 1360     Fighting                      Rising Star Games   0.72
## 1361         Misc                      Rising Star Games   2.16
## 1362     Platform                      Rising Star Games   0.08
## 1363       Puzzle                      Rising Star Games   1.00
## 1364 Role-Playing                      Rising Star Games   5.80
## 1365      Shooter                      Rising Star Games   0.37
## 1366   Simulation                      Rising Star Games   4.58
## 1367       Sports                      Rising Star Games   0.23
## 1368     Strategy                      Rising Star Games   0.52
## 1369   Simulation                          Riverhillsoft   0.04
## 1370       Action                         Rocket Company   0.17
## 1371    Adventure                         Rocket Company   0.03
## 1372         Misc                         Rocket Company   1.15
## 1373 Role-Playing                         Rocket Company   0.36
## 1374   Simulation                         Rocket Company   0.04
## 1375       Sports                         Rocket Company   0.07
## 1376       Action                             Rondomedia   0.65
## 1377    Adventure                             Rondomedia   0.14
## 1378         Misc                             Rondomedia   0.04
## 1379       Puzzle                             Rondomedia   1.09
## 1380       Racing                             Rondomedia   0.13
## 1381   Simulation                             Rondomedia   0.53
## 1382       Racing                                    RTL   0.03
## 1383   Simulation                                    RTL   0.08
## 1384       Sports                                    RTL   1.89
## 1385       Action                                 Russel   0.05
## 1386    Adventure                                 Russel   0.04
## 1387       Sports                                 Russel   1.12
## 1388    Adventure                      Sammy Corporation   0.07
## 1389     Fighting                      Sammy Corporation   0.61
## 1390         Misc                      Sammy Corporation   1.67
## 1391   Simulation                      Sammy Corporation   0.38
## 1392       Action                                 Saurus   0.02
## 1393       Action                        Scholastic Inc.   0.37
## 1394    Adventure                        Scholastic Inc.   1.29
## 1395         Misc                        Scholastic Inc.   0.07
## 1396       Puzzle                        Scholastic Inc.   1.18
## 1397       Action                                    SCi   0.46
## 1398     Platform                                    SCi   0.12
## 1399       Racing                                    SCi   0.05
## 1400      Shooter                                    SCi   2.89
## 1401       Action                             Screenlife   0.54
## 1402     Fighting                             Screenlife   0.07
## 1403 Role-Playing                             Screenlife   0.31
## 1404       Action                           SCS Software   0.13
## 1405       Puzzle                                  Sears   0.21
## 1406       Action                                   Sega  32.15
## 1407    Adventure                                   Sega   7.41
## 1408     Fighting                                   Sega  14.68
## 1409         Misc                                   Sega  20.21
## 1410     Platform                                   Sega  60.84
## 1411       Puzzle                                   Sega   2.53
## 1412       Racing                                   Sega  21.83
## 1413 Role-Playing                                   Sega  14.71
## 1414      Shooter                                   Sega  16.59
## 1415   Simulation                                   Sega   3.46
## 1416       Sports                                   Sega  71.71
## 1417     Strategy                                   Sega   6.87
## 1418         Misc                       Seta Corporation   0.39
## 1419 Role-Playing                       Seta Corporation   0.21
## 1420       Sports                       Seta Corporation   0.03
## 1421       Action                          Seventh Chord   0.08
## 1422    Adventure                             Shogakukan   0.11
## 1423         Misc                             Shogakukan   0.33
## 1424       Sports           Simon & Schuster Interactive   0.11
## 1425       Racing                   Slightly Mad Studios   1.38
## 1426     Strategy                    Slitherine Software   0.21
## 1427     Fighting                                    SNK   2.59
## 1428    Adventure                           SNK Playmore   0.10
## 1429     Fighting                           SNK Playmore   0.70
## 1430 Role-Playing                           SNK Playmore   0.01
## 1431      Shooter                           SNK Playmore   0.15
## 1432    Adventure                                Societa   0.04
## 1433       Action                               Sold Out   0.02
## 1434         Misc                                 Sonnet   0.06
## 1435       Action            Sony Computer Entertainment  94.52
## 1436    Adventure            Sony Computer Entertainment  13.55
## 1437     Fighting            Sony Computer Entertainment  28.15
## 1438         Misc            Sony Computer Entertainment  80.80
## 1439     Platform            Sony Computer Entertainment 104.06
## 1440       Puzzle            Sony Computer Entertainment   3.71
## 1441       Racing            Sony Computer Entertainment 110.57
## 1442 Role-Playing            Sony Computer Entertainment  44.00
## 1443      Shooter            Sony Computer Entertainment  57.52
## 1444   Simulation            Sony Computer Entertainment   8.67
## 1445       Sports            Sony Computer Entertainment  59.61
## 1446     Strategy            Sony Computer Entertainment   2.34
## 1447       Sports    Sony Computer Entertainment America   1.18
## 1448       Action     Sony Computer Entertainment Europe   5.99
## 1449    Adventure     Sony Computer Entertainment Europe   2.64
## 1450         Misc     Sony Computer Entertainment Europe   6.60
## 1451     Platform     Sony Computer Entertainment Europe   2.78
## 1452      Shooter     Sony Computer Entertainment Europe   1.00
## 1453   Simulation     Sony Computer Entertainment Europe   4.88
## 1454         Misc               Sony Music Entertainment   0.14
## 1455 Role-Playing              Sony Online Entertainment   3.37
## 1456     Strategy              Sony Online Entertainment   0.16
## 1457       Action                        SouthPeak Games   0.91
## 1458    Adventure                        SouthPeak Games   0.20
## 1459     Fighting                        SouthPeak Games   0.21
## 1460         Misc                        SouthPeak Games   0.17
## 1461       Puzzle                        SouthPeak Games   0.13
## 1462       Racing                        SouthPeak Games   1.79
## 1463 Role-Playing                        SouthPeak Games   1.28
## 1464      Shooter                        SouthPeak Games   0.90
## 1465   Simulation                        SouthPeak Games   0.46
## 1466       Sports                        SouthPeak Games   0.16
## 1467     Strategy                        SouthPeak Games   0.14
## 1468       Action                                  Spike   0.97
## 1469    Adventure                                  Spike   0.10
## 1470     Fighting                                  Spike   0.25
## 1471         Misc                                  Spike   0.57
## 1472 Role-Playing                                  Spike   0.58
## 1473   Simulation                                  Spike   0.08
## 1474       Sports                                  Spike   3.60
## 1475       Sports                                    SPS   0.12
## 1476       Racing                                 Square   0.16
## 1477 Role-Playing                                 Square   3.48
## 1478 Role-Playing                              Square EA   0.80
## 1479       Action                            Square Enix  29.16
## 1480    Adventure                            Square Enix   2.96
## 1481     Fighting                            Square Enix   3.20
## 1482         Misc                            Square Enix   1.56
## 1483       Puzzle                            Square Enix   0.60
## 1484 Role-Playing                            Square Enix  97.09
## 1485      Shooter                            Square Enix   7.37
## 1486   Simulation                            Square Enix   1.37
## 1487     Strategy                            Square Enix   1.87
## 1488     Fighting                             SquareSoft   1.55
## 1489       Racing                             SquareSoft   0.44
## 1490 Role-Playing                             SquareSoft  52.59
## 1491      Shooter                             SquareSoft   0.31
## 1492   Simulation                             SquareSoft   0.31
## 1493       Sports                             SquareSoft   0.66
## 1494     Strategy                             SquareSoft   1.79
## 1495     Strategy                                    SSI   0.19
## 1496       Action                        Stainless Games   0.01
## 1497       Action                               Starfish   0.06
## 1498 Role-Playing                               Starfish   0.10
## 1499      Shooter                               Starfish   0.04
## 1500       Sports                               Starfish   0.52
## 1501       Action                         Starpath Corp.   0.33
## 1502 Role-Playing                                  Sting   0.65
## 1503       Action                       Storm City Games   0.01
## 1504    Adventure                       Storm City Games   0.03
## 1505         Misc                       Storm City Games   0.04
## 1506     Platform                       Storm City Games   0.02
## 1507       Puzzle                       Storm City Games   1.12
## 1508       Racing                       Storm City Games   0.27
## 1509       Sports                       Storm City Games   0.05
## 1510     Strategy                       Storm City Games   0.02
## 1511     Strategy                         Strategy First   0.03
## 1512       Action                                Success   0.08
## 1513    Adventure                                Success   0.13
## 1514         Misc                                Success   0.06
## 1515       Puzzle                                Success   0.01
## 1516 Role-Playing                                Success   0.41
## 1517      Shooter                                Success   1.15
## 1518   Simulation                                Success   0.01
## 1519     Strategy                                Success   0.11
## 1520       Sports                             Summitsoft   0.04
## 1521     Strategy                             Sunflowers   0.03
## 1522       Action                    Sunrise Interactive   0.07
## 1523     Fighting                    Sunrise Interactive   0.02
## 1524       Racing                    Sunrise Interactive   0.02
## 1525 Role-Playing                    Sunrise Interactive   0.06
## 1526    Adventure                                Sunsoft   0.20
## 1527     Fighting                                Sunsoft   0.06
## 1528         Misc                                Sunsoft   0.03
## 1529     Platform                                Sunsoft   0.11
## 1530       Puzzle                                Sunsoft   0.09
## 1531 Role-Playing                                Sunsoft   0.21
## 1532      Shooter                                Sunsoft   0.25
## 1533    Adventure                                 Sweets   0.05
## 1534       Action                   Swing! Entertainment   0.05
## 1535    Adventure                   Swing! Entertainment   0.14
## 1536     Platform                   Swing! Entertainment   0.03
## 1537      Shooter                   Swing! Entertainment   0.15
## 1538   Simulation                   Swing! Entertainment   0.11
## 1539         Misc                                 Syscom   0.16
## 1540       Racing                                 Syscom   0.11
## 1541     Platform                               System 3   0.22
## 1542         Misc               System 3 Arcade Software   0.73
## 1543     Platform               System 3 Arcade Software   0.19
## 1544       Puzzle               System 3 Arcade Software   0.02
## 1545       Racing               System 3 Arcade Software   0.82
## 1546       Sports               System 3 Arcade Software   0.04
## 1547    Adventure                            System Soft   0.02
## 1548     Strategy                            System Soft   0.03
## 1549       Sports                               T&E Soft   0.12
## 1550       Action                                  Taito   0.24
## 1551    Adventure                                  Taito   0.02
## 1552     Fighting                                  Taito   0.01
## 1553         Misc                                  Taito   0.12
## 1554 Role-Playing                                  Taito   0.12
## 1555      Shooter                                  Taito   0.61
## 1556   Simulation                                  Taito   1.72
## 1557       Action                                 Takara   0.12
## 1558     Fighting                                 Takara   1.80
## 1559         Misc                                 Takara   0.89
## 1560       Racing                                 Takara   0.62
## 1561 Role-Playing                                 Takara   0.02
## 1562       Action                            Takara Tomy   0.56
## 1563     Fighting                            Takara Tomy   1.05
## 1564         Misc                            Takara Tomy   0.35
## 1565       Racing                            Takara Tomy   0.09
## 1566 Role-Playing                            Takara Tomy   0.39
## 1567       Sports                            Takara Tomy   0.17
## 1568     Strategy                            Takara Tomy   0.09
## 1569       Action                   Take-Two Interactive 211.08
## 1570    Adventure                   Take-Two Interactive   7.56
## 1571     Fighting                   Take-Two Interactive   0.06
## 1572         Misc                   Take-Two Interactive  10.58
## 1573     Platform                   Take-Two Interactive   3.34
## 1574       Puzzle                   Take-Two Interactive   0.07
## 1575       Racing                   Take-Two Interactive  21.25
## 1576 Role-Playing                   Take-Two Interactive   6.07
## 1577      Shooter                   Take-Two Interactive  54.47
## 1578   Simulation                   Take-Two Interactive   0.89
## 1579       Sports                   Take-Two Interactive  76.77
## 1580     Strategy                   Take-Two Interactive   7.40
## 1581    Adventure                                 Takuyo   0.01
## 1582      Shooter                              TalonSoft   0.87
## 1583       Action                               TDK Core   0.37
## 1584         Misc                               TDK Core   0.22
## 1585   Simulation                               TDK Core   0.03
## 1586       Action                         TDK Mediactive   1.13
## 1587    Adventure                         TDK Mediactive   0.13
## 1588         Misc                         TDK Mediactive   0.55
## 1589     Platform                         TDK Mediactive   2.51
## 1590       Racing                         TDK Mediactive   2.32
## 1591      Shooter                         TDK Mediactive   1.04
## 1592       Sports                         TDK Mediactive   0.63
## 1593     Strategy                        Team17 Software   0.05
## 1594       Sports              Technos Japan Corporation   0.02
## 1595      Shooter                             TechnoSoft   0.05
## 1596       Action                             Tecmo Koei  29.04
## 1597    Adventure                             Tecmo Koei   1.01
## 1598     Fighting                             Tecmo Koei   3.80
## 1599         Misc                             Tecmo Koei   0.35
## 1600     Platform                             Tecmo Koei   0.09
## 1601       Racing                             Tecmo Koei   0.44
## 1602 Role-Playing                             Tecmo Koei   6.81
## 1603      Shooter                             Tecmo Koei   0.29
## 1604   Simulation                             Tecmo Koei   2.10
## 1605       Sports                             Tecmo Koei   3.99
## 1606     Strategy                             Tecmo Koei   5.63
## 1607         Misc                              Telegames   0.79
## 1608       Puzzle                              Telegames   0.14
## 1609   Simulation                              Telegames   0.02
## 1610     Strategy                              Telegames   0.08
## 1611       Action                         Telltale Games   0.16
## 1612    Adventure                         Telltale Games   2.56
## 1613       Action                                Telstar   0.13
## 1614       Racing                                Telstar   0.08
## 1615      Shooter                                Telstar   0.06
## 1616       Puzzle                          Tetris Online   0.43
## 1617    Adventure                                    TGL   0.10
## 1618    Adventure                  The Adventure Company   0.28
## 1619       Puzzle                  The Adventure Company   0.23
## 1620       Racing                   The Learning Company   0.05
## 1621       Action                                    THQ  89.23
## 1622    Adventure                                    THQ  19.98
## 1623     Fighting                                    THQ  72.86
## 1624         Misc                                    THQ  23.68
## 1625     Platform                                    THQ  41.02
## 1626       Puzzle                                    THQ   9.25
## 1627       Racing                                    THQ  40.17
## 1628 Role-Playing                                    THQ   1.13
## 1629      Shooter                                    THQ  14.90
## 1630   Simulation                                    THQ   7.84
## 1631       Sports                                    THQ  13.22
## 1632     Strategy                                    THQ   7.49
## 1633       Action                            Tigervision   1.42
## 1634     Fighting                Time Warner Interactive   0.11
## 1635      Shooter                Time Warner Interactive   0.04
## 1636       Sports                Time Warner Interactive   0.11
## 1637     Strategy                Time Warner Interactive   0.09
## 1638       Action                                  Titus   0.57
## 1639     Fighting                                  Titus   0.68
## 1640         Misc                                  Titus   0.06
## 1641     Platform                                  Titus   0.01
## 1642       Racing                                  Titus   0.75
## 1643 Role-Playing                                  Titus   0.05
## 1644      Shooter                                  Titus   0.11
## 1645   Simulation                                  Titus   1.07
## 1646     Strategy                                  Titus   0.02
## 1647         Misc                                 Tivola   0.17
## 1648 Role-Playing                                   TOHO   0.11
## 1649         Misc                                  Tommo   0.11
## 1650      Shooter                                  Tommo   0.06
## 1651       Sports                                  Tommo   0.04
## 1652       Action                       Tomy Corporation   0.37
## 1653     Fighting                       Tomy Corporation   4.13
## 1654         Misc                       Tomy Corporation   0.03
## 1655       Racing                       Tomy Corporation   0.07
## 1656 Role-Playing                       Tomy Corporation   0.24
## 1657   Simulation                       Tomy Corporation   0.13
## 1658         Misc                    TopWare Interactive   0.11
## 1659 Role-Playing                    TopWare Interactive   0.01
## 1660       Action                             Touchstone   1.44
## 1661   Simulation                             Touchstone   0.14
## 1662       Sports                              Tradewest   0.11
## 1663      Shooter                           Trion Worlds   1.14
## 1664     Strategy                           Trion Worlds   0.01
## 1665      Shooter                   Tripwire Interactive   0.14
## 1666       Action                  Tru Blu Entertainment   0.09
## 1667       Sports                  Tru Blu Entertainment   0.19
## 1668     Fighting                               Tryfirst   0.03
## 1669       Racing                                    TYO   0.42
## 1670    Adventure                              Type-Moon   0.10
## 1671     Platform                              U.S. Gold   0.05
## 1672       Sports                              U.S. Gold   0.28
## 1673       Action                                Ubisoft 142.94
## 1674    Adventure                                Ubisoft  22.19
## 1675     Fighting                                Ubisoft   7.07
## 1676         Misc                                Ubisoft  97.53
## 1677     Platform                                Ubisoft  21.06
## 1678       Puzzle                                Ubisoft   6.33
## 1679       Racing                                Ubisoft  15.83
## 1680 Role-Playing                                Ubisoft  16.76
## 1681      Shooter                                Ubisoft  67.65
## 1682   Simulation                                Ubisoft  44.67
## 1683       Sports                                Ubisoft  24.24
## 1684     Strategy                                Ubisoft   8.45
## 1685       Action                         Ubisoft Annecy   3.38
## 1686     Fighting                         Ubisoft Annecy   0.77
## 1687         Misc                         Ubisoft Annecy   0.17
## 1688 Role-Playing                         Ubisoft Annecy   0.14
## 1689       Sports                            UEP Systems   2.25
## 1690       Action                        UFO Interactive   0.02
## 1691         Misc                        UFO Interactive   0.64
## 1692       Puzzle                        UFO Interactive   0.23
## 1693      Shooter                        UFO Interactive   0.02
## 1694       Sports                        UFO Interactive   0.05
## 1695   Simulation                      UIG Entertainment   0.01
## 1696     Fighting                            Ultravision   0.47
## 1697       Action                        Universal Gamex   0.63
## 1698       Action                  Universal Interactive   3.68
## 1699     Fighting                  Universal Interactive   0.31
## 1700         Misc                  Universal Interactive   0.56
## 1701     Platform                  Universal Interactive  11.95
## 1702      Shooter                  Universal Interactive   0.78
## 1703       Sports                  Universal Interactive   0.49
## 1704       Action                                Unknown   4.32
## 1705    Adventure                                Unknown   1.15
## 1706     Fighting                                Unknown   0.29
## 1707         Misc                                Unknown   6.53
## 1708     Platform                                Unknown   0.55
## 1709       Puzzle                                Unknown   2.09
## 1710       Racing                                Unknown   4.51
## 1711 Role-Playing                                Unknown   5.28
## 1712      Shooter                                Unknown   1.68
## 1713   Simulation                                Unknown   1.50
## 1714       Sports                                Unknown   6.57
## 1715     Strategy                                Unknown   0.19
## 1716    Adventure                           Valcon Games   0.01
## 1717       Racing                           Valcon Games   0.18
## 1718      Shooter                           Valcon Games   0.09
## 1719   Simulation                           Valcon Games   0.03
## 1720       Sports                           Valcon Games   0.14
## 1721    Adventure                               ValuSoft   0.01
## 1722       Puzzle                               ValuSoft   0.14
## 1723       Racing                               ValuSoft   0.24
## 1724      Shooter                                  Valve   1.74
## 1725      Shooter                         Valve Software   3.23
## 1726         Misc                                    Vap   0.05
## 1727       Racing                  Vatical Entertainment   0.22
## 1728     Fighting                              Vic Tokai   0.27
## 1729    Adventure                     Victor Interactive   0.02
## 1730         Misc                     Victor Interactive   0.02
## 1731 Role-Playing                     Victor Interactive   0.02
## 1732   Simulation                     Victor Interactive   0.31
## 1733       Sports                     Victor Interactive   0.52
## 1734       Action                           Video System   0.19
## 1735       Racing                           Video System   1.99
## 1736       Action                                  Views   0.02
## 1737    Adventure                                  Views   0.01
## 1738       Action                          Vir2L Studios   0.16
## 1739       Racing                          Vir2L Studios   0.03
## 1740       Sports                          Vir2L Studios   0.07
## 1741       Action                     Virgin Interactive  20.35
## 1742    Adventure                     Virgin Interactive   0.78
## 1743     Fighting                     Virgin Interactive   7.98
## 1744         Misc                     Virgin Interactive   0.04
## 1745     Platform                     Virgin Interactive   3.48
## 1746       Puzzle                     Virgin Interactive   0.26
## 1747       Racing                     Virgin Interactive   0.02
## 1748 Role-Playing                     Virgin Interactive   1.58
## 1749      Shooter                     Virgin Interactive   4.27
## 1750   Simulation                     Virgin Interactive   0.27
## 1751       Sports                     Virgin Interactive   0.17
## 1752     Strategy                     Virgin Interactive   4.67
## 1753         Misc                     Virtual Play Games   0.04
## 1754       Sports                     Virtual Play Games   0.02
## 1755      Shooter                                  Visco   0.02
## 1756       Action                          Vivendi Games  12.60
## 1757    Adventure                          Vivendi Games   1.54
## 1758     Fighting                          Vivendi Games   0.50
## 1759         Misc                          Vivendi Games   1.55
## 1760     Platform                          Vivendi Games  17.07
## 1761       Puzzle                          Vivendi Games   0.16
## 1762       Racing                          Vivendi Games  11.28
## 1763 Role-Playing                          Vivendi Games   1.06
## 1764      Shooter                          Vivendi Games  11.69
## 1765   Simulation                          Vivendi Games   0.03
## 1766       Sports                          Vivendi Games   0.11
## 1767     Strategy                          Vivendi Games   0.62
## 1768       Action                                Wanadoo   0.60
## 1769     Platform                                Wanadoo   0.03
## 1770       Racing                                Wanadoo   0.02
## 1771      Shooter                                Warashi   0.02
## 1772      Shooter                          Wargaming.net   0.29
## 1773       Action Warner Bros. Interactive Entertainment 118.24
## 1774    Adventure Warner Bros. Interactive Entertainment   0.59
## 1775     Fighting Warner Bros. Interactive Entertainment  13.69
## 1776         Misc Warner Bros. Interactive Entertainment   5.64
## 1777     Platform Warner Bros. Interactive Entertainment   1.53
## 1778       Puzzle Warner Bros. Interactive Entertainment   6.65
## 1779       Racing Warner Bros. Interactive Entertainment   0.98
## 1780      Shooter Warner Bros. Interactive Entertainment   3.71
## 1781     Strategy Warner Bros. Interactive Entertainment   2.86
## 1782    Adventure                                   Warp   0.07
## 1783    Adventure                WayForward Technologies   0.05
## 1784     Strategy                       Westwood Studios   1.55
## 1785       Puzzle                White Park Bay Software   0.16
## 1786       Action                     Wizard Video Games   0.62
## 1787       Racing                      Xicat Interactive   0.03
## 1788 Role-Playing                      Xicat Interactive   0.03
## 1789       Sports                      Xicat Interactive   0.11
## 1790     Fighting                     Xing Entertainment   0.24
## 1791         Misc                                Xplosiv   0.23
## 1792       Puzzle                                Xplosiv   0.34
## 1793       Racing                                Xplosiv   1.07
## 1794         Misc                               XS Games   0.08
## 1795       Racing                               XS Games   0.41
## 1796       Sports                               XS Games   0.97
## 1797       Action                            Xseed Games   0.11
## 1798 Role-Playing                            Xseed Games   0.74
## 1799      Shooter                            Xseed Games   0.05
## 1800     Platform                       Yacht Club Games   0.32
## 1801         Misc                   Yamasa Entertainment   0.04
## 1802       Action                                   Yeti   0.01
## 1803    Adventure                                   Yeti   0.21
## 1804     Fighting                                   Yeti   0.02
## 1805     Fighting                                 Yuke's   0.05
## 1806       Racing                                 Yuke's   0.03
## 1807    Adventure                                Yumedia   0.06
## 1808         Misc                                 Zenrin   0.06
## 1809       Action                 Zoo Digital Publishing   0.78
## 1810    Adventure                 Zoo Digital Publishing   0.39
## 1811     Fighting                 Zoo Digital Publishing   0.28
## 1812         Misc                 Zoo Digital Publishing   2.55
## 1813     Platform                 Zoo Digital Publishing   0.35
## 1814       Puzzle                 Zoo Digital Publishing   1.33
## 1815       Racing                 Zoo Digital Publishing   3.22
## 1816      Shooter                 Zoo Digital Publishing   0.60
## 1817   Simulation                 Zoo Digital Publishing   0.11
## 1818       Sports                 Zoo Digital Publishing   3.17
## 1819     Strategy                 Zoo Digital Publishing   0.09
## 1820       Action                              Zoo Games   0.27
## 1821    Adventure                              Zoo Games   0.02
## 1822         Misc                              Zoo Games   2.63
## 1823       Puzzle                              Zoo Games   0.22
## 1824       Racing                              Zoo Games   0.65
## 1825      Shooter                              Zoo Games   0.48
## 1826   Simulation                              Zoo Games   0.07
## 1827       Sports                              Zoo Games   0.48
## 1828       Action                            Zushi Games   0.02
## 1829    Adventure                            Zushi Games   0.05
## 1830         Misc                            Zushi Games   0.09
## 1831       Puzzle                            Zushi Games   0.07
## 1832       Racing                            Zushi Games   0.17
## 1833 Role-Playing                            Zushi Games   0.13
## 1834      Shooter                            Zushi Games   0.37
## 1835   Simulation                            Zushi Games   0.05
## 1836       Sports                            Zushi Games   0.87
## 1837     Strategy                            Zushi Games   0.07
aggregate(Global_Sales,by=list(Platform = Platform,Year = Year),mean)
##     Platform Year          x
## 1       2600 1980 1.26444444
## 2       2600 1981 0.77760870
## 3       2600 1982 0.80166667
## 4       2600 1983 0.53000000
## 5        NES 1983 1.82666667
## 6       2600 1984 0.27000000
## 7        NES 1984 3.85307692
## 8       2600 1985 0.45000000
## 9         DS 1985 0.02000000
## 10       NES 1985 4.85818182
## 11        PC 1985 0.03000000
## 12      2600 1986 0.33000000
## 13       NES 1986 1.91631579
## 14      2600 1987 0.33000000
## 15       NES 1987 1.97600000
## 16      2600 1988 0.37500000
## 17        GB 1988 1.43000000
## 18       NES 1988 4.09181818
## 19        PC 1988 0.03000000
## 20      2600 1989 0.31000000
## 21        GB 1989 6.49800000
## 22       NES 1989 1.57000000
## 23        GB 1990 1.63000000
## 24       GEN 1990 2.60000000
## 25       NES 1990 1.96750000
## 26      SNES 1990 6.54000000
## 27        GB 1991 0.61888889
## 28       GEN 1991 4.34000000
## 29       NES 1991 0.87285714
## 30      SNES 1991 0.67541667
## 31        GB 1992 3.64000000
## 32       GEN 1992 2.11000000
## 33        GG 1992 0.04000000
## 34       NES 1992 0.66000000
## 35        PC 1992 0.60400000
## 36      SNES 1992 1.57047619
## 37       GEN 1993 0.09285714
## 38       NES 1993 0.90250000
## 39        NG 1993 0.10500000
## 40       SCD 1993 1.50000000
## 41      SNES 1993 0.86978261
## 42       3DO 1994 0.02000000
## 43        GB 1994 4.05666667
## 44       GEN 1994 0.67583333
## 45       NES 1994 0.11000000
## 46        NG 1994 0.20000000
## 47        PC 1994 2.14166667
## 48        PS 1994 0.35411765
## 49       SAT 1994 0.19157895
## 50       SCD 1994 0.07400000
## 51      SNES 1994 0.66188679
## 52       3DO 1995 0.04000000
## 53        GB 1995 0.90000000
## 54        NG 1995 0.08250000
## 55        PC 1995 2.11500000
## 56        PS 1995 0.36282828
## 57       SAT 1995 0.22269231
## 58      SNES 1995 0.59648148
## 59      TG16 1995 0.08000000
## 60        GB 1996 6.00333333
## 61       N64 1996 1.89500000
## 62        NG 1996 0.05000000
## 63        PC 1996 2.64750000
## 64      PCFX 1996 0.03000000
## 65        PS 1996 0.57731707
## 66       SAT 1996 0.20236842
## 67      SNES 1996 0.53100000
## 68        GB 1997 0.79625000
## 69       N64 1997 0.80632653
## 70        PC 1997 1.87666667
## 71        PS 1997 0.72382979
## 72       SAT 1997 0.19911765
## 73      SNES 1997 0.24750000
## 74        DC 1998 0.48428571
## 75        GB 1998 3.36250000
## 76       N64 1998 0.64000000
## 77        PC 1998 0.41000000
## 78        PS 1998 0.68379032
## 79       SAT 1998 0.13172414
## 80      SNES 1998 0.11000000
## 81        DC 1999 0.36928571
## 82        GB 1999 3.45545455
## 83       N64 1999 0.56823529
## 84        PC 1999 0.67857143
## 85        PS 1999 0.72285000
## 86       SAT 1999 0.09000000
## 87      SNES 1999 0.26000000
## 88        WS 1999 0.23000000
## 89        DC 2000 0.29950000
## 90        GB 2000 1.16235294
## 91       GBA 2000 0.06000000
## 92       N64 2000 0.56683333
## 93        PC 2000 0.66857143
## 94        PS 2000 0.60553459
## 95       PS2 2000 0.47695122
## 96        WS 2000 0.34000000
## 97        XB 2000 0.99000000
## 98        DC 2001 0.13375000
## 99        GB 2001 0.92400000
## 100      GBA 2001 0.57588785
## 101       GC 2001 1.19545455
## 102      N64 2001 0.36222222
## 103       PC 2001 0.36733333
## 104       PS 2001 0.39032967
## 105      PS2 2001 0.89962162
## 106       WS 2001 0.14000000
## 107       XB 2001 0.67393939
## 108       DC 2002 0.29000000
## 109      GBA 2002 0.37565657
## 110       GC 2002 0.34164474
## 111      N64 2002 0.08000000
## 112       PC 2002 0.45263158
## 113       PS 2002 0.33450000
## 114      PS2 2002 0.73357143
## 115       XB 2002 0.30474684
## 116      GBA 2003 0.37820000
## 117       GC 2003 0.35180556
## 118       PC 2003 0.27151515
## 119       PS 2003 0.68333333
## 120      PS2 2003 0.71988281
## 121       XB 2003 0.29185185
## 122       DS 2004 0.75913043
## 123      GBA 2004 0.44622857
## 124       GC 2004 0.34807229
## 125       PC 2004 0.33741935
## 126      PS2 2004 0.81768340
## 127      PSP 2004 0.47533333
## 128       XB 2004 0.37005650
## 129       DS 2005 1.11355932
## 130      GBA 2005 0.25111111
## 131       GC 2005 0.28659794
## 132       PC 2005 0.12081081
## 133      PS2 2005 0.61788462
## 134      PSP 2005 0.45597938
## 135     X360 2005 0.46222222
## 136       XB 2005 0.27469274
## 137       DS 2006 0.59975248
## 138      GBA 2006 0.13717949
## 139       GC 2006 0.28225000
## 140       PC 2006 0.05711538
## 141      PS2 2006 0.39930502
## 142      PS3 2006 0.78037037
## 143      PSP 2006 0.29394737
## 144      Wii 2006 3.13431818
## 145     X360 2006 0.55784946
## 146       XB 2006 0.16370968
## 147       DC 2007 0.02000000
## 148       DS 2007 0.39618037
## 149      GBA 2007 0.57166667
## 150       GC 2007 0.06750000
## 151       PC 2007 0.14920635
## 152      PS2 2007 0.35514019
## 153      PS3 2007 0.82011111
## 154      PSP 2007 0.35432836
## 155      Wii 2007 0.82871658
## 156     X360 2007 0.77918699
## 157       XB 2007 0.18333333
## 158       DC 2008 0.04000000
## 159       DS 2008 0.30058943
## 160       PC 2008 0.16671053
## 161      PS2 2008 0.28183246
## 162      PS3 2008 0.86107914
## 163      PSP 2008 0.34680000
## 164      Wii 2008 0.61758865
## 165     X360 2008 0.92986301
## 166       XB 2008 0.18000000
## 167       DS 2009 0.30120988
## 168       PC 2009 0.15743119
## 169      PS2 2009 0.27552083
## 170      PS3 2009 0.81691358
## 171      PSP 2009 0.23645963
## 172      Wii 2009 0.64750769
## 173     X360 2009 0.69855491
## 174       DS 2010 0.26987730
## 175       PC 2010 0.27177778
## 176      PS2 2010 0.14815789
## 177      PS3 2010 0.79790055
## 178      PSP 2010 0.18675532
## 179      Wii 2010 0.51889764
## 180     X360 2010 0.93983516
## 181      3DS 2011 0.53905172
## 182       DS 2011 0.18169935
## 183       PC 2011 0.25178571
## 184      PS2 2011 0.06714286
## 185      PS3 2011 0.73782407
## 186      PSP 2011 0.12870504
## 187      PSV 2011 0.28611111
## 188      Wii 2011 0.43340278
## 189     X360 2011 0.70446602
## 190      3DS 2012 0.54989247
## 191       DS 2012 0.46560000
## 192       PC 2012 0.38573770
## 193      PS3 2012 0.73979730
## 194      PSP 2012 0.07283019
## 195      PSV 2012 0.34314815
## 196      Wii 2012 0.71156250
## 197     WiiU 2012 0.55750000
## 198     X360 2012 0.95169811
## 199      3DS 2013 0.61406593
## 200       DS 2013 0.21777778
## 201       PC 2013 0.33763158
## 202      PS3 2013 0.92433071
## 203      PS4 2013 1.54750000
## 204      PSP 2013 0.05907407
## 205      PSV 2013 0.20142857
## 206      Wii 2013 0.78000000
## 207     WiiU 2013 0.52000000
## 208     X360 2013 1.19480000
## 209     XOne 2013 0.97894737
## 210      3DS 2014 0.54607595
## 211       DS 2014 0.02000000
## 212       PC 2014 0.30431818
## 213      PS3 2014 0.47185185
## 214      PS4 2014 1.31680000
## 215      PSP 2014 0.02400000
## 216      PSV 2014 0.14450980
## 217      Wii 2014 0.74000000
## 218     WiiU 2014 0.72612903
## 219     X360 2014 0.56030769
## 220     XOne 2014 0.85950820
## 221      3DS 2015 0.31383721
## 222       PC 2015 0.16140000
## 223      PS3 2015 0.24621622
## 224      PS4 2015 0.84160584
## 225      PSP 2015 0.04000000
## 226      PSV 2015 0.06283186
## 227      Wii 2015 0.38750000
## 228     WiiU 2015 0.58500000
## 229     X360 2015 0.32625000
## 230     XOne 2015 0.72987342
## 231      3DS 2016 0.18857143
## 232       PC 2016 0.06842105
## 233      PS3 2016 0.08093750
## 234      PS4 2016 0.36682243
## 235      PSV 2016 0.05666667
## 236     WiiU 2016 0.32900000
## 237     X360 2016 0.10375000
## 238     XOne 2016 0.22907407
## 239      PS4 2017 0.03000000
## 240      PSV 2017 0.01000000
## 241       DS 2020 0.29000000
## 242     2600  N/A 0.61823529
## 243      3DS  N/A 0.13111111
## 244       DS  N/A 0.11766667
## 245       GB  N/A 1.03000000
## 246      GBA  N/A 0.44909091
## 247       GC  N/A 0.15857143
## 248      N64  N/A 0.22333333
## 249       PC  N/A 0.22176471
## 250       PS  N/A 0.46714286
## 251      PS2  N/A 0.65235294
## 252      PS3  N/A 0.33960000
## 253      PSP  N/A 0.28562500
## 254      PSV  N/A 0.30000000
## 255      Wii  N/A 0.48285714
## 256     X360  N/A 0.34500000
## 257       XB  N/A 0.29380952
aggregate(Global_Sales,by=list(Platform = Platform,Genre = Genre),mean)
##     Platform        Genre          x
## 1       2600       Action 0.48098361
## 2        3DS       Action 0.31329670
## 3         DC       Action 0.42000000
## 4         DS       Action 0.33690962
## 5         GB       Action 1.32000000
## 6        GBA       Action 0.33389222
## 7         GC       Action 0.37465347
## 8        GEN       Action 0.91333333
## 9        N64       Action 0.77842105
## 10       NES       Action 2.21153846
## 11        PC       Action 0.19109091
## 12        PS       Action 0.80923567
## 13       PS2       Action 0.78379310
## 14       PS3       Action 0.81021053
## 15       PS4       Action 0.71360656
## 16       PSP       Action 0.29153153
## 17       PSV       Action 0.14091549
## 18       SAT       Action 0.21666667
## 19      SNES       Action 0.84000000
## 20       Wii       Action 0.49823529
## 21      WiiU       Action 0.30714286
## 22      X360       Action 0.74898148
## 23        XB       Action 0.31793548
## 24      XOne       Action 0.49691176
## 25      2600    Adventure 0.85000000
## 26       3DO    Adventure 0.06000000
## 27       3DS    Adventure 0.13000000
## 28        DC    Adventure 0.22727273
## 29        DS    Adventure 0.19704167
## 30        GB    Adventure 3.43200000
## 31       GBA    Adventure 0.38631579
## 32        GC    Adventure 0.29650000
## 33       GEN    Adventure 0.09500000
## 34       N64    Adventure 0.11250000
## 35       NES    Adventure 4.38000000
## 36        PC    Adventure 0.15523077
## 37        PS    Adventure 0.30391304
## 38       PS2    Adventure 0.10795918
## 39       PS3    Adventure 0.30945946
## 40       PS4    Adventure 0.24736842
## 41       PSP    Adventure 0.05018779
## 42       PSV    Adventure 0.04860465
## 43       SAT    Adventure 0.16000000
## 44      SNES    Adventure 0.37500000
## 45      TG16    Adventure 0.14000000
## 46       Wii    Adventure 0.21940476
## 47      WiiU    Adventure 0.05666667
## 48      X360    Adventure 0.32404255
## 49        XB    Adventure 0.11769231
## 50      XOne    Adventure 0.20916667
## 51      2600     Fighting 0.62000000
## 52       3DS     Fighting 0.74714286
## 53        DC     Fighting 0.15250000
## 54        DS     Fighting 0.20000000
## 55       GBA     Fighting 0.18304348
## 56        GC     Fighting 0.43880952
## 57       GEN     Fighting 1.18000000
## 58       N64     Fighting 0.76137931
## 59       NES     Fighting 1.63500000
## 60        NG     Fighting 0.12909091
## 61        PC     Fighting 0.04500000
## 62        PS     Fighting 0.67296296
## 63       PS2     Fighting 0.61733333
## 64       PS3     Fighting 0.68026316
## 65       PS4     Fighting 0.47294118
## 66       PSP     Fighting 0.29689189
## 67       PSV     Fighting 0.19687500
## 68       SAT     Fighting 0.27483871
## 69      SNES     Fighting 1.07800000
## 70       Wii     Fighting 0.56809524
## 71      WiiU     Fighting 1.27200000
## 72      X360     Fighting 0.57907692
## 73        XB     Fighting 0.28229167
## 74      XOne     Fighting 0.33000000
## 75      2600         Misc 0.71600000
## 76       3DS         Misc 0.19773585
## 77        DS         Misc 0.35053435
## 78        GB         Misc 1.66875000
## 79       GBA         Misc 0.32954545
## 80        GC         Misc 0.46472222
## 81       GEN         Misc 0.03000000
## 82       N64         Misc 0.62166667
## 83       NES         Misc 1.79500000
## 84        PC         Misc 0.35666667
## 85        PS         Misc 0.59078947
## 86       PS2         Misc 0.45558559
## 87       PS3         Misc 0.38588710
## 88       PS4         Misc 0.49333333
## 89       PSP         Misc 0.13169811
## 90       PSV         Misc 0.21583333
## 91       SAT         Misc 0.08000000
## 92       SCD         Misc 0.05000000
## 93      SNES         Misc 0.29529412
## 94       Wii         Misc 0.78950000
## 95      WiiU         Misc 0.58238095
## 96      X360         Misc 0.72984127
## 97        XB         Misc 0.20826087
## 98      XOne         Misc 0.45733333
## 99      2600     Platform 1.47444444
## 100      3DS     Platform 1.15107143
## 101       DC     Platform 1.27000000
## 102       DS     Platform 0.84184783
## 103       GB     Platform 2.89000000
## 104      GBA     Platform 0.55140845
## 105       GC     Platform 0.39260274
## 106      GEN     Platform 2.20714286
## 107       GG     Platform 0.04000000
## 108      N64     Platform 1.20433333
## 109      NES     Platform 3.42071429
## 110       PC     Platform 0.04454545
## 111       PS     Platform 1.00328125
## 112      PS2     Platform 0.70398058
## 113      PS3     Platform 0.81972973
## 114      PS4     Platform 0.63727273
## 115      PSP     Platform 0.48000000
## 116      PSV     Platform 0.30300000
## 117      SAT     Platform 0.15200000
## 118      SCD     Platform 1.50000000
## 119     SNES     Platform 2.52500000
## 120      Wii     Platform 1.56448276
## 121     WiiU     Platform 1.32750000
## 122     X360     Platform 0.47458333
## 123       XB     Platform 0.19714286
## 124     XOne     Platform 0.20250000
## 125     2600       Puzzle 1.33454545
## 126      3DO       Puzzle 0.02000000
## 127      3DS       Puzzle 0.27850000
## 128       DS       Puzzle 0.35415966
## 129       GB       Puzzle 3.16466667
## 130      GBA       Puzzle 0.31512195
## 131       GC       Puzzle 0.36153846
## 132      N64       Puzzle 0.28416667
## 133      NES       Puzzle 1.50000000
## 134       PC       Puzzle 0.03680000
## 135       PS       Puzzle 0.37750000
## 136      PS2       Puzzle 0.32777778
## 137      PS3       Puzzle 0.20000000
## 138      PS4       Puzzle 0.02000000
## 139      PSP       Puzzle 0.12545455
## 140      PSV       Puzzle 0.06666667
## 141      SAT       Puzzle 0.20000000
## 142     SNES       Puzzle 0.49076923
## 143      Wii       Puzzle 0.28490909
## 144     WiiU       Puzzle 0.33250000
## 145     X360       Puzzle 0.12142857
## 146       XB       Puzzle 0.06000000
## 147     2600       Racing 0.48500000
## 148      3DS       Racing 1.31727273
## 149       DC       Racing 0.44166667
## 150       DS       Racing 0.57671642
## 151       GB       Racing 2.27500000
## 152      GBA       Racing 0.29375000
## 153       GC       Racing 0.34746032
## 154      GEN       Racing 0.26000000
## 155      N64       Racing 0.70333333
## 156      NES       Racing 2.44500000
## 157       PC       Racing 0.06766667
## 158       PS       Racing 0.71165517
## 159      PS2       Racing 0.72351852
## 160      PS3       Racing 0.80380435
## 161      PS4       Racing 0.67823529
## 162      PSP       Racing 0.53430769
## 163      PSV       Racing 0.26818182
## 164      SAT       Racing 0.30000000
## 165      SCD       Racing 0.07000000
## 166     SNES       Racing 1.49888889
## 167      Wii       Racing 0.65191489
## 168     WiiU       Racing 2.59000000
## 169     X360       Racing 0.62847619
## 170       XB       Racing 0.25601626
## 171     XOne       Racing 0.46315789
## 172      3DS Role-Playing 0.88069767
## 173       DC Role-Playing 0.17000000
## 174       DS Role-Playing 0.63425000
## 175       GB Role-Playing 4.20190476
## 176      GBA Role-Playing 0.87958904
## 177       GC Role-Playing 0.48703704
## 178      GEN Role-Playing 0.09000000
## 179      N64 Role-Playing 0.42000000
## 180      NES Role-Playing 1.70727273
## 181       PC Role-Playing 0.45942308
## 182     PCFX Role-Playing 0.03000000
## 183       PS Role-Playing 0.80721649
## 184      PS2 Role-Playing 0.50000000
## 185      PS3 Role-Playing 0.63277311
## 186      PS4 Role-Playing 0.54829787
## 187      PSP Role-Playing 0.25546875
## 188      PSV Role-Playing 0.16132530
## 189      SAT Role-Playing 0.22117647
## 190      SCD Role-Playing 0.06000000
## 191     SNES Role-Playing 0.72860000
## 192      Wii Role-Playing 0.40171429
## 193     WiiU Role-Playing 0.41166667
## 194       WS Role-Playing 0.30500000
## 195     X360 Role-Playing 0.94710526
## 196       XB Role-Playing 0.58739130
## 197     XOne Role-Playing 0.72923077
## 198     2600      Shooter 1.10333333
## 199      3DS      Shooter 0.18428571
## 200       DC      Shooter 0.11000000
## 201       DS      Shooter 0.19523810
## 202       GB      Shooter 1.20000000
## 203      GBA      Shooter 0.09000000
## 204       GC      Shooter 0.28395833
## 205      GEN      Shooter 0.13000000
## 206      N64      Shooter 0.80291667
## 207      NES      Shooter 5.08857143
## 208       PC      Shooter 0.30621622
## 209       PS      Shooter 0.40947917
## 210      PS2      Shooter 0.67856250
## 211      PS3      Shooter 1.25666667
## 212      PS4      Shooter 2.21529412
## 213      PSP      Shooter 0.53432432
## 214      PSV      Shooter 0.91400000
## 215      SAT      Shooter 0.18090909
## 216     SNES      Shooter 0.60700000
## 217     TG16      Shooter 0.02000000
## 218      Wii      Shooter 0.43590909
## 219     WiiU      Shooter 0.61700000
## 220     X360      Shooter 1.37216749
## 221       XB      Shooter 0.48143939
## 222     XOne      Shooter 1.56393939
## 223     2600   Simulation 0.45000000
## 224      3DO   Simulation 0.02000000
## 225      3DS   Simulation 0.90266667
## 226       DC   Simulation 0.52000000
## 227       DS   Simulation 0.46326316
## 228       GB   Simulation 0.71000000
## 229      GBA   Simulation 0.32833333
## 230       GC   Simulation 0.71583333
## 231      N64   Simulation 1.01900000
## 232       PC   Simulation 0.45139130
## 233       PS   Simulation 0.42216667
## 234      PS2   Simulation 0.47400000
## 235      PS3   Simulation 0.34806452
## 236      PS4   Simulation 0.15400000
## 237      PSP   Simulation 0.21655172
## 238      PSV   Simulation 0.02666667
## 239      SAT   Simulation 0.16142857
## 240     SNES   Simulation 0.62555556
## 241      Wii   Simulation 0.42494253
## 242     WiiU   Simulation 0.21000000
## 243     X360   Simulation 0.36125000
## 244       XB   Simulation 0.29625000
## 245     XOne   Simulation 0.18000000
## 246     2600       Sports 0.28583333
## 247      3DS       Sports 0.23846154
## 248       DC       Sports 0.36600000
## 249       DS       Sports 0.21506757
## 250       GB       Sports 1.00555556
## 251      GBA       Sports 0.18647727
## 252       GC       Sports 0.23172727
## 253      GEN       Sports 1.06666667
## 254      N64       Sports 0.41000000
## 255      NES       Sports 1.91785714
## 256       NG       Sports 0.02000000
## 257       PC       Sports 0.24510204
## 258       PS       Sports 0.54490991
## 259      PS2       Sports 0.68352500
## 260      PS3       Sports 0.63643192
## 261      PS4       Sports 1.16441860
## 262      PSP       Sports 0.30881481
## 263      PSV       Sports 0.21217391
## 264      SAT       Sports 0.17437500
## 265     SNES       Sports 0.36469388
## 266      Wii       Sports 1.11900383
## 267     WiiU       Sports 0.41500000
## 268     X360       Sports 0.63236364
## 269       XB       Sports 0.31923529
## 270     XOne       Sports 0.66583333
## 271      3DS     Strategy 0.13933333
## 272       DS     Strategy 0.19481013
## 273       GB     Strategy 1.15000000
## 274      GBA     Strategy 0.41388889
## 275       GC     Strategy 0.39272727
## 276      GEN     Strategy 0.19000000
## 277      N64     Strategy 1.14777778
## 278       PC     Strategy 0.24404255
## 279       PS     Strategy 0.30957143
## 280      PS2     Strategy 0.21338028
## 281      PS3     Strategy 0.20583333
## 282      PS4     Strategy 0.08200000
## 283      PSP     Strategy 0.17700000
## 284      PSV     Strategy 0.04428571
## 285      SAT     Strategy 0.18000000
## 286      SCD     Strategy 0.14000000
## 287     SNES     Strategy 0.33200000
## 288      Wii     Strategy 0.20920000
## 289     WiiU     Strategy 0.41333333
## 290       WS     Strategy 0.10000000
## 291     X360     Strategy 0.36178571
## 292       XB     Strategy 0.13238095
## 293     XOne     Strategy 0.12666667
aggregate(Global_Sales,by=list(Platform = Platform,Publisher = Publisher),mean)
##      Platform                              Publisher          x
## 1          DS                        10TACLE Studios 0.04500000
## 2         PS2                        10TACLE Studios 0.02000000
## 3          PC                             1C Company 0.03333333
## 4        2600           20th Century Fox Video Games 0.38800000
## 5          PC                                 2D Boy 0.04000000
## 6          GC                                    3DO 0.01000000
## 7         N64                                    3DO 0.43800000
## 8          PS                                    3DO 0.37062500
## 9         PS2                                    3DO 0.14692308
## 10         XB                                    3DO 0.08000000
## 11       X360                                49Games 0.04000000
## 12        3DS                              505 Games 0.26666667
## 13         DS                              505 Games 0.30646154
## 14         PC                              505 Games 0.06000000
## 15        PS2                              505 Games 0.12227273
## 16        PS3                              505 Games 0.33266667
## 17        PS4                              505 Games 0.23666667
## 18        PSP                              505 Games 0.12100000
## 19        PSV                              505 Games 0.09000000
## 20        Wii                              505 Games 0.50200000
## 21       WiiU                              505 Games 0.02500000
## 22       X360                              505 Games 0.32148148
## 23         XB                              505 Games 0.05000000
## 24       XOne                              505 Games 0.11833333
## 25        3DS                                    5pb 0.04000000
## 26        PS2                                    5pb 0.02714286
## 27        PS3                                    5pb 0.03300000
## 28        PS4                                    5pb 0.01000000
## 29        PSP                                    5pb 0.02666667
## 30        PSV                                    5pb 0.02071429
## 31       X360                                    5pb 0.02933333
## 32       XOne                                    5pb 0.01000000
## 33         DS                               7G//AMES 0.01500000
## 34        Wii                               7G//AMES 0.02500000
## 35         PS                             989 Sports 0.38000000
## 36         PS                            989 Studios 0.95142857
## 37        PS3                               Abylight 0.08000000
## 38         DC                  Acclaim Entertainment 0.14000000
## 39        GBA                  Acclaim Entertainment 0.10400000
## 40         GC                  Acclaim Entertainment 0.14708333
## 41        GEN                  Acclaim Entertainment 1.22500000
## 42        N64                  Acclaim Entertainment 0.41548387
## 43         PC                  Acclaim Entertainment 0.01000000
## 44         PS                  Acclaim Entertainment 0.35759259
## 45        PS2                  Acclaim Entertainment 0.45787879
## 46        SAT                  Acclaim Entertainment 0.18666667
## 47       SNES                  Acclaim Entertainment 1.46500000
## 48         XB                  Acclaim Entertainment 0.15476190
## 49         PS                               Accolade 0.56000000
## 50        3DS                            Ackkstudios 0.06000000
## 51         DS                            Ackkstudios 0.07000000
## 52        PS3                            Ackkstudios 0.13666667
## 53        PSP                            Ackkstudios 0.03666667
## 54        Wii                            Ackkstudios 0.09500000
## 55        3DS                                Acquire 0.06000000
## 56        PS2                                Acquire 0.05000000
## 57        PS3                                Acquire 0.03666667
## 58        PS4                                Acquire 0.11000000
## 59        PSP                                Acquire 0.10571429
## 60       2600                             Activision 0.69357143
## 61        3DS                             Activision 0.17259259
## 62         DC                             Activision 0.10000000
## 63         DS                             Activision 0.37936937
## 64         GB                             Activision 1.33000000
## 65        GBA                             Activision 0.31224490
## 66         GC                             Activision 0.30340909
## 67        N64                             Activision 0.50615385
## 68         PC                             Activision 0.84964286
## 69         PS                             Activision 0.93906250
## 70        PS2                             Activision 0.83097087
## 71        PS3                             Activision 1.17027778
## 72        PS4                             Activision 1.91714286
## 73        PSP                             Activision 0.31794118
## 74        PSV                             Activision 0.62000000
## 75        Wii                             Activision 0.56360360
## 76       WiiU                             Activision 0.23055556
## 77       X360                             Activision 1.18671642
## 78         XB                             Activision 0.53754098
## 79       XOne                             Activision 1.17750000
## 80         PC                    Activision Blizzard 0.48000000
## 81        GBA                       Activision Value 0.09000000
## 82         GC                       Activision Value 0.05000000
## 83         PS                       Activision Value 0.21000000
## 84        PS2                       Activision Value 0.30166667
## 85        PS3                       Activision Value 0.23000000
## 86        PSP                       Activision Value 0.05500000
## 87        Wii                       Activision Value 0.51400000
## 88       X360                       Activision Value 0.13285714
## 89         XB                       Activision Value 0.13500000
## 90         PS                       Adeline Software 0.17000000
## 91         PC                               Aerosoft 0.01500000
## 92        3DS                 Agatsuma Entertainment 0.11500000
## 93        GBA                 Agatsuma Entertainment 0.08000000
## 94         PS                                 Agetec 0.07333333
## 95        PS2                                 Agetec 0.42000000
## 96        PSP                                 Agetec 0.04000000
## 97        3DS                            Aksys Games 0.06000000
## 98         DS                            Aksys Games 0.02000000
## 99        PS3                            Aksys Games 0.06000000
## 100       PS4                            Aksys Games 0.03000000
## 101       PSV                            Aksys Games 0.06750000
## 102        PC                   Alawar Entertainment 0.02500000
## 103       3DS                              Alchemist 0.05800000
## 104        DS                              Alchemist 0.05166667
## 105       PS2                              Alchemist 0.12076923
## 106       PS3                              Alchemist 0.02000000
## 107       PSP                              Alchemist 0.02466667
## 108      X360                              Alchemist 0.02500000
## 109        PC                   Alternative Software 0.02000000
## 110       PS3                   Alternative Software 0.04000000
## 111       PS4                   Alternative Software 0.04000000
## 112       Wii                   Alternative Software 0.07000000
## 113      X360                   Alternative Software 0.02000000
## 114      XOne                   Alternative Software 0.01000000
## 115       GBA                                 Altron 0.07000000
## 116        DS                                 Alvion 0.02000000
## 117        PS                     American Softworks 0.23000000
## 118      SNES                          Angel Studios 0.14666667
## 119      2600                        Answer Software 0.50000000
## 120        DS                         AQ Interactive 0.16000000
## 121       PS2                         AQ Interactive 0.09500000
## 122       PSP                         AQ Interactive 0.02000000
## 123        PS                              Aqua Plus 0.14000000
## 124       PS2                              Aqua Plus 0.06000000
## 125       PS3                              Aqua Plus 0.05250000
## 126       PS4                              Aqua Plus 0.05000000
## 127       PSP                              Aqua Plus 0.04666667
## 128       PSV                              Aqua Plus 0.04750000
## 129        PS                                  Aques 0.16000000
## 130       3DS                       Arc System Works 0.02000000
## 131        DS                       Arc System Works 0.04666667
## 132       PS3                       Arc System Works 0.10800000
## 133       PS4                       Arc System Works 0.16000000
## 134       PSP                       Arc System Works 0.01000000
## 135       PSV                       Arc System Works 0.05200000
## 136       GEN                    Arena Entertainment 2.36000000
## 137       PS2                                   Aria 0.07000000
## 138        DS                                  Arika 0.02000000
## 139       PS2                                  Arika 0.03500000
## 140       3DS                                ArtDink 0.06000000
## 141        DS                                ArtDink 0.04000000
## 142        PS                                ArtDink 0.14000000
## 143       PS2                                ArtDink 0.02500000
## 144       PSP                                ArtDink 0.02000000
## 145        PS                             Aruze Corp 0.39333333
## 146        PS                              ASC Games 0.67333333
## 147        PC                  Ascaron Entertainment 0.01000000
## 148        PC             Ascaron Entertainment GmbH 0.03666667
## 149        GB                    ASCII Entertainment 0.37000000
## 150       N64                    ASCII Entertainment 0.07000000
## 151        PS                    ASCII Entertainment 0.68750000
## 152       PS2                    ASCII Entertainment 0.32000000
## 153       SAT                    ASCII Entertainment 0.09000000
## 154      SNES                    ASCII Entertainment 0.56750000
## 155        DS                      ASCII Media Works 0.03000000
## 156       PS2                      ASCII Media Works 0.02000000
## 157       PSP                      ASCII Media Works 0.04000000
## 158       PSV                      ASCII Media Works 0.01000000
## 159       PSP                                 Asgard 0.03285714
## 160       PSV                                 Asgard 0.02000000
## 161       SAT                                    ASK 0.03000000
## 162        PS                Asmik Ace Entertainment 0.10000000
## 163       PS2                Asmik Ace Entertainment 0.06500000
## 164      SNES                             Asmik Corp 0.08500000
## 165        DS                                  Aspyr 0.10000000
## 166       GBA                                  Aspyr 0.02000000
## 167        PC                                  Aspyr 0.02000000
## 168      X360                                  Aspyr 0.16000000
## 169        DS                               Astragon 0.14500000
## 170        PC                               Astragon 0.03000000
## 171       3DS                   Asylum Entertainment 0.07000000
## 172        DS                   Asylum Entertainment 0.09333333
## 173       Wii                   Asylum Entertainment 0.12000000
## 174      2600                                  Atari 0.92759259
## 175       3DS                                  Atari 0.05000000
## 176        DS                                  Atari 0.19805556
## 177       GBA                                  Atari 0.29318182
## 178        GC                                  Atari 0.35666667
## 179        PC                                  Atari 0.10400000
## 180        PS                                  Atari 0.82363636
## 181       PS2                                  Atari 0.59742857
## 182       PS3                                  Atari 0.40333333
## 183       PSP                                  Atari 0.15411765
## 184       Wii                                  Atari 0.32500000
## 185      X360                                  Atari 0.33300000
## 186        XB                                  Atari 0.20675676
## 187       N64                                 Athena 0.02000000
## 188       PS2                                 Athena 0.07000000
## 189       3DS                                  Atlus 0.22000000
## 190        DS                                  Atlus 0.19222222
## 191       GBA                                  Atlus 0.04000000
## 192        GC                                  Atlus 0.03000000
## 193       N64                                  Atlus 0.15500000
## 194        PS                                  Atlus 0.17875000
## 195       PS2                                  Atlus 0.21833333
## 196       PS3                                  Atlus 0.44000000
## 197       PS4                                  Atlus 0.34000000
## 198       PSP                                  Atlus 0.11100000
## 199       PSV                                  Atlus 0.78000000
## 200       SAT                                  Atlus 0.18400000
## 201      SNES                                  Atlus 0.22500000
## 202      WiiU                                  Atlus 0.03000000
## 203      X360                                  Atlus 0.10500000
## 204        XB                                  Atlus 0.03500000
## 205      2600                     Avalon Interactive 0.17000000
## 206        PS                     Avalon Interactive 0.10000000
## 207       PS2                     Avalon Interactive 0.06000000
## 208        XB                     Avalon Interactive 0.04500000
## 209        DS                              Avanquest 0.15937500
## 210        PC                              Avanquest 0.01750000
## 211       PS4                              Avanquest 0.02000000
## 212       Wii                              Avanquest 0.08500000
## 213       3DS                     Avanquest Software 0.02000000
## 214        DS                     Avanquest Software 0.02000000
## 215        PC                     Avanquest Software 0.02500000
## 216       PS3                     Avanquest Software 0.79000000
## 217      X360                     Avanquest Software 0.75000000
## 218        PS                                  Axela 0.25000000
## 219       GBA                     BAM! Entertainment 0.15857143
## 220        GC                     BAM! Entertainment 0.07666667
## 221       N64                     BAM! Entertainment 0.16000000
## 222        PS                     BAM! Entertainment 0.18000000
## 223       PS2                     BAM! Entertainment 0.18500000
## 224        XB                     BAM! Entertainment 0.06750000
## 225        DS                              Banpresto 0.10833333
## 226        GB                              Banpresto 0.39000000
## 227       GBA                              Banpresto 0.14181818
## 228       N64                              Banpresto 0.13500000
## 229        PS                              Banpresto 0.35300000
## 230       PS2                              Banpresto 0.24619048
## 231       PSP                              Banpresto 0.14000000
## 232       SAT                              Banpresto 0.55000000
## 233      SNES                              Banpresto 0.28615385
## 234      X360                              Banpresto 0.15500000
## 235        DS                                Benesse 0.05500000
## 236        PS                               Berkeley 0.03000000
## 237        PC                     Bethesda Softworks 0.68666667
## 238       PS2                     Bethesda Softworks 0.32833333
## 239       PS3                     Bethesda Softworks 1.59384615
## 240       PS4                     Bethesda Softworks 2.03571429
## 241       Wii                     Bethesda Softworks 0.36500000
## 242      X360                     Bethesda Softworks 1.69666667
## 243        XB                     Bethesda Softworks 0.08500000
## 244      XOne                     Bethesda Softworks 1.09285714
## 245       3DS                    Big Ben Interactive 0.02000000
## 246        DS                    Big Ben Interactive 0.03500000
## 247       PS2                    Big Ben Interactive 0.09000000
## 248       Wii                    Big Ben Interactive 0.27333333
## 249        PC                         Big Fish Games 0.02500000
## 250       PS3                     Bigben Interactive 0.10000000
## 251       PS4                     Bigben Interactive 0.07333333
## 252       PSV                     Bigben Interactive 0.07000000
## 253      X360                     Bigben Interactive 0.02666667
## 254      XOne                     Bigben Interactive 0.05000000
## 255        PC                      bitComposer Games 0.04666667
## 256       PS3                      bitComposer Games 0.19000000
## 257      X360                      bitComposer Games 0.08000000
## 258        DS                       Black Bean Games 0.08000000
## 259        PC                       Black Bean Games 0.02000000
## 260       PS2                       Black Bean Games 0.03333333
## 261       PS3                       Black Bean Games 0.14400000
## 262       PSP                       Black Bean Games 0.02500000
## 263       Wii                       Black Bean Games 0.10333333
## 264      X360                       Black Bean Games 0.09777778
## 265       PS2                      Black Label Games 1.20000000
## 266        DS               Blast! Entertainment Ltd 0.04666667
## 267       PS2               Blast! Entertainment Ltd 0.17000000
## 268       Wii               Blast! Entertainment Ltd 0.03500000
## 269        PC                              Blue Byte 0.01500000
## 270        PS          BMG Interactive Entertainment 0.16857143
## 271        PC                    Bohemia Interactive 0.12000000
## 272      2600                                   Bomb 0.22000000
## 273       PSP                               Boost On 0.01000000
## 274       NES                                    BPS 0.32000000
## 275      SNES                                    BPS 0.20000000
## 276        DS                    Brash Entertainment 0.11250000
## 277       PS2                    Brash Entertainment 0.18000000
## 278       Wii                    Brash Entertainment 0.06500000
## 279      X360                    Brash Entertainment 0.11000000
## 280        DS                               Broccoli 0.02000000
## 281       PS2                               Broccoli 0.02400000
## 282       PSP                               Broccoli 0.05692308
## 283       PSV                               Broccoli 0.03000000
## 284       PSP                              BushiRoad 0.03000000
## 285       3DS                                 Capcom 0.71200000
## 286        DC                                 Capcom 0.09000000
## 287        DS                                 Capcom 0.37800000
## 288        GB                                 Capcom 0.52333333
## 289       GBA                                 Capcom 0.30227273
## 290        GC                                 Capcom 0.35631579
## 291       GEN                                 Capcom 0.11000000
## 292       N64                                 Capcom 0.22000000
## 293       NES                                 Capcom 1.24083333
## 294        PC                                 Capcom 0.05125000
## 295        PS                                 Capcom 0.54888889
## 296       PS2                                 Capcom 0.56786885
## 297       PS3                                 Capcom 0.72333333
## 298       PS4                                 Capcom 0.16250000
## 299       PSP                                 Capcom 0.69269231
## 300       PSV                                 Capcom 0.23333333
## 301       SAT                                 Capcom 0.14333333
## 302      SNES                                 Capcom 1.57333333
## 303       Wii                                 Capcom 0.47722222
## 304      WiiU                                 Capcom 0.13000000
## 305      X360                                 Capcom 0.64000000
## 306        XB                                 Capcom 0.08562500
## 307      XOne                                 Capcom 0.07000000
## 308        DS                                   Cave 0.10000000
## 309      X360                                   Cave 0.02555556
## 310      2600                        CBS Electronics 0.31000000
## 311        PC                                    CCP 0.22000000
## 312        DS             CDV Software Entertainment 0.02333333
## 313        PC             CDV Software Entertainment 0.01500000
## 314       Wii             CDV Software Entertainment 0.10000000
## 315       3DS                               ChunSoft 0.03000000
## 316        DS                               ChunSoft 0.17000000
## 317        GB                               ChunSoft 0.27000000
## 318       N64                               ChunSoft 0.37000000
## 319        PS                               ChunSoft 0.17000000
## 320       PS2                               ChunSoft 0.36000000
## 321       PSP                               ChunSoft 0.01500000
## 322       PSV                               ChunSoft 0.04000000
## 323       SAT                               ChunSoft 0.09000000
## 324      SNES                               ChunSoft 0.53750000
## 325      X360                               ChunSoft 0.01000000
## 326        DS                       City Interactive 0.10111111
## 327        PC                       City Interactive 0.24333333
## 328       PS3                       City Interactive 0.40666667
## 329       Wii                       City Interactive 0.18500000
## 330      X360                       City Interactive 0.69000000
## 331       PS3       Cloud Imperium Games Corporation 0.04000000
## 332      X360       Cloud Imperium Games Corporation 0.04000000
## 333        PS                         Coconuts Japan 0.02000000
## 334      SNES                         Coconuts Japan 0.05000000
## 335       3DS                            Codemasters 0.16000000
## 336        DS                            Codemasters 0.09571429
## 337       GBA                            Codemasters 0.12000000
## 338        GC                            Codemasters 0.05000000
## 339       N64                            Codemasters 0.14000000
## 340        PC                            Codemasters 0.04777778
## 341        PS                            Codemasters 1.05000000
## 342       PS2                            Codemasters 0.35823529
## 343       PS3                            Codemasters 0.51653846
## 344       PS4                            Codemasters 0.41666667
## 345       PSP                            Codemasters 0.14833333
## 346       PSV                            Codemasters 0.15000000
## 347       Wii                            Codemasters 0.33500000
## 348      X360                            Codemasters 0.39407407
## 349        XB                            Codemasters 0.06466667
## 350      XOne                            Codemasters 0.14666667
## 351        PC                     Codemasters Online 0.02000000
## 352        DS                      CokeM Interactive 0.31000000
## 353      2600                                 Coleco 0.61200000
## 354       PS2                                Comfort 0.01500000
## 355       PSP                                Comfort 0.03000000
## 356        DS                               Commseed 0.01000000
## 357       N64                                Compile 0.19000000
## 358        PS                                Compile 1.15000000
## 359       SAT                                Compile 0.31500000
## 360      SNES                                Compile 0.24500000
## 361       PS3                          Compile Heart 0.08000000
## 362       PS4                          Compile Heart 0.02000000
## 363       PSP                          Compile Heart 0.03000000
## 364       PSV                          Compile Heart 0.06250000
## 365      X360                          Compile Heart 0.10333333
## 366        DS               Conspiracy Entertainment 0.04666667
## 367       GBA               Conspiracy Entertainment 0.02500000
## 368        PS               Conspiracy Entertainment 0.27000000
## 369       PS2               Conspiracy Entertainment 0.08000000
## 370       PS3               Conspiracy Entertainment 0.05000000
## 371       PSP               Conspiracy Entertainment 0.04000000
## 372       Wii               Conspiracy Entertainment 0.04000000
## 373      X360               Conspiracy Entertainment 0.05000000
## 374        PS                       Core Design Ltd. 0.14500000
## 375      2600                           CPG Products 0.54000000
## 376       3DS                    Crave Entertainment 0.09750000
## 377        DS                    Crave Entertainment 0.07800000
## 378       GBA                    Crave Entertainment 0.08857143
## 379        GC                    Crave Entertainment 0.04750000
## 380       N64                    Crave Entertainment 0.13000000
## 381        PS                    Crave Entertainment 0.30600000
## 382       PS2                    Crave Entertainment 0.28375000
## 383       PS3                    Crave Entertainment 0.12333333
## 384       PSP                    Crave Entertainment 0.17250000
## 385       Wii                    Crave Entertainment 0.10384615
## 386      X360                    Crave Entertainment 0.09500000
## 387        XB                    Crave Entertainment 0.12222222
## 388        DS                          Creative Core 0.03333333
## 389        PC                            Crimson Cow 0.04000000
## 390        PS                       Crystal Dynamics 0.34200000
## 391        PS                                CTO SpA 0.45000000
## 392        DS                          Culture Brain 0.02000000
## 393      SNES                          Culture Brain 0.11500000
## 394        PS                     Culture Publishers 0.09000000
## 395       PS2                             CyberFront 0.03000000
## 396       PSP                             CyberFront 0.01625000
## 397       PSV                             CyberFront 0.02000000
## 398      X360                             CyberFront 0.02000000
## 399       PSV                                Cygames 0.03000000
## 400       3DS                            D3Publisher 0.06571429
## 401        DS                            D3Publisher 0.14437500
## 402       GBA                            D3Publisher 0.04000000
## 403        GC                            D3Publisher 0.16000000
## 404        PS                            D3Publisher 0.43750000
## 405       PS2                            D3Publisher 0.11791667
## 406       PS3                            D3Publisher 0.12285714
## 407       PS4                            D3Publisher 0.06000000
## 408       PSP                            D3Publisher 0.08250000
## 409       PSV                            D3Publisher 0.03888889
## 410       Wii                            D3Publisher 0.22590909
## 411      WiiU                            D3Publisher 0.03000000
## 412      X360                            D3Publisher 0.12687500
## 413        PC                               Daedalic 0.09333333
## 414        PC                 Daedalic Entertainment 0.04666667
## 415       PS2                                  Daito 0.07000000
## 416       PSP                                  Daito 0.04500000
## 417      2600                               Data Age 0.35500000
## 418       Wii                Data Design Interactive 0.09666667
## 419       SAT                              Data East 0.11000000
## 420      SNES                              Data East 0.04000000
## 421       PS2                         Datam Polystar 0.01500000
## 422       3DS                            Deep Silver 0.13500000
## 423        DS                            Deep Silver 0.08428571
## 424        PC                            Deep Silver 0.09761905
## 425       PS3                            Deep Silver 0.38350000
## 426       PS4                            Deep Silver 0.18600000
## 427       PSP                            Deep Silver 0.07333333
## 428       Wii                            Deep Silver 0.20846154
## 429      WiiU                            Deep Silver 0.02000000
## 430      X360                            Deep Silver 0.35818182
## 431        XB                            Deep Silver 0.16333333
## 432      XOne                            Deep Silver 0.12166667
## 433        DS              Destination Software, Inc 0.11000000
## 434       GBA              Destination Software, Inc 0.04714286
## 435        DS                              Destineer 0.08636364
## 436        PC                              Destineer 0.01000000
## 437       PS2                              Destineer 0.03000000
## 438       PSP                              Destineer 0.04000000
## 439       Wii                              Destineer 0.12315789
## 440       Wii                            Detn8 Games 0.23000000
## 441        PC                       Devolver Digital 0.02000000
## 442       PS4                       Devolver Digital 0.02000000
## 443        DS                        DHM Interactive 0.12000000
## 444       PSP                        DHM Interactive 0.03000000
## 445       PS2                               DigiCube 0.06000000
## 446       3DS             Disney Interactive Studios 0.34000000
## 447        DS             Disney Interactive Studios 0.63389831
## 448       GBA             Disney Interactive Studios 0.38578947
## 449        GC             Disney Interactive Studios 0.19666667
## 450        PC             Disney Interactive Studios 0.52000000
## 451       PS2             Disney Interactive Studios 0.43176471
## 452       PS3             Disney Interactive Studios 0.52500000
## 453       PS4             Disney Interactive Studios 0.64000000
## 454       PSP             Disney Interactive Studios 0.26400000
## 455       PSV             Disney Interactive Studios 0.10500000
## 456       Wii             Disney Interactive Studios 0.81384615
## 457      WiiU             Disney Interactive Studios 0.36166667
## 458      X360             Disney Interactive Studios 0.56571429
## 459        XB             Disney Interactive Studios 0.12250000
## 460      XOne             Disney Interactive Studios 0.29333333
## 461       PSP                                 Dorart 0.01500000
## 462       PSV                        dramatic create 0.02200000
## 463        DS               DreamCatcher Interactive 0.06500000
## 464        PC               DreamCatcher Interactive 0.03500000
## 465       PS2               DreamCatcher Interactive 0.07000000
## 466        XB               DreamCatcher Interactive 0.03000000
## 467        PS                 DreamWorks Interactive 0.13000000
## 468        DS                              DSI Games 0.03600000
## 469       GBA                              DSI Games 0.17000000
## 470       3DS                      DTP Entertainment 0.04500000
## 471        DS                      DTP Entertainment 0.07222222
## 472       GBA                      DTP Entertainment 0.11500000
## 473        PC                      DTP Entertainment 0.04538462
## 474       PS2                      DTP Entertainment 0.18000000
## 475       PS3                      DTP Entertainment 0.09250000
## 476       Wii                      DTP Entertainment 0.09714286
## 477      X360                      DTP Entertainment 0.11428571
## 478       PS4               Dusenberry Martin Racing 0.03000000
## 479      XOne               Dusenberry Martin Racing 0.02000000
## 480       PS3                               EA Games 0.15000000
## 481        DS                       Easy Interactive 0.02500000
## 482       PS2                                  Ecole 0.06000000
## 483       PSP                                   Edia 0.04500000
## 484        DC                      Eidos Interactive 0.64000000
## 485        DS                      Eidos Interactive 0.13095238
## 486        GB                      Eidos Interactive 2.35000000
## 487       GBA                      Eidos Interactive 0.58500000
## 488        GC                      Eidos Interactive 0.29125000
## 489        PC                      Eidos Interactive 0.30392857
## 490        PS                      Eidos Interactive 1.25178571
## 491       PS2                      Eidos Interactive 0.44000000
## 492       PS3                      Eidos Interactive 1.15000000
## 493       PSP                      Eidos Interactive 0.21142857
## 494       Wii                      Eidos Interactive 0.24083333
## 495      X360                      Eidos Interactive 0.56857143
## 496        XB                      Eidos Interactive 0.24166667
## 497       3DS                        Electronic Arts 0.38857143
## 498        DS                        Electronic Arts 0.41708861
## 499        GB                        Electronic Arts 1.73000000
## 500       GBA                        Electronic Arts 0.35775000
## 501        GC                        Electronic Arts 0.31066667
## 502       N64                        Electronic Arts 0.58043478
## 503        PC                        Electronic Arts 0.48270270
## 504        PS                        Electronic Arts 0.85339623
## 505       PS2                        Electronic Arts 1.28537688
## 506       PS3                        Electronic Arts 1.18809859
## 507       PS4                        Electronic Arts 2.12769231
## 508       PSP                        Electronic Arts 0.54194444
## 509       PSV                        Electronic Arts 0.65166667
## 510       SAT                        Electronic Arts 0.08000000
## 511       Wii                        Electronic Arts 0.69533333
## 512      WiiU                        Electronic Arts 0.32000000
## 513      X360                        Electronic Arts 1.08407186
## 514        XB                        Electronic Arts 0.47422764
## 515      XOne                        Electronic Arts 1.08666667
## 516        PS                 Electronic Arts Victor 0.21000000
## 517       SAT                                    Elf 0.32000000
## 518        PS                                  Elite 0.07000000
## 519        DS                     Empire Interactive 0.18166667
## 520       GBA                     Empire Interactive 0.04500000
## 521        GC                     Empire Interactive 0.07000000
## 522        PC                     Empire Interactive 0.02250000
## 523        PS                     Empire Interactive 0.32166667
## 524       PS2                     Empire Interactive 0.37687500
## 525       PSP                     Empire Interactive 0.19333333
## 526      X360                     Empire Interactive 0.11000000
## 527        XB                     Empire Interactive 0.10545455
## 528        GC                                 Encore 0.01000000
## 529        PC                                 Encore 0.02000000
## 530        PS                                 Encore 0.03000000
## 531        XB                                 Encore 0.01000000
## 532        GB                       Enix Corporation 0.82000000
## 533       GBA                       Enix Corporation 0.66000000
## 534       N64                       Enix Corporation 0.16000000
## 535       NES                       Enix Corporation 3.18333333
## 536        PS                       Enix Corporation 1.28666667
## 537       PS2                       Enix Corporation 0.46000000
## 538      SNES                       Enix Corporation 1.06777778
## 539        DS                      Enjoy Gaming ltd. 0.10000000
## 540        DS                             Enterbrain 0.16666667
## 541       GBA                             Enterbrain 0.13000000
## 542        PS                             Enterbrain 0.39000000
## 543       PS2                             Enterbrain 0.12333333
## 544       PSP                             Enterbrain 0.10000000
## 545        PS              EON Digital Entertainment 0.01000000
## 546       PS4                             Epic Games 0.01000000
## 547       N64                                  Epoch 0.15000000
## 548      SNES                                  Epoch 0.15000000
## 549        DS                                 Ertain 0.05000000
## 550       GBA                                    ESP 0.03000000
## 551        PS                                    ESP 0.05000000
## 552       SAT                                    ESP 0.17000000
## 553       PS2                        Essential Games 0.07666667
## 554        PS                        Evolution Games 0.07000000
## 555        PC                          Evolved Games 0.01000000
## 556       PS2                          Evolved Games 0.03500000
## 557       PS3                          Evolved Games 0.06000000
## 558      X360                          Evolved Games 0.08000000
## 559        XB                          Evolved Games 0.01000000
## 560       3DS                   Excalibur Publishing 0.14000000
## 561        PC                   Excalibur Publishing 0.04666667
## 562       PSV                        Experience Inc. 0.02000000
## 563       3DS            Extreme Entertainment Group 0.03000000
## 564       PS3                     Falcom Corporation 0.02333333
## 565       PSP                     Falcom Corporation 0.08916667
## 566       PSV                     Falcom Corporation 0.07000000
## 567       PS3                                 Fields 0.03000000
## 568       GBA                       Flashpoint Games 0.04000000
## 569       Wii                       Flashpoint Games 0.04000000
## 570       PS2                            Flight-Plan 0.06000000
## 571        DS                 Focus Home Interactive 0.15800000
## 572        PC                 Focus Home Interactive 0.12035714
## 573       PS3                 Focus Home Interactive 0.15400000
## 574       PS4                 Focus Home Interactive 0.14333333
## 575       PSV                 Focus Home Interactive 0.02000000
## 576       Wii                 Focus Home Interactive 0.14000000
## 577      X360                 Focus Home Interactive 0.15625000
## 578      XOne                 Focus Home Interactive 0.05666667
## 579        PC                       Focus Multimedia 0.01666667
## 580       PSP                                 fonfun 0.02000000
## 581        DS                    Foreign Media Games 0.07000000
## 582        DC                              Fortyfive 0.06000000
## 583       N64                        Fox Interactive 0.25000000
## 584        PS                        Fox Interactive 1.02000000
## 585        DS                          From Software 0.05000000
## 586        PS                          From Software 0.18333333
## 587       PS2                          From Software 0.09000000
## 588       PS3                          From Software 0.12000000
## 589       PSP                          From Software 0.03200000
## 590        XB                          From Software 0.11000000
## 591        PS                                   Fuji 0.03000000
## 592       3DS                           Funbox Media 0.06000000
## 593       PS3                           Funbox Media 0.06000000
## 594       PSV                           Funbox Media 0.01000000
## 595       Wii                           Funbox Media 0.36000000
## 596        PC                                 Funcom 0.10000000
## 597        PS                                FunSoft 0.12000000
## 598        DS                                 Funsta 0.07000000
## 599       PSP                                 Funsta 0.02000000
## 600       Wii                                 Funsta 0.04000000
## 601       3DS                                  FuRyu 0.06642857
## 602        DS                                  FuRyu 0.01000000
## 603       PSP                                  FuRyu 0.02666667
## 604       PSV                                  FuRyu 0.03666667
## 605       PS4                      FuRyu Corporation 0.03000000
## 606      X360                                  G.Rev 0.02000000
## 607       SAT                                   Gaga 0.02000000
## 608        PS                 Gainax Network Systems 0.08000000
## 609        DS                                 Gakken 0.02000000
## 610       GEN                              Game Arts 0.14000000
## 611        DS                           Game Factory 0.13611111
## 612       GBA                           Game Factory 0.07000000
## 613       PS2                           Game Factory 0.04000000
## 614       PSP                           Game Factory 0.03000000
## 615       Wii                           Game Factory 0.17000000
## 616        DS                              Game Life 0.15000000
## 617       PS3                             Gamebridge 0.52000000
## 618      X360                             Gamebridge 0.21000000
## 619        DS                               Gamecock 0.07000000
## 620        PC                               Gamecock 0.02000000
## 621       PS3                               Gamecock 0.05000000
## 622      X360                               Gamecock 0.06000000
## 623        DS                               Gameloft 0.11000000
## 624        DS                 GameMill Entertainment 0.11400000
## 625       Wii                 GameMill Entertainment 0.32000000
## 626      X360                 GameMill Entertainment 0.17000000
## 627       N64                                GameTek 0.10000000
## 628        PC                Gathering of Developers 0.05666667
## 629       PS2                Gathering of Developers 0.21000000
## 630        XB                Gathering of Developers 0.13000000
## 631        PS                  General Entertainment 0.14000000
## 632       3DS                                  Genki 0.05000000
## 633        DC                                  Genki 0.17000000
## 634        DS                                  Genki 0.04000000
## 635       PS2                                  Genki 0.54500000
## 636       PS3                                  Genki 0.03000000
## 637       PSP                                  Genki 0.02000000
## 638        XB                                  Genki 0.06000000
## 639        DS                            Genterprise 0.01000000
## 640       3DS                             Ghostlight 0.38000000
## 641        DS                             Ghostlight 0.11000000
## 642       PS2                             Ghostlight 0.18250000
## 643       PS3                             Ghostlight 0.09500000
## 644       PSP                             Ghostlight 0.42000000
## 645       Wii                             Ghostlight 0.10000000
## 646       PSV                                   Giga 0.02000000
## 647       PSP                                 Giza10 0.02000000
## 648       SAT                                  Glams 0.08000000
## 649        DS                 Global A Entertainment 0.02500000
## 650       PSP                 Global A Entertainment 0.05000000
## 651       GBA                            Global Star 0.13333333
## 652        GC                            Global Star 0.09833333
## 653       PS2                            Global Star 0.31142857
## 654        XB                            Global Star 0.14375000
## 655       PS2                            GN Software 0.02000000
## 656       PSP                            GN Software 0.01000000
## 657        PC                                    GOA 0.02000000
## 658       GBA                           Gotham Games 0.61000000
## 659        GC                           Gotham Games 0.05000000
## 660        PS                           Gotham Games 0.42000000
## 661       PS2                           Gotham Games 0.81000000
## 662        XB                           Gotham Games 0.21000000
## 663        DS                               Graffiti 0.04333333
## 664       PSP                               Graffiti 0.05000000
## 665       Wii                               Graffiti 0.10000000
## 666       PSP                       Grand Prix Games 0.06000000
## 667        PC                 Graphsim Entertainment 0.02000000
## 668       N64                Gremlin Interactive Ltd 0.20000000
## 669        PS                Gremlin Interactive Ltd 0.11250000
## 670      X360                  Griffin International 0.09000000
## 671        XB                           Groove Games 0.04500000
## 672        DS                                    GSP 0.24642857
## 673        PC                                    GSP 0.03000000
## 674       Wii                                    GSP 0.21000000
## 675       N64                         GT Interactive 0.33333333
## 676        PS                         GT Interactive 0.71222222
## 677       3DS                                 GungHo 0.85500000
## 678        DS                                 GungHo 0.10500000
## 679       PS3                                 GungHo 0.04000000
## 680       PSP                                 GungHo 0.13333333
## 681       PSV                                 GungHo 0.19333333
## 682        DS                                   Gust 0.08000000
## 683        PS                                   Gust 0.13000000
## 684       PS2                                   Gust 0.12000000
## 685       PSP                                   Gust 0.02333333
## 686       PSV                                   Gust 0.08333333
## 687       PS2                              Hackberry 0.04428571
## 688       NES                         HAL Laboratory 0.06000000
## 689        PS                    Hamster Corporation 0.28000000
## 690       PS2                    Hamster Corporation 0.02000000
## 691       3DS                               Happinet 0.03600000
## 692       PS4                 Harmonix Music Systems 0.37000000
## 693      XOne                 Harmonix Music Systems 0.43000000
## 694       GBA                     Hasbro Interactive 0.02000000
## 695       N64                     Hasbro Interactive 0.56000000
## 696        PC                     Hasbro Interactive 2.39000000
## 697        PS                     Hasbro Interactive 0.97416667
## 698        PC                      Havas Interactive 0.13000000
## 699        PC                           Headup Games 0.03000000
## 700        PS                           Hearty Robin 0.09000000
## 701        PS                                   Hect 0.04000000
## 702      SNES                                   Hect 0.23000000
## 703       PS4                            Hello Games 1.60000000
## 704        PC                        Her Interactive 0.03000000
## 705       GBA                        Hip Interactive 0.09500000
## 706       PS2                        Hip Interactive 0.04000000
## 707        XB                        Hip Interactive 0.06500000
## 708        DS                        HMH Interactive 0.03000000
## 709        PC                        HMH Interactive 0.11000000
## 710        PC           Home Entertainment Suppliers 0.05000000
## 711       PS3           Home Entertainment Suppliers 0.14500000
## 712      X360           Home Entertainment Suppliers 0.18500000
## 713        DS                   Hudson Entertainment 0.02000000
## 714       GBA                   Hudson Entertainment 0.04750000
## 715       N64                   Hudson Entertainment 0.06000000
## 716        PS                   Hudson Entertainment 0.63000000
## 717       PSP                   Hudson Entertainment 0.06000000
## 718       Wii                   Hudson Entertainment 0.05000000
## 719       3DS                            Hudson Soft 0.10000000
## 720        DS                            Hudson Soft 0.10666667
## 721       GBA                            Hudson Soft 0.05500000
## 722        GC                            Hudson Soft 0.08000000
## 723       N64                            Hudson Soft 0.42000000
## 724       NES                            Hudson Soft 1.03285714
## 725        NG                            Hudson Soft 0.03000000
## 726        PS                            Hudson Soft 0.09500000
## 727       PS2                            Hudson Soft 0.31666667
## 728       PS3                            Hudson Soft 0.03000000
## 729       PSP                            Hudson Soft 0.02750000
## 730       SAT                            Hudson Soft 0.15666667
## 731      SNES                            Hudson Soft 0.39055556
## 732      TG16                            Hudson Soft 0.02000000
## 733       Wii                            Hudson Soft 0.19166667
## 734      X360                            Hudson Soft 0.33000000
## 735        XB                            Hudson Soft 0.04000000
## 736        PS                    Human Entertainment 0.18500000
## 737       SAT                    Human Entertainment 0.12000000
## 738      SNES                    Human Entertainment 0.35000000
## 739       PSV                                  HuneX 0.01500000
## 740        PC                    Iceberg Interactive 0.02666667
## 741        PC                            id Software 0.03000000
## 742        DS                           Idea Factory 0.03333333
## 743       PS2                           Idea Factory 0.02705882
## 744       PS3                           Idea Factory 0.03000000
## 745       PS4                           Idea Factory 0.02000000
## 746       PSP                           Idea Factory 0.03043478
## 747       PSV                           Idea Factory 0.03343750
## 748      X360                           Idea Factory 0.05500000
## 749       PS4             Idea Factory International 0.05500000
## 750       PSV             Idea Factory International 0.12500000
## 751       3DS                           IE Institute 0.02000000
## 752        DS                           IE Institute 0.23500000
## 753        DS                 Ignition Entertainment 0.11461538
## 754       GBA                 Ignition Entertainment 0.04666667
## 755        GC                 Ignition Entertainment 0.02666667
## 756       PS2                 Ignition Entertainment 0.13352941
## 757       PS3                 Ignition Entertainment 0.17000000
## 758       PSP                 Ignition Entertainment 0.13750000
## 759       Wii                 Ignition Entertainment 0.10000000
## 760      X360                 Ignition Entertainment 0.13500000
## 761        XB                 Ignition Entertainment 0.07333333
## 762       PS2                     Illusion Softworks 0.70000000
## 763       SAT                                 Imadio 0.14000000
## 764       PSP                            Image Epoch 0.10000000
## 765       3DS                        imageepoch Inc. 0.02000000
## 766       3DO                             Imageworks 0.02000000
## 767      2600                                 Imagic 1.20500000
## 768        GB                              Imagineer 0.33250000
## 769       N64                              Imagineer 0.10600000
## 770        PS                              Imagineer 0.01000000
## 771       SAT                              Imagineer 0.13333333
## 772      SNES                              Imagineer 0.12666667
## 773      SNES                                   Imax 0.06000000
## 774       PS2                            Indie Games 0.10666667
## 775        DC                             Infogrames 0.06000000
## 776       GBA                             Infogrames 0.48375000
## 777        GC                             Infogrames 0.40625000
## 778       N64                             Infogrames 0.05750000
## 779        PC                             Infogrames 0.02000000
## 780        PS                             Infogrames 0.21434783
## 781       PS2                             Infogrames 0.39285714
## 782        XB                             Infogrames 0.16666667
## 783        PC                        Insomniac Games 0.02000000
## 784       PS4                        Insomniac Games 0.06000000
## 785      XOne                        Insomniac Games 0.04000000
## 786       PS2                           Interchannel 0.02500000
## 787       PS2                     Interchannel-Holon 0.01000000
## 788       3DS                              Intergrow 0.03000000
## 789       GBA                              Interplay 0.28500000
## 790       N64                              Interplay 0.14333333
## 791        PC                              Interplay 0.02333333
## 792        PS                              Interplay 0.24333333
## 793       PS2                              Interplay 0.34500000
## 794      SNES                              Interplay 0.01000000
## 795        XB                              Interplay 0.27500000
## 796        PS                  Interplay Productions 0.10000000
## 797       PS3             Interworks Unlimited, Inc. 0.01000000
## 798       3DS                           Inti Creates 0.01000000
## 799       PS4                  Introversion Software 0.02000000
## 800        PC                   inXile Entertainment 0.10000000
## 801       3DS              Irem Software Engineering 0.02000000
## 802        PS              Irem Software Engineering 0.03000000
## 803       PS2              Irem Software Engineering 0.05500000
## 804       PS3              Irem Software Engineering 0.02000000
## 805       PSP              Irem Software Engineering 0.04333333
## 806      2600                       ITT Family Games 0.34000000
## 807       PSP                              Ivolgamus 0.04000000
## 808        DS                                   iWin 0.06000000
## 809        DS                      Jack of All Games 0.02000000
## 810       GBA                      Jack of All Games 0.38000000
## 811        DS                                 Jaleco 0.09333333
## 812       GBA                                 Jaleco 0.01000000
## 813        GC                                 Jaleco 0.03500000
## 814        PS                                 Jaleco 0.16666667
## 815       PS2                                 Jaleco 0.07666667
## 816       SAT                                 Jaleco 0.10000000
## 817       Wii                                 Jaleco 0.03000000
## 818        XB                                 Jaleco 0.03666667
## 819       PS2                     Jester Interactive 0.38333333
## 820        GB                                Jorudan 0.30000000
## 821       GBA                                Jorudan 0.32500000
## 822        DS                     JoWood Productions 0.05333333
## 823        GC                     JoWood Productions 0.02000000
## 824        PC                     JoWood Productions 0.06142857
## 825       PS2                     JoWood Productions 0.03500000
## 826       Wii                     JoWood Productions 0.16666667
## 827      X360                     JoWood Productions 0.10000000
## 828        XB                     JoWood Productions 0.03000000
## 829        PC                            Just Flight 0.03000000
## 830        PS                                    JVC 0.38285714
## 831       SAT                                    JVC 0.12000000
## 832       3DS                         Kadokawa Games 0.01000000
## 833       PS3                         Kadokawa Games 0.02000000
## 834       PSP                         Kadokawa Games 0.02000000
## 835       PSV                         Kadokawa Games 0.04900000
## 836       3DS                        Kadokawa Shoten 0.10000000
## 837        DS                        Kadokawa Shoten 0.02800000
## 838        PS                        Kadokawa Shoten 0.32666667
## 839       PS2                        Kadokawa Shoten 0.04166667
## 840       PSP                        Kadokawa Shoten 0.05368421
## 841       PSV                        Kadokawa Shoten 0.06666667
## 842       SAT                        Kadokawa Shoten 0.16000000
## 843       Wii                        Kadokawa Shoten 0.04500000
## 844       PS3                            Kaga Create 0.01000000
## 845       PSP                            Kaga Create 0.01000000
## 846       PSV                            Kaga Create 0.03000000
## 847        PC                          Kalypso Media 0.04900000
## 848       PS3                          Kalypso Media 0.07000000
## 849       PS4                          Kalypso Media 0.18500000
## 850      X360                          Kalypso Media 0.17166667
## 851        DS                                  Kamui 0.03000000
## 852       PS2                            Kando Games 0.03000000
## 853       PSP                    Karin Entertainment 0.02000000
## 854       GBA                                  Kemco 0.05000000
## 855        GC                                  Kemco 0.06000000
## 856       N64                                  Kemco 0.16571429
## 857        PS                                  Kemco 0.14000000
## 858       PS2                                  Kemco 0.13000000
## 859      SNES                                  Kemco 0.05000000
## 860        XB                                  Kemco 0.06750000
## 861       PS2                                    KID 0.01666667
## 862       SAT                                    KID 0.03000000
## 863        DS                           Kids Station 0.03000000
## 864       GBA                           King Records 0.02000000
## 865       GBA                    Knowledge Adventure 0.30500000
## 866       Wii                    Knowledge Adventure 0.43000000
## 867       3DS                             Koch Media 0.04000000
## 868        DS                             Koch Media 0.95000000
## 869        PC                             Koch Media 0.03250000
## 870       PS2                             Koch Media 0.57000000
## 871       PS3                             Koch Media 0.27500000
## 872       PS4                             Koch Media 0.35000000
## 873       PSP                             Koch Media 0.59000000
## 874       Wii                             Koch Media 0.44000000
## 875      X360                             Koch Media 0.22500000
## 876      XOne                             Koch Media 0.10000000
## 877        PS               Kokopeli Digital Studios 0.03000000
## 878       3DO           Konami Digital Entertainment 0.06000000
## 879       3DS           Konami Digital Entertainment 0.19250000
## 880        DC           Konami Digital Entertainment 0.06000000
## 881        DS           Konami Digital Entertainment 0.12071429
## 882        GB           Konami Digital Entertainment 0.64800000
## 883       GBA           Konami Digital Entertainment 0.32000000
## 884        GC           Konami Digital Entertainment 0.12791667
## 885       GEN           Konami Digital Entertainment 0.04000000
## 886       N64           Konami Digital Entertainment 0.28200000
## 887       NES           Konami Digital Entertainment 1.16222222
## 888        PC           Konami Digital Entertainment 0.05250000
## 889        PS           Konami Digital Entertainment 0.41400000
## 890       PS2           Konami Digital Entertainment 0.50319018
## 891       PS3           Konami Digital Entertainment 0.55032787
## 892       PS4           Konami Digital Entertainment 0.99000000
## 893       PSP           Konami Digital Entertainment 0.26341772
## 894       PSV           Konami Digital Entertainment 0.13250000
## 895       SAT           Konami Digital Entertainment 0.19000000
## 896      SNES           Konami Digital Entertainment 0.24578947
## 897       Wii           Konami Digital Entertainment 0.32400000
## 898      X360           Konami Digital Entertainment 0.27489796
## 899        XB           Konami Digital Entertainment 0.15290323
## 900      XOne           Konami Digital Entertainment 0.25200000
## 901        XB                              Kool Kizz 0.04000000
## 902      SNES                                    KSS 0.03000000
## 903      SNES                                 Laguna 0.38750000
## 904        DS                     Legacy Interactive 0.04000000
## 905       GBA                             LEGO Media 0.10000000
## 906       N64                             LEGO Media 0.71000000
## 907        PC                             LEGO Media 0.01000000
## 908        PS                             LEGO Media 0.21333333
## 909       3DS                                Level 5 0.78727273
## 910        DS                                Level 5 0.32714286
## 911       PSP                                Level 5 0.20250000
## 912       PSV                                Level 5 0.04500000
## 913       Wii                                Level 5 0.14500000
## 914      WiiU                                Level 5 0.03000000
## 915        DS                  Lexicon Entertainment 0.02500000
## 916       3DS                            Licensed 4U 0.02000000
## 917        DS                            Licensed 4U 0.02500000
## 918        PC                 Lighthouse Interactive 0.02000000
## 919       GBA                           Liquid Games 0.13500000
## 920       3DS                           Little Orbit 0.07142857
## 921        DS                           Little Orbit 0.06000000
## 922       PS3                           Little Orbit 0.08000000
## 923       PS4                           Little Orbit 0.09000000
## 924       Wii                           Little Orbit 0.13000000
## 925      WiiU                           Little Orbit 0.05666667
## 926      X360                           Little Orbit 0.07666667
## 927      XOne                           Little Orbit 0.05000000
## 928        PS                                  Locus 0.07000000
## 929       GBA                              LSP Games 0.02333333
## 930       PS2                              LSP Games 0.05000000
## 931       3DS                              LucasArts 1.13000000
## 932        DS                              LucasArts 1.11666667
## 933       GBA                              LucasArts 0.09000000
## 934        GC                              LucasArts 0.98250000
## 935       N64                              LucasArts 0.26000000
## 936        PC                              LucasArts 0.23642857
## 937        PS                              LucasArts 1.04500000
## 938       PS2                              LucasArts 1.17941176
## 939       PS3                              LucasArts 1.34000000
## 940       PSP                              LucasArts 0.92000000
## 941       Wii                              LucasArts 1.97375000
## 942      X360                              LucasArts 1.24375000
## 943        XB                              LucasArts 0.28500000
## 944        GC                               Mad Catz 0.20000000
## 945      X360                               Mad Catz 0.07000000
## 946        XB                               Mad Catz 0.03000000
## 947        PS                        Magical Company 0.41000000
## 948       PS2                                  Magix 0.17500000
## 949       3DS                  Majesco Entertainment 0.11750000
## 950        DS                  Majesco Entertainment 0.10333333
## 951       GBA                  Majesco Entertainment 0.29466667
## 952       PS2                  Majesco Entertainment 0.09000000
## 953       PS3                  Majesco Entertainment 0.04000000
## 954       PSP                  Majesco Entertainment 0.09500000
## 955       Wii                  Majesco Entertainment 0.25541667
## 956      X360                  Majesco Entertainment 0.10750000
## 957        XB                  Majesco Entertainment 0.05000000
## 958      XOne                  Majesco Entertainment 0.23000000
## 959        PC                            Mamba Games 0.02500000
## 960       PSV                   Marvel Entertainment 0.05000000
## 961       3DS                Marvelous Entertainment 0.29400000
## 962       PSP                Marvelous Entertainment 0.06500000
## 963       PSV                Marvelous Entertainment 0.14600000
## 964       PSV                        Marvelous Games 0.02000000
## 965       3DS                  Marvelous Interactive 0.18000000
## 966        DS                  Marvelous Interactive 0.06000000
## 967       GBA                  Marvelous Interactive 0.04666667
## 968        GC                  Marvelous Interactive 0.24000000
## 969       PS2                  Marvelous Interactive 0.01666667
## 970       PS3                  Marvelous Interactive 0.15500000
## 971       PS4                  Marvelous Interactive 0.10500000
## 972       PSP                  Marvelous Interactive 0.07272727
## 973       PSV                  Marvelous Interactive 0.16333333
## 974       Wii                  Marvelous Interactive 0.08800000
## 975      X360                  Marvelous Interactive 0.02000000
## 976        PC                      Masque Publishing 0.02000000
## 977        DS                           Mastertronic 0.35500000
## 978        PC                           Mastertronic 0.05000000
## 979       PS2                           Mastertronic 0.02000000
## 980       Wii                           Mastertronic 0.01000000
## 981      X360                           Mastertronic 0.02666667
## 982       3DS                                Mastiff 0.01333333
## 983        DS                                Mastiff 0.24500000
## 984       GBA                                Mastiff 0.10000000
## 985        PC                                Mastiff 0.02000000
## 986       PS2                                Mastiff 0.06000000
## 987       Wii                                Mastiff 0.21428571
## 988        XB                                Mastiff 0.02000000
## 989      2600                     Mattel Interactive 0.36500000
## 990        PS                     Mattel Interactive 0.14750000
## 991        PS                               Max Five 0.05000000
## 992       3DS                   Maximum Family Games 0.03000000
## 993        PC                                  Maxis 1.08500000
## 994        PS                                  Maxis 1.22000000
## 995        PC                      MC2 Entertainment 0.02000000
## 996        XB                      MC2 Entertainment 0.04000000
## 997       PS2                    Media Entertainment 0.01000000
## 998        GB                          Media Factory 0.14000000
## 999       N64                          Media Factory 0.15000000
## 1000      GBA                            Media Rings 0.19000000
## 1001     SNES                            Media Rings 0.23000000
## 1002       PS                            Media Works 0.05000000
## 1003      PS2                            Media Works 0.02500000
## 1004      SAT                            Media Works 0.03000000
## 1005       PS                             MediaQuest 0.05000000
## 1006     2600                           Men-A-Vision 0.77000000
## 1007       DS                     Mentor Interactive 0.21400000
## 1008       DS                          Mercury Games 0.06500000
## 1009      PSP                          Mercury Games 0.04000000
## 1010       PC                            Merscom LLC 0.20000000
## 1011      PS2                               Metro 3D 0.23571429
## 1012      Wii                               Metro 3D 0.04250000
## 1013       XB                               Metro 3D 0.02000000
## 1014      PS2                            Michaelsoft 0.01000000
## 1015      3DO                            Micro Cabin 0.02000000
## 1016      SAT                            Micro Cabin 0.09000000
## 1017      GBA                               Microids 0.01000000
## 1018       PC                               Microids 0.02333333
## 1019      PS2                               Microids 0.07000000
## 1020      PS4                               Microids 0.02000000
## 1021       XB                               Microids 0.05750000
## 1022       PC                             Microprose 0.02500000
## 1023       PS                             Microprose 0.49250000
## 1024       PC                 Microsoft Game Studios 0.27000000
## 1025     WiiU                 Microsoft Game Studios 0.43000000
## 1026     X360                 Microsoft Game Studios 2.32619718
## 1027       XB                 Microsoft Game Studios 0.69073529
## 1028     XOne                 Microsoft Game Studios 1.27000000
## 1029       DS        Midas Interactive Entertainment 0.03800000
## 1030       PS        Midas Interactive Entertainment 0.09333333
## 1031      PS2        Midas Interactive Entertainment 0.18300000
## 1032      PSP        Midas Interactive Entertainment 0.06000000
## 1033      Wii        Midas Interactive Entertainment 0.04000000
## 1034       DS                           Midway Games 0.47375000
## 1035      GBA                           Midway Games 0.07000000
## 1036       GC                           Midway Games 0.13840000
## 1037      N64                           Midway Games 0.36600000
## 1038       PC                           Midway Games 0.04000000
## 1039       PS                           Midway Games 0.49785714
## 1040      PS2                           Midway Games 0.48800000
## 1041      PS3                           Midway Games 0.53714286
## 1042      PSP                           Midway Games 0.19142857
## 1043      Wii                           Midway Games 0.55200000
## 1044     X360                           Midway Games 0.53555556
## 1045       XB                           Midway Games 0.20256410
## 1046      Wii                              Milestone 0.08000000
## 1047      PS4                        Milestone S.r.l 0.04000000
## 1048     XOne                        Milestone S.r.l 0.01000000
## 1049       PC                       Milestone S.r.l. 0.02000000
## 1050      PS3                       Milestone S.r.l. 0.09000000
## 1051      PS4                       Milestone S.r.l. 0.16250000
## 1052      PSV                       Milestone S.r.l. 0.02000000
## 1053     X360                       Milestone S.r.l. 0.04000000
## 1054     XOne                       Milestone S.r.l. 0.06000000
## 1055      PS2                         Minato Station 0.02000000
## 1056      PS3                         Minato Station 0.02000000
## 1057      PSV                         Minato Station 0.01000000
## 1058       DS                              Mindscape 0.27363636
## 1059      N64                              Mindscape 0.02000000
## 1060       PS                              Mindscape 0.12714286
## 1061      PS2                              Mindscape 0.14000000
## 1062      Wii                              Mindscape 0.35100000
## 1063     X360                              Mindscape 0.12000000
## 1064       XB                              Mindscape 0.05000000
## 1065       DS                          Mirai Shounen 0.02000000
## 1066     SNES                                 Misawa 0.03500000
## 1067      N64                                 Mitsui 0.08000000
## 1068      3DS                              mixi, Inc 0.86000000
## 1069     XOne                                MLB.com 0.04000000
## 1070       PC                                 Mojang 0.08000000
## 1071      PS3                                 Mojang 0.69000000
## 1072      PS4                                 Mojang 0.67000000
## 1073     X360                                 Mojang 0.91000000
## 1074     XOne                                 Mojang 0.54000000
## 1075       PC               Monte Christo Multimedia 0.05000000
## 1076     X360                                   Moss 0.06500000
## 1077       DS                                    MTO 0.04285714
## 1078       PS                                    MTO 0.10000000
## 1079       DS                              MTV Games 0.10000000
## 1080      PS2                              MTV Games 0.23285714
## 1081      PS3                              MTV Games 0.44900000
## 1082      PSP                              MTV Games 0.48000000
## 1083      Wii                              MTV Games 0.63083333
## 1084     X360                              MTV Games 0.67000000
## 1085      PS2                   Mud Duck Productions 0.42000000
## 1086       XB                   Mud Duck Productions 0.21500000
## 1087       DS                            Mumbo Jumbo 0.14500000
## 1088       PC                            Mumbo Jumbo 0.02000000
## 1089      PSP                            Mumbo Jumbo 0.05000000
## 1090      Wii                            Mumbo Jumbo 0.17000000
## 1091       DS                                  Mycom 0.02000000
## 1092      PS2                           Myelin Media 0.07000000
## 1093      PSP                           Myelin Media 0.03000000
## 1094       XB                           Myelin Media 0.03000000
## 1095     2600                               Mystique 0.82000000
## 1096      3DS                                    N/A 0.01500000
## 1097       DS                                    N/A 0.04285714
## 1098      GBA                                    N/A 0.31576923
## 1099       PC                                    N/A 0.06000000
## 1100       PS                                    N/A 0.53000000
## 1101      PS2                                    N/A 1.60500000
## 1102      PS3                                    N/A 0.18333333
## 1103      PSP                                    N/A 0.09000000
## 1104      PSV                                    N/A 0.01500000
## 1105      Wii                                    N/A 0.35000000
## 1106     X360                                    N/A 0.01750000
## 1107      3DS                     Namco Bandai Games 0.13068966
## 1108       DC                     Namco Bandai Games 0.19000000
## 1109       DS                     Namco Bandai Games 0.11896296
## 1110       GB                     Namco Bandai Games 1.07666667
## 1111      GBA                     Namco Bandai Games 0.36375000
## 1112       GC                     Namco Bandai Games 0.21545455
## 1113      N64                     Namco Bandai Games 0.36500000
## 1114      NES                     Namco Bandai Games 1.21071429
## 1115       PC                     Namco Bandai Games 0.17500000
## 1116       PS                     Namco Bandai Games 0.39333333
## 1117      PS2                     Namco Bandai Games 0.46411215
## 1118      PS3                     Namco Bandai Games 0.35000000
## 1119      PS4                     Namco Bandai Games 0.37033333
## 1120      PSP                     Namco Bandai Games 0.15000000
## 1121      PSV                     Namco Bandai Games 0.13555556
## 1122      SAT                     Namco Bandai Games 0.20375000
## 1123     SNES                     Namco Bandai Games 0.41576923
## 1124      Wii                     Namco Bandai Games 0.24071429
## 1125     WiiU                     Namco Bandai Games 0.14153846
## 1126       WS                     Namco Bandai Games 0.16500000
## 1127     X360                     Namco Bandai Games 0.30318182
## 1128       XB                     Namco Bandai Games 0.25300000
## 1129     XOne                     Namco Bandai Games 0.35142857
## 1130      3DS                                Natsume 0.15000000
## 1131       DS                                Natsume 0.16800000
## 1132      GBA                                Natsume 0.15000000
## 1133      N64                                Natsume 0.10000000
## 1134       PS                                Natsume 0.76000000
## 1135      PS2                                Natsume 0.16250000
## 1136      PSP                                Natsume 0.05000000
## 1137      Wii                                Natsume 0.08000000
## 1138     X360                           Navarre Corp 0.05000000
## 1139      PS2                             Naxat Soft 0.01000000
## 1140      SAT                                    NCS 0.13333333
## 1141       PC                                 NCSoft 0.43166667
## 1142       GC                        NDA Productions 0.12000000
## 1143     PCFX                                    NEC 0.03000000
## 1144      SAT                                    NEC 0.26000000
## 1145     TG16                                    NEC 0.14000000
## 1146       DC                       NEC Interchannel 0.06000000
## 1147      SAT                       NEC Interchannel 0.12000000
## 1148       DS                     Neko Entertainment 0.02666667
## 1149      Wii                     Neko Entertainment 0.05750000
## 1150      PSP                                NetRevo 0.01500000
## 1151       PS                                    New 0.36000000
## 1152       PC                    New World Computing 0.01000000
## 1153      GBA                               NewKidCo 0.08500000
## 1154       GC                               NewKidCo 0.07000000
## 1155      N64                               NewKidCo 0.18500000
## 1156       PS                               NewKidCo 0.27500000
## 1157       DS                                  Nexon 0.03000000
## 1158     SNES                             Nichibutsu 0.28000000
## 1159      PS4               Nihon Falcom Corporation 0.02000000
## 1160      PSP               Nihon Falcom Corporation 0.14000000
## 1161      PSV               Nihon Falcom Corporation 0.12200000
## 1162      3DS                               Nintendo 1.90792683
## 1163       DS                               Nintendo 2.31622517
## 1164       GB                               Nintendo 3.77196721
## 1165      GBA                               Nintendo 1.23076923
## 1166       GC                               Nintendo 1.49339623
## 1167      N64                               Nintendo 2.16583333
## 1168      NES                               Nintendo 4.08822222
## 1169     SNES                               Nintendo 2.69000000
## 1170      Wii                               Nintendo 4.64833333
## 1171     WiiU                               Nintendo 1.44750000
## 1172      PS2                           Nippon Amuse 0.09000000
## 1173      3DS                        Nippon Columbia 0.13571429
## 1174      3DS                   Nippon Ichi Software 0.23000000
## 1175       DS                   Nippon Ichi Software 0.08500000
## 1176       PS                   Nippon Ichi Software 0.04000000
## 1177      PS2                   Nippon Ichi Software 0.06200000
## 1178      PS3                   Nippon Ichi Software 0.17181818
## 1179      PS4                   Nippon Ichi Software 0.11000000
## 1180      PSP                   Nippon Ichi Software 0.08529412
## 1181      PSV                   Nippon Ichi Software 0.13709677
## 1182      Wii                   Nippon Ichi Software 0.13000000
## 1183     WiiU                   Nippon Ichi Software 0.12000000
## 1184     SNES                         Nippon Telenet 0.13000000
## 1185      PS3                              Nitroplus 0.01000000
## 1186      PSV                              Nitroplus 0.01000000
## 1187       DS                                Nobilis 0.18600000
## 1188       PC                                Nobilis 0.01000000
## 1189      Wii                                Nobilis 0.03500000
## 1190       DS                            Nordcurrent 0.14000000
## 1191      Wii                            Nordcurrent 0.10333333
## 1192       DS                           Nordic Games 0.27000000
## 1193       PC                           Nordic Games 0.06250000
## 1194      PS3                           Nordic Games 0.03500000
## 1195      PS4                           Nordic Games 0.08000000
## 1196      Wii                           Nordic Games 0.20800000
## 1197     WiiU                           Nordic Games 0.02333333
## 1198     X360                           Nordic Games 0.05000000
## 1199     XOne                           Nordic Games 0.04000000
## 1200       PC                              NovaLogic 0.02000000
## 1201      PS2                              NovaLogic 0.46000000
## 1202       XB                              NovaLogic 0.34000000
## 1203       PC                            Number None 0.03000000
## 1204       DS                                O-Games 0.05833333
## 1205      PS3                                O-Games 0.08666667
## 1206      Wii                                O-Games 0.07333333
## 1207     X360                                O-Games 0.01500000
## 1208       DS                       O3 Entertainment 0.06500000
## 1209       GC                       O3 Entertainment 0.09000000
## 1210      N64                                  Ocean 0.35200000
## 1211      NES                                  Ocean 0.36000000
## 1212       PS                                  Ocean 0.17285714
## 1213     SNES                                  Ocean 0.28000000
## 1214      3DS                          Office Create 0.03000000
## 1215       PS                              On Demand 0.21000000
## 1216      PS3                              Ongakukan 0.01000000
## 1217       PS                         Origin Systems 0.09000000
## 1218      PSP                                Otomate 0.01000000
## 1219       DS                     Oxygen Interactive 0.06888889
## 1220      PS2                     Oxygen Interactive 1.01000000
## 1221      PSP                     Oxygen Interactive 0.06250000
## 1222      Wii                     Oxygen Interactive 0.08666667
## 1223     X360                     Oxygen Interactive 0.05000000
## 1224       DS                               P2 Games 0.19000000
## 1225      Wii                               P2 Games 0.02000000
## 1226      PS2            Pacific Century Cyber Works 0.26000000
## 1227     SNES                          Pack-In-Video 0.05500000
## 1228      N64                           Pack In Soft 0.48000000
## 1229      NES                                 Palcom 4.17000000
## 1230       PS                       Panther Software 0.17000000
## 1231       DS                                   Paon 0.10000000
## 1232      PS2                                   Paon 0.03666667
## 1233      PSP                                   Paon 0.02000000
## 1234      PS3                       Paon Corporation 0.03000000
## 1235       PC                    Paradox Development 0.01000000
## 1236       PC                    Paradox Interactive 0.03304348
## 1237     2600                           Parker Bros. 0.71000000
## 1238       DS          Performance Designed Products 0.17000000
## 1239      Wii          Performance Designed Products 0.19000000
## 1240       XB                             Phantagram 0.05000000
## 1241     X360                            Phantom EFX 0.09000000
## 1242       DS                             Phenomedia 0.04750000
## 1243       DS                          Phoenix Games 0.02000000
## 1244      PSP                                 Piacci 0.01000000
## 1245       DS                               Pinnacle 0.33666667
## 1246       PC                               Pinnacle 0.03000000
## 1247      Wii                               Pinnacle 0.38000000
## 1248       PS                            Pioneer LDC 0.18500000
## 1249      GBA                                Play It 0.03000000
## 1250      PS2                                Play It 0.33750000
## 1251      PSP                                Play It 0.23000000
## 1252       DS                 Playlogic Game Factory 0.07000000
## 1253       PC                 Playlogic Game Factory 0.02000000
## 1254      PS2                 Playlogic Game Factory 0.12000000
## 1255      PS3                 Playlogic Game Factory 0.17000000
## 1256      PSP                 Playlogic Game Factory 0.09000000
## 1257      Wii                 Playlogic Game Factory 0.06800000
## 1258     X360                 Playlogic Game Factory 0.12500000
## 1259       PS                              Playmates 0.28000000
## 1260      PS2                               Playmore 0.04000000
## 1261       DS                                  PlayV 0.11000000
## 1262       DS                                 Plenty 0.02000000
## 1263      PSP                             PM Studios 0.10000000
## 1264       PS                            Pony Canyon 0.05000000
## 1265       DS                           PopCap Games 0.20000000
## 1266       PC                           PopCap Games 0.03833333
## 1267      PS3                           PopCap Games 0.19000000
## 1268     X360                           PopCap Games 0.08750000
## 1269      Wii                         Popcorn Arcade 0.04900000
## 1270       PS                        PopTop Software 0.11000000
## 1271     SNES                                    Pow 0.05000000
## 1272      3DS                                  PQube 0.11000000
## 1273       DS                                  PQube 0.06666667
## 1274       PC                                  PQube 0.01000000
## 1275      PS2                                  PQube 0.06000000
## 1276      PS3                                  PQube 0.16400000
## 1277      PS4                                  PQube 0.07000000
## 1278      PSP                                  PQube 0.11000000
## 1279      PSV                                  PQube 0.08571429
## 1280      Wii                                  PQube 0.03500000
## 1281     X360                                  PQube 0.24333333
## 1282     XOne                                  PQube 0.06000000
## 1283      PS2                          Princess Soft 0.02333333
## 1284      PS2                              Prototype 0.02000000
## 1285      PS3                              Prototype 0.03000000
## 1286      PSP                              Prototype 0.02636364
## 1287      PSV                              Prototype 0.01833333
## 1288     X360                              Prototype 0.02000000
## 1289       PS                              Psygnosis 0.22718750
## 1290     2600                                 Quelle 0.87000000
## 1291     SNES                                  Quest 0.71000000
## 1292      PSP                               Quinrose 0.01571429
## 1293      SAT                                Quintet 0.02000000
## 1294      GBA                          Rage Software 0.04000000
## 1295       GC                          Rage Software 0.09000000
## 1296      PS2                          Rage Software 0.48000000
## 1297       XB                          Rage Software 0.11000000
## 1298      PSV                             Rain Games 0.01000000
## 1299      GBA                              Rebellion 0.24500000
## 1300      PS4                 Rebellion Developments 0.20000000
## 1301     XOne                 Rebellion Developments 0.10000000
## 1302      PS2                      RED Entertainment 0.02000000
## 1303       PC                                Red Orb 2.62000000
## 1304      N64                Red Storm Entertainment 0.64000000
## 1305       PS                Red Storm Entertainment 0.84000000
## 1306      PS2                              RedOctane 2.17000000
## 1307       DS                     Reef Entertainment 0.03000000
## 1308       PC                     Reef Entertainment 0.03000000
## 1309      PS3                     Reef Entertainment 0.03000000
## 1310      Wii                     Reef Entertainment 0.06250000
## 1311      PS2                           responDESIGN 0.04000000
## 1312       XB                           responDESIGN 0.09000000
## 1313      PS2                     Revolution (Japan) 0.02000000
## 1314      PS4                    Revolution Software 0.06000000
## 1315     XOne                    Revolution Software 0.01000000
## 1316      3DS                      Rising Star Games 0.15500000
## 1317       DS                      Rising Star Games 0.20300000
## 1318       PC                      Rising Star Games 0.04000000
## 1319      PS2                      Rising Star Games 0.13333333
## 1320      PS3                      Rising Star Games 0.23000000
## 1321      PS4                      Rising Star Games 0.02000000
## 1322      PSP                      Rising Star Games 0.09750000
## 1323      PSV                      Rising Star Games 0.03000000
## 1324      Wii                      Rising Star Games 0.32000000
## 1325     X360                      Rising Star Games 0.20200000
## 1326       PS                          Riverhillsoft 0.04000000
## 1327      3DS                         Rocket Company 0.05714286
## 1328       DS                         Rocket Company 0.15000000
## 1329      Wii                         Rocket Company 0.07000000
## 1330       DS                             Rondomedia 0.22000000
## 1331       PC                             Rondomedia 0.11428571
## 1332      Wii                             Rondomedia 0.34000000
## 1333       DS                                    RTL 0.04666667
## 1334      Wii                                    RTL 0.58666667
## 1335     X360                                    RTL 0.05000000
## 1336       DS                                 Russel 0.03000000
## 1337       PC                                 Russel 1.12000000
## 1338      PS2                                 Russel 0.01500000
## 1339      PSP                                 Russel 0.01500000
## 1340      GBA                      Sammy Corporation 0.06000000
## 1341      PS2                      Sammy Corporation 0.27555556
## 1342     SNES                      Sammy Corporation 0.19000000
## 1343       PS                                 Saurus 0.02000000
## 1344       DS                        Scholastic Inc. 0.31142857
## 1345      PS2                        Scholastic Inc. 0.07000000
## 1346      Wii                        Scholastic Inc. 0.33000000
## 1347       GC                                    SCi 0.04333333
## 1348       PC                                    SCi 0.04000000
## 1349      PS2                                    SCi 0.33600000
## 1350       XB                                    SCi 0.20875000
## 1351      3DS                             Screenlife 0.20000000
## 1352      PSV                             Screenlife 0.10666667
## 1353       PC                           SCS Software 0.13000000
## 1354     2600                                  Sears 0.21000000
## 1355     2600                                   Sega 0.40000000
## 1356      3DS                                   Sega 0.27809524
## 1357       DC                                   Sega 0.41733333
## 1358       DS                                   Sega 0.46156250
## 1359      GBA                                   Sega 0.53100000
## 1360       GC                                   Sega 0.38120000
## 1361      GEN                                   Sega 1.07666667
## 1362       GG                                   Sega 0.04000000
## 1363       PC                                   Sega 0.35272727
## 1364      PS2                                   Sega 0.37192771
## 1365      PS3                                   Sega 0.49836066
## 1366      PS4                                   Sega 0.23375000
## 1367      PSP                                   Sega 0.31431373
## 1368      PSV                                   Sega 0.16375000
## 1369      SAT                                   Sega 0.24558442
## 1370      SCD                                   Sega 0.31166667
## 1371      Wii                                   Sega 0.93681818
## 1372     WiiU                                   Sega 0.32000000
## 1373     X360                                   Sega 0.49765957
## 1374       XB                                   Sega 0.25868421
## 1375     XOne                                   Sega 0.50000000
## 1376      N64                       Seta Corporation 0.09000000
## 1377       PS                       Seta Corporation 0.09333333
## 1378      SAT                       Seta Corporation 0.13000000
## 1379      3DS                          Seventh Chord 0.08000000
## 1380      3DS                             Shogakukan 0.03000000
## 1381       DS                             Shogakukan 0.15000000
## 1382      SAT                             Shogakukan 0.05500000
## 1383       XB           Simon & Schuster Interactive 0.11000000
## 1384       PC                   Slightly Mad Studios 0.11000000
## 1385      PS4                   Slightly Mad Studios 1.04000000
## 1386     XOne                   Slightly Mad Studios 0.23000000
## 1387       DS                    Slitherine Software 0.01000000
## 1388      PS3                    Slitherine Software 0.05000000
## 1389      PSP                    Slitherine Software 0.02000000
## 1390     X360                    Slitherine Software 0.13000000
## 1391       DC                                    SNK 0.08500000
## 1392       NG                                    SNK 0.13900000
## 1393       PS                                    SNK 0.08600000
## 1394      PS2                                    SNK 0.07000000
## 1395      SAT                                    SNK 0.13250000
## 1396       DS                           SNK Playmore 0.02750000
## 1397       PS                           SNK Playmore 0.05666667
## 1398      PS2                           SNK Playmore 0.04666667
## 1399      PSP                           SNK Playmore 0.03000000
## 1400      SAT                           SNK Playmore 0.28000000
## 1401       XB                           SNK Playmore 0.03000000
## 1402      SAT                                Societa 0.04000000
## 1403      PS4                               Sold Out 0.02000000
## 1404      SAT                                 Sonnet 0.03000000
## 1405       PS            Sony Computer Entertainment 1.03047872
## 1406      PS2            Sony Computer Entertainment 0.84705882
## 1407      PS3            Sony Computer Entertainment 1.13162791
## 1408      PS4            Sony Computer Entertainment 1.80647059
## 1409      PSP            Sony Computer Entertainment 0.46230769
## 1410      PSV            Sony Computer Entertainment 0.36392857
## 1411      PS3    Sony Computer Entertainment America 0.39000000
## 1412      PS4    Sony Computer Entertainment America 0.65000000
## 1413      PSV    Sony Computer Entertainment America 0.14000000
## 1414      PS2     Sony Computer Entertainment Europe 2.44000000
## 1415      PS3     Sony Computer Entertainment Europe 1.44200000
## 1416      PS4     Sony Computer Entertainment Europe 1.88000000
## 1417      PSV     Sony Computer Entertainment Europe 1.07000000
## 1418      PS2               Sony Music Entertainment 0.14000000
## 1419       PC              Sony Online Entertainment 0.15000000
## 1420      PS2              Sony Online Entertainment 0.63750000
## 1421      PS3              Sony Online Entertainment 0.52000000
## 1422      PSP              Sony Online Entertainment 0.16000000
## 1423       DS                        SouthPeak Games 0.11307692
## 1424       PC                        SouthPeak Games 0.03000000
## 1425       PS                        SouthPeak Games 0.11000000
## 1426      PS2                        SouthPeak Games 0.43333333
## 1427      PS3                        SouthPeak Games 0.25666667
## 1428      PSP                        SouthPeak Games 0.31000000
## 1429      Wii                        SouthPeak Games 0.08444444
## 1430     X360                        SouthPeak Games 0.25800000
## 1431       DS                                  Spike 0.10250000
## 1432      GBA                                  Spike 0.13000000
## 1433      PS2                                  Spike 0.21000000
## 1434      PS3                                  Spike 0.17500000
## 1435      PSP                                  Spike 0.09500000
## 1436     X360                                  Spike 0.56666667
## 1437       PS                                    SPS 0.12000000
## 1438      NES                                 Square 0.11000000
## 1439       PS                                 Square 0.44000000
## 1440     SNES                                 Square 1.77000000
## 1441       PS                              Square EA 0.80000000
## 1442      3DS                            Square Enix 0.60285714
## 1443       DS                            Square Enix 0.51622222
## 1444      GBA                            Square Enix 1.11000000
## 1445       PC                            Square Enix 0.19047619
## 1446      PS2                            Square Enix 0.99538462
## 1447      PS3                            Square Enix 1.02517241
## 1448      PS4                            Square Enix 0.53947368
## 1449      PSP                            Square Enix 0.72750000
## 1450      PSV                            Square Enix 0.24875000
## 1451      Wii                            Square Enix 0.37333333
## 1452     WiiU                            Square Enix 0.17666667
## 1453     X360                            Square Enix 0.64115385
## 1454     XOne                            Square Enix 0.39363636
## 1455       GB                             SquareSoft 0.74666667
## 1456      GBA                             SquareSoft 2.13000000
## 1457      NES                             SquareSoft 1.00000000
## 1458       PS                             SquareSoft 1.28760000
## 1459      PS2                             SquareSoft 0.21500000
## 1460     SNES                             SquareSoft 1.17642857
## 1461       WS                             SquareSoft 0.38000000
## 1462       PS                                    SSI 0.19000000
## 1463     XOne                        Stainless Games 0.01000000
## 1464       DS                               Starfish 0.04000000
## 1465      GBA                               Starfish 0.05000000
## 1466       PS                               Starfish 0.23500000
## 1467      PSP                               Starfish 0.02000000
## 1468      Wii                               Starfish 0.04000000
## 1469     2600                         Starpath Corp. 0.33000000
## 1470       DS                                  Sting 0.05000000
## 1471      GBA                                  Sting 0.06500000
## 1472      PS2                                  Sting 0.11000000
## 1473      PSP                                  Sting 0.06500000
## 1474      Wii                                  Sting 0.13000000
## 1475       DS                       Storm City Games 0.08384615
## 1476      Wii                       Storm City Games 0.07833333
## 1477       PC                         Strategy First 0.03000000
## 1478      3DS                                Success 0.04000000
## 1479       DS                                Success 0.05625000
## 1480       PS                                Success 0.31750000
## 1481      PS2                                Success 0.02666667
## 1482      PSP                                Success 0.01000000
## 1483     X360                                Success 0.07000000
## 1484      GBA                             Summitsoft 0.04000000
## 1485       PC                             Sunflowers 0.03000000
## 1486      PS2                    Sunrise Interactive 0.04250000
## 1487      3DS                                Sunsoft 0.09000000
## 1488      N64                                Sunsoft 0.11000000
## 1489       PS                                Sunsoft 0.15000000
## 1490      SAT                                Sunsoft 0.05000000
## 1491     SNES                                Sunsoft 0.02500000
## 1492      PS2                                 Sweets 0.02500000
## 1493      GBA                   Swing! Entertainment 0.03000000
## 1494       PS                   Swing! Entertainment 0.05000000
## 1495      PS2                   Swing! Entertainment 0.08666667
## 1496       XB                   Swing! Entertainment 0.14000000
## 1497       PS                                 Syscom 0.13500000
## 1498      PS3                               System 3 0.01000000
## 1499      PS4                               System 3 0.16000000
## 1500      PSV                               System 3 0.05000000
## 1501       DS               System 3 Arcade Software 0.07000000
## 1502      PS2               System 3 Arcade Software 0.12000000
## 1503      PS3               System 3 Arcade Software 0.04000000
## 1504      PSP               System 3 Arcade Software 0.08500000
## 1505      Wii               System 3 Arcade Software 0.20333333
## 1506      PSP                            System Soft 0.01250000
## 1507     SNES                               T&E Soft 0.12000000
## 1508     2600                                  Taito 0.24000000
## 1509       DS                                  Taito 0.02000000
## 1510      GBA                                  Taito 0.05000000
## 1511       GC                                  Taito 0.01000000
## 1512      N64                                  Taito 0.12000000
## 1513       PS                                  Taito 0.75000000
## 1514      PS2                                  Taito 0.05400000
## 1515      SAT                                  Taito 0.03000000
## 1516     SNES                                  Taito 0.24500000
## 1517      Wii                                  Taito 0.03500000
## 1518      GBA                                 Takara 0.22000000
## 1519      N64                                 Takara 0.05000000
## 1520       PS                                 Takara 0.20166667
## 1521      PS2                                 Takara 0.04000000
## 1522     SNES                                 Takara 0.37000000
## 1523      3DS                            Takara Tomy 0.09000000
## 1524       DS                            Takara Tomy 0.07818182
## 1525      PSP                            Takara Tomy 0.06000000
## 1526      Wii                            Takara Tomy 0.05500000
## 1527     X360                            Takara Tomy 0.09000000
## 1528      3DS                   Take-Two Interactive 0.07500000
## 1529       DS                   Take-Two Interactive 0.32620690
## 1530      GBA                   Take-Two Interactive 0.08750000
## 1531       GC                   Take-Two Interactive 0.09750000
## 1532      N64                   Take-Two Interactive 0.25250000
## 1533       PC                   Take-Two Interactive 0.27577778
## 1534       PS                   Take-Two Interactive 0.78388889
## 1535      PS2                   Take-Two Interactive 1.51016667
## 1536      PS3                   Take-Two Interactive 1.58245283
## 1537      PS4                   Take-Two Interactive 2.10916667
## 1538      PSP                   Take-Two Interactive 0.94173913
## 1539      PSV                   Take-Two Interactive 0.42500000
## 1540      Wii                   Take-Two Interactive 0.48078947
## 1541     WiiU                   Take-Two Interactive 0.14000000
## 1542     X360                   Take-Two Interactive 1.37000000
## 1543       XB                   Take-Two Interactive 0.33472222
## 1544     XOne                   Take-Two Interactive 1.08333333
## 1545      PSP                                 Takuyo 0.01000000
## 1546       PS                              TalonSoft 0.87000000
## 1547       DS                               TDK Core 0.08333333
## 1548      GBA                               TDK Core 0.19000000
## 1549       PS                               TDK Core 0.18000000
## 1550      GBA                         TDK Mediactive 0.31363636
## 1551       GC                         TDK Mediactive 0.06444444
## 1552       PS                         TDK Mediactive 0.15500000
## 1553      PS2                         TDK Mediactive 0.42500000
## 1554       XB                         TDK Mediactive 0.17750000
## 1555       PC                        Team17 Software 0.05000000
## 1556       NG              Technos Japan Corporation 0.02000000
## 1557       PS                             TechnoSoft 0.05000000
## 1558      3DS                             Tecmo Koei 0.07444444
## 1559       DS                             Tecmo Koei 0.07461538
## 1560      GBA                             Tecmo Koei 0.01000000
## 1561       GC                             Tecmo Koei 0.09000000
## 1562       PS                             Tecmo Koei 0.18166667
## 1563      PS2                             Tecmo Koei 0.22317647
## 1564      PS3                             Tecmo Koei 0.19089286
## 1565      PS4                             Tecmo Koei 0.11863636
## 1566      PSP                             Tecmo Koei 0.08606061
## 1567      PSV                             Tecmo Koei 0.08750000
## 1568      SAT                             Tecmo Koei 0.13666667
## 1569     SNES                             Tecmo Koei 0.37125000
## 1570      Wii                             Tecmo Koei 0.08833333
## 1571     WiiU                             Tecmo Koei 0.04000000
## 1572     X360                             Tecmo Koei 0.19173913
## 1573       XB                             Tecmo Koei 0.15500000
## 1574     XOne                             Tecmo Koei 0.04833333
## 1575       DS                              Telegames 0.19750000
## 1576      GBA                              Telegames 0.07333333
## 1577       PS                              Telegames 0.02000000
## 1578      PS3                         Telltale Games 0.09600000
## 1579      PS4                         Telltale Games 0.18285714
## 1580      PSV                         Telltale Games 0.11000000
## 1581      Wii                         Telltale Games 0.06000000
## 1582     X360                         Telltale Games 0.05500000
## 1583     XOne                         Telltale Games 0.07666667
## 1584       PS                                Telstar 0.09000000
## 1585      3DS                          Tetris Online 0.43000000
## 1586      PSP                                    TGL 0.01000000
## 1587      PSV                                    TGL 0.03000000
## 1588       DS                  The Adventure Company 0.15000000
## 1589      Wii                  The Adventure Company 0.09000000
## 1590       PS                   The Learning Company 0.05000000
## 1591      3DS                                    THQ 0.17333333
## 1592       DS                                    THQ 0.31895652
## 1593      GBA                                    THQ 0.43481818
## 1594       GC                                    THQ 0.29723404
## 1595      N64                                    THQ 0.59500000
## 1596       PC                                    THQ 0.10793103
## 1597       PS                                    THQ 1.09407407
## 1598      PS2                                    THQ 0.75370000
## 1599      PS3                                    THQ 0.59195652
## 1600      PSP                                    THQ 0.47133333
## 1601     SNES                                    THQ 0.49000000
## 1602      Wii                                    THQ 0.43276316
## 1603     WiiU                                    THQ 0.16000000
## 1604     X360                                    THQ 0.59765625
## 1605       XB                                    THQ 0.20541667
## 1606     2600                            Tigervision 0.47333333
## 1607       PS                Time Warner Interactive 0.07000000
## 1608      GBA                                  Titus 0.03250000
## 1609       GC                                  Titus 0.15000000
## 1610      N64                                  Titus 0.24666667
## 1611       PS                                  Titus 0.12000000
## 1612      PS2                                  Titus 0.37000000
## 1613     SNES                                  Titus 0.07000000
## 1614       XB                                  Titus 0.02000000
## 1615       DS                                 Tivola 0.05666667
## 1616     SNES                                   TOHO 0.11000000
## 1617       DS                                  Tommo 0.03666667
## 1618      Wii                                  Tommo 0.05000000
## 1619       DS                       Tomy Corporation 0.11000000
## 1620      GBA                       Tomy Corporation 0.15000000
## 1621       GC                       Tomy Corporation 0.36200000
## 1622       PS                       Tomy Corporation 0.22500000
## 1623      Wii                       Tomy Corporation 0.70500000
## 1624       PC                    TopWare Interactive 0.03000000
## 1625      PS3                    TopWare Interactive 0.05000000
## 1626      PS4                    TopWare Interactive 0.01000000
## 1627     X360                    TopWare Interactive 0.03000000
## 1628       DS                             Touchstone 0.14000000
## 1629       PC                             Touchstone 0.01000000
## 1630      PS3                             Touchstone 0.68000000
## 1631     X360                             Touchstone 0.75000000
## 1632      PS3                              Tradewest 0.04000000
## 1633      Wii                              Tradewest 0.05000000
## 1634     X360                              Tradewest 0.02000000
## 1635       PC                           Trion Worlds 0.11000000
## 1636      PS3                           Trion Worlds 0.36000000
## 1637     X360                           Trion Worlds 0.57000000
## 1638       PC                   Tripwire Interactive 0.14000000
## 1639      PS3                  Tru Blu Entertainment 0.02500000
## 1640      PS4                  Tru Blu Entertainment 0.07000000
## 1641     X360                  Tru Blu Entertainment 0.02000000
## 1642     XOne                  Tru Blu Entertainment 0.02500000
## 1643      PS2                               Tryfirst 0.03000000
## 1644       PS                                    TYO 0.42000000
## 1645      PSV                              Type-Moon 0.10000000
## 1646       PS                              U.S. Gold 0.08250000
## 1647      3DS                                Ubisoft 0.20523810
## 1648       DC                                Ubisoft 0.20000000
## 1649       DS                                Ubisoft 0.32988950
## 1650       GB                                Ubisoft 0.12000000
## 1651      GBA                                Ubisoft 0.18566038
## 1652       GC                                Ubisoft 0.12222222
## 1653      N64                                Ubisoft 0.16500000
## 1654       PC                                Ubisoft 0.19973684
## 1655       PS                                Ubisoft 0.36833333
## 1656      PS2                                Ubisoft 0.48500000
## 1657      PS3                                Ubisoft 0.97013699
## 1658      PS4                                Ubisoft 1.31916667
## 1659      PSP                                Ubisoft 0.24973684
## 1660      PSV                                Ubisoft 0.30636364
## 1661      Wii                                Ubisoft 0.80182609
## 1662     WiiU                                Ubisoft 0.36125000
## 1663     X360                                Ubisoft 0.82414141
## 1664       XB                                Ubisoft 0.51911111
## 1665     XOne                                Ubisoft 0.71640000
## 1666      3DS                         Ubisoft Annecy 0.27500000
## 1667      PS3                         Ubisoft Annecy 0.48400000
## 1668      PSP                         Ubisoft Annecy 0.21250000
## 1669     X360                         Ubisoft Annecy 0.21333333
## 1670       PS                            UEP Systems 2.25000000
## 1671      3DS                        UFO Interactive 0.01000000
## 1672       DS                        UFO Interactive 0.07000000
## 1673      Wii                        UFO Interactive 0.05000000
## 1674      PS4                      UIG Entertainment 0.01000000
## 1675     2600                            Ultravision 0.47000000
## 1676     2600                        Universal Gamex 0.63000000
## 1677      GBA                  Universal Interactive 0.63800000
## 1678       GC                  Universal Interactive 0.34200000
## 1679      PS2                  Universal Interactive 1.28250000
## 1680       XB                  Universal Interactive 0.52200000
## 1681     2600                                Unknown 0.29000000
## 1682      3DS                                Unknown 0.09777778
## 1683       DS                                Unknown 0.06545455
## 1684      GBA                                Unknown 0.24363636
## 1685       GC                                Unknown 0.10000000
## 1686      N64                                Unknown 0.14000000
## 1687       PC                                Unknown 0.08954545
## 1688       PS                                Unknown 0.36250000
## 1689      PS2                                Unknown 0.42666667
## 1690      PS3                                Unknown 0.14466667
## 1691      PS4                                Unknown 0.08000000
## 1692      PSP                                Unknown 0.24461538
## 1693      PSV                                Unknown 0.01666667
## 1694      Wii                                Unknown 0.14500000
## 1695     X360                                Unknown 0.17083333
## 1696       XB                                Unknown 0.18916667
## 1697     XOne                                Unknown 0.03000000
## 1698       DS                           Valcon Games 0.05000000
## 1699      PS2                           Valcon Games 0.07000000
## 1700      Wii                           Valcon Games 0.04333333
## 1701     X360                           Valcon Games 0.06500000
## 1702       DS                               ValuSoft 0.07000000
## 1703       PC                               ValuSoft 0.01000000
## 1704      PS2                               ValuSoft 0.24000000
## 1705      PS3                                  Valve 1.74000000
## 1706       PC                         Valve Software 0.56500000
## 1707     X360                         Valve Software 2.10000000
## 1708     SNES                                    Vap 0.05000000
## 1709      N64                  Vatical Entertainment 0.06000000
## 1710       PS                  Vatical Entertainment 0.16000000
## 1711      N64                              Vic Tokai 0.15000000
## 1712       PS                              Vic Tokai 0.12000000
## 1713       GB                     Victor Interactive 0.23000000
## 1714      GBA                     Victor Interactive 0.02000000
## 1715       PS                     Victor Interactive 0.13666667
## 1716      PS2                     Victor Interactive 0.05000000
## 1717      SAT                     Victor Interactive 0.02000000
## 1718     SNES                     Victor Interactive 0.11000000
## 1719      N64                           Video System 0.89500000
## 1720       PS                           Video System 0.11000000
## 1721     SNES                           Video System 0.28000000
## 1722      PS3                                  Views 0.01000000
## 1723      PSP                                  Views 0.02000000
## 1724       DS                          Vir2L Studios 0.05000000
## 1725      Wii                          Vir2L Studios 0.16000000
## 1726       DC                     Virgin Interactive 0.18000000
## 1727       GC                     Virgin Interactive 0.12000000
## 1728      GEN                     Virgin Interactive 1.41000000
## 1729      N64                     Virgin Interactive 0.20750000
## 1730       PC                     Virgin Interactive 1.81500000
## 1731       PS                     Virgin Interactive 0.65923077
## 1732      PS2                     Virgin Interactive 0.90166667
## 1733      SAT                     Virgin Interactive 0.33000000
## 1734     SNES                     Virgin Interactive 1.79000000
## 1735       XB                     Virgin Interactive 0.20000000
## 1736      Wii                     Virtual Play Games 0.03000000
## 1737       PC                                  Visco 0.02000000
## 1738       DS                          Vivendi Games 0.24230769
## 1739      GBA                          Vivendi Games 0.41521739
## 1740       GC                          Vivendi Games 0.21200000
## 1741       PC                          Vivendi Games 0.35913043
## 1742       PS                          Vivendi Games 0.25000000
## 1743      PS2                          Vivendi Games 0.61354839
## 1744      PS3                          Vivendi Games 0.36200000
## 1745      PSP                          Vivendi Games 0.24625000
## 1746      Wii                          Vivendi Games 0.26111111
## 1747     X360                          Vivendi Games 0.29444444
## 1748       XB                          Vivendi Games 0.22192308
## 1749      GBA                                Wanadoo 0.01000000
## 1750       GC                                Wanadoo 0.02000000
## 1751      PS2                                Wanadoo 0.30000000
## 1752       XB                                Wanadoo 0.02000000
## 1753       DC                                Warashi 0.02000000
## 1754       PC                          Wargaming.net 0.29000000
## 1755      3DS Warner Bros. Interactive Entertainment 0.35722222
## 1756       DS Warner Bros. Interactive Entertainment 0.63437500
## 1757       GC Warner Bros. Interactive Entertainment 0.17000000
## 1758       PC Warner Bros. Interactive Entertainment 0.14900000
## 1759      PS2 Warner Bros. Interactive Entertainment 0.38500000
## 1760      PS3 Warner Bros. Interactive Entertainment 0.92437500
## 1761      PS4 Warner Bros. Interactive Entertainment 1.39857143
## 1762      PSP Warner Bros. Interactive Entertainment 0.56600000
## 1763      PSV Warner Bros. Interactive Entertainment 0.33062500
## 1764      Wii Warner Bros. Interactive Entertainment 0.71500000
## 1765     WiiU Warner Bros. Interactive Entertainment 0.34200000
## 1766     X360 Warner Bros. Interactive Entertainment 0.94588235
## 1767     XOne Warner Bros. Interactive Entertainment 0.70769231
## 1768      SAT                                   Warp 0.07000000
## 1769      3DS                WayForward Technologies 0.05000000
## 1770       PC                       Westwood Studios 1.55000000
## 1771       DS                White Park Bay Software 0.16000000
## 1772     2600                     Wizard Video Games 0.62000000
## 1773      PS2                      Xicat Interactive 0.11000000
## 1774       XB                      Xicat Interactive 0.03000000
## 1775       PS                     Xing Entertainment 0.24000000
## 1776      PS2                                Xplosiv 0.17250000
## 1777      PSP                                Xplosiv 0.08000000
## 1778      Wii                                Xplosiv 0.31500000
## 1779      GBA                               XS Games 0.01000000
## 1780       PS                               XS Games 0.24000000
## 1781      PS2                               XS Games 0.06333333
## 1782      Wii                               XS Games 0.19000000
## 1783     X360                               XS Games 0.21000000
## 1784       XB                               XS Games 0.04000000
## 1785      3DS                            Xseed Games 0.55000000
## 1786      PS4                            Xseed Games 0.05000000
## 1787      PSV                            Xseed Games 0.15000000
## 1788      3DS                       Yacht Club Games 0.13000000
## 1789      PS4                       Yacht Club Games 0.08000000
## 1790     WiiU                       Yacht Club Games 0.11000000
## 1791      PS2                   Yamasa Entertainment 0.02000000
## 1792      PSP                   Yamasa Entertainment 0.02000000
## 1793      PS2                                   Yeti 0.02250000
## 1794      PS4                                   Yeti 0.02000000
## 1795      PSP                                   Yeti 0.02400000
## 1796     X360                                   Yeti 0.01000000
## 1797      PS2                                 Yuke's 0.02666667
## 1798      SAT                                Yumedia 0.06000000
## 1799      PSP                                 Zenrin 0.03000000
## 1800       DS                 Zoo Digital Publishing 0.07961538
## 1801      GBA                 Zoo Digital Publishing 0.10526316
## 1802       GC                 Zoo Digital Publishing 0.02000000
## 1803      PS2                 Zoo Digital Publishing 0.28363636
## 1804      Wii                 Zoo Digital Publishing 0.12944444
## 1805       XB                 Zoo Digital Publishing 0.13300000
## 1806       DS                              Zoo Games 0.08200000
## 1807      Wii                              Zoo Games 0.16727273
## 1808     X360                              Zoo Games 0.32000000
## 1809       DS                            Zushi Games 0.02857143
## 1810      PSP                            Zushi Games 0.13000000
## 1811      Wii                            Zushi Games 0.16625000
## 1812     X360                            Zushi Games 0.11500000
aggregate(Global_Sales,by=list(Year = Year,Genre = Genre),mean)
##     Year        Genre           x
## 1   1980       Action  0.34000000
## 2   1981       Action  0.59360000
## 3   1982       Action  0.36222222
## 4   1983       Action  0.40857143
## 5   1984       Action  1.85000000
## 6   1985       Action  1.76000000
## 7   1986       Action  2.29000000
## 8   1987       Action  0.56000000
## 9   1988       Action  0.87500000
## 10  1989       Action  2.32000000
## 11  1990       Action  2.13000000
## 12  1991       Action  1.35200000
## 13  1992       Action  3.83000000
## 14  1993       Action  0.30166667
## 15  1994       Action  0.38750000
## 16  1995       Action  0.44625000
## 17  1996       Action  1.02900000
## 18  1997       Action  0.88967742
## 19  1998       Action  0.89636364
## 20  1999       Action  0.69450000
## 21  2000       Action  0.77363636
## 22  2001       Action  0.88641791
## 23  2002       Action  0.69416000
## 24  2003       Action  0.47173611
## 25  2004       Action  0.61008000
## 26  2005       Action  0.44630208
## 27  2006       Action  0.36184783
## 28  2007       Action  0.50473934
## 29  2008       Action  0.61714932
## 30  2009       Action  0.51235294
## 31  2010       Action  0.52053097
## 32  2011       Action  0.49774059
## 33  2012       Action  0.45879699
## 34  2013       Action  0.84608108
## 35  2014       Action  0.53236559
## 36  2015       Action  0.27725490
## 37  2016       Action  0.16731092
## 38  2017       Action  0.01000000
## 39   N/A       Action  0.44920635
## 40  1983    Adventure  0.40000000
## 41  1987    Adventure  4.38000000
## 42  1991    Adventure  1.12000000
## 43  1992    Adventure  3.06000000
## 44  1993    Adventure  0.07000000
## 45  1994    Adventure  0.93500000
## 46  1995    Adventure  0.05538462
## 47  1996    Adventure  0.24647059
## 48  1997    Adventure  0.35428571
## 49  1998    Adventure  0.39347826
## 50  1999    Adventure  0.40000000
## 51  2000    Adventure  0.18625000
## 52  2001    Adventure  0.43428571
## 53  2002    Adventure  0.26309524
## 54  2003    Adventure  0.17833333
## 55  2004    Adventure  0.22307692
## 56  2005    Adventure  0.20309524
## 57  2006    Adventure  0.16154930
## 58  2007    Adventure  0.29130952
## 59  2008    Adventure  0.15072289
## 60  2009    Adventure  0.14666667
## 61  2010    Adventure  0.10759740
## 62  2011    Adventure  0.14796296
## 63  2012    Adventure  0.10327586
## 64  2013    Adventure  0.11016667
## 65  2014    Adventure  0.08080000
## 66  2015    Adventure  0.14870370
## 67  2016    Adventure  0.05323529
## 68   N/A    Adventure  0.42400000
## 69  1980     Fighting  0.77000000
## 70  1985     Fighting  1.05000000
## 71  1987     Fighting  2.71000000
## 72  1991     Fighting  0.39000000
## 73  1992     Fighting  2.17857143
## 74  1993     Fighting  0.79545455
## 75  1994     Fighting  0.38500000
## 76  1995     Fighting  0.51206897
## 77  1996     Fighting  0.60200000
## 78  1997     Fighting  0.42000000
## 79  1998     Fighting  0.77219512
## 80  1999     Fighting  0.59416667
## 81  2000     Fighting  0.69724138
## 82  2001     Fighting  1.00666667
## 83  2002     Fighting  0.46333333
## 84  2003     Fighting  0.53931818
## 85  2004     Fighting  0.43025641
## 86  2005     Fighting  0.45860465
## 87  2006     Fighting  0.41000000
## 88  2007     Fighting  0.35220000
## 89  2008     Fighting  0.62070175
## 90  2009     Fighting  0.60660377
## 91  2010     Fighting  0.37225000
## 92  2011     Fighting  0.45360000
## 93  2012     Fighting  0.32793103
## 94  2013     Fighting  0.36050000
## 95  2014     Fighting  0.70217391
## 96  2015     Fighting  0.37047619
## 97  2016     Fighting  0.27571429
## 98   N/A     Fighting  0.40500000
## 99  1980         Misc  0.67750000
## 100 1982         Misc  0.87000000
## 101 1983         Misc  2.14000000
## 102 1984         Misc  1.45000000
## 103 1989         Misc  1.28000000
## 104 1991         Misc  0.08000000
## 105 1992         Misc  2.47000000
## 106 1993         Misc  0.10000000
## 107 1994         Misc  0.47666667
## 108 1995         Misc  0.29090909
## 109 1996         Misc  0.46434783
## 110 1997         Misc  0.47416667
## 111 1998         Misc  0.54272727
## 112 1999         Misc  0.82600000
## 113 2000         Misc  0.77700000
## 114 2001         Misc  0.63076923
## 115 2002         Misc  0.34822222
## 116 2003         Misc  0.44943396
## 117 2004         Misc  0.36847059
## 118 2005         Misc  0.53252174
## 119 2006         Misc  0.61788991
## 120 2007         Misc  0.61105960
## 121 2008         Misc  0.41051887
## 122 2009         Misc  0.37169082
## 123 2010         Misc  0.48189055
## 124 2011         Misc  0.30478261
## 125 2012         Misc  0.60315789
## 126 2013         Misc  0.61071429
## 127 2014         Misc  0.57756098
## 128 2015         Misc  0.29974359
## 129 2016         Misc  0.06500000
## 130  N/A         Misc  0.42551724
## 131 1981     Platform  2.31000000
## 132 1982     Platform  1.00600000
## 133 1983     Platform  1.38600000
## 134 1984     Platform  0.69000000
## 135 1985     Platform 10.79250000
## 136 1986     Platform  1.56500000
## 137 1987     Platform  0.87000000
## 138 1988     Platform  6.93250000
## 139 1989     Platform  6.88666667
## 140 1990     Platform  7.65666667
## 141 1991     Platform  1.27333333
## 142 1992     Platform  2.23666667
## 143 1993     Platform  1.69727273
## 144 1994     Platform  2.61272727
## 145 1995     Platform  1.28384615
## 146 1996     Platform  2.01642857
## 147 1997     Platform  1.21388889
## 148 1998     Platform  1.19520000
## 149 1999     Platform  1.15666667
## 150 2000     Platform  0.66916667
## 151 2001     Platform  0.91348837
## 152 2002     Platform  0.59701299
## 153 2003     Platform  0.49298851
## 154 2004     Platform  0.71727273
## 155 2005     Platform  0.28385542
## 156 2006     Platform  0.92222222
## 157 2007     Platform  0.84738095
## 158 2008     Platform  0.57580645
## 159 2009     Platform  1.41689655
## 160 2010     Platform  1.02903226
## 161 2011     Platform  0.75972973
## 162 2012     Platform  1.54583333
## 163 2013     Platform  0.67891892
## 164 2014     Platform  0.88900000
## 165 2015     Platform  0.43214286
## 166 2016     Platform  0.20700000
## 167  N/A     Platform  0.22200000
## 168 1981       Puzzle  1.12000000
## 169 1982       Puzzle  3.34333333
## 170 1983       Puzzle  0.78000000
## 171 1984       Puzzle  1.04666667
## 172 1985       Puzzle  0.80250000
## 173 1988       Puzzle  5.58000000
## 174 1989       Puzzle  7.55000000
## 175 1990       Puzzle  3.00000000
## 176 1991       Puzzle  0.81000000
## 177 1992       Puzzle  0.96800000
## 178 1993       Puzzle  1.05666667
## 179 1994       Puzzle  0.51000000
## 180 1995       Puzzle  0.22583333
## 181 1996       Puzzle  0.43444444
## 182 1997       Puzzle  0.42071429
## 183 1998       Puzzle  0.48769231
## 184 1999       Puzzle  0.22666667
## 185 2000       Puzzle  0.31833333
## 186 2001       Puzzle  0.53333333
## 187 2002       Puzzle  0.26700000
## 188 2003       Puzzle  0.30250000
## 189 2004       Puzzle  0.33720000
## 190 2005       Puzzle  0.61969697
## 191 2006       Puzzle  0.25348837
## 192 2007       Puzzle  0.36363636
## 193 2008       Puzzle  0.24359375
## 194 2009       Puzzle  0.25708861
## 195 2010       Puzzle  0.24844444
## 196 2011       Puzzle  0.11883721
## 197 2012       Puzzle  0.16000000
## 198 2013       Puzzle  0.33000000
## 199 2014       Puzzle  0.18750000
## 200 2015       Puzzle  0.11666667
## 201  N/A       Puzzle  0.24818182
## 202 1981       Racing  0.48000000
## 203 1982       Racing  0.78500000
## 204 1984       Racing  1.98333333
## 205 1986       Racing  1.96000000
## 206 1988       Racing  2.14000000
## 207 1990       Racing  3.13000000
## 208 1991       Racing  1.14000000
## 209 1992       Racing  4.52000000
## 210 1993       Racing  0.18000000
## 211 1994       Racing  0.27375000
## 212 1995       Racing  0.50750000
## 213 1996       Racing  1.28363636
## 214 1997       Racing  0.88638889
## 215 1998       Racing  0.56938776
## 216 1999       Racing  0.76061224
## 217 2000       Racing  0.46488372
## 218 2001       Racing  0.78605634
## 219 2002       Racing  0.29320388
## 220 2003       Racing  0.47880734
## 221 2004       Racing  0.67408451
## 222 2005       Racing  0.73272727
## 223 2006       Racing  0.45453333
## 224 2007       Racing  0.45546512
## 225 2008       Racing  0.86170732
## 226 2009       Racing  0.40702381
## 227 2010       Racing  0.61280702
## 228 2011       Racing  0.53861538
## 229 2012       Racing  0.48200000
## 230 2013       Racing  0.81500000
## 231 2014       Racing  0.61814815
## 232 2015       Racing  0.41684211
## 233 2016       Racing  0.08200000
## 234  N/A       Racing  0.22913043
## 235 1986 Role-Playing  2.52000000
## 236 1987 Role-Playing  1.55000000
## 237 1988 Role-Playing  1.96000000
## 238 1989 Role-Playing  1.10000000
## 239 1990 Role-Playing  2.26000000
## 240 1991 Role-Playing  0.65000000
## 241 1992 Role-Playing  1.37200000
## 242 1993 Role-Playing  0.62111111
## 243 1994 Role-Playing  0.41823529
## 244 1995 Role-Playing  0.59416667
## 245 1996 Role-Playing  1.57000000
## 246 1997 Role-Playing  0.94739130
## 247 1998 Role-Playing  1.08038462
## 248 1999 Role-Playing  1.48757576
## 249 2000 Role-Playing  1.00103448
## 250 2001 Role-Playing  0.53804878
## 251 2002 Role-Playing  0.82054545
## 252 2003 Role-Playing  0.63083333
## 253 2004 Role-Playing  0.89916667
## 254 2005 Role-Playing  0.40211268
## 255 2006 Role-Playing  0.52481818
## 256 2007 Role-Playing  0.42611650
## 257 2008 Role-Playing  0.53419643
## 258 2009 Role-Playing  0.46504854
## 259 2010 Role-Playing  0.68466019
## 260 2011 Role-Playing  0.56178947
## 261 2012 Role-Playing  0.61294872
## 262 2013 Role-Playing  0.63267606
## 263 2014 Role-Playing  0.50395604
## 264 2015 Role-Playing  0.46717949
## 265 2016 Role-Playing  0.16900000
## 266 2017 Role-Playing  0.02000000
## 267  N/A Role-Playing  0.20764706
## 268 1980      Shooter  3.53500000
## 269 1981      Shooter  1.00400000
## 270 1982      Shooter  0.75800000
## 271 1983      Shooter  0.48000000
## 272 1984      Shooter 10.36666667
## 273 1985      Shooter  1.00000000
## 274 1986      Shooter  0.97250000
## 275 1987      Shooter  0.35500000
## 276 1988      Shooter  0.51000000
## 277 1989      Shooter  1.20000000
## 278 1991      Shooter  0.66666667
## 279 1992      Shooter  0.09666667
## 280 1993      Shooter  1.54000000
## 281 1994      Shooter  0.75454545
## 282 1995      Shooter  0.14310345
## 283 1996      Shooter  0.30043478
## 284 1997      Shooter  0.82111111
## 285 1998      Shooter  0.42608696
## 286 1999      Shooter  0.76562500
## 287 2000      Shooter  0.34050000
## 288 2001      Shooter  0.68805556
## 289 2002      Shooter  0.61493671
## 290 2003      Shooter  0.37178082
## 291 2004      Shooter  0.53352273
## 292 2005      Shooter  0.43333333
## 293 2006      Shooter  0.55608696
## 294 2007      Shooter  0.83576471
## 295 2008      Shooter  0.71698795
## 296 2009      Shooter  0.76802198
## 297 2010      Shooter  0.95567901
## 298 2011      Shooter  1.05702128
## 299 2012      Shooter  1.51791667
## 300 2013      Shooter  1.06440678
## 301 2014      Shooter  1.40425532
## 302 2015      Shooter  1.94558824
## 303 2016      Shooter  0.56937500
## 304  N/A      Shooter  0.39892857
## 305 1981   Simulation  0.45000000
## 306 1985   Simulation  0.03000000
## 307 1988   Simulation  0.03000000
## 308 1990   Simulation  1.14000000
## 309 1991   Simulation  1.07000000
## 310 1992   Simulation  2.14000000
## 311 1993   Simulation  0.19000000
## 312 1994   Simulation  0.39000000
## 313 1995   Simulation  0.29857143
## 314 1996   Simulation  0.87153846
## 315 1997   Simulation  0.50789474
## 316 1998   Simulation  0.88875000
## 317 1999   Simulation  0.57200000
## 318 2000   Simulation  0.22533333
## 319 2001   Simulation  0.69785714
## 320 2002   Simulation  0.56894737
## 321 2003   Simulation  0.60600000
## 322 2004   Simulation  0.40185185
## 323 2005   Simulation  1.29657895
## 324 2006   Simulation  0.37534483
## 325 2007   Simulation  0.54411111
## 326 2008   Simulation  0.39294118
## 327 2009   Simulation  0.27406504
## 328 2010   Simulation  0.27012195
## 329 2011   Simulation  0.27285714
## 330 2012   Simulation  0.74333333
## 331 2013   Simulation  0.48166667
## 332 2014   Simulation  0.50454545
## 333 2015   Simulation  0.37466667
## 334 2016   Simulation  0.04333333
## 335 2020   Simulation  0.29000000
## 336  N/A   Simulation  0.12750000
## 337 1980       Sports  0.49000000
## 338 1981       Sports  0.19750000
## 339 1982       Sports  0.52500000
## 340 1983       Sports  3.20000000
## 341 1984       Sports  3.09000000
## 342 1985       Sports  1.96000000
## 343 1986       Sports  1.85666667
## 344 1987       Sports  0.93000000
## 345 1988       Sports  1.80000000
## 346 1989       Sports  1.90666667
## 347 1990       Sports  0.70333333
## 348 1991       Sports  0.34428571
## 349 1992       Sports  0.73750000
## 350 1993       Sports  0.35333333
## 351 1994       Sports  0.38136364
## 352 1995       Sports  0.27517241
## 353 1996       Sports  0.33557692
## 354 1997       Sports  0.65260870
## 355 1998       Sports  0.59700000
## 356 1999       Sports  0.48854839
## 357 2000       Sports  0.50851852
## 358 2001       Sports  0.53572917
## 359 2002       Sports  0.34797872
## 360 2003       Sports  0.44888000
## 361 2004       Sports  0.60075472
## 362 2005       Sports  0.48803279
## 363 2006       Sports  0.98666667
## 364 2007       Sports  0.58802395
## 365 2008       Sports  0.47670000
## 366 2009       Sports  0.75282609
## 367 2010       Sports  0.49747312
## 368 2011       Sports  0.46713115
## 369 2012       Sports  0.57277778
## 370 2013       Sports  0.78396226
## 371 2014       Sports  0.84836364
## 372 2015       Sports  0.67000000
## 373 2016       Sports  0.38421053
## 374  N/A       Sports  0.51642857
## 375 1991     Strategy  0.23500000
## 376 1992     Strategy  0.12000000
## 377 1993     Strategy  0.40500000
## 378 1994     Strategy  0.59333333
## 379 1995     Strategy  0.46500000
## 380 1996     Strategy  0.46750000
## 381 1997     Strategy  0.36714286
## 382 1998     Strategy  0.38485714
## 383 1999     Strategy  0.71000000
## 384 2000     Strategy  0.53125000
## 385 2001     Strategy  0.37750000
## 386 2002     Strategy  0.25272727
## 387 2003     Strategy  0.21594595
## 388 2004     Strategy  0.22468750
## 389 2005     Strategy  0.18517241
## 390 2006     Strategy  0.10166667
## 391 2007     Strategy  0.14059701
## 392 2008     Strategy  0.23380000
## 393 2009     Strategy  0.19323077
## 394 2010     Strategy  0.26169811
## 395 2011     Strategy  0.19695652
## 396 2012     Strategy  0.22200000
## 397 2013     Strategy  0.33315789
## 398 2014     Strategy  0.12375000
## 399 2015     Strategy  0.10705882
## 400 2016     Strategy  0.05000000
## 401  N/A     Strategy  0.16900000
aggregate(Global_Sales,by=list(Year = Year,Publisher = Publisher),mean)
##      Year                              Publisher          x
## 1    2006                        10TACLE Studios 0.02000000
## 2    2007                        10TACLE Studios 0.04500000
## 3    2009                             1C Company 0.01000000
## 4    2011                             1C Company 0.04500000
## 5    1981           20th Century Fox Video Games 0.45000000
## 6    1982           20th Century Fox Video Games 0.29500000
## 7    2008                                 2D Boy 0.04000000
## 8    1998                                    3DO 0.20000000
## 9    1999                                    3DO 0.69000000
## 10   2000                                    3DO 0.30800000
## 11   2001                                    3DO 0.13181818
## 12   2002                                    3DO 0.15000000
## 13   2003                                    3DO 0.15000000
## 14   2009                                49Games 0.04000000
## 15   2002                              505 Games 0.29000000
## 16   2003                              505 Games 0.10000000
## 17   2004                              505 Games 0.08900000
## 18   2005                              505 Games 0.09769231
## 19   2006                              505 Games 0.34045455
## 20   2007                              505 Games 0.37250000
## 21   2008                              505 Games 0.21307692
## 22   2009                              505 Games 0.25233333
## 23   2010                              505 Games 0.64818182
## 24   2011                              505 Games 0.15714286
## 25   2012                              505 Games 0.29250000
## 26   2013                              505 Games 0.38500000
## 27   2014                              505 Games 0.29000000
## 28   2015                              505 Games 0.15250000
## 29   2016                              505 Games 0.07714286
## 30   2008                                    5pb 0.02000000
## 31   2009                                    5pb 0.02571429
## 32   2010                                    5pb 0.02900000
## 33   2011                                    5pb 0.03375000
## 34   2012                                    5pb 0.03250000
## 35   2013                                    5pb 0.02800000
## 36   2014                                    5pb 0.01857143
## 37   2015                                    5pb 0.02444444
## 38   2016                                    5pb 0.02000000
## 39   2010                               7G//AMES 0.01000000
## 40   2011                               7G//AMES 0.02333333
## 41   1999                             989 Sports 0.38000000
## 42   1997                            989 Studios 0.26000000
## 43   1998                            989 Studios 1.25666667
## 44   1999                            989 Studios 0.87666667
## 45   2010                               Abylight 0.08000000
## 46   1993                  Acclaim Entertainment 1.93000000
## 47   1994                  Acclaim Entertainment 0.82000000
## 48   1995                  Acclaim Entertainment 0.22363636
## 49   1996                  Acclaim Entertainment 0.24846154
## 50   1997                  Acclaim Entertainment 0.44900000
## 51   1998                  Acclaim Entertainment 0.59608696
## 52   1999                  Acclaim Entertainment 0.31916667
## 53   2000                  Acclaim Entertainment 0.37266667
## 54   2001                  Acclaim Entertainment 0.40375000
## 55   2002                  Acclaim Entertainment 0.23484848
## 56   2003                  Acclaim Entertainment 0.16642857
## 57   2004                  Acclaim Entertainment 0.15142857
## 58   1996                               Accolade 0.19000000
## 59   1997                               Accolade 1.30000000
## 60   1999                               Accolade 0.19000000
## 61   2009                            Ackkstudios 0.07000000
## 62   2010                            Ackkstudios 0.11000000
## 63   2011                            Ackkstudios 0.20500000
## 64   2012                            Ackkstudios 0.04166667
## 65   2006                                Acquire 0.05000000
## 66   2008                                Acquire 0.14000000
## 67   2009                                Acquire 0.08000000
## 68   2010                                Acquire 0.07333333
## 69   2011                                Acquire 0.07500000
## 70   2012                                Acquire 0.08500000
## 71   2014                                Acquire 0.11000000
## 72   1980                             Activision 0.60400000
## 73   1981                             Activision 1.41666667
## 74   1982                             Activision 0.46500000
## 75   1983                             Activision 0.64666667
## 76   1984                             Activision 0.27000000
## 77   1985                             Activision 0.24000000
## 78   1987                             Activision 0.56000000
## 79   1988                             Activision 0.37500000
## 80   1989                             Activision 0.47000000
## 81   1994                             Activision 2.08000000
## 82   1995                             Activision 4.21000000
## 83   1996                             Activision 0.65000000
## 84   1997                             Activision 0.85000000
## 85   1998                             Activision 0.53857143
## 86   1999                             Activision 0.94625000
## 87   2000                             Activision 1.11384615
## 88   2001                             Activision 0.80826087
## 89   2002                             Activision 0.51880000
## 90   2003                             Activision 0.62882353
## 91   2004                             Activision 0.83468085
## 92   2005                             Activision 0.50557143
## 93   2006                             Activision 0.34800000
## 94   2007                             Activision 0.84760000
## 95   2008                             Activision 0.76602273
## 96   2009                             Activision 0.64512397
## 97   2010                             Activision 0.71224719
## 98   2011                             Activision 0.68986667
## 99   2012                             Activision 1.26785714
## 100  2013                             Activision 1.14447368
## 101  2014                             Activision 1.05904762
## 102  2015                             Activision 0.91358974
## 103  2016                             Activision 0.26214286
## 104   N/A                             Activision 0.67222222
## 105  2014                    Activision Blizzard 0.48000000
## 106  2001                       Activision Value 0.21000000
## 107  2002                       Activision Value 0.09000000
## 108  2003                       Activision Value 0.48500000
## 109  2004                       Activision Value 0.06000000
## 110  2005                       Activision Value 0.05000000
## 111  2006                       Activision Value 0.08333333
## 112  2007                       Activision Value 0.14500000
## 113  2008                       Activision Value 0.16222222
## 114  2009                       Activision Value 0.47000000
## 115  1996                       Adeline Software 0.17000000
## 116  2010                               Aerosoft 0.01000000
## 117  2013                               Aerosoft 0.02000000
## 118  2004                 Agatsuma Entertainment 0.08000000
## 119  2012                 Agatsuma Entertainment 0.20000000
## 120  2013                 Agatsuma Entertainment 0.03000000
## 121  1997                                 Agetec 0.03000000
## 122  1998                                 Agetec 0.09500000
## 123  2002                                 Agetec 0.64500000
## 124  2003                                 Agetec 0.19500000
## 125  2009                                 Agetec 0.04000000
## 126  2008                            Aksys Games 0.02000000
## 127  2014                            Aksys Games 0.09000000
## 128  2015                            Aksys Games 0.04000000
## 129  2016                            Aksys Games 0.06000000
## 130  2009                   Alawar Entertainment 0.04000000
## 131  2015                   Alawar Entertainment 0.01000000
## 132  2006                              Alchemist 0.62000000
## 133  2007                              Alchemist 0.06333333
## 134  2008                              Alchemist 0.04285714
## 135  2009                              Alchemist 0.02000000
## 136  2010                              Alchemist 0.02600000
## 137  2011                              Alchemist 0.03142857
## 138  2012                              Alchemist 0.03250000
## 139  2013                              Alchemist 0.03250000
## 140  2015                              Alchemist 0.04000000
## 141  2010                   Alternative Software 0.07000000
## 142  2015                   Alternative Software 0.02000000
## 143  2016                   Alternative Software 0.02750000
## 144  2001                                 Altron 0.07000000
## 145  2009                                 Alvion 0.02000000
## 146  2010                                 Alvion 0.02000000
## 147  1996                     American Softworks 0.23000000
## 148  1991                          Angel Studios 0.29000000
## 149  1994                          Angel Studios 0.12000000
## 150  1995                          Angel Studios 0.03000000
## 151  1982                        Answer Software 0.50000000
## 152  2007                         AQ Interactive 0.16000000
## 153  2008                         AQ Interactive 0.22000000
## 154  2009                         AQ Interactive 0.05000000
## 155  1999                              Aqua Plus 0.14000000
## 156  2006                              Aqua Plus 0.11000000
## 157  2007                              Aqua Plus 0.01000000
## 158  2008                              Aqua Plus 0.08000000
## 159  2009                              Aqua Plus 0.03666667
## 160  2010                              Aqua Plus 0.03000000
## 161  2011                              Aqua Plus 0.05666667
## 162  2012                              Aqua Plus 0.07000000
## 163  2013                              Aqua Plus 0.05000000
## 164  2015                              Aqua Plus 0.05750000
## 165  2016                              Aqua Plus 0.03333333
## 166  1997                                  Aques 0.16000000
## 167  2008                       Arc System Works 0.06500000
## 168  2009                       Arc System Works 0.02333333
## 169  2010                       Arc System Works 0.03333333
## 170  2012                       Arc System Works 0.01500000
## 171  2013                       Arc System Works 0.07000000
## 172  2014                       Arc System Works 0.12750000
## 173  2015                       Arc System Works 0.02250000
## 174  1992                    Arena Entertainment 2.36000000
## 175  2006                                   Aria 0.07000000
## 176  2002                                  Arika 0.02000000
## 177  2004                                  Arika 0.05000000
## 178  2008                                  Arika 0.02000000
## 179  1994                                ArtDink 0.25000000
## 180  1996                                ArtDink 0.11000000
## 181  1998                                ArtDink 0.09000000
## 182  2001                                ArtDink 0.02500000
## 183  2009                                ArtDink 0.04000000
## 184  2010                                ArtDink 0.02000000
## 185  2014                                ArtDink 0.06000000
## 186  1999                             Aruze Corp 0.54000000
## 187  2000                             Aruze Corp 0.32000000
## 188  1996                              ASC Games 1.31000000
## 189  1998                              ASC Games 0.66000000
## 190  1999                              ASC Games 0.05000000
## 191  2012                  Ascaron Entertainment 0.01000000
## 192  2004             Ascaron Entertainment GmbH 0.04000000
## 193  2008             Ascaron Entertainment GmbH 0.03500000
## 194  1994                    ASCII Entertainment 0.87000000
## 195  1995                    ASCII Entertainment 0.62500000
## 196  1996                    ASCII Entertainment 0.57400000
## 197  1997                    ASCII Entertainment 0.55333333
## 198  1998                    ASCII Entertainment 0.21000000
## 199  1999                    ASCII Entertainment 0.61333333
## 200  2001                    ASCII Entertainment 0.32000000
## 201  2008                      ASCII Media Works 0.03000000
## 202  2009                      ASCII Media Works 0.03500000
## 203  2010                      ASCII Media Works 0.04000000
## 204  2011                      ASCII Media Works 0.01000000
## 205  2014                      ASCII Media Works 0.01000000
## 206  2010                                 Asgard 0.04666667
## 207  2011                                 Asgard 0.03000000
## 208  2012                                 Asgard 0.01000000
## 209  2013                                 Asgard 0.02500000
## 210  2015                                 Asgard 0.02000000
## 211  1996                                    ASK 0.03000000
## 212  1996                Asmik Ace Entertainment 0.10000000
## 213  2000                Asmik Ace Entertainment 0.09000000
## 214  2006                Asmik Ace Entertainment 0.04000000
## 215  1994                             Asmik Corp 0.07000000
## 216  1995                             Asmik Corp 0.10000000
## 217  2003                                  Aspyr 0.02000000
## 218  2007                                  Aspyr 0.01000000
## 219  2008                                  Aspyr 0.05500000
## 220  2009                                  Aspyr 0.12000000
## 221  2009                               Astragon 0.05000000
## 222  2010                               Astragon 0.17666667
## 223  2011                               Astragon 0.04000000
## 224  2016                               Astragon 0.02000000
## 225  2010                   Asylum Entertainment 0.10400000
## 226  2011                   Asylum Entertainment 0.07000000
## 227  1980                                  Atari 2.09000000
## 228  1981                                  Atari 0.76818182
## 229  1982                                  Atari 1.38785714
## 230  1983                                  Atari 0.56500000
## 231  1986                                  Atari 0.33000000
## 232  1987                                  Atari 0.21500000
## 233  1989                                  Atari 0.15000000
## 234  1998                                  Atari 0.73000000
## 235  1999                                  Atari 0.38333333
## 236  2000                                  Atari 2.40500000
## 237  2001                                  Atari 0.89444444
## 238  2002                                  Atari 0.45212766
## 239  2003                                  Atari 0.42600000
## 240  2004                                  Atari 0.29615385
## 241  2005                                  Atari 0.23277778
## 242  2006                                  Atari 0.18826087
## 243  2007                                  Atari 0.36677419
## 244  2008                                  Atari 0.27156250
## 245  2009                                  Atari 0.22550000
## 246  2010                                  Atari 0.13000000
## 247  2011                                  Atari 0.04600000
## 248  2012                                  Atari 0.05000000
## 249  2016                                  Atari 0.02000000
## 250   N/A                                  Atari 0.65312500
## 251  1999                                 Athena 0.02000000
## 252  2001                                 Athena 0.07000000
## 253  1994                                  Atlus 0.22500000
## 254  1995                                  Atlus 0.22200000
## 255  1996                                  Atlus 0.12500000
## 256  1997                                  Atlus 0.19500000
## 257  1998                                  Atlus 0.10500000
## 258  1999                                  Atlus 0.13000000
## 259  2000                                  Atlus 0.35000000
## 260  2001                                  Atlus 0.09000000
## 261  2002                                  Atlus 0.03000000
## 262  2003                                  Atlus 0.06333333
## 263  2004                                  Atlus 0.04500000
## 264  2006                                  Atlus 0.02500000
## 265  2007                                  Atlus 0.05000000
## 266  2008                                  Atlus 0.30000000
## 267  2009                                  Atlus 0.19200000
## 268  2010                                  Atlus 0.20500000
## 269  2011                                  Atlus 0.11200000
## 270  2012                                  Atlus 0.43000000
## 271  2013                                  Atlus 0.41500000
## 272  2014                                  Atlus 0.11800000
## 273  2015                                  Atlus 0.12666667
## 274  2016                                  Atlus 0.23000000
## 275  1982                     Avalon Interactive 0.17000000
## 276  1999                     Avalon Interactive 0.10000000
## 277  2002                     Avalon Interactive 0.05000000
## 278  2003                     Avalon Interactive 0.04000000
## 279  2004                     Avalon Interactive 0.06000000
## 280  2007                              Avanquest 0.17666667
## 281  2008                              Avanquest 0.09500000
## 282  2009                              Avanquest 0.12857143
## 283  2010                              Avanquest 0.19250000
## 284  2011                              Avanquest 0.07285714
## 285  2016                              Avanquest 0.02000000
## 286   N/A                              Avanquest 0.06000000
## 287  2012                     Avanquest Software 0.27333333
## 288  2013                     Avanquest Software 0.01000000
## 289  2015                     Avanquest Software 0.02000000
## 290  1998                                  Axela 0.25000000
## 291  2000                     BAM! Entertainment 0.11000000
## 292  2001                     BAM! Entertainment 0.17285714
## 293  2002                     BAM! Entertainment 0.16000000
## 294  2003                     BAM! Entertainment 0.10833333
## 295  2004                     BAM! Entertainment 0.03333333
## 296  1991                              Banpresto 0.25500000
## 297  1992                              Banpresto 0.16000000
## 298  1993                              Banpresto 1.70000000
## 299  1994                              Banpresto 0.12400000
## 300  1995                              Banpresto 0.15200000
## 301  1996                              Banpresto 0.53000000
## 302  1997                              Banpresto 0.43500000
## 303  1998                              Banpresto 0.23333333
## 304  1999                              Banpresto 0.24666667
## 305  2000                              Banpresto 0.80000000
## 306  2001                              Banpresto 0.36250000
## 307  2002                              Banpresto 0.25500000
## 308  2003                              Banpresto 0.21833333
## 309  2004                              Banpresto 0.25666667
## 310  2005                              Banpresto 0.22000000
## 311  2006                              Banpresto 0.08714286
## 312  2007                              Banpresto 0.17666667
## 313  2008                              Banpresto 0.11750000
## 314  2009                              Banpresto 0.16000000
## 315  2011                              Banpresto 0.20666667
## 316  2007                                Benesse 0.09500000
## 317  2008                                Benesse 0.03500000
## 318  2001                               Berkeley 0.03000000
## 319  2002                     Bethesda Softworks 1.31000000
## 320  2003                     Bethesda Softworks 0.20000000
## 321  2004                     Bethesda Softworks 0.12500000
## 322  2005                     Bethesda Softworks 0.09500000
## 323  2006                     Bethesda Softworks 0.05000000
## 324  2007                     Bethesda Softworks 0.51500000
## 325  2008                     Bethesda Softworks 1.62714286
## 326  2009                     Bethesda Softworks 0.21500000
## 327  2010                     Bethesda Softworks 2.80333333
## 328  2011                     Bethesda Softworks 2.09083333
## 329  2012                     Bethesda Softworks 0.81666667
## 330  2014                     Bethesda Softworks 0.78909091
## 331  2015                     Bethesda Softworks 1.49454545
## 332  2016                     Bethesda Softworks 0.75000000
## 333   N/A                     Bethesda Softworks 0.30500000
## 334  2002                    Big Ben Interactive 0.09000000
## 335  2004                    Big Ben Interactive 0.05000000
## 336  2008                    Big Ben Interactive 0.02000000
## 337  2009                    Big Ben Interactive 0.40500000
## 338  2011                    Big Ben Interactive 0.01000000
## 339  2013                    Big Ben Interactive 0.02000000
## 340  2008                         Big Fish Games 0.02000000
## 341  2014                         Big Fish Games 0.03000000
## 342  2015                     Bigben Interactive 0.06461538
## 343  2009                      bitComposer Games 0.03000000
## 344  2011                      bitComposer Games 0.09500000
## 345  2005                       Black Bean Games 0.01000000
## 346  2007                       Black Bean Games 0.05500000
## 347  2008                       Black Bean Games 0.11800000
## 348  2009                       Black Bean Games 0.06600000
## 349  2010                       Black Bean Games 0.15000000
## 350  2011                       Black Bean Games 0.07000000
## 351   N/A                       Black Bean Games 0.10500000
## 352  2002                      Black Label Games 1.20000000
## 353  2007               Blast! Entertainment Ltd 0.17000000
## 354  2008               Blast! Entertainment Ltd 0.02000000
## 355  2009               Blast! Entertainment Ltd 0.04750000
## 356  2001                              Blue Byte 0.01500000
## 357  1996          BMG Interactive Entertainment 0.09000000
## 358  1997          BMG Interactive Entertainment 0.11000000
## 359  1998          BMG Interactive Entertainment 0.58000000
## 360  2013                    Bohemia Interactive 0.12000000
## 361  1982                                   Bomb 0.22000000
## 362  2013                               Boost On 0.01000000
## 363  1991                                    BPS 0.32000000
## 364  1994                                    BPS 0.20000000
## 365  2007                    Brash Entertainment 0.10500000
## 366  2008                    Brash Entertainment 0.12750000
## 367  2006                               Broccoli 0.03000000
## 368  2007                               Broccoli 0.02333333
## 369  2008                               Broccoli 0.03000000
## 370  2009                               Broccoli 0.01333333
## 371  2010                               Broccoli 0.02000000
## 372  2011                               Broccoli 0.08333333
## 373  2012                               Broccoli 0.05000000
## 374  2013                               Broccoli 0.06500000
## 375  2015                               Broccoli 0.05000000
## 376  2016                               Broccoli 0.03000000
## 377  2012                              BushiRoad 0.03000000
## 378  1985                                 Capcom 1.00000000
## 379  1986                                 Capcom 1.76666667
## 380  1987                                 Capcom 0.81000000
## 381  1988                                 Capcom 1.47000000
## 382  1989                                 Capcom 1.67000000
## 383  1990                                 Capcom 1.30666667
## 384  1991                                 Capcom 0.74333333
## 385  1992                                 Capcom 3.10000000
## 386  1993                                 Capcom 0.69285714
## 387  1994                                 Capcom 0.16000000
## 388  1996                                 Capcom 0.44666667
## 389  1997                                 Capcom 0.27333333
## 390  1998                                 Capcom 0.53428571
## 391  1999                                 Capcom 0.44000000
## 392  2000                                 Capcom 0.40400000
## 393  2001                                 Capcom 0.79500000
## 394  2002                                 Capcom 0.51842105
## 395  2003                                 Capcom 0.29451613
## 396  2004                                 Capcom 0.29826087
## 397  2005                                 Capcom 0.55291667
## 398  2006                                 Capcom 0.42222222
## 399  2007                                 Capcom 0.58352941
## 400  2008                                 Capcom 0.51230769
## 401  2009                                 Capcom 1.29800000
## 402  2010                                 Capcom 0.65363636
## 403  2011                                 Capcom 0.31125000
## 404  2012                                 Capcom 0.61166667
## 405  2013                                 Capcom 0.36333333
## 406  2014                                 Capcom 0.08000000
## 407  2015                                 Capcom 0.35250000
## 408  2016                                 Capcom 0.11777778
## 409   N/A                                 Capcom 0.18800000
## 410  2008                                   Cave 0.10000000
## 411  2009                                   Cave 0.03000000
## 412  2010                                   Cave 0.03500000
## 413  2011                                   Cave 0.02500000
## 414  2012                                   Cave 0.02000000
## 415  2013                                   Cave 0.01000000
## 416  1982                        CBS Electronics 0.31000000
## 417  2003                                    CCP 0.22000000
## 418  2005             CDV Software Entertainment 0.01000000
## 419  2008             CDV Software Entertainment 0.05500000
## 420  2009             CDV Software Entertainment 0.02500000
## 421  2011             CDV Software Entertainment 0.03000000
## 422  1992                               ChunSoft 0.16000000
## 423  1993                               ChunSoft 0.78000000
## 424  1994                               ChunSoft 0.81000000
## 425  1995                               ChunSoft 0.40000000
## 426  1996                               ChunSoft 0.27000000
## 427  1998                               ChunSoft 0.09000000
## 428  1999                               ChunSoft 0.17000000
## 429  2000                               ChunSoft 0.37000000
## 430  2002                               ChunSoft 0.36000000
## 431  2006                               ChunSoft 0.01500000
## 432  2009                               ChunSoft 0.43000000
## 433  2010                               ChunSoft 0.04000000
## 434  2011                               ChunSoft 0.03333333
## 435  2012                               ChunSoft 0.03000000
## 436  2008                       City Interactive 0.49000000
## 437  2009                       City Interactive 0.11250000
## 438  2010                       City Interactive 0.37400000
## 439  2011                       City Interactive 0.26250000
## 440  2013                       City Interactive 0.21666667
## 441  2014                       City Interactive 0.07000000
## 442   N/A                       City Interactive 0.03000000
## 443  2012       Cloud Imperium Games Corporation 0.04000000
## 444  1993                         Coconuts Japan 0.05000000
## 445  1996                         Coconuts Japan 0.02000000
## 446  1997                            Codemasters 1.19000000
## 447  1998                            Codemasters 1.39500000
## 448  1999                            Codemasters 0.30500000
## 449  2000                            Codemasters 0.51000000
## 450  2001                            Codemasters 0.39750000
## 451  2002                            Codemasters 0.35600000
## 452  2003                            Codemasters 0.34142857
## 453  2004                            Codemasters 0.07461538
## 454  2005                            Codemasters 0.11285714
## 455  2006                            Codemasters 0.02875000
## 456  2007                            Codemasters 0.25583333
## 457  2008                            Codemasters 0.28750000
## 458  2009                            Codemasters 0.32423077
## 459  2010                            Codemasters 0.52800000
## 460  2011                            Codemasters 0.41076923
## 461  2012                            Codemasters 0.35125000
## 462  2013                            Codemasters 0.34200000
## 463  2014                            Codemasters 0.19833333
## 464  2015                            Codemasters 0.31666667
## 465  2016                            Codemasters 0.14000000
## 466   N/A                            Codemasters 0.05000000
## 467  2008                     Codemasters Online 0.02000000
## 468  2007                      CokeM Interactive 0.31000000
## 469  1981                                 Coleco 0.69750000
## 470  1982                                 Coleco 0.27000000
## 471  2010                                Comfort 0.01500000
## 472  2011                                Comfort 0.04000000
## 473  2012                                Comfort 0.02000000
## 474  2013                                Comfort 0.02000000
## 475  2008                               Commseed 0.01000000
## 476  1995                                Compile 0.47000000
## 477  1996                                Compile 0.02000000
## 478  1997                                Compile 0.64666667
## 479  1998                                Compile 0.03000000
## 480  2008                          Compile Heart 0.20000000
## 481  2009                          Compile Heart 0.01000000
## 482  2010                          Compile Heart 0.08666667
## 483  2011                          Compile Heart 0.09000000
## 484  2012                          Compile Heart 0.07666667
## 485  2013                          Compile Heart 0.11000000
## 486  2014                          Compile Heart 0.04600000
## 487  2015                          Compile Heart 0.03666667
## 488  2016                          Compile Heart 0.02000000
## 489  2001               Conspiracy Entertainment 0.14500000
## 490  2002               Conspiracy Entertainment 0.03000000
## 491  2007               Conspiracy Entertainment 0.03500000
## 492  2008               Conspiracy Entertainment 0.05000000
## 493  2009               Conspiracy Entertainment 0.03500000
## 494  2010               Conspiracy Entertainment 0.05750000
## 495  1994                       Core Design Ltd. 0.19000000
## 496  1995                       Core Design Ltd. 0.10000000
## 497  1982                           CPG Products 0.54000000
## 498  1998                    Crave Entertainment 0.18500000
## 499  1999                    Crave Entertainment 0.14500000
## 500  2000                    Crave Entertainment 0.81333333
## 501  2002                    Crave Entertainment 0.21000000
## 502  2003                    Crave Entertainment 0.07000000
## 503  2004                    Crave Entertainment 0.12000000
## 504  2005                    Crave Entertainment 0.07666667
## 505  2006                    Crave Entertainment 0.06000000
## 506  2007                    Crave Entertainment 0.10750000
## 507  2008                    Crave Entertainment 0.17666667
## 508  2009                    Crave Entertainment 0.11400000
## 509  2010                    Crave Entertainment 0.10142857
## 510  2011                    Crave Entertainment 0.09500000
## 511  2008                          Creative Core 0.03500000
## 512  2009                          Creative Core 0.03000000
## 513  2008                            Crimson Cow 0.02000000
## 514  2011                            Crimson Cow 0.06000000
## 515  1995                       Crystal Dynamics 0.37333333
## 516  1996                       Crystal Dynamics 0.29500000
## 517  1996                                CTO SpA 0.88000000
## 518  1997                                CTO SpA 0.02000000
## 519  1991                          Culture Brain 0.20000000
## 520  1994                          Culture Brain 0.03000000
## 521  2008                          Culture Brain 0.02000000
## 522  2010                          Culture Brain 0.02000000
## 523  1998                     Culture Publishers 0.09000000
## 524  2007                             CyberFront 0.02000000
## 525  2008                             CyberFront 0.04000000
## 526  2009                             CyberFront 0.01000000
## 527  2010                             CyberFront 0.01833333
## 528  2011                             CyberFront 0.02000000
## 529  2012                             CyberFront 0.01500000
## 530  2013                             CyberFront 0.03000000
## 531  2015                                Cygames 0.03000000
## 532  1998                            D3Publisher 1.06000000
## 533  2000                            D3Publisher 0.07000000
## 534  2001                            D3Publisher 0.31000000
## 535  2005                            D3Publisher 0.09750000
## 536  2006                            D3Publisher 0.10538462
## 537  2007                            D3Publisher 0.28681818
## 538  2008                            D3Publisher 0.09666667
## 539  2009                            D3Publisher 0.12290323
## 540  2010                            D3Publisher 0.14709677
## 541  2011                            D3Publisher 0.10500000
## 542  2012                            D3Publisher 0.03222222
## 543  2013                            D3Publisher 0.06450000
## 544  2014                            D3Publisher 0.04000000
## 545  2015                            D3Publisher 0.04200000
## 546  2016                            D3Publisher 0.02666667
## 547   N/A                            D3Publisher 0.07000000
## 548  2009                               Daedalic 0.11000000
## 549  2010                               Daedalic 0.02000000
## 550  2012                               Daedalic 0.15000000
## 551  2012                 Daedalic Entertainment 0.03000000
## 552  2013                 Daedalic Entertainment 0.05500000
## 553  2006                                  Daito 0.05750000
## 554  1981                               Data Age 0.39000000
## 555  1982                               Data Age 0.32000000
## 556  2007                Data Design Interactive 0.09000000
## 557  2008                Data Design Interactive 0.13000000
## 558  2009                Data Design Interactive 0.07000000
## 559  1995                              Data East 0.04000000
## 560  1998                              Data East 0.11000000
## 561  2002                         Datam Polystar 0.02000000
## 562  2007                         Datam Polystar 0.01000000
## 563  2004                            Deep Silver 0.32000000
## 564  2005                            Deep Silver 0.08333333
## 565  2006                            Deep Silver 0.11666667
## 566  2007                            Deep Silver 0.02000000
## 567  2008                            Deep Silver 0.22384615
## 568  2009                            Deep Silver 0.10625000
## 569  2010                            Deep Silver 0.11823529
## 570  2011                            Deep Silver 0.51076923
## 571  2012                            Deep Silver 0.16000000
## 572  2013                            Deep Silver 0.50250000
## 573  2014                            Deep Silver 0.15750000
## 574  2015                            Deep Silver 0.14428571
## 575  2016                            Deep Silver 0.08818182
## 576   N/A                            Deep Silver 0.08000000
## 577  2001              Destination Software, Inc 0.13000000
## 578  2002              Destination Software, Inc 0.02000000
## 579  2003              Destination Software, Inc 0.05000000
## 580  2004              Destination Software, Inc 0.02000000
## 581  2005              Destination Software, Inc 0.08000000
## 582  2006              Destination Software, Inc 0.03000000
## 583  2007              Destination Software, Inc 0.18500000
## 584  2008              Destination Software, Inc 0.06500000
## 585  2007                              Destineer 0.07000000
## 586  2008                              Destineer 0.10266667
## 587  2009                              Destineer 0.15750000
## 588  2010                              Destineer 0.04750000
## 589  2011                              Destineer 0.04000000
## 590  2007                            Detn8 Games 0.23000000
## 591  2010                       Devolver Digital 0.02000000
## 592  2015                       Devolver Digital 0.02000000
## 593  2007                        DHM Interactive 0.07000000
## 594  2009                        DHM Interactive 0.04000000
## 595  2002                               DigiCube 0.06000000
## 596  1999             Disney Interactive Studios 1.94000000
## 597  2002             Disney Interactive Studios 0.25000000
## 598  2003             Disney Interactive Studios 0.29000000
## 599  2004             Disney Interactive Studios 0.40750000
## 600  2005             Disney Interactive Studios 0.32500000
## 601  2006             Disney Interactive Studios 0.44153846
## 602  2007             Disney Interactive Studios 0.60142857
## 603  2008             Disney Interactive Studios 0.66939394
## 604  2009             Disney Interactive Studios 0.55375000
## 605  2010             Disney Interactive Studios 0.58571429
## 606  2011             Disney Interactive Studios 0.65450000
## 607  2012             Disney Interactive Studios 0.40571429
## 608  2013             Disney Interactive Studios 0.59083333
## 609  2014             Disney Interactive Studios 0.42200000
## 610  2015             Disney Interactive Studios 0.41333333
## 611   N/A             Disney Interactive Studios 0.30000000
## 612  2008                                 Dorart 0.02000000
## 613  2010                                 Dorart 0.01000000
## 614  2015                        dramatic create 0.02666667
## 615  2016                        dramatic create 0.01500000
## 616  2001               DreamCatcher Interactive 0.05000000
## 617  2003               DreamCatcher Interactive 0.06000000
## 618  2004               DreamCatcher Interactive 0.02000000
## 619  2005               DreamCatcher Interactive 0.02000000
## 620  2006               DreamCatcher Interactive 0.04500000
## 621  2008               DreamCatcher Interactive 0.03500000
## 622  2009               DreamCatcher Interactive 0.07833333
## 623  2010               DreamCatcher Interactive 0.05500000
## 624  1998                 DreamWorks Interactive 0.13000000
## 625  2005                              DSI Games 0.17000000
## 626  2006                              DSI Games 0.04000000
## 627  2007                              DSI Games 0.01666667
## 628  2008                              DSI Games 0.09000000
## 629  2005                      DTP Entertainment 0.11500000
## 630  2007                      DTP Entertainment 0.02000000
## 631  2008                      DTP Entertainment 0.09888889
## 632  2009                      DTP Entertainment 0.09181818
## 633  2010                      DTP Entertainment 0.05857143
## 634  2011                      DTP Entertainment 0.07307692
## 635  2012                      DTP Entertainment 0.06000000
## 636   N/A                      DTP Entertainment 0.02000000
## 637  2016               Dusenberry Martin Racing 0.02500000
## 638  2012                               EA Games 0.15000000
## 639  2012                       Easy Interactive 0.02500000
## 640  2009                                  Ecole 0.06000000
## 641  2006                                   Edia 0.07000000
## 642  2009                                   Edia 0.02000000
## 643  1996                      Eidos Interactive 1.47250000
## 644  1997                      Eidos Interactive 2.71000000
## 645  1998                      Eidos Interactive 0.76800000
## 646  1999                      Eidos Interactive 1.45500000
## 647  2000                      Eidos Interactive 0.50666667
## 648  2001                      Eidos Interactive 0.22100000
## 649  2002                      Eidos Interactive 0.45866667
## 650  2003                      Eidos Interactive 0.35705882
## 651  2004                      Eidos Interactive 0.30000000
## 652  2005                      Eidos Interactive 0.66666667
## 653  2006                      Eidos Interactive 0.15103448
## 654  2007                      Eidos Interactive 0.29545455
## 655  2008                      Eidos Interactive 0.21920000
## 656  2009                      Eidos Interactive 0.54550000
## 657   N/A                      Eidos Interactive 1.11500000
## 658  1992                        Electronic Arts 0.06000000
## 659  1994                        Electronic Arts 0.32500000
## 660  1995                        Electronic Arts 0.30272727
## 661  1996                        Electronic Arts 0.60769231
## 662  1997                        Electronic Arts 0.91760000
## 663  1998                        Electronic Arts 0.99833333
## 664  1999                        Electronic Arts 0.77500000
## 665  2000                        Electronic Arts 0.81064516
## 666  2001                        Electronic Arts 1.04930233
## 667  2002                        Electronic Arts 0.82965909
## 668  2003                        Electronic Arts 0.82152941
## 669  2004                        Electronic Arts 0.78290698
## 670  2005                        Electronic Arts 0.57273504
## 671  2006                        Electronic Arts 0.57264706
## 672  2007                        Electronic Arts 0.66663551
## 673  2008                        Electronic Arts 0.70100000
## 674  2009                        Electronic Arts 0.76964286
## 675  2010                        Electronic Arts 0.92477273
## 676  2011                        Electronic Arts 0.95065789
## 677  2012                        Electronic Arts 1.08478261
## 678  2013                        Electronic Arts 1.26000000
## 679  2014                        Electronic Arts 1.30000000
## 680  2015                        Electronic Arts 1.41937500
## 681  2016                        Electronic Arts 0.61250000
## 682   N/A                        Electronic Arts 1.41083333
## 683  1996                 Electronic Arts Victor 0.21000000
## 684  1996                                    Elf 0.36000000
## 685  1997                                    Elf 0.28000000
## 686  1996                                  Elite 0.07000000
## 687  1996                     Empire Interactive 0.41000000
## 688  1998                     Empire Interactive 0.03000000
## 689  1999                     Empire Interactive 0.02000000
## 690  2000                     Empire Interactive 0.28500000
## 691  2001                     Empire Interactive 0.50000000
## 692  2002                     Empire Interactive 0.17000000
## 693  2003                     Empire Interactive 0.40166667
## 694  2004                     Empire Interactive 0.38600000
## 695  2005                     Empire Interactive 0.06571429
## 696  2006                     Empire Interactive 0.06500000
## 697  2007                     Empire Interactive 0.21500000
## 698  2008                     Empire Interactive 0.15750000
## 699   N/A                     Empire Interactive 0.15000000
## 700  2001                                 Encore 0.03000000
## 701  2003                                 Encore 0.01000000
## 702  2005                                 Encore 0.02000000
## 703  1987                       Enix Corporation 2.56000000
## 704  1988                       Enix Corporation 3.87000000
## 705  1990                       Enix Corporation 3.12000000
## 706  1992                       Enix Corporation 2.79000000
## 707  1993                       Enix Corporation 1.15000000
## 708  1994                       Enix Corporation 0.36000000
## 709  1995                       Enix Corporation 1.66000000
## 710  1996                       Enix Corporation 0.44750000
## 711  1999                       Enix Corporation 0.62250000
## 712  2000                       Enix Corporation 1.78666667
## 713  2001                       Enix Corporation 0.97000000
## 714  2002                       Enix Corporation 0.27000000
## 715  2003                       Enix Corporation 0.66000000
## 716  2004                       Enix Corporation 1.65000000
## 717  2009                      Enjoy Gaming ltd. 0.10000000
## 718  2001                             Enterbrain 0.21500000
## 719  2002                             Enterbrain 0.11000000
## 720  2004                             Enterbrain 0.30500000
## 721  2006                             Enterbrain 0.08000000
## 722  2007                             Enterbrain 0.01000000
## 723  2008                             Enterbrain 0.19000000
## 724  2009                             Enterbrain 0.13000000
## 725  2010                             Enterbrain 0.09000000
## 726  1999              EON Digital Entertainment 0.01000000
## 727  2016                             Epic Games 0.01000000
## 728  1991                                  Epoch 0.08000000
## 729  1992                                  Epoch 0.07000000
## 730  1993                                  Epoch 0.05000000
## 731  1995                                  Epoch 0.25500000
## 732  1996                                  Epoch 0.19000000
## 733  2000                                  Epoch 0.15000000
## 734  2007                                 Ertain 0.05000000
## 735  1997                                    ESP 0.42000000
## 736  1998                                    ESP 0.04666667
## 737  2002                                    ESP 0.03000000
## 738  2005                        Essential Games 0.17000000
## 739  2006                        Essential Games 0.03000000
## 740  1998                        Evolution Games 0.07000000
## 741  2004                          Evolved Games 0.02250000
## 742  2009                          Evolved Games 0.05000000
## 743  2011                          Evolved Games 0.06500000
## 744  2011                   Excalibur Publishing 0.04666667
## 745  2012                   Excalibur Publishing 0.14000000
## 746  2014                        Experience Inc. 0.01000000
## 747  2015                        Experience Inc. 0.04000000
## 748  2016                        Experience Inc. 0.01000000
## 749  2015            Extreme Entertainment Group 0.03000000
## 750  2007                     Falcom Corporation 0.03500000
## 751  2008                     Falcom Corporation 0.03666667
## 752  2009                     Falcom Corporation 0.11000000
## 753  2010                     Falcom Corporation 0.12000000
## 754  2011                     Falcom Corporation 0.20000000
## 755  2012                     Falcom Corporation 0.05500000
## 756  2013                     Falcom Corporation 0.01500000
## 757  2012                                 Fields 0.03000000
## 758  2005                       Flashpoint Games 0.04000000
## 759  2010                       Flashpoint Games 0.04000000
## 760  2007                            Flight-Plan 0.08000000
## 761  2009                            Flight-Plan 0.04000000
## 762  2006                 Focus Home Interactive 0.01500000
## 763  2007                 Focus Home Interactive 0.03000000
## 764  2008                 Focus Home Interactive 0.08000000
## 765  2009                 Focus Home Interactive 0.13000000
## 766  2010                 Focus Home Interactive 0.11666667
## 767  2011                 Focus Home Interactive 0.06888889
## 768  2012                 Focus Home Interactive 0.27571429
## 769  2013                 Focus Home Interactive 0.19000000
## 770  2014                 Focus Home Interactive 0.18636364
## 771  2015                 Focus Home Interactive 0.09000000
## 772  2016                 Focus Home Interactive 0.03200000
## 773   N/A                 Focus Home Interactive 0.03500000
## 774  2012                       Focus Multimedia 0.01500000
## 775  2015                       Focus Multimedia 0.02000000
## 776  2008                                 fonfun 0.02000000
## 777  2010                    Foreign Media Games 0.07000000
## 778  1998                              Fortyfive 0.06000000
## 779  1996                        Fox Interactive 1.54000000
## 780  1997                        Fox Interactive 2.00000000
## 781  1998                        Fox Interactive 0.23500000
## 782  1999                        Fox Interactive 0.61000000
## 783  2000                        Fox Interactive 0.16000000
## 784  1994                          From Software 0.08000000
## 785  1996                          From Software 0.26000000
## 786  1997                          From Software 0.28000000
## 787  1998                          From Software 0.11000000
## 788  1999                          From Software 0.26000000
## 789  2001                          From Software 0.09000000
## 790  2002                          From Software 0.11000000
## 791  2006                          From Software 0.05000000
## 792  2009                          From Software 0.03250000
## 793  2010                          From Software 0.03000000
## 794  2013                          From Software 0.12000000
## 795  1995                                   Fuji 0.03000000
## 796  2011                           Funbox Media 0.21500000
## 797  2012                           Funbox Media 0.04000000
## 798  2015                           Funbox Media 0.01000000
## 799  2010                                 Funcom 0.03000000
## 800  2012                                 Funcom 0.17000000
## 801  1996                                FunSoft 0.12000000
## 802  2006                                 Funsta 0.02000000
## 803  2007                                 Funsta 0.07000000
## 804   N/A                                 Funsta 0.04000000
## 805  2010                                  FuRyu 0.01000000
## 806  2011                                  FuRyu 0.03750000
## 807  2012                                  FuRyu 0.03250000
## 808  2013                                  FuRyu 0.04400000
## 809  2014                                  FuRyu 0.05333333
## 810  2015                                  FuRyu 0.07428571
## 811  2016                                  FuRyu 0.04333333
## 812  2015                      FuRyu Corporation 0.03000000
## 813  2009                                  G.Rev 0.01000000
## 814  2010                                  G.Rev 0.03000000
## 815  1996                                   Gaga 0.02000000
## 816  1998                 Gainax Network Systems 0.08000000
## 817  2007                                 Gakken 0.02000000
## 818  1994                              Game Arts 0.14000000
## 819  2003                           Game Factory 0.04000000
## 820  2004                           Game Factory 0.24000000
## 821  2005                           Game Factory 0.03000000
## 822  2006                           Game Factory 0.03428571
## 823  2007                           Game Factory 0.17000000
## 824  2008                           Game Factory 0.13909091
## 825  2010                           Game Factory 0.15000000
## 826  2007                              Game Life 0.13000000
## 827  2009                              Game Life 0.17000000
## 828  2008                             Gamebridge 0.52000000
## 829  2009                             Gamebridge 0.21000000
## 830  2008                               Gamecock 0.05000000
## 831  2007                               Gameloft 0.11000000
## 832  2010                 GameMill Entertainment 0.18000000
## 833  2011                 GameMill Entertainment 0.19800000
## 834  2012                 GameMill Entertainment 0.10500000
## 835  1998                                GameTek 0.10000000
## 836  2001                Gathering of Developers 0.22333333
## 837  2003                Gathering of Developers 0.03000000
## 838  2004                Gathering of Developers 0.11500000
## 839  1998                  General Entertainment 0.14000000
## 840  1999                                  Genki 0.17000000
## 841  2001                                  Genki 0.06000000
## 842  2003                                  Genki 0.54500000
## 843  2007                                  Genki 0.03000000
## 844  2012                                  Genki 0.05000000
## 845  2009                            Genterprise 0.01000000
## 846  2003                             Ghostlight 0.38000000
## 847  2004                             Ghostlight 0.13000000
## 848  2005                             Ghostlight 0.11000000
## 849  2006                             Ghostlight 0.21000000
## 850  2007                             Ghostlight 0.08500000
## 851  2008                             Ghostlight 0.05500000
## 852  2009                             Ghostlight 0.63000000
## 853  2010                             Ghostlight 0.06000000
## 854  2011                             Ghostlight 0.35000000
## 855   N/A                             Ghostlight 0.12000000
## 856  2014                                   Giga 0.02000000
## 857  2012                                 Giza10 0.02000000
## 858  1995                                  Glams 0.08000000
## 859  2006                 Global A Entertainment 0.03000000
## 860  2007                 Global A Entertainment 0.07000000
## 861  2008                 Global A Entertainment 0.02500000
## 862  2004                            Global Star 0.26333333
## 863  2005                            Global Star 0.13533333
## 864  2006                            Global Star 0.03000000
## 865  2006                            GN Software 0.01000000
## 866  2008                            GN Software 0.03000000
## 867  2010                            GN Software 0.01000000
## 868  2008                                    GOA 0.02000000
## 869  2002                           Gotham Games 1.57000000
## 870  2003                           Gotham Games 0.30800000
## 871  2004                           Gotham Games 0.61000000
## 872  2008                               Graffiti 0.04000000
## 873  2009                               Graffiti 0.04666667
## 874  2010                               Graffiti 0.10000000
## 875  2007                       Grand Prix Games 0.06000000
## 876  2005                 Graphsim Entertainment 0.02000000
## 877  1996                Gremlin Interactive Ltd 0.13000000
## 878  1997                Gremlin Interactive Ltd 0.10666667
## 879  1998                Gremlin Interactive Ltd 0.13000000
## 880  2010                  Griffin International 0.09000000
## 881  2005                           Groove Games 0.06000000
## 882  2006                           Groove Games 0.03000000
## 883  2008                                    GSP 0.43666667
## 884  2009                                    GSP 0.26666667
## 885  2010                                    GSP 0.15333333
## 886  2011                                    GSP 0.08000000
## 887  1995                         GT Interactive 0.27000000
## 888  1996                         GT Interactive 0.81571429
## 889  1997                         GT Interactive 0.40062500
## 890  1998                         GT Interactive 0.34000000
## 891  1999                         GT Interactive 1.76500000
## 892  2008                                 GungHo 0.10500000
## 893  2009                                 GungHo 0.16500000
## 894  2011                                 GungHo 0.07000000
## 895  2012                                 GungHo 0.21500000
## 896  2013                                 GungHo 0.83000000
## 897  2014                                 GungHo 0.04000000
## 898  2016                                 GungHo 0.20000000
## 899  1996                                   Gust 0.01000000
## 900  1997                                   Gust 0.25000000
## 901  2001                                   Gust 0.09000000
## 902  2002                                   Gust 0.07000000
## 903  2007                                   Gust 0.04000000
## 904  2008                                   Gust 0.20000000
## 905  2009                                   Gust 0.07000000
## 906  2010                                   Gust 0.03000000
## 907  2011                                   Gust 0.02000000
## 908  2012                                   Gust 0.09500000
## 909  2013                                   Gust 0.06000000
## 910  2007                              Hackberry 0.05500000
## 911  2008                              Hackberry 0.04000000
## 912  2010                              Hackberry 0.01000000
## 913  1989                         HAL Laboratory 0.06000000
## 914  2002                    Hamster Corporation 0.28000000
## 915  2006                    Hamster Corporation 0.02000000
## 916  2014                               Happinet 0.05500000
## 917  2015                               Happinet 0.01500000
## 918  2016                               Happinet 0.04000000
## 919  2015                 Harmonix Music Systems 0.40000000
## 920  1994                     Hasbro Interactive 2.39000000
## 921  1997                     Hasbro Interactive 2.12666667
## 922  1998                     Hasbro Interactive 1.06000000
## 923  1999                     Hasbro Interactive 0.58333333
## 924  2000                     Hasbro Interactive 0.33250000
## 925  2001                     Hasbro Interactive 0.17000000
## 926  2006                     Hasbro Interactive 0.02000000
## 927  2000                      Havas Interactive 0.13000000
## 928  2013                           Headup Games 0.03000000
## 929  1996                           Hearty Robin 0.09000000
## 930  1993                                   Hect 0.19000000
## 931  1994                                   Hect 0.27000000
## 932  1995                                   Hect 0.04000000
## 933  2016                            Hello Games 1.60000000
## 934  2011                        Her Interactive 0.03000000
## 935  2004                        Hip Interactive 0.09500000
## 936  2005                        Hip Interactive 0.05666667
## 937  2008                        HMH Interactive 0.03000000
## 938  2009                        HMH Interactive 0.11000000
## 939  2010           Home Entertainment Suppliers 0.03000000
## 940  2011           Home Entertainment Suppliers 0.19500000
## 941   N/A           Home Entertainment Suppliers 0.26000000
## 942  1997                   Hudson Entertainment 0.79000000
## 943  1998                   Hudson Entertainment 0.06000000
## 944  1999                   Hudson Entertainment 0.47000000
## 945  2001                   Hudson Entertainment 0.04000000
## 946  2003                   Hudson Entertainment 0.07000000
## 947  2006                   Hudson Entertainment 0.02000000
## 948  2007                   Hudson Entertainment 0.06000000
## 949  2008                   Hudson Entertainment 0.01000000
## 950  2009                   Hudson Entertainment 0.09000000
## 951  1984                            Hudson Soft 1.10000000
## 952  1985                            Hudson Soft 1.03000000
## 953  1986                            Hudson Soft 1.16500000
## 954  1991                            Hudson Soft 0.44000000
## 955  1992                            Hudson Soft 0.39500000
## 956  1993                            Hudson Soft 0.34000000
## 957  1994                            Hudson Soft 0.61000000
## 958  1995                            Hudson Soft 0.20500000
## 959  1996                            Hudson Soft 0.22000000
## 960  1997                            Hudson Soft 0.31000000
## 961  1998                            Hudson Soft 0.03000000
## 962  1999                            Hudson Soft 0.17000000
## 963  2000                            Hudson Soft 0.16000000
## 964  2001                            Hudson Soft 0.49000000
## 965  2002                            Hudson Soft 0.16250000
## 966  2003                            Hudson Soft 0.18666667
## 967  2004                            Hudson Soft 0.08000000
## 968  2005                            Hudson Soft 0.22000000
## 969  2006                            Hudson Soft 0.07666667
## 970  2007                            Hudson Soft 0.17000000
## 971  2008                            Hudson Soft 0.09625000
## 972  2009                            Hudson Soft 0.22750000
## 973  2010                            Hudson Soft 0.11090909
## 974  2011                            Hudson Soft 0.07666667
## 975  1991                    Human Entertainment 0.39000000
## 976  1994                    Human Entertainment 0.36500000
## 977  1995                    Human Entertainment 0.19500000
## 978  1996                    Human Entertainment 0.12000000
## 979  1997                    Human Entertainment 0.22000000
## 980  1998                    Human Entertainment 0.20666667
## 981  1999                    Human Entertainment 0.15500000
## 982  2015                                  HuneX 0.01500000
## 983  2011                    Iceberg Interactive 0.03000000
## 984  2012                    Iceberg Interactive 0.02000000
## 985  1992                            id Software 0.03000000
## 986  2002                           Idea Factory 0.05000000
## 987  2005                           Idea Factory 0.03000000
## 988  2006                           Idea Factory 0.04250000
## 989  2007                           Idea Factory 0.02500000
## 990  2008                           Idea Factory 0.03666667
## 991  2009                           Idea Factory 0.04428571
## 992  2010                           Idea Factory 0.02956522
## 993  2011                           Idea Factory 0.02947368
## 994  2012                           Idea Factory 0.02894737
## 995  2013                           Idea Factory 0.02818182
## 996  2014                           Idea Factory 0.05076923
## 997  2015                           Idea Factory 0.02071429
## 998  2016                           Idea Factory 0.01714286
## 999  2017                           Idea Factory 0.01000000
## 1000  N/A                           Idea Factory 0.01000000
## 1001 2014             Idea Factory International 0.12666667
## 1002 2015             Idea Factory International 0.07666667
## 1003 2006                           IE Institute 0.36500000
## 1004 2007                           IE Institute 0.17000000
## 1005 2008                           IE Institute 0.04000000
## 1006 2012                           IE Institute 0.02000000
## 1007 2002                 Ignition Entertainment 0.26500000
## 1008 2003                 Ignition Entertainment 0.05750000
## 1009 2004                 Ignition Entertainment 0.09000000
## 1010 2005                 Ignition Entertainment 0.15857143
## 1011 2006                 Ignition Entertainment 0.09000000
## 1012 2007                 Ignition Entertainment 0.11285714
## 1013 2008                 Ignition Entertainment 0.09866667
## 1014 2009                 Ignition Entertainment 0.13500000
## 1015 2011                 Ignition Entertainment 0.22500000
## 1016  N/A                 Ignition Entertainment 0.08000000
## 1017 2004                     Illusion Softworks 0.70000000
## 1018 1997                                 Imadio 0.14000000
## 1019 2012                            Image Epoch 0.10000000
## 1020 2014                        imageepoch Inc. 0.02000000
## 1021 1995                             Imageworks 0.02000000
## 1022 1981                                 Imagic 1.20500000
## 1023 1991                              Imagineer 0.12666667
## 1024 1996                              Imagineer 0.11250000
## 1025 1997                              Imagineer 0.30500000
## 1026 1998                              Imagineer 0.09500000
## 1027 1999                              Imagineer 0.21000000
## 1028 2000                              Imagineer 0.27000000
## 1029 2001                              Imagineer 0.12000000
## 1030 1993                                   Imax 0.06000000
## 1031 2004                            Indie Games 0.10666667
## 1032 1994                             Infogrames 0.78000000
## 1033 1996                             Infogrames 0.31000000
## 1034 1997                             Infogrames 0.87000000
## 1035 1998                             Infogrames 0.09714286
## 1036 1999                             Infogrames 0.19333333
## 1037 2000                             Infogrames 0.15090909
## 1038 2001                             Infogrames 0.21200000
## 1039 2002                             Infogrames 0.38454545
## 1040 2003                             Infogrames 0.07000000
## 1041  N/A                             Infogrames 0.16000000
## 1042 2016                        Insomniac Games 0.04000000
## 1043 2006                           Interchannel 0.02666667
## 1044 2008                           Interchannel 0.02000000
## 1045 2007                     Interchannel-Holon 0.01000000
## 1046 2015                              Intergrow 0.03000000
## 1047 1993                              Interplay 0.01000000
## 1048 1995                              Interplay 0.10000000
## 1049 1996                              Interplay 0.51000000
## 1050 1997                              Interplay 0.24750000
## 1051 1998                              Interplay 0.13833333
## 1052 1999                              Interplay 0.07000000
## 1053 2000                              Interplay 0.33333333
## 1054 2001                              Interplay 0.21000000
## 1055 2002                              Interplay 0.19500000
## 1056 2003                              Interplay 0.30000000
## 1057 2004                              Interplay 0.68000000
## 1058 1997                  Interplay Productions 0.10000000
## 1059 2012             Interworks Unlimited, Inc. 0.01000000
## 1060 2016                           Inti Creates 0.01000000
## 1061 2016                  Introversion Software 0.02000000
## 1062 2015                   inXile Entertainment 0.10000000
## 1063 1998              Irem Software Engineering 0.03000000
## 1064 2006              Irem Software Engineering 0.06000000
## 1065 2007              Irem Software Engineering 0.05000000
## 1066 2008              Irem Software Engineering 0.05000000
## 1067 2009              Irem Software Engineering 0.07000000
## 1068 2010              Irem Software Engineering 0.02500000
## 1069 2011              Irem Software Engineering 0.01500000
## 1070 2012              Irem Software Engineering 0.02000000
## 1071 1982                       ITT Family Games 0.34000000
## 1072 2008                              Ivolgamus 0.04000000
## 1073 2011                                   iWin 0.06000000
## 1074 2005                      Jack of All Games 0.38000000
## 1075 2011                      Jack of All Games 0.02000000
## 1076 1995                                 Jaleco 0.30000000
## 1077 1996                                 Jaleco 0.33000000
## 1078 1998                                 Jaleco 0.07500000
## 1079 1999                                 Jaleco 0.01000000
## 1080 2002                                 Jaleco 0.03000000
## 1081 2003                                 Jaleco 0.05571429
## 1082 2004                                 Jaleco 0.03500000
## 1083 2007                                 Jaleco 0.09000000
## 1084 2008                                 Jaleco 0.02500000
## 1085 2002                     Jester Interactive 0.71000000
## 1086 2003                     Jester Interactive 0.04000000
## 1087 2005                     Jester Interactive 0.40000000
## 1088 1999                                Jorudan 0.30000000
## 1089 2002                                Jorudan 0.36000000
## 1090 2003                                Jorudan 0.29000000
## 1091 2002                     JoWood Productions 0.02000000
## 1092 2004                     JoWood Productions 0.02500000
## 1093 2005                     JoWood Productions 0.02750000
## 1094 2006                     JoWood Productions 0.06000000
## 1095 2007                     JoWood Productions 0.04000000
## 1096 2008                     JoWood Productions 0.08600000
## 1097 2009                     JoWood Productions 0.09750000
## 1098 2010                     JoWood Productions 0.09750000
## 1099 2010                            Just Flight 0.03000000
## 1100 1994                                    JVC 0.12000000
## 1101 1996                                    JVC 0.83000000
## 1102 1997                                    JVC 0.03000000
## 1103 1998                                    JVC 0.08000000
## 1104 1999                                    JVC 0.02000000
## 1105 2000                                    JVC 0.06000000
## 1106 2012                         Kadokawa Games 0.02000000
## 1107 2013                         Kadokawa Games 0.01666667
## 1108 2014                         Kadokawa Games 0.04000000
## 1109 2015                         Kadokawa Games 0.02250000
## 1110 2016                         Kadokawa Games 0.11000000
## 1111 1996                        Kadokawa Shoten 0.23000000
## 1112 1997                        Kadokawa Shoten 0.21000000
## 1113 1998                        Kadokawa Shoten 0.20750000
## 1114 1999                        Kadokawa Shoten 0.35000000
## 1115 2004                        Kadokawa Shoten 0.02000000
## 1116 2005                        Kadokawa Shoten 0.04000000
## 1117 2006                        Kadokawa Shoten 0.02000000
## 1118 2007                        Kadokawa Shoten 0.08666667
## 1119 2008                        Kadokawa Shoten 0.03666667
## 1120 2009                        Kadokawa Shoten 0.03000000
## 1121 2010                        Kadokawa Shoten 0.02111111
## 1122 2011                        Kadokawa Shoten 0.07555556
## 1123 2012                        Kadokawa Shoten 0.05500000
## 1124 2013                        Kadokawa Shoten 0.05000000
## 1125 2014                        Kadokawa Shoten 0.14000000
## 1126 2015                        Kadokawa Shoten 0.07000000
## 1127 2013                            Kaga Create 0.01000000
## 1128 2015                            Kaga Create 0.02600000
## 1129 2007                          Kalypso Media 0.01000000
## 1130 2008                          Kalypso Media 0.02500000
## 1131 2009                          Kalypso Media 0.06400000
## 1132 2010                          Kalypso Media 0.06200000
## 1133 2011                          Kalypso Media 0.09000000
## 1134 2012                          Kalypso Media 0.02000000
## 1135 2014                          Kalypso Media 0.09500000
## 1136 2015                          Kalypso Media 0.14000000
## 1137  N/A                          Kalypso Media 0.16666667
## 1138 2010                                  Kamui 0.03000000
## 1139 2006                            Kando Games 0.03000000
## 1140 2010                    Karin Entertainment 0.02000000
## 1141 1991                                  Kemco 0.05000000
## 1142 1997                                  Kemco 0.27000000
## 1143 1998                                  Kemco 0.24500000
## 1144 1999                                  Kemco 0.06750000
## 1145 2001                                  Kemco 0.10000000
## 1146 2002                                  Kemco 0.01500000
## 1147 2003                                  Kemco 0.11500000
## 1148 2005                                  Kemco 0.02000000
## 1149 1998                                    KID 0.03000000
## 1150 2006                                    KID 0.01666667
## 1151 2007                           Kids Station 0.03000000
## 1152 2002                           King Records 0.02000000
## 1153 2003                    Knowledge Adventure 0.30500000
## 1154 2009                    Knowledge Adventure 0.43000000
## 1155 2008                             Koch Media 0.50166667
## 1156 2011                             Koch Media 0.06500000
## 1157 2013                             Koch Media 0.08000000
## 1158 2015                             Koch Media 0.29000000
## 1159 2016                             Koch Media 0.01333333
## 1160 1995               Kokopeli Digital Studios 0.03000000
## 1161 1986           Konami Digital Entertainment 1.24750000
## 1162 1987           Konami Digital Entertainment 0.93000000
## 1163 1989           Konami Digital Entertainment 0.85000000
## 1164 1990           Konami Digital Entertainment 2.23000000
## 1165 1991           Konami Digital Entertainment 0.64000000
## 1166 1992           Konami Digital Entertainment 0.08666667
## 1167 1993           Konami Digital Entertainment 0.15333333
## 1168 1994           Konami Digital Entertainment 0.24428571
## 1169 1995           Konami Digital Entertainment 0.23250000
## 1170 1996           Konami Digital Entertainment 0.24250000
## 1171 1997           Konami Digital Entertainment 0.27058824
## 1172 1998           Konami Digital Entertainment 0.64125000
## 1173 1999           Konami Digital Entertainment 0.47687500
## 1174 2000           Konami Digital Entertainment 0.27322581
## 1175 2001           Konami Digital Entertainment 0.56128205
## 1176 2002           Konami Digital Entertainment 0.22581818
## 1177 2003           Konami Digital Entertainment 0.51740741
## 1178 2004           Konami Digital Entertainment 0.48095238
## 1179 2005           Konami Digital Entertainment 0.26642857
## 1180 2006           Konami Digital Entertainment 0.22121212
## 1181 2007           Konami Digital Entertainment 0.28213115
## 1182 2008           Konami Digital Entertainment 0.43468750
## 1183 2009           Konami Digital Entertainment 0.27271186
## 1184 2010           Konami Digital Entertainment 0.27279412
## 1185 2011           Konami Digital Entertainment 0.22818182
## 1186 2012           Konami Digital Entertainment 0.24906250
## 1187 2013           Konami Digital Entertainment 0.33562500
## 1188 2014           Konami Digital Entertainment 0.28111111
## 1189 2015           Konami Digital Entertainment 0.57166667
## 1190 2016           Konami Digital Entertainment 0.15125000
## 1191  N/A           Konami Digital Entertainment 0.56444444
## 1192 2003                              Kool Kizz 0.04000000
## 1193 1996                                    KSS 0.03000000
## 1194 1993                                 Laguna 0.56000000
## 1195 1994                                 Laguna 0.36000000
## 1196 1995                                 Laguna 0.31500000
## 1197 2008                     Legacy Interactive 0.04000000
## 1198 1999                             LEGO Media 0.29500000
## 1199 2001                             LEGO Media 0.12000000
## 1200 2002                             LEGO Media 0.14000000
## 1201 2009                                Level 5 0.08750000
## 1202 2010                                Level 5 0.64666667
## 1203 2011                                Level 5 0.26666667
## 1204 2012                                Level 5 0.19777778
## 1205 2013                                Level 5 0.16333333
## 1206 2014                                Level 5 2.68000000
## 1207 2015                                Level 5 1.15500000
## 1208 2016                                Level 5 0.91000000
## 1209 2007                  Lexicon Entertainment 0.03000000
## 1210 2008                  Lexicon Entertainment 0.02000000
## 1211 2012                            Licensed 4U 0.02333333
## 1212 2007                 Lighthouse Interactive 0.02000000
## 1213 2002                           Liquid Games 0.26000000
## 1214 2006                           Liquid Games 0.01000000
## 1215 2010                           Little Orbit 0.07500000
## 1216 2013                           Little Orbit 0.02500000
## 1217 2014                           Little Orbit 0.12666667
## 1218 2015                           Little Orbit 0.05384615
## 1219 1998                                  Locus 0.07000000
## 1220 2002                              LSP Games 0.03000000
## 1221 2003                              LSP Games 0.03000000
## 1222 1994                              LucasArts 1.95000000
## 1223 1996                              LucasArts 0.55000000
## 1224 1997                              LucasArts 0.68000000
## 1225 1999                              LucasArts 1.47500000
## 1226 2000                              LucasArts 0.26000000
## 1227 2001                              LucasArts 0.64500000
## 1228 2002                              LucasArts 0.54000000
## 1229 2003                              LucasArts 0.27375000
## 1230 2004                              LucasArts 0.98250000
## 1231 2005                              LucasArts 1.23375000
## 1232 2006                              LucasArts 0.82666667
## 1233 2007                              LucasArts 1.70000000
## 1234 2008                              LucasArts 1.21461538
## 1235 2009                              LucasArts 0.45444444
## 1236 2010                              LucasArts 0.81600000
## 1237 2011                              LucasArts 0.96625000
## 1238  N/A                              LucasArts 2.39000000
## 1239 2004                               Mad Catz 0.20000000
## 1240 2006                               Mad Catz 0.03000000
## 1241 2012                               Mad Catz 0.07000000
## 1242 1998                        Magical Company 0.41000000
## 1243 2001                                  Magix 0.31000000
## 1244 2009                                  Magix 0.04000000
## 1245 2001                  Majesco Entertainment 0.36333333
## 1246 2002                  Majesco Entertainment 0.05000000
## 1247 2003                  Majesco Entertainment 0.35500000
## 1248 2004                  Majesco Entertainment 0.31750000
## 1249 2005                  Majesco Entertainment 0.05900000
## 1250 2006                  Majesco Entertainment 0.06166667
## 1251 2007                  Majesco Entertainment 0.15833333
## 1252 2008                  Majesco Entertainment 0.11416667
## 1253 2009                  Majesco Entertainment 0.14291667
## 1254 2010                  Majesco Entertainment 0.08800000
## 1255 2011                  Majesco Entertainment 0.55500000
## 1256 2013                  Majesco Entertainment 0.25000000
## 1257  N/A                  Majesco Entertainment 0.13500000
## 1258 2008                            Mamba Games 0.03000000
## 1259 2010                            Mamba Games 0.02000000
## 1260 2015                   Marvel Entertainment 0.05000000
## 1261 2012                Marvelous Entertainment 0.52500000
## 1262 2013                Marvelous Entertainment 0.24666667
## 1263 2014                Marvelous Entertainment 0.07750000
## 1264 2015                Marvelous Entertainment 0.11000000
## 1265 2016                Marvelous Entertainment 0.01000000
## 1266 2015                        Marvelous Games 0.02000000
## 1267 2002                  Marvelous Interactive 0.08000000
## 1268 2003                  Marvelous Interactive 0.03000000
## 1269 2004                  Marvelous Interactive 0.24000000
## 1270 2005                  Marvelous Interactive 0.16333333
## 1271 2006                  Marvelous Interactive 0.03500000
## 1272 2007                  Marvelous Interactive 0.01909091
## 1273 2008                  Marvelous Interactive 0.02384615
## 1274 2009                  Marvelous Interactive 0.06800000
## 1275 2010                  Marvelous Interactive 0.08333333
## 1276 2011                  Marvelous Interactive 0.16666667
## 1277 2014                  Marvelous Interactive 0.09000000
## 1278 2015                  Marvelous Interactive 0.14666667
## 1279 2016                  Marvelous Interactive 0.19000000
## 1280 2011                      Masque Publishing 0.02000000
## 1281 2006                           Mastertronic 0.02000000
## 1282 2009                           Mastertronic 0.05000000
## 1283 2010                           Mastertronic 0.03500000
## 1284 2011                           Mastertronic 0.19750000
## 1285 2012                           Mastertronic 0.01000000
## 1286 2004                                Mastiff 0.10000000
## 1287 2005                                Mastiff 0.04000000
## 1288 2009                                Mastiff 0.20666667
## 1289 2010                                Mastiff 0.29250000
## 1290 2011                                Mastiff 0.04333333
## 1291 1981                     Mattel Interactive 0.36142857
## 1292 1982                     Mattel Interactive 0.39000000
## 1293 1999                     Mattel Interactive 0.18000000
## 1294 2000                     Mattel Interactive 0.11500000
## 1295 2001                               Max Five 0.05000000
## 1296 2012                   Maximum Family Games 0.03000000
## 1297 1988                                  Maxis 0.03000000
## 1298 1992                                  Maxis 2.14000000
## 1299 1996                                  Maxis 1.22000000
## 1300 2004                      MC2 Entertainment 0.03000000
## 1301 2005                      MC2 Entertainment 0.02000000
## 1302 2002                    Media Entertainment 0.01000000
## 1303 2000                          Media Factory 0.14000000
## 1304 2001                          Media Factory 0.15000000
## 1305 1994                            Media Rings 0.36000000
## 1306 1995                            Media Rings 0.10000000
## 1307 2002                            Media Rings 0.19000000
## 1308 1996                            Media Works 0.04000000
## 1309 1998                            Media Works 0.04500000
## 1310 2006                            Media Works 0.03000000
## 1311 2007                            Media Works 0.02000000
## 1312 1995                             MediaQuest 0.05000000
## 1313 1981                           Men-A-Vision 0.77000000
## 1314 2009                     Mentor Interactive 0.33000000
## 1315 2010                     Mentor Interactive 0.07000000
## 1316 2011                     Mentor Interactive 0.01000000
## 1317 2007                          Mercury Games 0.04000000
## 1318 2008                          Mercury Games 0.06500000
## 1319 2009                            Merscom LLC 0.20000000
## 1320 2001                               Metro 3D 0.20000000
## 1321 2002                               Metro 3D 0.37500000
## 1322 2003                               Metro 3D 0.10666667
## 1323 2007                               Metro 3D 0.06000000
## 1324 2008                               Metro 3D 0.02500000
## 1325 2006                            Michaelsoft 0.01000000
## 1326 1994                            Micro Cabin 0.02000000
## 1327 1995                            Micro Cabin 0.08000000
## 1328 1996                            Micro Cabin 0.10000000
## 1329 2002                               Microids 0.02666667
## 1330 2003                               Microids 0.06000000
## 1331 2004                               Microids 0.04500000
## 1332 2005                               Microids 0.07000000
## 1333 2016                               Microids 0.02000000
## 1334 1995                             Microprose 0.09000000
## 1335 1996                             Microprose 0.41000000
## 1336 1997                             Microprose 0.01000000
## 1337 1999                             Microprose 1.06000000
## 1338  N/A                             Microprose 0.04000000
## 1339 1996                 Microsoft Game Studios 5.12000000
## 1340 1999                 Microsoft Game Studios 0.10000000
## 1341 2000                 Microsoft Game Studios 0.99000000
## 1342 2001                 Microsoft Game Studios 1.34900000
## 1343 2002                 Microsoft Game Studios 0.34800000
## 1344 2003                 Microsoft Game Studios 0.31857143
## 1345 2004                 Microsoft Game Studios 1.05230769
## 1346 2005                 Microsoft Game Studios 0.40642857
## 1347 2006                 Microsoft Game Studios 1.10888889
## 1348 2007                 Microsoft Game Studios 1.37368421
## 1349 2008                 Microsoft Game Studios 1.53100000
## 1350 2009                 Microsoft Game Studios 2.23000000
## 1351 2010                 Microsoft Game Studios 4.09666667
## 1352 2011                 Microsoft Game Studios 1.93454545
## 1353 2012                 Microsoft Game Studios 2.19000000
## 1354 2013                 Microsoft Game Studios 2.04875000
## 1355 2014                 Microsoft Game Studios 1.14555556
## 1356 2015                 Microsoft Game Studios 1.99000000
## 1357 2016                 Microsoft Game Studios 0.35500000
## 1358 1997        Midas Interactive Entertainment 0.02000000
## 1359 1998        Midas Interactive Entertainment 0.12000000
## 1360 1999        Midas Interactive Entertainment 0.04000000
## 1361 2000        Midas Interactive Entertainment 0.15571429
## 1362 2001        Midas Interactive Entertainment 0.14000000
## 1363 2002        Midas Interactive Entertainment 0.28000000
## 1364 2005        Midas Interactive Entertainment 0.06000000
## 1365 2006        Midas Interactive Entertainment 0.03000000
## 1366 2007        Midas Interactive Entertainment 0.06000000
## 1367 2008        Midas Interactive Entertainment 0.03000000
## 1368 2009        Midas Interactive Entertainment 0.03750000
## 1369 1996                           Midway Games 0.06500000
## 1370 1997                           Midway Games 0.35250000
## 1371 1998                           Midway Games 0.93000000
## 1372 1999                           Midway Games 0.36500000
## 1373 2000                           Midway Games 0.35000000
## 1374 2001                           Midway Games 0.47090909
## 1375 2002                           Midway Games 0.25272727
## 1376 2003                           Midway Games 0.18791667
## 1377 2004                           Midway Games 0.54800000
## 1378 2005                           Midway Games 0.24714286
## 1379 2006                           Midway Games 0.22000000
## 1380 2007                           Midway Games 0.47647059
## 1381 2008                           Midway Games 0.58000000
## 1382  N/A                           Midway Games 0.28000000
## 1383 2008                              Milestone 0.08000000
## 1384 2016                        Milestone S.r.l 0.02500000
## 1385 2014                       Milestone S.r.l. 0.10250000
## 1386 2015                       Milestone S.r.l. 0.08111111
## 1387 2016                       Milestone S.r.l. 0.04666667
## 1388 2008                         Minato Station 0.02000000
## 1389 2012                         Minato Station 0.02000000
## 1390 2015                         Minato Station 0.01000000
## 1391 1995                              Mindscape 0.24000000
## 1392 1996                              Mindscape 0.12500000
## 1393 1997                              Mindscape 0.14000000
## 1394 1998                              Mindscape 0.11000000
## 1395 1999                              Mindscape 0.04000000
## 1396 2000                              Mindscape 0.02000000
## 1397 2003                              Mindscape 0.09500000
## 1398 2007                              Mindscape 1.12000000
## 1399 2008                              Mindscape 0.17000000
## 1400 2009                              Mindscape 0.26846154
## 1401 2010                              Mindscape 0.11400000
## 1402 2008                          Mirai Shounen 0.02000000
## 1403 1993                                 Misawa 0.05000000
## 1404 1994                                 Misawa 0.02000000
## 1405 1998                                 Mitsui 0.08000000
## 1406 2015                              mixi, Inc 0.86000000
## 1407 2016                                MLB.com 0.04000000
## 1408 2015                                 Mojang 0.57800000
## 1409 2007               Monte Christo Multimedia 0.05000000
## 1410 2008                                   Moss 0.12000000
## 1411 2013                                   Moss 0.01000000
## 1412 1998                                    MTO 0.10000000
## 1413 2006                                    MTO 0.08000000
## 1414 2007                                    MTO 0.03666667
## 1415 2008                                    MTO 0.01000000
## 1416 2010                                    MTO 0.02000000
## 1417 2008                              MTV Games 0.39000000
## 1418 2009                              MTV Games 0.43437500
## 1419 2010                              MTV Games 0.82875000
## 1420 2011                              MTV Games 0.07000000
## 1421  N/A                              MTV Games 2.11000000
## 1422 2003                   Mud Duck Productions 0.30000000
## 1423 2004                   Mud Duck Productions 0.27500000
## 1424 2006                            Mumbo Jumbo 0.02000000
## 1425 2007                            Mumbo Jumbo 0.17500000
## 1426 2008                            Mumbo Jumbo 0.07000000
## 1427 1985                                  Mycom 0.02000000
## 1428 2006                           Myelin Media 0.04333333
## 1429 1981                               Mystique 0.82000000
## 1430 2004                                    N/A 0.27894737
## 1431 2005                                    N/A 0.28600000
## 1432 2007                                    N/A 1.21000000
## 1433 2010                                    N/A 0.08000000
## 1434 2011                                    N/A 0.06333333
## 1435 2012                                    N/A 0.02500000
## 1436 2014                                    N/A 0.01000000
## 1437 2016                                    N/A 0.01500000
## 1438  N/A                                    N/A 0.29500000
## 1439 1984                     Namco Bandai Games 1.14333333
## 1440 1985                     Namco Bandai Games 0.73000000
## 1441 1986                     Namco Bandai Games 2.64000000
## 1442 1987                     Namco Bandai Games 1.33500000
## 1443 1988                     Namco Bandai Games 1.21500000
## 1444 1989                     Namco Bandai Games 1.10000000
## 1445 1990                     Namco Bandai Games 0.31500000
## 1446 1991                     Namco Bandai Games 0.34333333
## 1447 1992                     Namco Bandai Games 0.52000000
## 1448 1993                     Namco Bandai Games 0.67250000
## 1449 1994                     Namco Bandai Games 0.28666667
## 1450 1995                     Namco Bandai Games 0.22909091
## 1451 1996                     Namco Bandai Games 0.43625000
## 1452 1997                     Namco Bandai Games 0.48769231
## 1453 1998                     Namco Bandai Games 0.65111111
## 1454 1999                     Namco Bandai Games 0.35285714
## 1455 2000                     Namco Bandai Games 0.69285714
## 1456 2001                     Namco Bandai Games 0.65666667
## 1457 2002                     Namco Bandai Games 0.51920000
## 1458 2003                     Namco Bandai Games 0.45478261
## 1459 2004                     Namco Bandai Games 0.21960000
## 1460 2005                     Namco Bandai Games 0.36073171
## 1461 2006                     Namco Bandai Games 0.17727273
## 1462 2007                     Namco Bandai Games 0.15489796
## 1463 2008                     Namco Bandai Games 0.20961538
## 1464 2009                     Namco Bandai Games 0.27048387
## 1465 2010                     Namco Bandai Games 0.23442857
## 1466 2011                     Namco Bandai Games 0.29052632
## 1467 2012                     Namco Bandai Games 0.18741176
## 1468 2013                     Namco Bandai Games 0.15809524
## 1469 2014                     Namco Bandai Games 0.13971014
## 1470 2015                     Namco Bandai Games 0.22882353
## 1471 2016                     Namco Bandai Games 0.16225000
## 1472  N/A                     Namco Bandai Games 0.11000000
## 1473 1996                                Natsume 1.25000000
## 1474 1997                                Natsume 0.10000000
## 1475 2000                                Natsume 0.27000000
## 1476 2001                                Natsume 0.09000000
## 1477 2002                                Natsume 0.15666667
## 1478 2003                                Natsume 0.37000000
## 1479 2006                                Natsume 0.03000000
## 1480 2007                                Natsume 0.13000000
## 1481 2009                                Natsume 0.08000000
## 1482 2010                                Natsume 0.23000000
## 1483 2014                                Natsume 0.15000000
## 1484 2008                           Navarre Corp 0.05000000
## 1485 2008                             Naxat Soft 0.01000000
## 1486 1996                                    NCS 0.20000000
## 1487 1997                                    NCS 0.11000000
## 1488 1998                                    NCS 0.09000000
## 1489 2005                                 NCSoft 0.03500000
## 1490 2006                                 NCSoft 0.02500000
## 1491 2012                                 NCSoft 2.30000000
## 1492 2014                                 NCSoft 0.17000000
## 1493 2002                        NDA Productions 0.12000000
## 1494 1995                                    NEC 0.14000000
## 1495 1996                                    NEC 0.14500000
## 1496 1996                       NEC Interchannel 0.06000000
## 1497 1997                       NEC Interchannel 0.10500000
## 1498 1998                       NEC Interchannel 0.16500000
## 1499 2000                       NEC Interchannel 0.07000000
## 1500 2008                       NEC Interchannel 0.04000000
## 1501 2007                     Neko Entertainment 0.03000000
## 1502 2008                     Neko Entertainment 0.02500000
## 1503 2009                     Neko Entertainment 0.02000000
## 1504 2010                     Neko Entertainment 0.09000000
## 1505 2010                                NetRevo 0.02000000
## 1506 2012                                NetRevo 0.01000000
## 1507 1995                                    New 0.36000000
## 1508 1992                    New World Computing 0.01000000
## 1509 1998                               NewKidCo 0.27500000
## 1510 1999                               NewKidCo 0.18500000
## 1511 2001                               NewKidCo 0.01000000
## 1512 2002                               NewKidCo 0.26000000
## 1513 2003                               NewKidCo 0.04666667
## 1514 2010                                  Nexon 0.03000000
## 1515 1995                             Nichibutsu 0.28000000
## 1516 2012               Nihon Falcom Corporation 0.21500000
## 1517 2014               Nihon Falcom Corporation 0.06000000
## 1518 2015               Nihon Falcom Corporation 0.15000000
## 1519 2016               Nihon Falcom Corporation 0.04333333
## 1520 1983                               Nintendo 1.82666667
## 1521 1984                               Nintendo 5.06222222
## 1522 1985                               Nintendo 7.13571429
## 1523 1986                               Nintendo 2.69666667
## 1524 1987                               Nintendo 2.98750000
## 1525 1988                               Nintendo 6.07333333
## 1526 1989                               Nintendo 7.09777778
## 1527 1990                               Nintendo 5.07000000
## 1528 1991                               Nintendo 1.22846154
## 1529 1992                               Nintendo 3.81100000
## 1530 1993                               Nintendo 2.22666667
## 1531 1994                               Nintendo 3.12375000
## 1532 1995                               Nintendo 1.67200000
## 1533 1996                               Nintendo 4.33529412
## 1534 1997                               Nintendo 1.98461538
## 1535 1998                               Nintendo 2.84764706
## 1536 1999                               Nintendo 3.26650000
## 1537 2000                               Nintendo 1.48043478
## 1538 2001                               Nintendo 2.06227273
## 1539 2002                               Nintendo 2.19590909
## 1540 2003                               Nintendo 1.41259259
## 1541 2004                               Nintendo 1.06403509
## 1542 2005                               Nintendo 2.83266667
## 1543 2006                               Nintendo 3.87943396
## 1544 2007                               Nintendo 2.48047619
## 1545 2008                               Nintendo 2.85062500
## 1546 2009                               Nintendo 4.02781250
## 1547 2010                               Nintendo 2.18107143
## 1548 2011                               Nintendo 1.98192308
## 1549 2012                               Nintendo 1.82161290
## 1550 2013                               Nintendo 2.29521739
## 1551 2014                               Nintendo 2.43250000
## 1552 2015                               Nintendo 0.84625000
## 1553 2016                               Nintendo 0.34700000
## 1554  N/A                               Nintendo 0.30428571
## 1555 2002                           Nippon Amuse 0.09000000
## 1556 2012                        Nippon Columbia 0.28000000
## 1557 2013                        Nippon Columbia 0.11500000
## 1558 2014                        Nippon Columbia 0.12000000
## 1559 2015                        Nippon Columbia 0.14000000
## 1560 2016                        Nippon Columbia 0.06000000
## 1561 1998                   Nippon Ichi Software 0.04000000
## 1562 2007                   Nippon Ichi Software 0.07833333
## 1563 2008                   Nippon Ichi Software 0.12800000
## 1564 2009                   Nippon Ichi Software 0.13777778
## 1565 2010                   Nippon Ichi Software 0.11777778
## 1566 2011                   Nippon Ichi Software 0.19888889
## 1567 2012                   Nippon Ichi Software 0.08600000
## 1568 2013                   Nippon Ichi Software 0.19277778
## 1569 2014                   Nippon Ichi Software 0.14736842
## 1570 2015                   Nippon Ichi Software 0.13363636
## 1571 2016                   Nippon Ichi Software 0.04750000
## 1572  N/A                   Nippon Ichi Software 0.30000000
## 1573 1996                         Nippon Telenet 0.13000000
## 1574 2014                              Nitroplus 0.01000000
## 1575 2015                              Nitroplus 0.01000000
## 1576 2007                                Nobilis 0.03000000
## 1577 2008                                Nobilis 0.23571429
## 1578 2009                                Nobilis 0.03000000
## 1579 2010                                Nobilis 0.14000000
## 1580 2007                            Nordcurrent 0.05000000
## 1581 2008                            Nordcurrent 0.20000000
## 1582 2009                            Nordcurrent 0.23000000
## 1583 2010                            Nordcurrent 0.05500000
## 1584 2008                           Nordic Games 0.27000000
## 1585 2009                           Nordic Games 0.31000000
## 1586 2010                           Nordic Games 0.15200000
## 1587 2011                           Nordic Games 0.20250000
## 1588 2012                           Nordic Games 0.13500000
## 1589 2013                           Nordic Games 0.03000000
## 1590 2014                           Nordic Games 0.05500000
## 1591 2015                           Nordic Games 0.06200000
## 1592 2016                           Nordic Games 0.01000000
## 1593 2005                              NovaLogic 0.40000000
## 1594 2009                              NovaLogic 0.02000000
## 1595 2009                            Number None 0.03000000
## 1596 2009                                O-Games 0.02000000
## 1597 2010                                O-Games 0.06583333
## 1598 2011                                O-Games 0.06750000
## 1599 2004                       O3 Entertainment 0.09000000
## 1600 2006                       O3 Entertainment 0.02000000
## 1601 2007                       O3 Entertainment 0.11000000
## 1602 1992                                  Ocean 0.28000000
## 1603 1993                                  Ocean 0.36000000
## 1604 1995                                  Ocean 0.14500000
## 1605 1996                                  Ocean 0.06500000
## 1606 1997                                  Ocean 0.55000000
## 1607 1998                                  Ocean 0.18000000
## 1608 2013                          Office Create 0.03000000
## 1609 2014                          Office Create 0.03000000
## 1610 1997                              On Demand 0.21000000
## 1611 2006                              Ongakukan 0.01000000
## 1612 1997                         Origin Systems 0.09000000
## 1613 2013                                Otomate 0.01000000
## 1614 2005                     Oxygen Interactive 0.34000000
## 1615 2006                     Oxygen Interactive 0.60000000
## 1616 2007                     Oxygen Interactive 0.14000000
## 1617 2008                     Oxygen Interactive 0.09571429
## 1618 2009                     Oxygen Interactive 0.05555556
## 1619  N/A                     Oxygen Interactive 0.01000000
## 1620 2009                               P2 Games 0.04000000
## 1621 2011                               P2 Games 0.32000000
## 1622 2002            Pacific Century Cyber Works 0.26000000
## 1623 1995                          Pack-In-Video 0.05500000
## 1624 1999                           Pack In Soft 0.48000000
## 1625 1989                                 Palcom 4.17000000
## 1626 1995                       Panther Software 0.17000000
## 1627 2007                                   Paon 0.07000000
## 1628 2008                                   Paon 0.03500000
## 1629 2010                                   Paon 0.02000000
## 1630 2011                                   Paon 0.02000000
## 1631 2013                       Paon Corporation 0.03000000
## 1632 2016                    Paradox Development 0.01000000
## 1633 2007                    Paradox Interactive 0.03000000
## 1634 2008                    Paradox Interactive 0.02000000
## 1635 2009                    Paradox Interactive 0.03000000
## 1636 2010                    Paradox Interactive 0.03000000
## 1637 2011                    Paradox Interactive 0.03000000
## 1638 2012                    Paradox Interactive 0.02000000
## 1639 2014                    Paradox Interactive 0.02000000
## 1640 2015                    Paradox Interactive 0.14000000
## 1641 2016                    Paradox Interactive 0.03000000
## 1642 1981                           Parker Bros. 1.11666667
## 1643 1982                           Parker Bros. 0.56000000
## 1644 1983                           Parker Bros. 0.25000000
## 1645 2009          Performance Designed Products 0.18000000
## 1646 2002                             Phantagram 0.05000000
## 1647 2009                            Phantom EFX 0.09000000
## 1648 2007                             Phenomedia 0.05500000
## 1649 2008                             Phenomedia 0.03000000
## 1650 2009                             Phenomedia 0.05000000
## 1651 2007                          Phoenix Games 0.02000000
## 1652 2010                                 Piacci 0.01000000
## 1653 2008                               Pinnacle 0.26000000
## 1654 2009                               Pinnacle 0.38000000
## 1655 1996                            Pioneer LDC 0.31000000
## 1656 1998                            Pioneer LDC 0.07000000
## 1657 2001                            Pioneer LDC 0.05000000
## 1658 2002                                Play It 0.57500000
## 1659 2003                                Play It 0.15500000
## 1660 2004                                Play It 0.34571429
## 1661 2005                                Play It 0.14333333
## 1662 2005                 Playlogic Game Factory 0.12000000
## 1663 2008                 Playlogic Game Factory 0.11000000
## 1664 2009                 Playlogic Game Factory 0.07818182
## 1665 1997                              Playmates 0.28000000
## 1666 2002                               Playmore 0.04000000
## 1667 2009                                  PlayV 0.02000000
## 1668 2010                                  PlayV 0.14000000
## 1669 2011                                 Plenty 0.02000000
## 1670 2009                             PM Studios 0.10000000
## 1671 2000                            Pony Canyon 0.05000000
## 1672 2006                           PopCap Games 0.01000000
## 1673 2007                           PopCap Games 0.04000000
## 1674 2008                           PopCap Games 0.10333333
## 1675 2009                           PopCap Games 0.13500000
## 1676 2010                           PopCap Games 0.14666667
## 1677 2011                           PopCap Games 0.07666667
## 1678 2007                         Popcorn Arcade 0.03571429
## 1679 2008                         Popcorn Arcade 0.08000000
## 1680 1999                        PopTop Software 0.11000000
## 1681 1995                                    Pow 0.05000000
## 1682 2007                                  PQube 0.07500000
## 1683 2008                                  PQube 0.07000000
## 1684 2009                                  PQube 0.26750000
## 1685 2010                                  PQube 0.17000000
## 1686 2011                                  PQube 0.08500000
## 1687 2012                                  PQube 0.08000000
## 1688 2013                                  PQube 0.21000000
## 1689 2015                                  PQube 0.06500000
## 1690 2016                                  PQube 0.04600000
## 1691 2002                          Princess Soft 0.02000000
## 1692 2006                          Princess Soft 0.03000000
## 1693 2008                          Princess Soft 0.02000000
## 1694 2007                              Prototype 0.01800000
## 1695 2008                              Prototype 0.02666667
## 1696 2009                              Prototype 0.02600000
## 1697 2010                              Prototype 0.02750000
## 1698 2011                              Prototype 0.02000000
## 1699 2012                              Prototype 0.03500000
## 1700 2013                              Prototype 0.01000000
## 1701 2014                              Prototype 0.01666667
## 1702 2015                              Prototype 0.02000000
## 1703 2016                              Prototype 0.01000000
## 1704 1994                              Psygnosis 0.06000000
## 1705 1995                              Psygnosis 0.24142857
## 1706 1996                              Psygnosis 0.33142857
## 1707 1997                              Psygnosis 0.19222222
## 1708 1998                              Psygnosis 0.18500000
## 1709 1999                              Psygnosis 0.20333333
## 1710 2000                              Psygnosis 0.12000000
## 1711 1982                                 Quelle 0.87000000
## 1712 1995                                  Quest 0.71000000
## 1713 2011                               Quinrose 0.02000000
## 1714 2012                               Quinrose 0.01500000
## 1715 2013                               Quinrose 0.01000000
## 1716 2014                               Quinrose 0.01000000
## 1717 1998                                Quintet 0.02000000
## 1718 2001                          Rage Software 0.07000000
## 1719 2002                          Rage Software 0.25600000
## 1720 2015                             Rain Games 0.01000000
## 1721 2001                              Rebellion 0.48000000
## 1722 2002                              Rebellion 0.01000000
## 1723 2015                 Rebellion Developments 0.15000000
## 1724 2010                      RED Entertainment 0.02000000
## 1725 1994                                Red Orb 2.81000000
## 1726 1997                                Red Orb 2.43000000
## 1727 1999                Red Storm Entertainment 1.14000000
## 1728 2001                Red Storm Entertainment 0.04000000
## 1729 2005                              RedOctane 1.22500000
## 1730 2006                              RedOctane 5.12000000
## 1731 2007                              RedOctane 1.11000000
## 1732 2009                     Reef Entertainment 0.06000000
## 1733 2010                     Reef Entertainment 0.12000000
## 1734 2012                     Reef Entertainment 0.02500000
## 1735 2004                           responDESIGN 0.09000000
## 1736 2005                           responDESIGN 0.04000000
## 1737 2009                     Revolution (Japan) 0.02000000
## 1738 2015                    Revolution Software 0.03500000
## 1739 2005                      Rising Star Games 0.11428571
## 1740 2006                      Rising Star Games 0.16222222
## 1741 2007                      Rising Star Games 0.25684211
## 1742 2008                      Rising Star Games 0.26000000
## 1743 2009                      Rising Star Games 0.23416667
## 1744 2010                      Rising Star Games 0.16500000
## 1745 2011                      Rising Star Games 0.14666667
## 1746 2012                      Rising Star Games 0.04500000
## 1747 2013                      Rising Star Games 0.16000000
## 1748 2016                      Rising Star Games 0.02000000
## 1749  N/A                      Rising Star Games 0.04000000
## 1750 1995                          Riverhillsoft 0.04000000
## 1751 2006                         Rocket Company 0.34500000
## 1752 2007                         Rocket Company 0.14666667
## 1753 2008                         Rocket Company 0.01000000
## 1754 2009                         Rocket Company 0.06000000
## 1755 2010                         Rocket Company 0.07500000
## 1756 2011                         Rocket Company 0.07000000
## 1757 2012                         Rocket Company 0.13000000
## 1758 2013                         Rocket Company 0.08000000
## 1759 2014                         Rocket Company 0.07000000
## 1760 2015                         Rocket Company 0.03000000
## 1761 2016                         Rocket Company 0.03000000
## 1762 2008                             Rondomedia 0.24333333
## 1763 2009                             Rondomedia 0.30800000
## 1764 2010                             Rondomedia 0.02000000
## 1765 2011                             Rondomedia 0.08000000
## 1766 2015                             Rondomedia 0.03000000
## 1767 2007                                    RTL 1.26000000
## 1768 2008                                    RTL 0.13200000
## 1769 2009                                    RTL 0.04000000
## 1770 2007                                 Russel 1.12000000
## 1771 2008                                 Russel 0.01000000
## 1772 2009                                 Russel 0.03000000
## 1773 2010                                 Russel 0.01666667
## 1774 1993                      Sammy Corporation 0.19000000
## 1775 2001                      Sammy Corporation 0.17000000
## 1776 2002                      Sammy Corporation 0.19200000
## 1777 2003                      Sammy Corporation 0.16000000
## 1778 2004                      Sammy Corporation 1.00000000
## 1779 2006                      Sammy Corporation 0.08000000
## 1780 1998                                 Saurus 0.02000000
## 1781 2007                        Scholastic Inc. 0.83000000
## 1782 2008                        Scholastic Inc. 0.26500000
## 1783 2010                        Scholastic Inc. 0.19333333
## 1784 2011                        Scholastic Inc. 0.22000000
## 1785 2002                                    SCi 0.87000000
## 1786 2003                                    SCi 0.19000000
## 1787 2004                                    SCi 0.17200000
## 1788 2005                                    SCi 0.09000000
## 1789 2013                             Screenlife 0.20750000
## 1790 2015                             Screenlife 0.07000000
## 1791 2016                             Screenlife 0.02000000
## 1792 2012                           SCS Software 0.13000000
## 1793  N/A                                  Sears 0.21000000
## 1794 1982                                   Sega 0.40000000
## 1795 1990                                   Sega 2.60000000
## 1796 1991                                   Sega 4.34000000
## 1797 1992                                   Sega 1.59600000
## 1798 1993                                   Sega 0.32166667
## 1799 1994                                   Sega 0.28961538
## 1800 1995                                   Sega 0.29370370
## 1801 1996                                   Sega 0.28600000
## 1802 1997                                   Sega 0.19454545
## 1803 1998                                   Sega 0.32785714
## 1804 1999                                   Sega 0.48444444
## 1805 2000                                   Sega 0.35272727
## 1806 2001                                   Sega 0.73333333
## 1807 2002                                   Sega 0.31538462
## 1808 2003                                   Sega 0.39156250
## 1809 2004                                   Sega 0.42607143
## 1810 2005                                   Sega 0.37387097
## 1811 2006                                   Sega 0.33638298
## 1812 2007                                   Sega 0.47380000
## 1813 2008                                   Sega 0.55507463
## 1814 2009                                   Sega 0.57953488
## 1815 2010                                   Sega 0.58692308
## 1816 2011                                   Sega 0.47971429
## 1817 2012                                   Sega 0.36920000
## 1818 2013                                   Sega 0.30941176
## 1819 2014                                   Sega 0.24521739
## 1820 2015                                   Sega 0.15500000
## 1821 2016                                   Sega 0.09625000
## 1822 2017                                   Sega 0.02000000
## 1823  N/A                                   Sega 0.32714286
## 1824 1995                       Seta Corporation 0.08250000
## 1825 1996                       Seta Corporation 0.15000000
## 1826 2013                          Seventh Chord 0.08000000
## 1827 1995                             Shogakukan 0.05500000
## 1828 2006                             Shogakukan 0.20000000
## 1829 2007                             Shogakukan 0.10000000
## 1830 2015                             Shogakukan 0.03000000
## 1831 2002           Simon & Schuster Interactive 0.11000000
## 1832 2015                   Slightly Mad Studios 0.46000000
## 1833 2009                    Slitherine Software 0.01500000
## 1834 2010                    Slitherine Software 0.13000000
## 1835  N/A                    Slitherine Software 0.05000000
## 1836 1993                                    SNK 0.10500000
## 1837 1994                                    SNK 0.20000000
## 1838 1995                                    SNK 0.14000000
## 1839 1996                                    SNK 0.09200000
## 1840 1997                                    SNK 0.08000000
## 1841 1998                                    SNK 0.13333333
## 1842 1999                                    SNK 0.05500000
## 1843 2000                                    SNK 0.09000000
## 1844 2005                                    SNK 0.07000000
## 1845 1995                           SNK Playmore 0.28000000
## 1846 1998                           SNK Playmore 0.04000000
## 1847 1999                           SNK Playmore 0.06500000
## 1848 2005                           SNK Playmore 0.06000000
## 1849 2006                           SNK Playmore 0.02000000
## 1850 2007                           SNK Playmore 0.04250000
## 1851 2008                           SNK Playmore 0.02000000
## 1852 2009                           SNK Playmore 0.03000000
## 1853 2010                           SNK Playmore 0.02000000
## 1854 1996                                Societa 0.04000000
## 1855 2016                               Sold Out 0.02000000
## 1856 1995                                 Sonnet 0.04000000
## 1857 1996                                 Sonnet 0.02000000
## 1858 1994            Sony Computer Entertainment 0.49000000
## 1859 1995            Sony Computer Entertainment 0.59516129
## 1860 1996            Sony Computer Entertainment 1.25250000
## 1861 1997            Sony Computer Entertainment 1.29117647
## 1862 1998            Sony Computer Entertainment 1.15466667
## 1863 1999            Sony Computer Entertainment 1.44960000
## 1864 2000            Sony Computer Entertainment 0.67781250
## 1865 2001            Sony Computer Entertainment 1.13921053
## 1866 2002            Sony Computer Entertainment 0.86166667
## 1867 2003            Sony Computer Entertainment 0.76000000
## 1868 2004            Sony Computer Entertainment 1.17200000
## 1869 2005            Sony Computer Entertainment 0.54958333
## 1870 2006            Sony Computer Entertainment 0.66294118
## 1871 2007            Sony Computer Entertainment 0.91560976
## 1872 2008            Sony Computer Entertainment 0.72000000
## 1873 2009            Sony Computer Entertainment 0.81177778
## 1874 2010            Sony Computer Entertainment 0.81139535
## 1875 2011            Sony Computer Entertainment 0.76111111
## 1876 2012            Sony Computer Entertainment 0.53541667
## 1877 2013            Sony Computer Entertainment 1.05083333
## 1878 2014            Sony Computer Entertainment 1.46307692
## 1879 2015            Sony Computer Entertainment 1.10100000
## 1880 2016            Sony Computer Entertainment 1.31200000
## 1881  N/A            Sony Computer Entertainment 0.22000000
## 1882 2014    Sony Computer Entertainment America 0.39333333
## 1883 2001     Sony Computer Entertainment Europe 3.17000000
## 1884 2004     Sony Computer Entertainment Europe 1.71000000
## 1885 2012     Sony Computer Entertainment Europe 0.25000000
## 1886 2013     Sony Computer Entertainment Europe 1.50285714
## 1887 2014     Sony Computer Entertainment Europe 1.65000000
## 1888 2015     Sony Computer Entertainment Europe 1.64000000
## 1889 2001               Sony Music Entertainment 0.14000000
## 1890 2003              Sony Online Entertainment 0.31000000
## 1891 2004              Sony Online Entertainment 1.28000000
## 1892 2005              Sony Online Entertainment 0.65000000
## 1893 2006              Sony Online Entertainment 0.16000000
## 1894 2011              Sony Online Entertainment 0.27333333
## 1895 1999                        SouthPeak Games 0.11000000
## 1896 2004                        SouthPeak Games 1.20000000
## 1897 2005                        SouthPeak Games 0.57000000
## 1898 2006                        SouthPeak Games 0.07000000
## 1899 2007                        SouthPeak Games 0.26000000
## 1900 2008                        SouthPeak Games 0.09250000
## 1901 2009                        SouthPeak Games 0.15153846
## 1902 2010                        SouthPeak Games 0.08285714
## 1903 2001                                  Spike 0.13000000
## 1904 2002                                  Spike 0.12000000
## 1905 2004                                  Spike 0.08000000
## 1906 2006                                  Spike 0.28500000
## 1907 2007                                  Spike 0.24000000
## 1908 2008                                  Spike 0.09750000
## 1909 2009                                  Spike 0.14250000
## 1910 2010                                  Spike 0.15750000
## 1911 2011                                  Spike 0.09500000
## 1912 2012                                  Spike 0.10250000
## 1913 1996                                    SPS 0.12000000
## 1914 1991                                 Square 1.77000000
## 1915 1994                                 Square 0.11000000
## 1916 1997                                 Square 0.63000000
## 1917 1999                                 Square 0.30500000
## 1918 2001                                 Square 0.52000000
## 1919 1999                              Square EA 0.80000000
## 1920 2003                            Square Enix 0.40333333
## 1921 2004                            Square Enix 1.35666667
## 1922 2005                            Square Enix 1.11833333
## 1923 2006                            Square Enix 1.11916667
## 1924 2007                            Square Enix 0.70869565
## 1925 2008                            Square Enix 0.41791667
## 1926 2009                            Square Enix 0.60166667
## 1927 2010                            Square Enix 0.69760000
## 1928 2011                            Square Enix 0.56636364
## 1929 2012                            Square Enix 0.94272727
## 1930 2013                            Square Enix 0.86625000
## 1931 2014                            Square Enix 0.39807692
## 1932 2015                            Square Enix 0.55375000
## 1933 2016                            Square Enix 0.17650000
## 1934  N/A                            Square Enix 0.22500000
## 1935 1987                             SquareSoft 0.84000000
## 1936 1988                             SquareSoft 0.76000000
## 1937 1989                             SquareSoft 1.10000000
## 1938 1990                             SquareSoft 1.40000000
## 1939 1991                             SquareSoft 0.57000000
## 1940 1992                             SquareSoft 1.71000000
## 1941 1993                             SquareSoft 1.50000000
## 1942 1994                             SquareSoft 1.87000000
## 1943 1995                             SquareSoft 1.27500000
## 1944 1996                             SquareSoft 0.30250000
## 1945 1997                             SquareSoft 0.83500000
## 1946 1998                             SquareSoft 0.83625000
## 1947 1999                             SquareSoft 1.69000000
## 1948 2000                             SquareSoft 1.63750000
## 1949 2001                             SquareSoft 0.25000000
## 1950 2002                             SquareSoft 0.06000000
## 1951 2003                             SquareSoft 2.13000000
## 1952 1996                                    SSI 0.19000000
## 1953 2016                        Stainless Games 0.01000000
## 1954 1997                               Starfish 0.36000000
## 1955 1999                               Starfish 0.11000000
## 1956 2001                               Starfish 0.05000000
## 1957 2007                               Starfish 0.05000000
## 1958 2009                               Starfish 0.02000000
## 1959 2010                               Starfish 0.02000000
## 1960 2011                               Starfish 0.02000000
## 1961 2012                               Starfish 0.02000000
## 1962 1981                         Starpath Corp. 0.33000000
## 1963 2004                                  Sting 0.10000000
## 1964 2006                                  Sting 0.03000000
## 1965 2007                                  Sting 0.11000000
## 1966 2008                                  Sting 0.07600000
## 1967 2010                                  Sting 0.03000000
## 1968 2009                       Storm City Games 0.12000000
## 1969 2010                       Storm City Games 0.08538462
## 1970 2011                       Storm City Games 0.03000000
## 1971 2001                         Strategy First 0.03000000
## 1972 1998                                Success 1.15000000
## 1973 1999                                Success 0.02000000
## 1974 2000                                Success 0.01000000
## 1975 2001                                Success 0.09000000
## 1976 2002                                Success 0.03000000
## 1977 2005                                Success 0.03500000
## 1978 2006                                Success 0.03000000
## 1979 2007                                Success 0.06400000
## 1980 2008                                Success 0.05000000
## 1981 2009                                Success 0.01000000
## 1982 2013                                Success 0.07000000
## 1983 2014                                Success 0.01000000
## 1984 2004                             Summitsoft 0.04000000
## 1985 2004                             Sunflowers 0.03000000
## 1986 2000                    Sunrise Interactive 0.06500000
## 1987 2006                    Sunrise Interactive 0.02000000
## 1988 2007                    Sunrise Interactive 0.02000000
## 1989 1994                                Sunsoft 0.04000000
## 1990 1995                                Sunsoft 0.03000000
## 1991 1996                                Sunsoft 0.07000000
## 1992 1997                                Sunsoft 0.11000000
## 1993 1998                                Sunsoft 0.14000000
## 1994 1999                                Sunsoft 0.14000000
## 1995 2000                                Sunsoft 0.25000000
## 1996 2011                                Sunsoft 0.09000000
## 1997 2006                                 Sweets 0.02000000
## 1998 2009                                 Sweets 0.03000000
## 1999 1998                   Swing! Entertainment 0.05000000
## 2000 2000                   Swing! Entertainment 0.09000000
## 2001 2001                   Swing! Entertainment 0.05500000
## 2002 2002                   Swing! Entertainment 0.14000000
## 2003 1998                                 Syscom 0.16000000
## 2004 1999                                 Syscom 0.11000000
## 2005 2013                               System 3 0.07333333
## 2006 2006               System 3 Arcade Software 0.06666667
## 2007 2007               System 3 Arcade Software 0.09500000
## 2008 2008               System 3 Arcade Software 0.22166667
## 2009 2009               System 3 Arcade Software 0.03000000
## 2010  N/A               System 3 Arcade Software 0.02000000
## 2011 2008                            System Soft 0.02000000
## 2012 2010                            System Soft 0.01000000
## 2013 2011                            System Soft 0.01000000
## 2014 1993                               T&E Soft 0.12000000
## 2015 1981                                  Taito 0.24000000
## 2016 1994                                  Taito 0.46000000
## 2017 1995                                  Taito 0.03000000
## 2018 1997                                  Taito 1.09000000
## 2019 1999                                  Taito 0.26500000
## 2020 2001                                  Taito 0.06000000
## 2021 2002                                  Taito 0.07666667
## 2022 2003                                  Taito 0.01000000
## 2023 2006                                  Taito 0.03000000
## 2024 2007                                  Taito 0.02666667
## 2025 2010                                  Taito 0.01000000
## 2026 1992                                 Takara 0.39000000
## 2027 1993                                 Takara 0.45000000
## 2028 1994                                 Takara 0.48000000
## 2029 1995                                 Takara 0.05000000
## 2030 1996                                 Takara 0.29000000
## 2031 1997                                 Takara 0.29000000
## 2032 1998                                 Takara 0.16000000
## 2033 1999                                 Takara 0.05000000
## 2034 2001                                 Takara 0.14000000
## 2035 2002                                 Takara 0.02000000
## 2036 2003                                 Takara 0.04000000
## 2037 2006                            Takara Tomy 0.11333333
## 2038 2007                            Takara Tomy 0.06250000
## 2039 2008                            Takara Tomy 0.08076923
## 2040 2009                            Takara Tomy 0.06000000
## 2041 2010                            Takara Tomy 0.05500000
## 2042 2011                            Takara Tomy 0.02000000
## 2043 2013                            Takara Tomy 0.08000000
## 2044 2015                            Takara Tomy 0.11000000
## 2045 1997                   Take-Two Interactive 0.90666667
## 2046 1998                   Take-Two Interactive 0.90833333
## 2047 1999                   Take-Two Interactive 0.42000000
## 2048 2000                   Take-Two Interactive 1.00500000
## 2049 2001                   Take-Two Interactive 1.70250000
## 2050 2002                   Take-Two Interactive 2.53625000
## 2051 2003                   Take-Two Interactive 0.75500000
## 2052 2004                   Take-Two Interactive 2.00916667
## 2053 2005                   Take-Two Interactive 0.64121951
## 2054 2006                   Take-Two Interactive 0.62393939
## 2055 2007                   Take-Two Interactive 0.53540541
## 2056 2008                   Take-Two Interactive 1.12634146
## 2057 2009                   Take-Two Interactive 0.46609756
## 2058 2010                   Take-Two Interactive 1.02400000
## 2059 2011                   Take-Two Interactive 0.58161290
## 2060 2012                   Take-Two Interactive 0.77071429
## 2061 2013                   Take-Two Interactive 3.27562500
## 2062 2014                   Take-Two Interactive 2.01733333
## 2063 2015                   Take-Two Interactive 0.88411765
## 2064 2016                   Take-Two Interactive 0.24083333
## 2065  N/A                   Take-Two Interactive 0.24000000
## 2066 2011                                 Takuyo 0.01000000
## 2067 2001                              TalonSoft 0.87000000
## 2068 2000                               TDK Core 0.18000000
## 2069 2002                               TDK Core 0.19000000
## 2070 2006                               TDK Core 0.11000000
## 2071 2007                               TDK Core 0.03000000
## 2072 2001                         TDK Mediactive 0.15000000
## 2073 2002                         TDK Mediactive 0.21750000
## 2074 2003                         TDK Mediactive 0.19642857
## 2075 2004                         TDK Mediactive 1.33000000
## 2076 2010                        Team17 Software 0.05000000
## 2077 1995              Technos Japan Corporation 0.02000000
## 2078 1998                             TechnoSoft 0.05000000
## 2079 1991                             Tecmo Koei 0.26500000
## 2080 1992                             Tecmo Koei 0.29000000
## 2081 1993                             Tecmo Koei 0.57500000
## 2082 1994                             Tecmo Koei 0.53000000
## 2083 1995                             Tecmo Koei 0.18000000
## 2084 1996                             Tecmo Koei 0.16250000
## 2085 1997                             Tecmo Koei 0.43250000
## 2086 1998                             Tecmo Koei 0.09500000
## 2087 1999                             Tecmo Koei 0.12600000
## 2088 2000                             Tecmo Koei 0.18700000
## 2089 2001                             Tecmo Koei 0.17750000
## 2090 2002                             Tecmo Koei 0.20909091
## 2091 2003                             Tecmo Koei 0.46444444
## 2092 2004                             Tecmo Koei 0.19230769
## 2093 2005                             Tecmo Koei 0.25230769
## 2094 2006                             Tecmo Koei 0.13961538
## 2095 2007                             Tecmo Koei 0.18000000
## 2096 2008                             Tecmo Koei 0.13600000
## 2097 2009                             Tecmo Koei 0.09714286
## 2098 2010                             Tecmo Koei 0.12736842
## 2099 2011                             Tecmo Koei 0.18882353
## 2100 2012                             Tecmo Koei 0.24300000
## 2101 2013                             Tecmo Koei 0.14052632
## 2102 2014                             Tecmo Koei 0.11259259
## 2103 2015                             Tecmo Koei 0.06457143
## 2104 2016                             Tecmo Koei 0.05411765
## 2105 1999                              Telegames 0.02000000
## 2106 2003                              Telegames 0.10000000
## 2107 2005                              Telegames 0.02000000
## 2108 2007                              Telegames 0.27000000
## 2109 2008                              Telegames 0.08000000
## 2110 2010                              Telegames 0.17000000
## 2111 2011                         Telltale Games 0.06333333
## 2112 2014                         Telltale Games 0.17545455
## 2113 2015                         Telltale Games 0.05571429
## 2114 2016                         Telltale Games 0.05250000
## 2115 1995                                Telstar 0.06000000
## 2116 1998                                Telstar 0.10500000
## 2117 2011                          Tetris Online 0.43000000
## 2118 2009                                    TGL 0.01000000
## 2119 2015                                    TGL 0.03000000
## 2120 2008                  The Adventure Company 0.08333333
## 2121 2009                  The Adventure Company 0.13000000
## 2122 2000                   The Learning Company 0.05000000
## 2123 1995                                    THQ 0.31500000
## 2124 1997                                    THQ 0.63333333
## 2125 1998                                    THQ 1.19727273
## 2126 1999                                    THQ 0.50125000
## 2127 2000                                    THQ 1.05733333
## 2128 2001                                    THQ 0.61805556
## 2129 2002                                    THQ 0.48872727
## 2130 2003                                    THQ 0.45906250
## 2131 2004                                    THQ 0.58551020
## 2132 2005                                    THQ 0.35285714
## 2133 2006                                    THQ 0.43754386
## 2134 2007                                    THQ 0.44986486
## 2135 2008                                    THQ 0.49918033
## 2136 2009                                    THQ 0.42819444
## 2137 2010                                    THQ 0.38789474
## 2138 2011                                    THQ 0.35210526
## 2139 2012                                    THQ 0.83750000
## 2140 2013                                    THQ 0.36000000
## 2141  N/A                                    THQ 0.11000000
## 2142 1981                            Tigervision 0.57000000
## 2143 1982                            Tigervision 0.28000000
## 2144 1994                Time Warner Interactive 0.11000000
## 2145 1995                Time Warner Interactive 0.08000000
## 2146 1996                Time Warner Interactive 0.05333333
## 2147 1993                                  Titus 0.07000000
## 2148 1997                                  Titus 0.47000000
## 2149 1998                                  Titus 0.15500000
## 2150 1999                                  Titus 0.24500000
## 2151 2000                                  Titus 0.04000000
## 2152 2001                                  Titus 0.24750000
## 2153 2002                                  Titus 0.10000000
## 2154 2003                                  Titus 0.02000000
## 2155 2008                                 Tivola 0.05000000
## 2156 2009                                 Tivola 0.06000000
## 2157 1993                                   TOHO 0.11000000
## 2158 2007                                  Tommo 0.05000000
## 2159 2009                                  Tommo 0.02000000
## 2160 2011                                  Tommo 0.04000000
## 2161 1995                       Tomy Corporation 0.33000000
## 2162 1996                       Tomy Corporation 0.17000000
## 2163 1998                       Tomy Corporation 0.23000000
## 2164 2003                       Tomy Corporation 0.26800000
## 2165 2004                       Tomy Corporation 0.44000000
## 2166 2005                       Tomy Corporation 0.23333333
## 2167 2006                       Tomy Corporation 0.02000000
## 2168 2007                       Tomy Corporation 1.02000000
## 2169 2008                       Tomy Corporation 0.39000000
## 2170 2009                       Tomy Corporation 0.03000000
## 2171 2010                       Tomy Corporation 0.13000000
## 2172 2011                    TopWare Interactive 0.03000000
## 2173 2015                    TopWare Interactive 0.01000000
## 2174  N/A                    TopWare Interactive 0.04000000
## 2175 2007                             Touchstone 0.14000000
## 2176 2008                             Touchstone 0.48000000
## 2177 2010                              Tradewest 0.03666667
## 2178 2012                           Trion Worlds 0.01000000
## 2179 2013                           Trion Worlds 0.38000000
## 2180 2011                   Tripwire Interactive 0.14000000
## 2181 2014                  Tru Blu Entertainment 0.01500000
## 2182 2015                  Tru Blu Entertainment 0.04166667
## 2183 2008                               Tryfirst 0.03000000
## 2184 1998                                    TYO 0.42000000
## 2185 2014                              Type-Moon 0.10000000
## 2186 1995                              U.S. Gold 0.09000000
## 2187 1996                              U.S. Gold 0.07500000
## 2188 1995                                Ubisoft 3.03000000
## 2189 1996                                Ubisoft 0.16000000
## 2190 1997                                Ubisoft 0.25000000
## 2191 1998                                Ubisoft 0.10000000
## 2192 1999                                Ubisoft 0.35461538
## 2193 2000                                Ubisoft 0.22619048
## 2194 2001                                Ubisoft 0.19960000
## 2195 2002                                Ubisoft 0.36840909
## 2196 2003                                Ubisoft 0.35936170
## 2197 2004                                Ubisoft 0.48125000
## 2198 2005                                Ubisoft 0.28929825
## 2199 2006                                Ubisoft 0.28311475
## 2200 2007                                Ubisoft 0.55227273
## 2201 2008                                Ubisoft 0.51285714
## 2202 2009                                Ubisoft 0.46088235
## 2203 2010                                Ubisoft 0.59194444
## 2204 2011                                Ubisoft 0.55206897
## 2205 2012                                Ubisoft 1.16593750
## 2206 2013                                Ubisoft 0.94448276
## 2207 2014                                Ubisoft 0.95340909
## 2208 2015                                Ubisoft 0.39968750
## 2209 2016                                Ubisoft 0.75076923
## 2210 2020                                Ubisoft 0.29000000
## 2211  N/A                                Ubisoft 0.39333333
## 2212 2009                         Ubisoft Annecy 0.47666667
## 2213 2010                         Ubisoft Annecy 0.28250000
## 2214 2011                         Ubisoft Annecy 0.41000000
## 2215 2012                         Ubisoft Annecy 0.16750000
## 2216 1997                            UEP Systems 2.25000000
## 2217 2007                        UFO Interactive 0.03000000
## 2218 2008                        UFO Interactive 0.03750000
## 2219 2009                        UFO Interactive 0.05666667
## 2220 2010                        UFO Interactive 0.11200000
## 2221 2011                        UFO Interactive 0.02000000
## 2222 2012                        UFO Interactive 0.01000000
## 2223 2016                      UIG Entertainment 0.01000000
## 2224  N/A                            Ultravision 0.47000000
## 2225 1982                        Universal Gamex 0.63000000
## 2226 2001                  Universal Interactive 2.96000000
## 2227 2002                  Universal Interactive 0.62500000
## 2228 2003                  Universal Interactive 0.48833333
## 2229  N/A                  Universal Interactive 0.17000000
## 2230 1981                                Unknown 0.29000000
## 2231 1998                                Unknown 0.83000000
## 2232 2001                                Unknown 0.75000000
## 2233 2002                                Unknown 0.03333333
## 2234 2003                                Unknown 0.93000000
## 2235 2004                                Unknown 0.03000000
## 2236 2005                                Unknown 0.89000000
## 2237 2006                                Unknown 0.06000000
## 2238 2007                                Unknown 0.08333333
## 2239 2008                                Unknown 0.16000000
## 2240 2009                                Unknown 0.02000000
## 2241 2010                                Unknown 0.10000000
## 2242 2011                                Unknown 0.11404762
## 2243 2012                                Unknown 0.05333333
## 2244 2013                                Unknown 0.03000000
## 2245 2014                                Unknown 0.12666667
## 2246 2015                                Unknown 0.01666667
## 2247 2016                                Unknown 0.04000000
## 2248  N/A                                Unknown 0.20407767
## 2249 2005                           Valcon Games 0.11000000
## 2250 2006                           Valcon Games 0.03000000
## 2251 2008                           Valcon Games 0.07000000
## 2252 2009                           Valcon Games 0.05333333
## 2253 2010                           Valcon Games 0.01000000
## 2254 2005                               ValuSoft 0.24000000
## 2255 2008                               ValuSoft 0.03000000
## 2256 2009                               ValuSoft 0.11000000
## 2257 2011                               ValuSoft 0.01000000
## 2258 2011                                  Valve 1.74000000
## 2259 2009                         Valve Software 0.37000000
## 2260 2011                         Valve Software 1.43000000
## 2261 1994                                    Vap 0.05000000
## 2262 2000                  Vatical Entertainment 0.11000000
## 2263 1996                              Vic Tokai 0.12000000
## 2264 1997                              Vic Tokai 0.15000000
## 2265 1993                     Victor Interactive 0.11000000
## 2266 1995                     Victor Interactive 0.04500000
## 2267 1997                     Victor Interactive 0.23000000
## 2268 1998                     Victor Interactive 0.16000000
## 2269 2000                     Victor Interactive 0.18000000
## 2270 2001                     Victor Interactive 0.05000000
## 2271 2002                     Victor Interactive 0.02000000
## 2272 1992                           Video System 0.28000000
## 2273 1997                           Video System 0.19000000
## 2274 1998                           Video System 1.60000000
## 2275 2000                           Video System 0.11000000
## 2276 2012                                  Views 0.02000000
## 2277 2014                                  Views 0.01000000
## 2278 2008                          Vir2L Studios 0.05000000
## 2279 2009                          Vir2L Studios 0.16000000
## 2280 1992                     Virgin Interactive 0.78000000
## 2281 1994                     Virgin Interactive 2.27000000
## 2282 1995                     Virgin Interactive 0.39000000
## 2283 1996                     Virgin Interactive 1.14076923
## 2284 1997                     Virgin Interactive 0.25333333
## 2285 1998                     Virgin Interactive 0.86700000
## 2286 1999                     Virgin Interactive 0.21333333
## 2287 2000                     Virgin Interactive 0.42500000
## 2288 2001                     Virgin Interactive 0.76166667
## 2289 2002                     Virgin Interactive 0.13500000
## 2290 2010                     Virtual Play Games 0.03000000
## 2291 2011                                  Visco 0.02000000
## 2292 1995                          Vivendi Games 0.02000000
## 2293 1997                          Vivendi Games 2.06500000
## 2294 1998                          Vivendi Games 0.02666667
## 2295 1999                          Vivendi Games 0.40000000
## 2296 2000                          Vivendi Games 0.10000000
## 2297 2001                          Vivendi Games 0.98500000
## 2298 2002                          Vivendi Games 0.27187500
## 2299 2003                          Vivendi Games 0.48218750
## 2300 2004                          Vivendi Games 0.37555556
## 2301 2005                          Vivendi Games 0.24880000
## 2302 2006                          Vivendi Games 0.24105263
## 2303 2007                          Vivendi Games 0.25380952
## 2304 2008                          Vivendi Games 0.33312500
## 2305 2009                          Vivendi Games 0.13000000
## 2306  N/A                          Vivendi Games 0.42666667
## 2307 2001                                Wanadoo 0.14000000
## 2308 2002                                Wanadoo 0.46000000
## 2309 2003                                Wanadoo 0.01500000
## 2310 2005                                Wanadoo 0.02000000
## 2311 2007                                Warashi 0.02000000
## 2312 2011                          Wargaming.net 0.29000000
## 2313 2003 Warner Bros. Interactive Entertainment 0.33500000
## 2314 2005 Warner Bros. Interactive Entertainment 0.06000000
## 2315 2006 Warner Bros. Interactive Entertainment 0.29000000
## 2316 2007 Warner Bros. Interactive Entertainment 0.28000000
## 2317 2008 Warner Bros. Interactive Entertainment 1.17200000
## 2318 2009 Warner Bros. Interactive Entertainment 0.49034483
## 2319 2010 Warner Bros. Interactive Entertainment 0.47181818
## 2320 2011 Warner Bros. Interactive Entertainment 1.05473684
## 2321 2012 Warner Bros. Interactive Entertainment 0.68238095
## 2322 2013 Warner Bros. Interactive Entertainment 0.78307692
## 2323 2014 Warner Bros. Interactive Entertainment 0.61400000
## 2324 2015 Warner Bros. Interactive Entertainment 0.83615385
## 2325 2016 Warner Bros. Interactive Entertainment 0.25142857
## 2326  N/A Warner Bros. Interactive Entertainment 0.77000000
## 2327 1997                                   Warp 0.07000000
## 2328 2015                WayForward Technologies 0.05000000
## 2329 1999                       Westwood Studios 1.55000000
## 2330 2007                White Park Bay Software 0.16000000
## 2331 1982                     Wizard Video Games 0.62000000
## 2332 2002                      Xicat Interactive 0.07000000
## 2333 2003                      Xicat Interactive 0.03000000
## 2334 1997                     Xing Entertainment 0.24000000
## 2335 2005                                Xplosiv 0.20000000
## 2336 2006                                Xplosiv 0.10000000
## 2337 2007                                Xplosiv 0.11000000
## 2338 2008                                Xplosiv 0.27333333
## 2339 2002                               XS Games 0.24000000
## 2340 2004                               XS Games 0.02000000
## 2341 2005                               XS Games 0.13000000
## 2342 2007                               XS Games 0.02000000
## 2343 2008                               XS Games 0.03000000
## 2344 2009                               XS Games 0.23666667
## 2345 2010                               XS Games 0.24000000
## 2346 2012                            Xseed Games 0.55000000
## 2347 2013                            Xseed Games 0.19000000
## 2348 2014                            Xseed Games 0.11000000
## 2349 2015                            Xseed Games 0.05000000
## 2350 2015                       Yacht Club Games 0.10666667
## 2351 2006                   Yamasa Entertainment 0.02000000
## 2352 2006                                   Yeti 0.01000000
## 2353 2007                                   Yeti 0.01000000
## 2354 2008                                   Yeti 0.05000000
## 2355 2009                                   Yeti 0.01500000
## 2356 2010                                   Yeti 0.02750000
## 2357 2012                                   Yeti 0.01000000
## 2358 2016                                   Yeti 0.02000000
## 2359 2005                                 Yuke's 0.03000000
## 2360 2006                                 Yuke's 0.03000000
## 2361 2007                                 Yuke's 0.02000000
## 2362 1995                                Yumedia 0.06000000
## 2363 2006                                 Zenrin 0.04000000
## 2364 2007                                 Zenrin 0.02000000
## 2365 2002                 Zoo Digital Publishing 0.06166667
## 2366 2003                 Zoo Digital Publishing 0.25111111
## 2367 2004                 Zoo Digital Publishing 0.17176471
## 2368 2005                 Zoo Digital Publishing 0.10290323
## 2369 2006                 Zoo Digital Publishing 0.06166667
## 2370 2007                 Zoo Digital Publishing 0.09750000
## 2371 2008                 Zoo Digital Publishing 0.12083333
## 2372 2009                 Zoo Digital Publishing 0.10363636
## 2373 2008                              Zoo Games 0.11750000
## 2374 2009                              Zoo Games 0.22090909
## 2375 2010                              Zoo Games 0.09166667
## 2376 2011                              Zoo Games 0.17500000
## 2377 2007                            Zushi Games 0.05000000
## 2378 2008                            Zushi Games 0.14000000
## 2379 2009                            Zushi Games 0.09846154
aggregate(Global_Sales,by=list(Genre = Genre,Publisher=Publisher),mean)
##             Genre                              Publisher          x
## 1       Adventure                        10TACLE Studios 0.02000000
## 2          Puzzle                        10TACLE Studios 0.03000000
## 3        Strategy                        10TACLE Studios 0.06000000
## 4          Racing                             1C Company 0.04000000
## 5    Role-Playing                             1C Company 0.01000000
## 6        Strategy                             1C Company 0.05000000
## 7          Action           20th Century Fox Video Games 0.43000000
## 8         Shooter           20th Century Fox Video Games 0.22000000
## 9          Puzzle                                 2D Boy 0.04000000
## 10         Action                                    3DO 0.36941176
## 11      Adventure                                    3DO 0.11666667
## 12       Fighting                                    3DO 0.55000000
## 13       Platform                                    3DO 0.13000000
## 14         Puzzle                                    3DO 0.11000000
## 15   Role-Playing                                    3DO 0.25000000
## 16        Shooter                                    3DO 0.15400000
## 17         Sports                                    3DO 0.26166667
## 18       Strategy                                    3DO 0.11000000
## 19         Sports                                49Games 0.04000000
## 20         Action                              505 Games 0.15333333
## 21      Adventure                              505 Games 0.10571429
## 22       Fighting                              505 Games 0.08272727
## 23           Misc                              505 Games 0.14612903
## 24       Platform                              505 Games 0.09500000
## 25         Puzzle                              505 Games 0.15866667
## 26         Racing                              505 Games 0.03000000
## 27   Role-Playing                              505 Games 0.11700000
## 28        Shooter                              505 Games 0.30944444
## 29     Simulation                              505 Games 0.54243902
## 30         Sports                              505 Games 0.53037037
## 31       Strategy                              505 Games 0.06666667
## 32         Action                                    5pb 0.02600000
## 33      Adventure                                    5pb 0.02734694
## 34       Fighting                                    5pb 0.04000000
## 35   Role-Playing                                    5pb 0.03000000
## 36        Shooter                                    5pb 0.01666667
## 37     Simulation                                    5pb 0.02000000
## 38           Misc                               7G//AMES 0.03000000
## 39         Puzzle                               7G//AMES 0.01000000
## 40     Simulation                               7G//AMES 0.02000000
## 41         Sports                             989 Sports 0.38000000
## 42         Action                            989 Studios 1.31500000
## 43         Racing                            989 Studios 0.57333333
## 44         Sports                            989 Studios 0.99666667
## 45         Action                               Abylight 0.08000000
## 46         Action                  Acclaim Entertainment 0.10928571
## 47      Adventure                  Acclaim Entertainment 0.31000000
## 48       Fighting                  Acclaim Entertainment 0.54193548
## 49           Misc                  Acclaim Entertainment 0.23800000
## 50       Platform                  Acclaim Entertainment 0.46800000
## 51         Puzzle                  Acclaim Entertainment 0.15000000
## 52         Racing                  Acclaim Entertainment 0.33454545
## 53   Role-Playing                  Acclaim Entertainment 0.26000000
## 54        Shooter                  Acclaim Entertainment 0.37705882
## 55         Sports                  Acclaim Entertainment 0.34750000
## 56       Strategy                  Acclaim Entertainment 0.11500000
## 57       Platform                               Accolade 0.19000000
## 58         Racing                               Accolade 1.30000000
## 59         Sports                               Accolade 0.19000000
## 60         Action                            Ackkstudios 0.12750000
## 61      Adventure                            Ackkstudios 0.07000000
## 62   Role-Playing                            Ackkstudios 0.07000000
## 63         Sports                            Ackkstudios 0.05500000
## 64       Strategy                            Ackkstudios 0.01000000
## 65         Action                                Acquire 0.08000000
## 66      Adventure                                Acquire 0.11000000
## 67   Role-Playing                                Acquire 0.07625000
## 68       Strategy                                Acquire 0.08000000
## 69         Action                             Activision 0.45912903
## 70      Adventure                             Activision 0.21680000
## 71       Fighting                             Activision 0.40857143
## 72           Misc                             Activision 0.74320388
## 73       Platform                             Activision 0.55666667
## 74         Puzzle                             Activision 0.15142857
## 75         Racing                             Activision 0.23391892
## 76   Role-Playing                             Activision 1.14121951
## 77        Shooter                             Activision 1.88597484
## 78     Simulation                             Activision 0.35913043
## 79         Sports                             Activision 0.52715278
## 80       Strategy                             Activision 0.80454545
## 81         Action                    Activision Blizzard 0.48000000
## 82         Action                       Activision Value 0.05000000
## 83           Misc                       Activision Value 0.05000000
## 84        Shooter                       Activision Value 0.16500000
## 85         Sports                       Activision Value 0.27909091
## 86       Strategy                       Activision Value 0.06000000
## 87         Action                       Adeline Software 0.17000000
## 88     Simulation                               Aerosoft 0.01500000
## 89         Action                 Agatsuma Entertainment 0.20000000
## 90           Misc                 Agatsuma Entertainment 0.08000000
## 91       Platform                 Agatsuma Entertainment 0.03000000
## 92         Action                                 Agetec 0.11500000
## 93       Fighting                                 Agetec 0.17000000
## 94           Misc                                 Agetec 0.08000000
## 95         Racing                                 Agetec 0.04000000
## 96     Simulation                                 Agetec 0.31000000
## 97         Sports                                 Agetec 1.08000000
## 98       Strategy                                 Agetec 0.03000000
## 99         Action                            Aksys Games 0.05000000
## 100     Adventure                            Aksys Games 0.04666667
## 101  Role-Playing                            Aksys Games 0.06250000
## 102        Action                   Alawar Entertainment 0.01000000
## 103      Strategy                   Alawar Entertainment 0.04000000
## 104        Action                              Alchemist 0.06333333
## 105     Adventure                              Alchemist 0.06750000
## 106          Misc                              Alchemist 0.04500000
## 107  Role-Playing                              Alchemist 0.02000000
## 108       Shooter                              Alchemist 0.02666667
## 109        Action                   Alternative Software 0.02000000
## 110        Sports                   Alternative Software 0.03600000
## 111       Shooter                                 Altron 0.07000000
## 112          Misc                                 Alvion 0.02000000
## 113        Action                     American Softworks 0.23000000
## 114      Fighting                          Angel Studios 0.12000000
## 115  Role-Playing                          Angel Studios 0.29000000
## 116      Strategy                          Angel Studios 0.03000000
## 117        Action                        Answer Software 0.50000000
## 118      Fighting                         AQ Interactive 0.09500000
## 119          Misc                         AQ Interactive 0.11333333
## 120     Adventure                              Aqua Plus 0.05923077
## 121      Fighting                              Aqua Plus 0.10000000
## 122          Misc                              Aqua Plus 0.03000000
## 123  Role-Playing                              Aqua Plus 0.05500000
## 124      Strategy                              Aqua Plus 0.06000000
## 125        Sports                                  Aques 0.16000000
## 126        Action                       Arc System Works 0.02000000
## 127     Adventure                       Arc System Works 0.02700000
## 128      Fighting                       Arc System Works 0.12000000
## 129          Misc                       Arc System Works 0.05000000
## 130  Role-Playing                       Arc System Works 0.01000000
## 131        Sports                       Arc System Works 0.06250000
## 132      Fighting                    Arena Entertainment 2.67000000
## 133        Sports                    Arena Entertainment 2.05000000
## 134     Adventure                                   Aria 0.07000000
## 135          Misc                                  Arika 0.02000000
## 136  Role-Playing                                  Arika 0.05000000
## 137       Shooter                                  Arika 0.02000000
## 138  Role-Playing                                ArtDink 0.08000000
## 139    Simulation                                ArtDink 0.04333333
## 140      Strategy                                ArtDink 0.12000000
## 141          Misc                             Aruze Corp 0.39333333
## 142        Action                              ASC Games 0.05000000
## 143        Racing                              ASC Games 1.31000000
## 144        Sports                              ASC Games 0.66000000
## 145      Strategy                  Ascaron Entertainment 0.01000000
## 146  Role-Playing             Ascaron Entertainment GmbH 0.06000000
## 147      Strategy             Ascaron Entertainment GmbH 0.02500000
## 148     Adventure                    ASCII Entertainment 0.35500000
## 149          Misc                    ASCII Entertainment 0.21000000
## 150        Racing                    ASCII Entertainment 0.36000000
## 151  Role-Playing                    ASCII Entertainment 0.30333333
## 152    Simulation                    ASCII Entertainment 0.32000000
## 153        Sports                    ASCII Entertainment 0.88500000
## 154      Strategy                    ASCII Entertainment 0.37000000
## 155     Adventure                      ASCII Media Works 0.03000000
## 156  Role-Playing                      ASCII Media Works 0.03000000
## 157        Action                                 Asgard 0.01500000
## 158          Misc                                 Asgard 0.03666667
## 159          Misc                                    ASK 0.03000000
## 160     Adventure                Asmik Ace Entertainment 0.04000000
## 161      Fighting                Asmik Ace Entertainment 0.10000000
## 162    Simulation                Asmik Ace Entertainment 0.09000000
## 163        Sports                             Asmik Corp 0.08500000
## 164     Adventure                                  Aspyr 0.03000000
## 165          Misc                                  Aspyr 0.04000000
## 166  Role-Playing                                  Aspyr 0.09000000
## 167    Simulation                                  Aspyr 0.20000000
## 168        Sports                                  Aspyr 0.09000000
## 169        Action                               Astragon 0.04000000
## 170     Adventure                               Astragon 0.19000000
## 171        Puzzle                               Astragon 0.10000000
## 172    Simulation                               Astragon 0.02000000
## 173     Adventure                   Asylum Entertainment 0.14333333
## 174      Platform                   Asylum Entertainment 0.07000000
## 175    Simulation                   Asylum Entertainment 0.04500000
## 176        Action                                  Atari 0.49351852
## 177     Adventure                                  Atari 0.20941176
## 178      Fighting                                  Atari 0.70216216
## 179          Misc                                  Atari 0.27730769
## 180      Platform                                  Atari 0.35476190
## 181        Puzzle                                  Atari 0.98136364
## 182        Racing                                  Atari 0.35361111
## 183  Role-Playing                                  Atari 0.28821429
## 184       Shooter                                  Atari 0.56725000
## 185    Simulation                                  Atari 0.54222222
## 186        Sports                                  Atari 0.22392857
## 187      Strategy                                  Atari 0.22764706
## 188     Adventure                                 Athena 0.07000000
## 189        Sports                                 Athena 0.02000000
## 190        Action                                  Atlus 0.05666667
## 191     Adventure                                  Atlus 0.03000000
## 192      Fighting                                  Atlus 0.23800000
## 193          Misc                                  Atlus 0.02000000
## 194      Platform                                  Atlus 0.03000000
## 195        Racing                                  Atlus 0.12000000
## 196  Role-Playing                                  Atlus 0.22804348
## 197       Shooter                                  Atlus 0.05500000
## 198    Simulation                                  Atlus 0.11000000
## 199        Sports                                  Atlus 0.09000000
## 200      Strategy                                  Atlus 0.05500000
## 201        Action                     Avalon Interactive 0.17000000
## 202        Racing                     Avalon Interactive 0.05000000
## 203  Role-Playing                     Avalon Interactive 0.06000000
## 204       Shooter                     Avalon Interactive 0.04000000
## 205    Simulation                     Avalon Interactive 0.10000000
## 206        Action                              Avanquest 0.12000000
## 207     Adventure                              Avanquest 0.01000000
## 208          Misc                              Avanquest 0.19333333
## 209        Puzzle                              Avanquest 0.12642857
## 210    Simulation                              Avanquest 0.04000000
## 211        Sports                              Avanquest 0.04000000
## 212        Action                     Avanquest Software 0.02000000
## 213     Adventure                     Avanquest Software 0.52333333
## 214          Misc                     Avanquest Software 0.02000000
## 215        Sports                                  Axela 0.25000000
## 216        Action                     BAM! Entertainment 0.12111111
## 217     Adventure                     BAM! Entertainment 0.26333333
## 218      Fighting                     BAM! Entertainment 0.11000000
## 219          Misc                     BAM! Entertainment 0.20000000
## 220      Platform                     BAM! Entertainment 0.19000000
## 221        Racing                     BAM! Entertainment 0.11142857
## 222       Shooter                     BAM! Entertainment 0.10875000
## 223        Sports                     BAM! Entertainment 0.17500000
## 224        Action                              Banpresto 0.07500000
## 225     Adventure                              Banpresto 0.10666667
## 226      Fighting                              Banpresto 0.04166667
## 227          Misc                              Banpresto 0.01000000
## 228      Platform                              Banpresto 0.04000000
## 229        Puzzle                              Banpresto 0.98500000
## 230        Racing                              Banpresto 0.04000000
## 231  Role-Playing                              Banpresto 0.15411765
## 232       Shooter                              Banpresto 0.08000000
## 233    Simulation                              Banpresto 0.23333333
## 234        Sports                              Banpresto 0.19000000
## 235      Strategy                              Banpresto 0.36357143
## 236          Misc                                Benesse 0.05500000
## 237        Action                               Berkeley 0.03000000
## 238        Action                     Bethesda Softworks 0.56705882
## 239        Racing                     Bethesda Softworks 0.27571429
## 240  Role-Playing                     Bethesda Softworks 3.18588235
## 241       Shooter                     Bethesda Softworks 0.65000000
## 242    Simulation                     Bethesda Softworks 0.09500000
## 243        Sports                     Bethesda Softworks 0.46800000
## 244      Strategy                     Bethesda Softworks 0.11500000
## 245     Adventure                    Big Ben Interactive 0.02000000
## 246      Platform                    Big Ben Interactive 0.02000000
## 247        Racing                    Big Ben Interactive 0.03000000
## 248       Shooter                    Big Ben Interactive 0.09000000
## 249        Sports                    Big Ben Interactive 0.40500000
## 250        Action                         Big Fish Games 0.03000000
## 251     Adventure                         Big Fish Games 0.02000000
## 252        Sports                     Bigben Interactive 0.06461538
## 253        Racing                      bitComposer Games 0.03000000
## 254    Simulation                      bitComposer Games 0.09500000
## 255        Action                       Black Bean Games 0.15000000
## 256          Misc                       Black Bean Games 0.06600000
## 257        Racing                       Black Bean Games 0.09315789
## 258        Sports                       Black Bean Games 0.12250000
## 259      Strategy                       Black Bean Games 0.06000000
## 260        Action                      Black Label Games 1.20000000
## 261        Action               Blast! Entertainment Ltd 0.13500000
## 262     Adventure               Blast! Entertainment Ltd 0.03500000
## 263        Sports               Blast! Entertainment Ltd 0.02000000
## 264    Simulation                              Blue Byte 0.01000000
## 265      Strategy                              Blue Byte 0.02000000
## 266      Platform          BMG Interactive Entertainment 0.28666667
## 267        Racing          BMG Interactive Entertainment 0.15000000
## 268       Shooter          BMG Interactive Entertainment 0.07000000
## 269        Sports          BMG Interactive Entertainment 0.03000000
## 270       Shooter                    Bohemia Interactive 0.12000000
## 271        Action                                   Bomb 0.22000000
## 272     Adventure                               Boost On 0.01000000
## 273        Puzzle                                    BPS 0.32000000
## 274        Racing                                    BPS 0.20000000
## 275          Misc                    Brash Entertainment 0.13000000
## 276      Platform                    Brash Entertainment 0.12000000
## 277        Action                               Broccoli 0.05600000
## 278     Adventure                               Broccoli 0.04777778
## 279      Fighting                               Broccoli 0.01500000
## 280          Misc                               Broccoli 0.10000000
## 281  Role-Playing                               Broccoli 0.01000000
## 282    Simulation                               Broccoli 0.03000000
## 283      Strategy                               Broccoli 0.02666667
## 284     Adventure                              BushiRoad 0.03000000
## 285        Action                                 Capcom 0.55298701
## 286     Adventure                                 Capcom 0.46590909
## 287      Fighting                                 Capcom 0.56913793
## 288          Misc                                 Capcom 0.17636364
## 289      Platform                                 Capcom 0.49173913
## 290        Puzzle                                 Capcom 0.13333333
## 291        Racing                                 Capcom 0.18307692
## 292  Role-Playing                                 Capcom 0.85973684
## 293       Shooter                                 Capcom 0.44600000
## 294    Simulation                                 Capcom 0.07500000
## 295        Sports                                 Capcom 0.15333333
## 296      Strategy                                 Capcom 0.10000000
## 297        Action                                   Cave 0.02000000
## 298     Adventure                                   Cave 0.01000000
## 299          Misc                                   Cave 0.10000000
## 300       Shooter                                   Cave 0.02857143
## 301        Action                        CBS Electronics 0.31000000
## 302  Role-Playing                                    CCP 0.22000000
## 303     Adventure             CDV Software Entertainment 0.10000000
## 304        Puzzle             CDV Software Entertainment 0.03000000
## 305    Simulation             CDV Software Entertainment 0.01000000
## 306      Strategy             CDV Software Entertainment 0.02000000
## 307        Action                               ChunSoft 0.04000000
## 308     Adventure                               ChunSoft 0.19636364
## 309  Role-Playing                               ChunSoft 0.31166667
## 310        Action                       City Interactive 0.34000000
## 311     Adventure                       City Interactive 0.11800000
## 312          Misc                       City Interactive 0.06000000
## 313        Puzzle                       City Interactive 0.05500000
## 314       Shooter                       City Interactive 0.41625000
## 315    Simulation                       City Interactive 0.09000000
## 316      Fighting       Cloud Imperium Games Corporation 0.04000000
## 317     Adventure                         Coconuts Japan 0.02000000
## 318          Misc                         Coconuts Japan 0.05000000
## 319        Action                            Codemasters 0.15888889
## 320     Adventure                            Codemasters 0.13000000
## 321          Misc                            Codemasters 0.24285714
## 322        Puzzle                            Codemasters 0.07000000
## 323        Racing                            Codemasters 0.38898876
## 324  Role-Playing                            Codemasters 0.12333333
## 325       Shooter                            Codemasters 0.24300000
## 326    Simulation                            Codemasters 0.14666667
## 327        Sports                            Codemasters 0.31300000
## 328      Strategy                            Codemasters 0.11750000
## 329  Role-Playing                     Codemasters Online 0.02000000
## 330        Action                      CokeM Interactive 0.31000000
## 331        Action                                 Coleco 0.42000000
## 332      Platform                                 Coleco 1.46000000
## 333       Shooter                                 Coleco 0.34000000
## 334        Action                                Comfort 0.02000000
## 335     Adventure                                Comfort 0.02600000
## 336          Misc                               Commseed 0.01000000
## 337        Puzzle                                Compile 0.48600000
## 338  Role-Playing                                Compile 0.03000000
## 339        Action                          Compile Heart 0.03000000
## 340     Adventure                          Compile Heart 0.02750000
## 341  Role-Playing                          Compile Heart 0.08461538
## 342      Strategy                          Compile Heart 0.10000000
## 343        Action               Conspiracy Entertainment 0.12333333
## 344          Misc               Conspiracy Entertainment 0.06500000
## 345      Platform               Conspiracy Entertainment 0.03000000
## 346        Puzzle               Conspiracy Entertainment 0.01333333
## 347        Racing               Conspiracy Entertainment 0.06000000
## 348       Shooter               Conspiracy Entertainment 0.05000000
## 349    Simulation               Conspiracy Entertainment 0.03000000
## 350        Sports               Conspiracy Entertainment 0.08000000
## 351        Action                       Core Design Ltd. 0.10000000
## 352    Simulation                       Core Design Ltd. 0.19000000
## 353        Action                           CPG Products 0.54000000
## 354        Action                    Crave Entertainment 0.09909091
## 355     Adventure                    Crave Entertainment 0.15000000
## 356      Fighting                    Crave Entertainment 0.09400000
## 357          Misc                    Crave Entertainment 0.14500000
## 358      Platform                    Crave Entertainment 0.10333333
## 359        Puzzle                    Crave Entertainment 0.07000000
## 360        Racing                    Crave Entertainment 0.41250000
## 361  Role-Playing                    Crave Entertainment 0.57000000
## 362       Shooter                    Crave Entertainment 0.07666667
## 363    Simulation                    Crave Entertainment 0.14000000
## 364        Sports                    Crave Entertainment 0.11600000
## 365      Strategy                    Crave Entertainment 0.07000000
## 366     Adventure                          Creative Core 0.03000000
## 367          Misc                          Creative Core 0.01000000
## 368    Simulation                          Creative Core 0.06000000
## 369        Action                            Crimson Cow 0.06000000
## 370     Adventure                            Crimson Cow 0.02000000
## 371     Adventure                       Crystal Dynamics 0.15000000
## 372      Platform                       Crystal Dynamics 0.87000000
## 373        Racing                       Crystal Dynamics 0.17000000
## 374  Role-Playing                       Crystal Dynamics 0.44000000
## 375        Sports                       Crystal Dynamics 0.08000000
## 376       Shooter                                CTO SpA 0.88000000
## 377        Sports                                CTO SpA 0.02000000
## 378     Adventure                          Culture Brain 0.02000000
## 379          Misc                          Culture Brain 0.02000000
## 380  Role-Playing                          Culture Brain 0.03000000
## 381        Sports                          Culture Brain 0.20000000
## 382        Puzzle                     Culture Publishers 0.09000000
## 383        Action                             CyberFront 0.02000000
## 384     Adventure                             CyberFront 0.01875000
## 385          Misc                             CyberFront 0.02000000
## 386  Role-Playing                             CyberFront 0.03000000
## 387      Strategy                             CyberFront 0.01500000
## 388      Platform                                Cygames 0.03000000
## 389        Action                            D3Publisher 0.18490566
## 390     Adventure                            D3Publisher 0.02483871
## 391      Fighting                            D3Publisher 0.08666667
## 392          Misc                            D3Publisher 0.11718750
## 393      Platform                            D3Publisher 0.20000000
## 394        Puzzle                            D3Publisher 0.16909091
## 395        Racing                            D3Publisher 0.10666667
## 396  Role-Playing                            D3Publisher 0.17250000
## 397       Shooter                            D3Publisher 0.23583333
## 398    Simulation                            D3Publisher 0.05166667
## 399        Sports                            D3Publisher 0.07090909
## 400      Strategy                            D3Publisher 0.01333333
## 401     Adventure                               Daedalic 0.09333333
## 402     Adventure                 Daedalic Entertainment 0.04666667
## 403          Misc                                  Daito 0.05750000
## 404        Action                               Data Age 0.35500000
## 405          Misc                Data Design Interactive 0.07000000
## 406        Racing                Data Design Interactive 0.09000000
## 407        Sports                Data Design Interactive 0.13000000
## 408     Adventure                              Data East 0.11000000
## 409  Role-Playing                              Data East 0.04000000
## 410     Adventure                         Datam Polystar 0.01500000
## 411        Action                            Deep Silver 0.49481481
## 412     Adventure                            Deep Silver 0.16700000
## 413      Fighting                            Deep Silver 0.09500000
## 414          Misc                            Deep Silver 0.10285714
## 415      Platform                            Deep Silver 0.02666667
## 416        Puzzle                            Deep Silver 0.14142857
## 417        Racing                            Deep Silver 0.08714286
## 418  Role-Playing                            Deep Silver 0.17411765
## 419       Shooter                            Deep Silver 0.10600000
## 420    Simulation                            Deep Silver 0.09647059
## 421        Sports                            Deep Silver 0.20300000
## 422      Strategy                            Deep Silver 0.08900000
## 423        Action              Destination Software, Inc 0.02000000
## 424          Misc              Destination Software, Inc 0.08000000
## 425        Puzzle              Destination Software, Inc 0.09000000
## 426        Racing              Destination Software, Inc 0.13000000
## 427  Role-Playing              Destination Software, Inc 0.03000000
## 428    Simulation              Destination Software, Inc 0.07500000
## 429        Sports              Destination Software, Inc 0.01000000
## 430        Action                              Destineer 0.12500000
## 431     Adventure                              Destineer 0.09000000
## 432          Misc                              Destineer 0.15750000
## 433      Platform                              Destineer 0.02000000
## 434        Puzzle                              Destineer 0.07714286
## 435        Racing                              Destineer 0.08250000
## 436       Shooter                              Destineer 0.02500000
## 437    Simulation                              Destineer 0.09363636
## 438        Sports                              Destineer 0.10375000
## 439        Sports                            Detn8 Games 0.23000000
## 440        Puzzle                       Devolver Digital 0.02000000
## 441       Shooter                       Devolver Digital 0.02000000
## 442        Puzzle                        DHM Interactive 0.02000000
## 443       Shooter                        DHM Interactive 0.04000000
## 444    Simulation                        DHM Interactive 0.12000000
## 445        Sports                               DigiCube 0.06000000
## 446        Action             Disney Interactive Studios 0.54375000
## 447     Adventure             Disney Interactive Studios 0.61241379
## 448          Misc             Disney Interactive Studios 0.56568182
## 449      Platform             Disney Interactive Studios 0.49250000
## 450        Puzzle             Disney Interactive Studios 0.84666667
## 451        Racing             Disney Interactive Studios 0.65142857
## 452  Role-Playing             Disney Interactive Studios 0.49000000
## 453       Shooter             Disney Interactive Studios 0.09333333
## 454    Simulation             Disney Interactive Studios 0.17600000
## 455        Sports             Disney Interactive Studios 0.97000000
## 456          Misc                                 Dorart 0.01500000
## 457        Action                        dramatic create 0.01000000
## 458     Adventure                        dramatic create 0.02500000
## 459     Adventure               DreamCatcher Interactive 0.03000000
## 460          Misc               DreamCatcher Interactive 0.07666667
## 461      Platform               DreamCatcher Interactive 0.05000000
## 462        Puzzle               DreamCatcher Interactive 0.08500000
## 463       Shooter               DreamCatcher Interactive 0.02666667
## 464    Simulation               DreamCatcher Interactive 0.06000000
## 465        Sports               DreamCatcher Interactive 0.09000000
## 466      Platform                 DreamWorks Interactive 0.13000000
## 467        Action                              DSI Games 0.04000000
## 468     Adventure                              DSI Games 0.01000000
## 469          Misc                              DSI Games 0.13000000
## 470    Simulation                              DSI Games 0.02000000
## 471        Sports                              DSI Games 0.02000000
## 472        Action                      DTP Entertainment 0.10400000
## 473     Adventure                      DTP Entertainment 0.04600000
## 474          Misc                      DTP Entertainment 0.05200000
## 475        Puzzle                      DTP Entertainment 0.03000000
## 476  Role-Playing                      DTP Entertainment 0.09714286
## 477       Shooter                      DTP Entertainment 0.18000000
## 478    Simulation                      DTP Entertainment 0.06666667
## 479        Sports                      DTP Entertainment 0.10181818
## 480      Strategy                      DTP Entertainment 0.11000000
## 481        Racing               Dusenberry Martin Racing 0.02500000
## 482       Shooter                               EA Games 0.15000000
## 483        Puzzle                       Easy Interactive 0.02500000
## 484      Fighting                                  Ecole 0.06000000
## 485          Misc                                   Edia 0.04500000
## 486        Action                      Eidos Interactive 0.78095238
## 487     Adventure                      Eidos Interactive 0.13600000
## 488      Fighting                      Eidos Interactive 0.39000000
## 489          Misc                      Eidos Interactive 0.22400000
## 490      Platform                      Eidos Interactive 0.34500000
## 491        Puzzle                      Eidos Interactive 0.11250000
## 492        Racing                      Eidos Interactive 0.28500000
## 493  Role-Playing                      Eidos Interactive 0.39111111
## 494       Shooter                      Eidos Interactive 0.23028571
## 495    Simulation                      Eidos Interactive 0.12625000
## 496        Sports                      Eidos Interactive 0.48375000
## 497      Strategy                      Eidos Interactive 0.55636364
## 498        Action                        Electronic Arts 0.63136612
## 499     Adventure                        Electronic Arts 0.36538462
## 500      Fighting                        Electronic Arts 0.80487179
## 501          Misc                        Electronic Arts 0.54239130
## 502      Platform                        Electronic Arts 0.40812500
## 503        Puzzle                        Electronic Arts 0.65000000
## 504        Racing                        Electronic Arts 0.91679245
## 505  Role-Playing                        Electronic Arts 1.00857143
## 506       Shooter                        Electronic Arts 1.13856115
## 507    Simulation                        Electronic Arts 0.77181034
## 508        Sports                        Electronic Arts 0.85502674
## 509      Strategy                        Electronic Arts 0.38054054
## 510        Action                 Electronic Arts Victor 0.04000000
## 511        Sports                 Electronic Arts Victor 0.38000000
## 512     Adventure                                    Elf 0.36000000
## 513      Strategy                                    Elf 0.28000000
## 514    Simulation                                  Elite 0.07000000
## 515        Action                     Empire Interactive 0.13800000
## 516     Adventure                     Empire Interactive 0.03666667
## 517      Fighting                     Empire Interactive 0.47000000
## 518          Misc                     Empire Interactive 0.12833333
## 519        Puzzle                     Empire Interactive 0.19125000
## 520        Racing                     Empire Interactive 0.27238095
## 521  Role-Playing                     Empire Interactive 0.09000000
## 522       Shooter                     Empire Interactive 0.29600000
## 523    Simulation                     Empire Interactive 0.25000000
## 524        Sports                     Empire Interactive 0.18000000
## 525        Action                                 Encore 0.03000000
## 526        Racing                                 Encore 0.01000000
## 527  Role-Playing                                 Encore 0.02000000
## 528        Action                       Enix Corporation 0.07000000
## 529          Misc                       Enix Corporation 0.27500000
## 530  Role-Playing                       Enix Corporation 1.40913043
## 531    Simulation                       Enix Corporation 0.29500000
## 532        Sports                       Enix Corporation 0.06000000
## 533       Shooter                      Enjoy Gaming ltd. 0.10000000
## 534     Adventure                             Enterbrain 0.08333333
## 535      Fighting                             Enterbrain 0.07000000
## 536  Role-Playing                             Enterbrain 0.12833333
## 537    Simulation                             Enterbrain 0.04000000
## 538        Sports                             Enterbrain 0.27500000
## 539      Strategy              EON Digital Entertainment 0.01000000
## 540        Action                             Epic Games 0.01000000
## 541          Misc                                  Epoch 0.08000000
## 542      Platform                                  Epoch 0.10500000
## 543  Role-Playing                                  Epoch 0.06000000
## 544        Sports                                  Epoch 0.32000000
## 545    Simulation                                 Ertain 0.05000000
## 546      Fighting                                    ESP 0.03000000
## 547      Platform                                    ESP 0.05000000
## 548  Role-Playing                                    ESP 0.42000000
## 549       Shooter                                    ESP 0.03000000
## 550    Simulation                                    ESP 0.06000000
## 551        Action                        Essential Games 0.02000000
## 552       Shooter                        Essential Games 0.17000000
## 553      Strategy                        Essential Games 0.04000000
## 554        Action                        Evolution Games 0.07000000
## 555      Platform                          Evolved Games 0.01500000
## 556        Racing                          Evolved Games 0.04750000
## 557       Shooter                          Evolved Games 0.05000000
## 558        Action                   Excalibur Publishing 0.14000000
## 559    Simulation                   Excalibur Publishing 0.04666667
## 560  Role-Playing                        Experience Inc. 0.02000000
## 561  Role-Playing            Extreme Entertainment Group 0.03000000
## 562      Fighting                     Falcom Corporation 0.06000000
## 563  Role-Playing                     Falcom Corporation 0.07666667
## 564          Misc                                 Fields 0.03000000
## 565        Action                       Flashpoint Games 0.04000000
## 566      Platform                       Flashpoint Games 0.04000000
## 567  Role-Playing                            Flight-Plan 0.08000000
## 568      Strategy                            Flight-Plan 0.04000000
## 569        Action                 Focus Home Interactive 0.01000000
## 570     Adventure                 Focus Home Interactive 0.11352941
## 571          Misc                 Focus Home Interactive 0.01000000
## 572      Platform                 Focus Home Interactive 0.03000000
## 573        Puzzle                 Focus Home Interactive 0.07166667
## 574        Racing                 Focus Home Interactive 0.12333333
## 575  Role-Playing                 Focus Home Interactive 0.11750000
## 576    Simulation                 Focus Home Interactive 0.46833333
## 577        Sports                 Focus Home Interactive 0.05142857
## 578      Strategy                 Focus Home Interactive 0.04000000
## 579          Misc                       Focus Multimedia 0.02000000
## 580        Puzzle                       Focus Multimedia 0.01500000
## 581    Simulation                                 fonfun 0.02000000
## 582     Adventure                    Foreign Media Games 0.13000000
## 583          Misc                    Foreign Media Games 0.05500000
## 584        Puzzle                    Foreign Media Games 0.08250000
## 585    Simulation                    Foreign Media Games 0.03000000
## 586     Adventure                              Fortyfive 0.06000000
## 587        Action                        Fox Interactive 0.49000000
## 588      Platform                        Fox Interactive 2.14500000
## 589       Shooter                        Fox Interactive 0.71333333
## 590        Sports                        Fox Interactive 0.23500000
## 591        Action                          From Software 0.02333333
## 592     Adventure                          From Software 0.12000000
## 593  Role-Playing                          From Software 0.13250000
## 594       Shooter                          From Software 0.11000000
## 595    Simulation                          From Software 0.13333333
## 596     Adventure                                   Fuji 0.03000000
## 597        Action                           Funbox Media 0.03666667
## 598     Adventure                           Funbox Media 0.11000000
## 599          Misc                           Funbox Media 0.68000000
## 600      Strategy                           Funbox Media 0.01000000
## 601  Role-Playing                                 Funcom 0.10000000
## 602        Racing                                FunSoft 0.12000000
## 603        Puzzle                                 Funsta 0.06000000
## 604       Shooter                                 Funsta 0.02000000
## 605        Action                                  FuRyu 0.04636364
## 606     Adventure                                  FuRyu 0.02000000
## 607          Misc                                  FuRyu 0.06000000
## 608  Role-Playing                                  FuRyu 0.06000000
## 609    Simulation                                  FuRyu 0.03000000
## 610        Action                      FuRyu Corporation 0.03000000
## 611      Fighting                                  G.Rev 0.03000000
## 612       Shooter                                  G.Rev 0.01000000
## 613       Shooter                                   Gaga 0.02000000
## 614     Adventure                 Gainax Network Systems 0.11000000
## 615          Misc                 Gainax Network Systems 0.05000000
## 616          Misc                                 Gakken 0.02000000
## 617  Role-Playing                              Game Arts 0.14000000
## 618        Action                           Game Factory 0.04500000
## 619     Adventure                           Game Factory 0.21500000
## 620      Fighting                           Game Factory 0.04500000
## 621          Misc                           Game Factory 0.08200000
## 622      Platform                           Game Factory 0.02500000
## 623        Puzzle                           Game Factory 0.13000000
## 624        Racing                           Game Factory 0.04500000
## 625  Role-Playing                           Game Factory 0.06000000
## 626    Simulation                           Game Factory 0.65000000
## 627          Misc                              Game Life 0.17000000
## 628    Simulation                              Game Life 0.13000000
## 629        Action                             Gamebridge 0.36500000
## 630        Action                               Gamecock 0.07000000
## 631          Misc                               Gamecock 0.05500000
## 632      Strategy                               Gamecock 0.02000000
## 633          Misc                               Gameloft 0.11000000
## 634        Action                 GameMill Entertainment 0.10000000
## 635     Adventure                 GameMill Entertainment 0.09000000
## 636          Misc                 GameMill Entertainment 0.27000000
## 637        Sports                 GameMill Entertainment 0.18000000
## 638          Misc                                GameTek 0.10000000
## 639          Misc                Gathering of Developers 0.10000000
## 640        Racing                Gathering of Developers 0.28000000
## 641       Shooter                Gathering of Developers 0.09333333
## 642      Strategy                Gathering of Developers 0.07500000
## 643      Strategy                  General Entertainment 0.14000000
## 644        Action                                  Genki 0.05500000
## 645        Racing                                  Genki 0.26200000
## 646        Sports                                  Genki 0.04000000
## 647        Puzzle                            Genterprise 0.01000000
## 648  Role-Playing                             Ghostlight 0.26000000
## 649    Simulation                             Ghostlight 0.02000000
## 650        Sports                             Ghostlight 0.07000000
## 651      Strategy                             Ghostlight 0.11000000
## 652     Adventure                                   Giga 0.02000000
## 653        Action                                 Giza10 0.02000000
## 654      Strategy                                  Glams 0.08000000
## 655          Misc                 Global A Entertainment 0.01000000
## 656  Role-Playing                 Global A Entertainment 0.04666667
## 657        Action                            Global Star 0.11000000
## 658     Adventure                            Global Star 0.21666667
## 659      Fighting                            Global Star 0.18000000
## 660      Platform                            Global Star 0.05800000
## 661        Racing                            Global Star 0.08400000
## 662       Shooter                            Global Star 0.06875000
## 663    Simulation                            Global Star 0.07000000
## 664        Sports                            Global Star 0.45900000
## 665      Strategy                            Global Star 0.07000000
## 666     Adventure                            GN Software 0.01666667
## 667  Role-Playing                                    GOA 0.02000000
## 668      Fighting                           Gotham Games 0.48500000
## 669      Platform                           Gotham Games 0.25333333
## 670       Shooter                           Gotham Games 1.57000000
## 671        Sports                           Gotham Games 0.42000000
## 672          Misc                               Graffiti 0.10000000
## 673  Role-Playing                               Graffiti 0.04500000
## 674       Shooter                               Graffiti 0.04000000
## 675    Simulation                               Graffiti 0.05000000
## 676      Fighting                       Grand Prix Games 0.06000000
## 677    Simulation                 Graphsim Entertainment 0.02000000
## 678        Action                Gremlin Interactive Ltd 0.17000000
## 679      Platform                Gremlin Interactive Ltd 0.05000000
## 680        Racing                Gremlin Interactive Ltd 0.09500000
## 681       Shooter                Gremlin Interactive Ltd 0.20000000
## 682        Sports                Gremlin Interactive Ltd 0.12250000
## 683        Sports                  Griffin International 0.09000000
## 684       Shooter                           Groove Games 0.04500000
## 685     Adventure                                    GSP 0.27000000
## 686          Misc                                    GSP 0.30200000
## 687        Puzzle                                    GSP 0.10333333
## 688    Simulation                                    GSP 0.12500000
## 689        Action                         GT Interactive 0.88800000
## 690      Fighting                         GT Interactive 0.97714286
## 691          Misc                         GT Interactive 0.94000000
## 692      Platform                         GT Interactive 0.84666667
## 693        Racing                         GT Interactive 0.33666667
## 694       Shooter                         GT Interactive 0.26333333
## 695    Simulation                         GT Interactive 0.07000000
## 696        Sports                         GT Interactive 0.15600000
## 697        Action                                 GungHo 0.10500000
## 698     Adventure                                 GungHo 0.02000000
## 699          Misc                                 GungHo 0.04000000
## 700  Role-Playing                                 GungHo 0.32000000
## 701     Adventure                                   Gust 0.10000000
## 702  Role-Playing                                   Gust 0.09000000
## 703      Strategy                                   Gust 0.01000000
## 704          Misc                              Hackberry 0.04428571
## 705        Puzzle                         HAL Laboratory 0.06000000
## 706        Action                    Hamster Corporation 0.28000000
## 707    Simulation                    Hamster Corporation 0.02000000
## 708     Adventure                               Happinet 0.05000000
## 709          Misc                               Happinet 0.02000000
## 710    Simulation                               Happinet 0.01000000
## 711          Misc                 Harmonix Music Systems 0.40000000
## 712        Action                     Hasbro Interactive 2.79500000
## 713          Misc                     Hasbro Interactive 0.85000000
## 714      Platform                     Hasbro Interactive 0.91000000
## 715        Puzzle                     Hasbro Interactive 0.56000000
## 716        Racing                     Hasbro Interactive 0.28000000
## 717       Shooter                     Hasbro Interactive 0.24000000
## 718  Role-Playing                      Havas Interactive 0.13000000
## 719     Adventure                           Headup Games 0.03000000
## 720    Simulation                           Hearty Robin 0.09000000
## 721    Simulation                                   Hect 0.16666667
## 722        Action                            Hello Games 1.60000000
## 723     Adventure                        Her Interactive 0.03000000
## 724        Action                        Hip Interactive 0.08250000
## 725       Shooter                        Hip Interactive 0.03000000
## 726     Adventure                        HMH Interactive 0.11000000
## 727          Misc                        HMH Interactive 0.03000000
## 728        Sports           Home Entertainment Suppliers 0.14200000
## 729          Misc                   Hudson Entertainment 0.20000000
## 730      Platform                   Hudson Entertainment 0.08000000
## 731        Puzzle                   Hudson Entertainment 0.01500000
## 732  Role-Playing                   Hudson Entertainment 0.02000000
## 733       Shooter                   Hudson Entertainment 0.06000000
## 734    Simulation                   Hudson Entertainment 0.79000000
## 735        Sports                   Hudson Entertainment 0.09000000
## 736        Action                            Hudson Soft 0.23666667
## 737     Adventure                            Hudson Soft 0.08000000
## 738      Fighting                            Hudson Soft 0.04250000
## 739          Misc                            Hudson Soft 0.23238095
## 740      Platform                            Hudson Soft 0.92333333
## 741        Puzzle                            Hudson Soft 0.55083333
## 742  Role-Playing                            Hudson Soft 0.15583333
## 743       Shooter                            Hudson Soft 0.30750000
## 744    Simulation                            Hudson Soft 0.34333333
## 745        Sports                            Hudson Soft 0.23000000
## 746      Strategy                            Hudson Soft 0.03000000
## 747     Adventure                    Human Entertainment 0.14500000
## 748      Fighting                    Human Entertainment 0.24333333
## 749        Racing                    Human Entertainment 0.38000000
## 750    Simulation                    Human Entertainment 0.32000000
## 751        Sports                    Human Entertainment 0.24000000
## 752      Strategy                    Human Entertainment 0.07000000
## 753        Action                                  HuneX 0.01000000
## 754     Adventure                                  HuneX 0.02000000
## 755  Role-Playing                    Iceberg Interactive 0.04000000
## 756      Strategy                    Iceberg Interactive 0.02000000
## 757       Shooter                            id Software 0.03000000
## 758        Action                           Idea Factory 0.02285714
## 759     Adventure                           Idea Factory 0.02987654
## 760          Misc                           Idea Factory 0.03000000
## 761  Role-Playing                           Idea Factory 0.05461538
## 762      Strategy                           Idea Factory 0.05000000
## 763        Action             Idea Factory International 0.12500000
## 764  Role-Playing             Idea Factory International 0.05500000
## 765        Action                           IE Institute 0.02000000
## 766          Misc                           IE Institute 0.23500000
## 767        Action                 Ignition Entertainment 0.15200000
## 768     Adventure                 Ignition Entertainment 0.04000000
## 769      Fighting                 Ignition Entertainment 0.10761905
## 770          Misc                 Ignition Entertainment 0.11500000
## 771      Platform                 Ignition Entertainment 0.03333333
## 772        Puzzle                 Ignition Entertainment 0.18000000
## 773        Racing                 Ignition Entertainment 0.17666667
## 774  Role-Playing                 Ignition Entertainment 0.12000000
## 775       Shooter                 Ignition Entertainment 0.09000000
## 776        Sports                 Ignition Entertainment 0.03833333
## 777      Strategy                 Ignition Entertainment 0.10000000
## 778        Action                     Illusion Softworks 0.70000000
## 779     Adventure                                 Imadio 0.14000000
## 780  Role-Playing                            Image Epoch 0.10000000
## 781     Adventure                        imageepoch Inc. 0.01000000
## 782  Role-Playing                        imageepoch Inc. 0.03000000
## 783    Simulation                             Imageworks 0.02000000
## 784        Action                                 Imagic 0.37000000
## 785       Shooter                                 Imagic 1.48333333
## 786     Adventure                              Imagineer 0.13333333
## 787      Fighting                              Imagineer 0.05000000
## 788        Racing                              Imagineer 0.04000000
## 789  Role-Playing                              Imagineer 0.33250000
## 790    Simulation                              Imagineer 0.16000000
## 791        Sports                              Imagineer 0.11166667
## 792          Misc                                   Imax 0.06000000
## 793     Adventure                            Indie Games 0.03000000
## 794    Simulation                            Indie Games 0.26000000
## 795        Action                             Infogrames 0.15400000
## 796     Adventure                             Infogrames 0.18000000
## 797      Fighting                             Infogrames 0.27500000
## 798          Misc                             Infogrames 0.53285714
## 799      Platform                             Infogrames 0.12600000
## 800        Racing                             Infogrames 0.24466667
## 801  Role-Playing                             Infogrames 1.07000000
## 802       Shooter                             Infogrames 0.35000000
## 803    Simulation                             Infogrames 0.06000000
## 804        Sports                             Infogrames 0.18000000
## 805      Strategy                             Infogrames 0.02666667
## 806        Action                        Insomniac Games 0.04000000
## 807     Adventure                           Interchannel 0.02500000
## 808      Strategy                     Interchannel-Holon 0.01000000
## 809      Platform                              Intergrow 0.03000000
## 810        Action                              Interplay 0.23000000
## 811     Adventure                              Interplay 0.83000000
## 812      Fighting                              Interplay 0.21000000
## 813          Misc                              Interplay 0.51000000
## 814      Platform                              Interplay 0.23000000
## 815        Racing                              Interplay 0.09250000
## 816  Role-Playing                              Interplay 0.24333333
## 817       Shooter                              Interplay 0.13200000
## 818    Simulation                              Interplay 0.05000000
## 819        Sports                              Interplay 0.22333333
## 820       Shooter                  Interplay Productions 0.10000000
## 821        Sports             Interworks Unlimited, Inc. 0.01000000
## 822        Action                           Inti Creates 0.01000000
## 823        Action                  Introversion Software 0.02000000
## 824  Role-Playing                   inXile Entertainment 0.10000000
## 825        Action              Irem Software Engineering 0.05333333
## 826      Fighting              Irem Software Engineering 0.06000000
## 827          Misc              Irem Software Engineering 0.03400000
## 828  Role-Playing              Irem Software Engineering 0.01000000
## 829       Shooter              Irem Software Engineering 0.03000000
## 830      Strategy              Irem Software Engineering 0.03000000
## 831        Action                       ITT Family Games 0.34000000
## 832        Puzzle                              Ivolgamus 0.04000000
## 833        Puzzle                                   iWin 0.06000000
## 834      Platform                      Jack of All Games 0.20000000
## 835       Shooter                      Jack of All Games 0.02000000
## 836        Action                                 Jaleco 0.07500000
## 837      Fighting                                 Jaleco 0.01000000
## 838          Misc                                 Jaleco 0.05500000
## 839        Puzzle                                 Jaleco 0.04666667
## 840        Racing                                 Jaleco 0.07666667
## 841       Shooter                                 Jaleco 0.01000000
## 842        Sports                                 Jaleco 0.15800000
## 843      Strategy                                 Jaleco 0.09000000
## 844          Misc                     Jester Interactive 0.04000000
## 845        Racing                     Jester Interactive 0.55500000
## 846    Simulation                                Jorudan 0.31666667
## 847        Action                     JoWood Productions 0.05000000
## 848     Adventure                     JoWood Productions 0.08666667
## 849          Misc                     JoWood Productions 0.05000000
## 850      Platform                     JoWood Productions 0.02000000
## 851        Puzzle                     JoWood Productions 0.05000000
## 852  Role-Playing                     JoWood Productions 0.09200000
## 853    Simulation                     JoWood Productions 0.08000000
## 854        Sports                     JoWood Productions 0.21000000
## 855      Strategy                     JoWood Productions 0.02750000
## 856    Simulation                            Just Flight 0.03000000
## 857        Action                                    JVC 0.06000000
## 858      Fighting                                    JVC 0.12000000
## 859          Misc                                    JVC 0.08000000
## 860        Puzzle                                    JVC 2.40000000
## 861        Racing                                    JVC 0.04500000
## 862       Shooter                                    JVC 0.02500000
## 863        Action                         Kadokawa Games 0.05400000
## 864     Adventure                         Kadokawa Games 0.02000000
## 865          Misc                         Kadokawa Games 0.12000000
## 866  Role-Playing                         Kadokawa Games 0.02500000
## 867    Simulation                         Kadokawa Games 0.02000000
## 868        Action                        Kadokawa Shoten 0.04500000
## 869     Adventure                        Kadokawa Shoten 0.05151515
## 870          Misc                        Kadokawa Shoten 0.02000000
## 871  Role-Playing                        Kadokawa Shoten 0.16181818
## 872    Simulation                        Kadokawa Shoten 0.02000000
## 873        Sports                        Kadokawa Shoten 0.14000000
## 874      Strategy                        Kadokawa Shoten 0.02000000
## 875        Action                            Kaga Create 0.02333333
## 876     Adventure                            Kaga Create 0.01000000
## 877          Misc                            Kaga Create 0.05000000
## 878        Action                          Kalypso Media 0.07000000
## 879     Adventure                          Kalypso Media 0.02000000
## 880          Misc                          Kalypso Media 0.01000000
## 881    Simulation                          Kalypso Media 0.12571429
## 882      Strategy                          Kalypso Media 0.08187500
## 883          Misc                                  Kamui 0.03000000
## 884    Simulation                            Kando Games 0.03000000
## 885          Misc                    Karin Entertainment 0.02000000
## 886        Action                                  Kemco 0.10500000
## 887     Adventure                                  Kemco 0.07000000
## 888          Misc                                  Kemco 0.10000000
## 889      Platform                                  Kemco 0.07500000
## 890        Puzzle                                  Kemco 0.01666667
## 891        Racing                                  Kemco 0.19000000
## 892  Role-Playing                                  Kemco 0.05000000
## 893       Shooter                                  Kemco 0.02000000
## 894        Sports                                  Kemco 0.20000000
## 895     Adventure                                    KID 0.02000000
## 896     Adventure                           Kids Station 0.03000000
## 897  Role-Playing                           King Records 0.02000000
## 898        Action                    Knowledge Adventure 0.24000000
## 899     Adventure                    Knowledge Adventure 0.42000000
## 900          Misc                    Knowledge Adventure 0.44000000
## 901        Sports                    Knowledge Adventure 0.37000000
## 902        Action                             Koch Media 0.73000000
## 903     Adventure                             Koch Media 0.04500000
## 904        Puzzle                             Koch Media 0.04000000
## 905  Role-Playing                             Koch Media 0.02000000
## 906    Simulation                             Koch Media 0.25000000
## 907        Sports                             Koch Media 0.06500000
## 908      Strategy                             Koch Media 0.01000000
## 909      Fighting               Kokopeli Digital Studios 0.03000000
## 910        Action           Konami Digital Entertainment 0.48195946
## 911     Adventure           Konami Digital Entertainment 0.18056604
## 912      Fighting           Konami Digital Entertainment 0.08650000
## 913          Misc           Konami Digital Entertainment 0.24181818
## 914      Platform           Konami Digital Entertainment 0.37075000
## 915        Puzzle           Konami Digital Entertainment 0.08300000
## 916        Racing           Konami Digital Entertainment 0.09769231
## 917  Role-Playing           Konami Digital Entertainment 0.37135135
## 918       Shooter           Konami Digital Entertainment 0.23675000
## 919    Simulation           Konami Digital Entertainment 0.37569767
## 920        Sports           Konami Digital Entertainment 0.35339286
## 921      Strategy           Konami Digital Entertainment 0.39250000
## 922      Strategy                              Kool Kizz 0.04000000
## 923          Misc                                    KSS 0.03000000
## 924        Action                                 Laguna 0.35000000
## 925      Platform                                 Laguna 0.42000000
## 926  Role-Playing                                 Laguna 0.36000000
## 927     Adventure                     Legacy Interactive 0.04000000
## 928        Action                             LEGO Media 0.01000000
## 929     Adventure                             LEGO Media 0.18000000
## 930      Platform                             LEGO Media 0.06000000
## 931        Racing                             LEGO Media 0.40333333
## 932      Strategy                             LEGO Media 0.10000000
## 933        Action                                Level 5 0.80666667
## 934     Adventure                                Level 5 0.03000000
## 935          Misc                                Level 5 0.03000000
## 936        Puzzle                                Level 5 0.36666667
## 937  Role-Playing                                Level 5 0.51727273
## 938        Sports                                Level 5 0.26000000
## 939      Strategy                                Level 5 0.13000000
## 940       Shooter                  Lexicon Entertainment 0.02000000
## 941    Simulation                  Lexicon Entertainment 0.03000000
## 942        Action                            Licensed 4U 0.02500000
## 943        Puzzle                            Licensed 4U 0.02000000
## 944    Simulation                 Lighthouse Interactive 0.02000000
## 945        Puzzle                           Liquid Games 0.01000000
## 946        Racing                           Liquid Games 0.26000000
## 947        Action                           Little Orbit 0.05411765
## 948     Adventure                           Little Orbit 0.13857143
## 949    Simulation                           Little Orbit 0.07500000
## 950  Role-Playing                                  Locus 0.07000000
## 951        Action                              LSP Games 0.03000000
## 952      Platform                              LSP Games 0.04000000
## 953       Shooter                              LSP Games 0.01000000
## 954        Action                              LucasArts 1.29208333
## 955     Adventure                              LucasArts 0.67000000
## 956        Racing                              LucasArts 0.23500000
## 957  Role-Playing                              LucasArts 0.10000000
## 958       Shooter                              LucasArts 0.89631579
## 959    Simulation                              LucasArts 0.68500000
## 960      Strategy                              LucasArts 0.15000000
## 961          Misc                               Mad Catz 0.20000000
## 962    Simulation                               Mad Catz 0.07000000
## 963        Sports                               Mad Catz 0.03000000
## 964        Sports                        Magical Company 0.41000000
## 965          Misc                                  Magix 0.17500000
## 966        Action                  Majesco Entertainment 0.19666667
## 967     Adventure                  Majesco Entertainment 0.22750000
## 968      Fighting                  Majesco Entertainment 0.09333333
## 969          Misc                  Majesco Entertainment 0.12857143
## 970      Platform                  Majesco Entertainment 0.10250000
## 971        Puzzle                  Majesco Entertainment 0.12888889
## 972        Racing                  Majesco Entertainment 0.17800000
## 973  Role-Playing                  Majesco Entertainment 0.05500000
## 974       Shooter                  Majesco Entertainment 0.08333333
## 975    Simulation                  Majesco Entertainment 0.15615385
## 976        Sports                  Majesco Entertainment 0.73200000
## 977      Strategy                  Majesco Entertainment 0.11500000
## 978     Adventure                            Mamba Games 0.03000000
## 979      Strategy                            Mamba Games 0.02000000
## 980        Action                   Marvel Entertainment 0.05000000
## 981        Action                Marvelous Entertainment 0.23333333
## 982      Fighting                Marvelous Entertainment 0.36000000
## 983          Misc                Marvelous Entertainment 0.05000000
## 984  Role-Playing                Marvelous Entertainment 0.16000000
## 985    Simulation                Marvelous Entertainment 0.15000000
## 986     Adventure                        Marvelous Games 0.02000000
## 987        Action                  Marvelous Interactive 0.08000000
## 988     Adventure                  Marvelous Interactive 0.03928571
## 989      Fighting                  Marvelous Interactive 0.03333333
## 990          Misc                  Marvelous Interactive 0.01500000
## 991  Role-Playing                  Marvelous Interactive 0.11923077
## 992    Simulation                  Marvelous Interactive 0.12000000
## 993        Sports                  Marvelous Interactive 0.11000000
## 994    Simulation                      Masque Publishing 0.02000000
## 995     Adventure                           Mastertronic 0.03000000
## 996          Misc                           Mastertronic 0.03000000
## 997        Puzzle                           Mastertronic 0.07000000
## 998        Racing                           Mastertronic 0.01000000
## 999       Shooter                           Mastertronic 0.04500000
## 1000       Sports                           Mastertronic 0.02000000
## 1001     Strategy                           Mastertronic 1.18000000
## 1002    Adventure                                Mastiff 0.05000000
## 1003         Misc                                Mastiff 0.04000000
## 1004      Shooter                                Mastiff 0.10250000
## 1005   Simulation                                Mastiff 0.10000000
## 1006       Sports                                Mastiff 0.19875000
## 1007       Action                     Mattel Interactive 0.37750000
## 1008    Adventure                     Mattel Interactive 0.15500000
## 1009       Puzzle                     Mattel Interactive 0.59000000
## 1010       Racing                     Mattel Interactive 0.39000000
## 1011      Shooter                     Mattel Interactive 0.24000000
## 1012       Sports                     Mattel Interactive 0.15666667
## 1013 Role-Playing                               Max Five 0.05000000
## 1014       Action                   Maximum Family Games 0.03000000
## 1015   Simulation                                  Maxis 1.13000000
## 1016    Adventure                      MC2 Entertainment 0.03000000
## 1017      Shooter                      MC2 Entertainment 0.02000000
## 1018         Misc                    Media Entertainment 0.01000000
## 1019    Adventure                          Media Factory 0.14000000
## 1020       Sports                          Media Factory 0.15000000
## 1021       Racing                            Media Rings 0.10000000
## 1022 Role-Playing                            Media Rings 0.19000000
## 1023       Sports                            Media Rings 0.36000000
## 1024    Adventure                            Media Works 0.02500000
## 1025         Misc                            Media Works 0.04000000
## 1026     Strategy                            Media Works 0.04500000
## 1027       Puzzle                             MediaQuest 0.05000000
## 1028       Action                           Men-A-Vision 0.77000000
## 1029         Misc                     Mentor Interactive 0.21400000
## 1030 Role-Playing                          Mercury Games 0.04000000
## 1031   Simulation                          Mercury Games 0.06500000
## 1032    Adventure                            Merscom LLC 0.20000000
## 1033     Fighting                               Metro 3D 0.02000000
## 1034     Platform                               Metro 3D 0.07000000
## 1035       Racing                               Metro 3D 0.05250000
## 1036 Role-Playing                               Metro 3D 0.09500000
## 1037      Shooter                               Metro 3D 0.19000000
## 1038   Simulation                               Metro 3D 0.38666667
## 1039 Role-Playing                            Michaelsoft 0.01000000
## 1040       Puzzle                            Micro Cabin 0.02000000
## 1041 Role-Playing                            Micro Cabin 0.10000000
## 1042   Simulation                            Micro Cabin 0.08000000
## 1043       Action                               Microids 0.05000000
## 1044    Adventure                               Microids 0.03500000
## 1045       Sports                               Microids 0.04000000
## 1046         Misc                             Microprose 0.55000000
## 1047   Simulation                             Microprose 0.27000000
## 1048     Strategy                             Microprose 0.30000000
## 1049       Action                 Microsoft Game Studios 0.59285714
## 1050    Adventure                 Microsoft Game Studios 0.54333333
## 1051     Fighting                 Microsoft Game Studios 0.48600000
## 1052         Misc                 Microsoft Game Studios 1.38205882
## 1053     Platform                 Microsoft Game Studios 0.27500000
## 1054       Puzzle                 Microsoft Game Studios 0.10000000
## 1055       Racing                 Microsoft Game Studios 1.50363636
## 1056 Role-Playing                 Microsoft Game Studios 1.28625000
## 1057      Shooter                 Microsoft Game Studios 3.40928571
## 1058   Simulation                 Microsoft Game Studios 0.69388889
## 1059       Sports                 Microsoft Game Studios 0.86117647
## 1060     Strategy                 Microsoft Game Studios 0.23833333
## 1061       Action        Midas Interactive Entertainment 0.04500000
## 1062     Fighting        Midas Interactive Entertainment 0.07000000
## 1063         Misc        Midas Interactive Entertainment 0.03000000
## 1064     Platform        Midas Interactive Entertainment 0.05000000
## 1065       Puzzle        Midas Interactive Entertainment 0.04333333
## 1066       Racing        Midas Interactive Entertainment 0.20333333
## 1067 Role-Playing        Midas Interactive Entertainment 0.06000000
## 1068      Shooter        Midas Interactive Entertainment 0.15000000
## 1069   Simulation        Midas Interactive Entertainment 0.02000000
## 1070       Sports        Midas Interactive Entertainment 0.23250000
## 1071     Strategy        Midas Interactive Entertainment 0.04333333
## 1072       Action                           Midway Games 0.27222222
## 1073    Adventure                           Midway Games 0.09250000
## 1074     Fighting                           Midway Games 0.66040000
## 1075         Misc                           Midway Games 0.48050000
## 1076     Platform                           Midway Games 0.12428571
## 1077       Puzzle                           Midway Games 0.76250000
## 1078       Racing                           Midway Games 0.26240000
## 1079 Role-Playing                           Midway Games 0.27500000
## 1080      Shooter                           Midway Games 0.33058824
## 1081       Sports                           Midway Games 0.30931034
## 1082      Shooter                              Milestone 0.08000000
## 1083       Racing                        Milestone S.r.l 0.02500000
## 1084       Racing                       Milestone S.r.l. 0.08000000
## 1085       Action                         Minato Station 0.02000000
## 1086    Adventure                         Minato Station 0.01500000
## 1087       Action                              Mindscape 0.09500000
## 1088    Adventure                              Mindscape 0.03000000
## 1089         Misc                              Mindscape 0.40200000
## 1090       Puzzle                              Mindscape 0.08000000
## 1091       Racing                              Mindscape 0.06500000
## 1092 Role-Playing                              Mindscape 0.05000000
## 1093       Sports                              Mindscape 0.14000000
## 1094     Strategy                              Mindscape 0.19333333
## 1095         Misc                          Mirai Shounen 0.02000000
## 1096       Sports                                 Misawa 0.03500000
## 1097      Shooter                                 Mitsui 0.08000000
## 1098       Action                              mixi, Inc 0.86000000
## 1099       Sports                                MLB.com 0.04000000
## 1100    Adventure                                 Mojang 0.57800000
## 1101   Simulation               Monte Christo Multimedia 0.05000000
## 1102      Shooter                                   Moss 0.06500000
## 1103       Action                                    MTO 0.02000000
## 1104       Racing                                    MTO 0.10000000
## 1105   Simulation                                    MTO 0.06000000
## 1106         Misc                              MTV Games 0.51146341
## 1107         Misc                   Mud Duck Productions 0.27500000
## 1108       Sports                   Mud Duck Productions 0.30000000
## 1109       Puzzle                            Mumbo Jumbo 0.13500000
## 1110       Sports                            Mumbo Jumbo 0.02000000
## 1111     Strategy                            Mumbo Jumbo 0.02000000
## 1112       Action                                  Mycom 0.02000000
## 1113         Misc                           Myelin Media 0.04333333
## 1114       Action                               Mystique 0.82000000
## 1115       Action                                    N/A 0.12142857
## 1116    Adventure                                    N/A 0.06750000
## 1117     Fighting                                    N/A 1.60500000
## 1118         Misc                                    N/A 0.28925926
## 1119     Platform                                    N/A 0.25000000
## 1120       Puzzle                                    N/A 0.01000000
## 1121       Racing                                    N/A 0.01000000
## 1122 Role-Playing                                    N/A 0.03000000
## 1123      Shooter                                    N/A 0.02500000
## 1124   Simulation                                    N/A 0.06000000
## 1125       Sports                                    N/A 0.52666667
## 1126     Strategy                                    N/A 0.09666667
## 1127       Action                     Namco Bandai Games 0.14879032
## 1128    Adventure                     Namco Bandai Games 0.09120690
## 1129     Fighting                     Namco Bandai Games 0.45686567
## 1130         Misc                     Namco Bandai Games 0.30463918
## 1131     Platform                     Namco Bandai Games 0.15210526
## 1132       Puzzle                     Namco Bandai Games 0.30600000
## 1133       Racing                     Namco Bandai Games 0.25962963
## 1134 Role-Playing                     Namco Bandai Games 0.35642384
## 1135      Shooter                     Namco Bandai Games 0.26675676
## 1136   Simulation                     Namco Bandai Games 0.35965517
## 1137       Sports                     Namco Bandai Games 0.37568627
## 1138     Strategy                     Namco Bandai Games 0.19393443
## 1139    Adventure                                Natsume 0.08000000
## 1140     Fighting                                Natsume 0.10000000
## 1141         Misc                                Natsume 0.04000000
## 1142     Platform                                Natsume 0.02000000
## 1143       Puzzle                                Natsume 0.10000000
## 1144 Role-Playing                                Natsume 0.15000000
## 1145   Simulation                                Natsume 0.25000000
## 1146       Sports                                Natsume 0.42200000
## 1147     Strategy                                Natsume 0.09000000
## 1148       Sports                           Navarre Corp 0.05000000
## 1149         Misc                             Naxat Soft 0.01000000
## 1150     Strategy                                    NCS 0.13333333
## 1151       Action                                 NCSoft 2.30000000
## 1152 Role-Playing                                 NCSoft 0.05800000
## 1153      Shooter                        NDA Productions 0.12000000
## 1154    Adventure                                    NEC 0.14000000
## 1155 Role-Playing                                    NEC 0.14500000
## 1156    Adventure                       NEC Interchannel 0.10200000
## 1157 Role-Playing                       NEC Interchannel 0.13000000
## 1158   Simulation                       NEC Interchannel 0.06000000
## 1159     Strategy                       NEC Interchannel 0.08000000
## 1160       Action                     Neko Entertainment 0.02000000
## 1161    Adventure                     Neko Entertainment 0.03000000
## 1162         Misc                     Neko Entertainment 0.03000000
## 1163       Puzzle                     Neko Entertainment 0.02000000
## 1164      Shooter                     Neko Entertainment 0.09000000
## 1165       Action                                NetRevo 0.01000000
## 1166    Adventure                                NetRevo 0.02000000
## 1167     Fighting                                    New 0.36000000
## 1168     Strategy                    New World Computing 0.01000000
## 1169       Action                               NewKidCo 0.03000000
## 1170    Adventure                               NewKidCo 0.26000000
## 1171     Fighting                               NewKidCo 0.07000000
## 1172         Misc                               NewKidCo 0.23000000
## 1173     Platform                               NewKidCo 0.02000000
## 1174 Role-Playing                                  Nexon 0.03000000
## 1175         Misc                             Nichibutsu 0.28000000
## 1176       Action               Nihon Falcom Corporation 0.21500000
## 1177 Role-Playing               Nihon Falcom Corporation 0.06800000
## 1178       Action                               Nintendo 1.62253165
## 1179    Adventure                               Nintendo 1.02028571
## 1180     Fighting                               Nintendo 2.96388889
## 1181         Misc                               Nintendo 1.80670000
## 1182     Platform                               Nintendo 3.81437500
## 1183       Puzzle                               Nintendo 1.68756757
## 1184       Racing                               Nintendo 4.08918919
## 1185 Role-Playing                               Nintendo 2.68773585
## 1186      Shooter                               Nintendo 2.68192308
## 1187   Simulation                               Nintendo 2.94034483
## 1188       Sports                               Nintendo 3.96381818
## 1189     Strategy                               Nintendo 0.85468750
## 1190         Misc                           Nippon Amuse 0.09000000
## 1191       Action                        Nippon Columbia 0.13250000
## 1192         Misc                        Nippon Columbia 0.14000000
## 1193       Action                   Nippon Ichi Software 0.10153846
## 1194    Adventure                   Nippon Ichi Software 0.03500000
## 1195     Fighting                   Nippon Ichi Software 0.31500000
## 1196         Misc                   Nippon Ichi Software 0.37666667
## 1197     Platform                   Nippon Ichi Software 0.08000000
## 1198 Role-Playing                   Nippon Ichi Software 0.15188406
## 1199      Shooter                   Nippon Ichi Software 0.02000000
## 1200     Strategy                   Nippon Ichi Software 0.02000000
## 1201         Misc                         Nippon Telenet 0.13000000
## 1202    Adventure                              Nitroplus 0.01000000
## 1203     Fighting                              Nitroplus 0.01000000
## 1204       Action                                Nobilis 0.03000000
## 1205    Adventure                                Nobilis 0.01500000
## 1206         Misc                                Nobilis 0.35000000
## 1207       Racing                                Nobilis 0.03000000
## 1208 Role-Playing                                Nobilis 0.07500000
## 1209   Simulation                                Nobilis 0.26400000
## 1210       Action                            Nordcurrent 0.05000000
## 1211         Misc                            Nordcurrent 0.23000000
## 1212       Puzzle                            Nordcurrent 0.20000000
## 1213       Sports                            Nordcurrent 0.05500000
## 1214       Action                           Nordic Games 0.08125000
## 1215    Adventure                           Nordic Games 0.04000000
## 1216         Misc                           Nordic Games 0.29454545
## 1217       Racing                           Nordic Games 0.03714286
## 1218 Role-Playing                           Nordic Games 0.05000000
## 1219      Shooter                           Nordic Games 0.03000000
## 1220       Sports                           Nordic Games 0.04000000
## 1221     Strategy                           Nordic Games 0.01000000
## 1222      Shooter                              NovaLogic 0.27333333
## 1223     Platform                            Number None 0.03000000
## 1224    Adventure                                O-Games 0.06000000
## 1225         Misc                                O-Games 0.08000000
## 1226       Puzzle                                O-Games 0.05800000
## 1227       Racing                                O-Games 0.02000000
## 1228      Shooter                                O-Games 0.03000000
## 1229       Sports                                O-Games 0.07200000
## 1230       Puzzle                       O3 Entertainment 0.02000000
## 1231      Shooter                       O3 Entertainment 0.09000000
## 1232   Simulation                       O3 Entertainment 0.11000000
## 1233       Action                                  Ocean 0.54000000
## 1234     Fighting                                  Ocean 0.11000000
## 1235         Misc                                  Ocean 0.04000000
## 1236     Platform                                  Ocean 0.26333333
## 1237       Puzzle                                  Ocean 0.08000000
## 1238       Racing                                  Ocean 0.17500000
## 1239      Shooter                                  Ocean 0.23000000
## 1240       Sports                                  Ocean 0.28000000
## 1241   Simulation                          Office Create 0.03000000
## 1242 Role-Playing                              On Demand 0.21000000
## 1243   Simulation                              Ongakukan 0.01000000
## 1244   Simulation                         Origin Systems 0.09000000
## 1245    Adventure                                Otomate 0.01000000
## 1246       Action                     Oxygen Interactive 0.06666667
## 1247    Adventure                     Oxygen Interactive 0.09000000
## 1248         Misc                     Oxygen Interactive 0.31000000
## 1249     Platform                     Oxygen Interactive 0.03000000
## 1250       Puzzle                     Oxygen Interactive 0.05000000
## 1251       Sports                     Oxygen Interactive 0.08800000
## 1252         Misc                               P2 Games 0.19000000
## 1253       Puzzle                               P2 Games 0.02000000
## 1254         Misc            Pacific Century Cyber Works 0.26000000
## 1255    Adventure                          Pack-In-Video 0.05000000
## 1256   Simulation                          Pack-In-Video 0.06000000
## 1257   Simulation                           Pack In Soft 0.48000000
## 1258       Action                                 Palcom 4.17000000
## 1259 Role-Playing                       Panther Software 0.17000000
## 1260         Misc                                   Paon 0.04166667
## 1261         Misc                       Paon Corporation 0.03000000
## 1262   Simulation                    Paradox Development 0.01000000
## 1263         Misc                    Paradox Interactive 0.03000000
## 1264 Role-Playing                    Paradox Interactive 0.02200000
## 1265   Simulation                    Paradox Interactive 0.06500000
## 1266     Strategy                    Paradox Interactive 0.02769231
## 1267       Action                           Parker Bros. 0.77000000
## 1268     Platform                           Parker Bros. 0.54000000
## 1269       Puzzle                           Parker Bros. 0.58000000
## 1270       Puzzle          Performance Designed Products 0.18000000
## 1271   Simulation                             Phantagram 0.05000000
## 1272      Shooter                            Phantom EFX 0.09000000
## 1273     Platform                             Phenomedia 0.05000000
## 1274       Puzzle                             Phenomedia 0.05500000
## 1275       Racing                             Phenomedia 0.03000000
## 1276      Shooter                          Phoenix Games 0.02000000
## 1277    Adventure                                 Piacci 0.01000000
## 1278         Misc                               Pinnacle 0.63000000
## 1279       Puzzle                               Pinnacle 0.03000000
## 1280       Sports                               Pinnacle 0.10000000
## 1281     Strategy                               Pinnacle 0.03000000
## 1282    Adventure                            Pioneer LDC 0.11000000
## 1283       Racing                            Pioneer LDC 0.41000000
## 1284         Misc                                Play It 0.41750000
## 1285     Platform                                Play It 0.03000000
## 1286       Racing                                Play It 0.38000000
## 1287      Shooter                                Play It 0.11750000
## 1288       Sports                                Play It 0.62000000
## 1289       Action                 Playlogic Game Factory 0.11333333
## 1290         Misc                 Playlogic Game Factory 0.10000000
## 1291       Puzzle                 Playlogic Game Factory 0.05000000
## 1292      Shooter                 Playlogic Game Factory 0.10000000
## 1293       Sports                 Playlogic Game Factory 0.05000000
## 1294     Strategy                 Playlogic Game Factory 0.03500000
## 1295       Racing                              Playmates 0.28000000
## 1296     Fighting                               Playmore 0.04000000
## 1297       Action                                  PlayV 0.16000000
## 1298         Misc                                  PlayV 0.02000000
## 1299       Puzzle                                  PlayV 0.13000000
## 1300         Misc                                 Plenty 0.02000000
## 1301         Misc                             PM Studios 0.10000000
## 1302         Misc                            Pony Canyon 0.05000000
## 1303    Adventure                           PopCap Games 0.24000000
## 1304         Misc                           PopCap Games 0.02500000
## 1305       Puzzle                           PopCap Games 0.08666667
## 1306     Strategy                           PopCap Games 0.16666667
## 1307       Action                         Popcorn Arcade 0.08000000
## 1308     Platform                         Popcorn Arcade 0.03500000
## 1309       Puzzle                         Popcorn Arcade 0.10500000
## 1310       Racing                         Popcorn Arcade 0.02250000
## 1311      Shooter                         Popcorn Arcade 0.04000000
## 1312     Strategy                        PopTop Software 0.11000000
## 1313       Puzzle                                    Pow 0.05000000
## 1314       Action                                  PQube 0.06300000
## 1315    Adventure                                  PQube 0.10000000
## 1316     Fighting                                  PQube 0.16470588
## 1317         Misc                                  PQube 0.04000000
## 1318       Racing                                  PQube 0.10000000
## 1319      Shooter                                  PQube 0.04500000
## 1320   Simulation                                  PQube 0.05000000
## 1321       Sports                                  PQube 0.03000000
## 1322    Adventure                          Princess Soft 0.02333333
## 1323       Action                              Prototype 0.03000000
## 1324    Adventure                              Prototype 0.02230769
## 1325       Action                              Psygnosis 0.25200000
## 1326    Adventure                              Psygnosis 0.07000000
## 1327         Misc                              Psygnosis 0.03000000
## 1328     Platform                              Psygnosis 0.03000000
## 1329       Puzzle                              Psygnosis 0.06000000
## 1330       Racing                              Psygnosis 0.51625000
## 1331 Role-Playing                              Psygnosis 0.23000000
## 1332      Shooter                              Psygnosis 0.06666667
## 1333   Simulation                              Psygnosis 0.21250000
## 1334       Sports                              Psygnosis 0.03000000
## 1335         Misc                                 Quelle 0.87000000
## 1336 Role-Playing                                  Quest 0.71000000
## 1337       Action                               Quinrose 0.01666667
## 1338    Adventure                               Quinrose 0.01545455
## 1339    Adventure                                Quintet 0.02000000
## 1340     Fighting                          Rage Software 0.36666667
## 1341       Puzzle                          Rage Software 0.04000000
## 1342       Racing                          Rage Software 0.08500000
## 1343      Shooter                          Rage Software 0.11000000
## 1344     Platform                             Rain Games 0.01000000
## 1345       Racing                              Rebellion 0.24500000
## 1346      Shooter                 Rebellion Developments 0.15000000
## 1347    Adventure                      RED Entertainment 0.02000000
## 1348    Adventure                                Red Orb 2.62000000
## 1349       Action                Red Storm Entertainment 0.04000000
## 1350      Shooter                Red Storm Entertainment 1.14000000
## 1351         Misc                              RedOctane 2.17000000
## 1352    Adventure                     Reef Entertainment 0.02500000
## 1353      Shooter                     Reef Entertainment 0.10000000
## 1354       Sports                     Reef Entertainment 0.04000000
## 1355       Sports                           responDESIGN 0.06500000
## 1356    Adventure                     Revolution (Japan) 0.02000000
## 1357    Adventure                    Revolution Software 0.03500000
## 1358       Action                      Rising Star Games 0.20500000
## 1359    Adventure                      Rising Star Games 0.04200000
## 1360     Fighting                      Rising Star Games 0.24000000
## 1361         Misc                      Rising Star Games 0.36000000
## 1362     Platform                      Rising Star Games 0.04000000
## 1363       Puzzle                      Rising Star Games 0.07692308
## 1364 Role-Playing                      Rising Star Games 0.22307692
## 1365      Shooter                      Rising Star Games 0.09250000
## 1366   Simulation                      Rising Star Games 0.41636364
## 1367       Sports                      Rising Star Games 0.05750000
## 1368     Strategy                      Rising Star Games 0.13000000
## 1369   Simulation                          Riverhillsoft 0.04000000
## 1370       Action                         Rocket Company 0.05666667
## 1371    Adventure                         Rocket Company 0.03000000
## 1372         Misc                         Rocket Company 0.23000000
## 1373 Role-Playing                         Rocket Company 0.06000000
## 1374   Simulation                         Rocket Company 0.04000000
## 1375       Sports                         Rocket Company 0.07000000
## 1376       Action                             Rondomedia 0.65000000
## 1377    Adventure                             Rondomedia 0.04666667
## 1378         Misc                             Rondomedia 0.04000000
## 1379       Puzzle                             Rondomedia 0.21800000
## 1380       Racing                             Rondomedia 0.06500000
## 1381   Simulation                             Rondomedia 0.26500000
## 1382       Racing                                    RTL 0.03000000
## 1383   Simulation                                    RTL 0.04000000
## 1384       Sports                                    RTL 0.37800000
## 1385       Action                                 Russel 0.02500000
## 1386    Adventure                                 Russel 0.01333333
## 1387       Sports                                 Russel 1.12000000
## 1388    Adventure                      Sammy Corporation 0.07000000
## 1389     Fighting                      Sammy Corporation 0.15250000
## 1390         Misc                      Sammy Corporation 0.41750000
## 1391   Simulation                      Sammy Corporation 0.19000000
## 1392       Action                                 Saurus 0.02000000
## 1393       Action                        Scholastic Inc. 0.37000000
## 1394    Adventure                        Scholastic Inc. 0.25800000
## 1395         Misc                        Scholastic Inc. 0.07000000
## 1396       Puzzle                        Scholastic Inc. 0.39333333
## 1397       Action                                    SCi 0.09200000
## 1398     Platform                                    SCi 0.06000000
## 1399       Racing                                    SCi 0.02500000
## 1400      Shooter                                    SCi 0.36125000
## 1401       Action                             Screenlife 0.18000000
## 1402     Fighting                             Screenlife 0.07000000
## 1403 Role-Playing                             Screenlife 0.15500000
## 1404       Action                           SCS Software 0.13000000
## 1405       Puzzle                                  Sears 0.21000000
## 1406       Action                                   Sega 0.31831683
## 1407    Adventure                                   Sega 0.23903226
## 1408     Fighting                                   Sega 0.39675676
## 1409         Misc                                   Sega 0.32596774
## 1410     Platform                                   Sega 1.17000000
## 1411       Puzzle                                   Sega 0.11500000
## 1412       Racing                                   Sega 0.45479167
## 1413 Role-Playing                                   Sega 0.22984375
## 1414      Shooter                                   Sega 0.41475000
## 1415   Simulation                                   Sega 0.28833333
## 1416       Sports                                   Sega 0.53118519
## 1417     Strategy                                   Sega 0.19628571
## 1418         Misc                       Seta Corporation 0.09750000
## 1419 Role-Playing                       Seta Corporation 0.21000000
## 1420       Sports                       Seta Corporation 0.03000000
## 1421       Action                          Seventh Chord 0.08000000
## 1422    Adventure                             Shogakukan 0.05500000
## 1423         Misc                             Shogakukan 0.11000000
## 1424       Sports           Simon & Schuster Interactive 0.11000000
## 1425       Racing                   Slightly Mad Studios 0.46000000
## 1426     Strategy                    Slitherine Software 0.05250000
## 1427     Fighting                                    SNK 0.11772727
## 1428    Adventure                           SNK Playmore 0.03333333
## 1429     Fighting                           SNK Playmore 0.05833333
## 1430 Role-Playing                           SNK Playmore 0.01000000
## 1431      Shooter                           SNK Playmore 0.07500000
## 1432    Adventure                                Societa 0.04000000
## 1433       Action                               Sold Out 0.02000000
## 1434         Misc                                 Sonnet 0.03000000
## 1435       Action            Sony Computer Entertainment 1.05022222
## 1436    Adventure            Sony Computer Entertainment 0.33048780
## 1437     Fighting            Sony Computer Entertainment 0.93833333
## 1438         Misc            Sony Computer Entertainment 0.63125000
## 1439     Platform            Sony Computer Entertainment 1.57666667
## 1440       Puzzle            Sony Computer Entertainment 0.30916667
## 1441       Racing            Sony Computer Entertainment 1.70107692
## 1442 Role-Playing            Sony Computer Entertainment 0.89795918
## 1443      Shooter            Sony Computer Entertainment 1.12784314
## 1444   Simulation            Sony Computer Entertainment 0.57800000
## 1445       Sports            Sony Computer Entertainment 0.48072581
## 1446     Strategy            Sony Computer Entertainment 0.19500000
## 1447       Sports    Sony Computer Entertainment America 0.39333333
## 1448       Action     Sony Computer Entertainment Europe 5.99000000
## 1449    Adventure     Sony Computer Entertainment Europe 0.88000000
## 1450         Misc     Sony Computer Entertainment Europe 1.65000000
## 1451     Platform     Sony Computer Entertainment Europe 0.69500000
## 1452      Shooter     Sony Computer Entertainment Europe 1.00000000
## 1453   Simulation     Sony Computer Entertainment Europe 2.44000000
## 1454         Misc               Sony Music Entertainment 0.14000000
## 1455 Role-Playing              Sony Online Entertainment 0.48142857
## 1456     Strategy              Sony Online Entertainment 0.16000000
## 1457       Action                        SouthPeak Games 0.10111111
## 1458    Adventure                        SouthPeak Games 0.10000000
## 1459     Fighting                        SouthPeak Games 0.07000000
## 1460         Misc                        SouthPeak Games 0.08500000
## 1461       Puzzle                        SouthPeak Games 0.06500000
## 1462       Racing                        SouthPeak Games 0.59666667
## 1463 Role-Playing                        SouthPeak Games 0.64000000
## 1464      Shooter                        SouthPeak Games 0.11250000
## 1465   Simulation                        SouthPeak Games 0.23000000
## 1466       Sports                        SouthPeak Games 0.05333333
## 1467     Strategy                        SouthPeak Games 0.14000000
## 1468       Action                                  Spike 0.09700000
## 1469    Adventure                                  Spike 0.03333333
## 1470     Fighting                                  Spike 0.12500000
## 1471         Misc                                  Spike 0.14250000
## 1472 Role-Playing                                  Spike 0.09666667
## 1473   Simulation                                  Spike 0.08000000
## 1474       Sports                                  Spike 0.32727273
## 1475       Sports                                    SPS 0.12000000
## 1476       Racing                                 Square 0.16000000
## 1477 Role-Playing                                 Square 0.69600000
## 1478 Role-Playing                              Square EA 0.80000000
## 1479       Action                            Square Enix 0.56076923
## 1480    Adventure                            Square Enix 0.29600000
## 1481     Fighting                            Square Enix 1.06666667
## 1482         Misc                            Square Enix 0.26000000
## 1483       Puzzle                            Square Enix 0.15000000
## 1484 Role-Playing                            Square Enix 0.75263566
## 1485      Shooter                            Square Enix 0.46062500
## 1486   Simulation                            Square Enix 0.34250000
## 1487     Strategy                            Square Enix 0.20777778
## 1488     Fighting                             SquareSoft 0.38750000
## 1489       Racing                             SquareSoft 0.44000000
## 1490 Role-Playing                             SquareSoft 1.38394737
## 1491      Shooter                             SquareSoft 0.31000000
## 1492   Simulation                             SquareSoft 0.31000000
## 1493       Sports                             SquareSoft 0.22000000
## 1494     Strategy                             SquareSoft 0.44750000
## 1495     Strategy                                    SSI 0.19000000
## 1496       Action                        Stainless Games 0.01000000
## 1497       Action                               Starfish 0.06000000
## 1498 Role-Playing                               Starfish 0.02000000
## 1499      Shooter                               Starfish 0.04000000
## 1500       Sports                               Starfish 0.17333333
## 1501       Action                         Starpath Corp. 0.33000000
## 1502 Role-Playing                                  Sting 0.07222222
## 1503       Action                       Storm City Games 0.01000000
## 1504    Adventure                       Storm City Games 0.03000000
## 1505         Misc                       Storm City Games 0.04000000
## 1506     Platform                       Storm City Games 0.02000000
## 1507       Puzzle                       Storm City Games 0.16000000
## 1508       Racing                       Storm City Games 0.04500000
## 1509       Sports                       Storm City Games 0.05000000
## 1510     Strategy                       Storm City Games 0.02000000
## 1511     Strategy                         Strategy First 0.03000000
## 1512       Action                                Success 0.08000000
## 1513    Adventure                                Success 0.03250000
## 1514         Misc                                Success 0.03000000
## 1515       Puzzle                                Success 0.01000000
## 1516 Role-Playing                                Success 0.05857143
## 1517      Shooter                                Success 1.15000000
## 1518   Simulation                                Success 0.01000000
## 1519     Strategy                                Success 0.05500000
## 1520       Sports                             Summitsoft 0.04000000
## 1521     Strategy                             Sunflowers 0.03000000
## 1522       Action                    Sunrise Interactive 0.07000000
## 1523     Fighting                    Sunrise Interactive 0.02000000
## 1524       Racing                    Sunrise Interactive 0.02000000
## 1525 Role-Playing                    Sunrise Interactive 0.06000000
## 1526    Adventure                                Sunsoft 0.10000000
## 1527     Fighting                                Sunsoft 0.03000000
## 1528         Misc                                Sunsoft 0.03000000
## 1529     Platform                                Sunsoft 0.11000000
## 1530       Puzzle                                Sunsoft 0.09000000
## 1531 Role-Playing                                Sunsoft 0.10500000
## 1532      Shooter                                Sunsoft 0.25000000
## 1533    Adventure                                 Sweets 0.02500000
## 1534       Action                   Swing! Entertainment 0.05000000
## 1535    Adventure                   Swing! Entertainment 0.14000000
## 1536     Platform                   Swing! Entertainment 0.03000000
## 1537      Shooter                   Swing! Entertainment 0.07500000
## 1538   Simulation                   Swing! Entertainment 0.11000000
## 1539         Misc                                 Syscom 0.16000000
## 1540       Racing                                 Syscom 0.11000000
## 1541     Platform                               System 3 0.07333333
## 1542         Misc               System 3 Arcade Software 0.24333333
## 1543     Platform               System 3 Arcade Software 0.09500000
## 1544       Puzzle               System 3 Arcade Software 0.02000000
## 1545       Racing               System 3 Arcade Software 0.11714286
## 1546       Sports               System 3 Arcade Software 0.04000000
## 1547    Adventure                            System Soft 0.02000000
## 1548     Strategy                            System Soft 0.01000000
## 1549       Sports                               T&E Soft 0.12000000
## 1550       Action                                  Taito 0.24000000
## 1551    Adventure                                  Taito 0.02000000
## 1552     Fighting                                  Taito 0.01000000
## 1553         Misc                                  Taito 0.04000000
## 1554 Role-Playing                                  Taito 0.06000000
## 1555      Shooter                                  Taito 0.15250000
## 1556   Simulation                                  Taito 0.24571429
## 1557       Action                                 Takara 0.04000000
## 1558     Fighting                                 Takara 0.45000000
## 1559         Misc                                 Takara 0.22250000
## 1560       Racing                                 Takara 0.15500000
## 1561 Role-Playing                                 Takara 0.02000000
## 1562       Action                            Takara Tomy 0.04666667
## 1563     Fighting                            Takara Tomy 0.10500000
## 1564         Misc                            Takara Tomy 0.05833333
## 1565       Racing                            Takara Tomy 0.04500000
## 1566 Role-Playing                            Takara Tomy 0.13000000
## 1567       Sports                            Takara Tomy 0.05666667
## 1568     Strategy                            Takara Tomy 0.09000000
## 1569       Action                   Take-Two Interactive 2.26967742
## 1570    Adventure                   Take-Two Interactive 0.63000000
## 1571     Fighting                   Take-Two Interactive 0.06000000
## 1572         Misc                   Take-Two Interactive 0.39185185
## 1573     Platform                   Take-Two Interactive 0.30363636
## 1574       Puzzle                   Take-Two Interactive 0.07000000
## 1575       Racing                   Take-Two Interactive 1.06250000
## 1576 Role-Playing                   Take-Two Interactive 1.01166667
## 1577      Shooter                   Take-Two Interactive 0.83800000
## 1578   Simulation                   Take-Two Interactive 0.22250000
## 1579       Sports                   Take-Two Interactive 0.50841060
## 1580     Strategy                   Take-Two Interactive 0.33636364
## 1581    Adventure                                 Takuyo 0.01000000
## 1582      Shooter                              TalonSoft 0.87000000
## 1583       Action                               TDK Core 0.18500000
## 1584         Misc                               TDK Core 0.11000000
## 1585   Simulation                               TDK Core 0.03000000
## 1586       Action                         TDK Mediactive 0.14125000
## 1587    Adventure                         TDK Mediactive 0.06500000
## 1588         Misc                         TDK Mediactive 0.11000000
## 1589     Platform                         TDK Mediactive 0.31375000
## 1590       Racing                         TDK Mediactive 0.38666667
## 1591      Shooter                         TDK Mediactive 0.26000000
## 1592       Sports                         TDK Mediactive 0.21000000
## 1593     Strategy                        Team17 Software 0.05000000
## 1594       Sports              Technos Japan Corporation 0.02000000
## 1595      Shooter                             TechnoSoft 0.05000000
## 1596       Action                             Tecmo Koei 0.21197080
## 1597    Adventure                             Tecmo Koei 0.05941176
## 1598     Fighting                             Tecmo Koei 0.31666667
## 1599         Misc                             Tecmo Koei 0.02500000
## 1600     Platform                             Tecmo Koei 0.09000000
## 1601       Racing                             Tecmo Koei 0.08800000
## 1602 Role-Playing                             Tecmo Koei 0.14489362
## 1603      Shooter                             Tecmo Koei 0.09666667
## 1604   Simulation                             Tecmo Koei 0.16153846
## 1605       Sports                             Tecmo Koei 0.10230769
## 1606     Strategy                             Tecmo Koei 0.11260000
## 1607         Misc                              Telegames 0.19750000
## 1608       Puzzle                              Telegames 0.07000000
## 1609   Simulation                              Telegames 0.02000000
## 1610     Strategy                              Telegames 0.08000000
## 1611       Action                         Telltale Games 0.08000000
## 1612    Adventure                         Telltale Games 0.11130435
## 1613       Action                                Telstar 0.13000000
## 1614       Racing                                Telstar 0.08000000
## 1615      Shooter                                Telstar 0.06000000
## 1616       Puzzle                          Tetris Online 0.43000000
## 1617    Adventure                                    TGL 0.02500000
## 1618    Adventure                  The Adventure Company 0.09333333
## 1619       Puzzle                  The Adventure Company 0.11500000
## 1620       Racing                   The Learning Company 0.05000000
## 1621       Action                                    THQ 0.45994845
## 1622    Adventure                                    THQ 0.42510638
## 1623     Fighting                                    THQ 1.02619718
## 1624         Misc                                    THQ 0.35878788
## 1625     Platform                                    THQ 0.48258824
## 1626       Puzzle                                    THQ 0.54411765
## 1627       Racing                                    THQ 0.39772277
## 1628 Role-Playing                                    THQ 0.14125000
## 1629      Shooter                                    THQ 0.41388889
## 1630   Simulation                                    THQ 0.29037037
## 1631       Sports                                    THQ 0.42645161
## 1632     Strategy                                    THQ 0.23406250
## 1633       Action                            Tigervision 0.47333333
## 1634     Fighting                Time Warner Interactive 0.11000000
## 1635      Shooter                Time Warner Interactive 0.04000000
## 1636       Sports                Time Warner Interactive 0.05500000
## 1637     Strategy                Time Warner Interactive 0.09000000
## 1638       Action                                  Titus 0.14250000
## 1639     Fighting                                  Titus 0.22666667
## 1640         Misc                                  Titus 0.06000000
## 1641     Platform                                  Titus 0.01000000
## 1642       Racing                                  Titus 0.18750000
## 1643 Role-Playing                                  Titus 0.05000000
## 1644      Shooter                                  Titus 0.05500000
## 1645   Simulation                                  Titus 0.53500000
## 1646     Strategy                                  Titus 0.02000000
## 1647         Misc                                 Tivola 0.05666667
## 1648 Role-Playing                                   TOHO 0.11000000
## 1649         Misc                                  Tommo 0.03666667
## 1650      Shooter                                  Tommo 0.06000000
## 1651       Sports                                  Tommo 0.04000000
## 1652       Action                       Tomy Corporation 0.18500000
## 1653     Fighting                       Tomy Corporation 0.41300000
## 1654         Misc                       Tomy Corporation 0.03000000
## 1655       Racing                       Tomy Corporation 0.07000000
## 1656 Role-Playing                       Tomy Corporation 0.08000000
## 1657   Simulation                       Tomy Corporation 0.13000000
## 1658         Misc                    TopWare Interactive 0.03666667
## 1659 Role-Playing                    TopWare Interactive 0.01000000
## 1660       Action                             Touchstone 0.48000000
## 1661   Simulation                             Touchstone 0.14000000
## 1662       Sports                              Tradewest 0.03666667
## 1663      Shooter                           Trion Worlds 0.38000000
## 1664     Strategy                           Trion Worlds 0.01000000
## 1665      Shooter                   Tripwire Interactive 0.14000000
## 1666       Action                  Tru Blu Entertainment 0.02250000
## 1667       Sports                  Tru Blu Entertainment 0.04750000
## 1668     Fighting                               Tryfirst 0.03000000
## 1669       Racing                                    TYO 0.42000000
## 1670    Adventure                              Type-Moon 0.10000000
## 1671     Platform                              U.S. Gold 0.05000000
## 1672       Sports                              U.S. Gold 0.09333333
## 1673       Action                                Ubisoft 0.74062176
## 1674    Adventure                                Ubisoft 0.37610169
## 1675     Fighting                                Ubisoft 0.37210526
## 1676         Misc                                Ubisoft 0.64589404
## 1677     Platform                                Ubisoft 0.30085714
## 1678       Puzzle                                Ubisoft 0.26375000
## 1679       Racing                                Ubisoft 0.30442308
## 1680 Role-Playing                                Ubisoft 0.40878049
## 1681      Shooter                                Ubisoft 0.73532609
## 1682   Simulation                                Ubisoft 0.37537815
## 1683       Sports                                Ubisoft 0.33666667
## 1684     Strategy                                Ubisoft 0.29137931
## 1685       Action                         Ubisoft Annecy 0.33800000
## 1686     Fighting                         Ubisoft Annecy 0.38500000
## 1687         Misc                         Ubisoft Annecy 0.17000000
## 1688 Role-Playing                         Ubisoft Annecy 0.14000000
## 1689       Sports                            UEP Systems 2.25000000
## 1690       Action                        UFO Interactive 0.02000000
## 1691         Misc                        UFO Interactive 0.08000000
## 1692       Puzzle                        UFO Interactive 0.05750000
## 1693      Shooter                        UFO Interactive 0.02000000
## 1694       Sports                        UFO Interactive 0.02500000
## 1695   Simulation                      UIG Entertainment 0.01000000
## 1696     Fighting                            Ultravision 0.47000000
## 1697       Action                        Universal Gamex 0.63000000
## 1698       Action                  Universal Interactive 0.40888889
## 1699     Fighting                  Universal Interactive 0.31000000
## 1700         Misc                  Universal Interactive 0.56000000
## 1701     Platform                  Universal Interactive 1.70714286
## 1702      Shooter                  Universal Interactive 0.19500000
## 1703       Sports                  Universal Interactive 0.49000000
## 1704       Action                                Unknown 0.15428571
## 1705    Adventure                                Unknown 0.06764706
## 1706     Fighting                                Unknown 0.04833333
## 1707         Misc                                Unknown 0.21064516
## 1708     Platform                                Unknown 0.05500000
## 1709       Puzzle                                Unknown 0.12294118
## 1710       Racing                                Unknown 0.34692308
## 1711 Role-Playing                                Unknown 0.24000000
## 1712      Shooter                                Unknown 0.12923077
## 1713   Simulation                                Unknown 0.11538462
## 1714       Sports                                Unknown 0.25269231
## 1715     Strategy                                Unknown 0.02714286
## 1716    Adventure                           Valcon Games 0.01000000
## 1717       Racing                           Valcon Games 0.06000000
## 1718      Shooter                           Valcon Games 0.09000000
## 1719   Simulation                           Valcon Games 0.03000000
## 1720       Sports                           Valcon Games 0.07000000
## 1721    Adventure                               ValuSoft 0.01000000
## 1722       Puzzle                               ValuSoft 0.07000000
## 1723       Racing                               ValuSoft 0.24000000
## 1724      Shooter                                  Valve 1.74000000
## 1725      Shooter                         Valve Software 1.07666667
## 1726         Misc                                    Vap 0.05000000
## 1727       Racing                  Vatical Entertainment 0.11000000
## 1728     Fighting                              Vic Tokai 0.13500000
## 1729    Adventure                     Victor Interactive 0.02000000
## 1730         Misc                     Victor Interactive 0.02000000
## 1731 Role-Playing                     Victor Interactive 0.02000000
## 1732   Simulation                     Victor Interactive 0.15500000
## 1733       Sports                     Victor Interactive 0.13000000
## 1734       Action                           Video System 0.19000000
## 1735       Racing                           Video System 0.66333333
## 1736       Action                                  Views 0.02000000
## 1737    Adventure                                  Views 0.01000000
## 1738       Action                          Vir2L Studios 0.16000000
## 1739       Racing                          Vir2L Studios 0.03000000
## 1740       Sports                          Vir2L Studios 0.07000000
## 1741       Action                     Virgin Interactive 1.69583333
## 1742    Adventure                     Virgin Interactive 0.78000000
## 1743     Fighting                     Virgin Interactive 0.42000000
## 1744         Misc                     Virgin Interactive 0.04000000
## 1745     Platform                     Virgin Interactive 0.58000000
## 1746       Puzzle                     Virgin Interactive 0.13000000
## 1747       Racing                     Virgin Interactive 0.02000000
## 1748 Role-Playing                     Virgin Interactive 0.52666667
## 1749      Shooter                     Virgin Interactive 0.61000000
## 1750   Simulation                     Virgin Interactive 0.13500000
## 1751       Sports                     Virgin Interactive 0.08500000
## 1752     Strategy                     Virgin Interactive 0.77833333
## 1753         Misc                     Virtual Play Games 0.04000000
## 1754       Sports                     Virtual Play Games 0.02000000
## 1755      Shooter                                  Visco 0.02000000
## 1756       Action                          Vivendi Games 0.27391304
## 1757    Adventure                          Vivendi Games 0.22000000
## 1758     Fighting                          Vivendi Games 0.12500000
## 1759         Misc                          Vivendi Games 0.19375000
## 1760     Platform                          Vivendi Games 0.46135135
## 1761       Puzzle                          Vivendi Games 0.08000000
## 1762       Racing                          Vivendi Games 0.80571429
## 1763 Role-Playing                          Vivendi Games 1.06000000
## 1764      Shooter                          Vivendi Games 0.38966667
## 1765   Simulation                          Vivendi Games 0.03000000
## 1766       Sports                          Vivendi Games 0.05500000
## 1767     Strategy                          Vivendi Games 0.05166667
## 1768       Action                                Wanadoo 0.30000000
## 1769     Platform                                Wanadoo 0.01500000
## 1770       Racing                                Wanadoo 0.02000000
## 1771      Shooter                                Warashi 0.02000000
## 1772      Shooter                          Wargaming.net 0.29000000
## 1773       Action Warner Bros. Interactive Entertainment 0.71660606
## 1774    Adventure Warner Bros. Interactive Entertainment 0.19666667
## 1775     Fighting Warner Bros. Interactive Entertainment 1.24454545
## 1776         Misc Warner Bros. Interactive Entertainment 0.25636364
## 1777     Platform Warner Bros. Interactive Entertainment 0.19125000
## 1778       Puzzle Warner Bros. Interactive Entertainment 0.83125000
## 1779       Racing Warner Bros. Interactive Entertainment 0.32666667
## 1780      Shooter Warner Bros. Interactive Entertainment 0.37100000
## 1781     Strategy Warner Bros. Interactive Entertainment 1.43000000
## 1782    Adventure                                   Warp 0.07000000
## 1783    Adventure                WayForward Technologies 0.05000000
## 1784     Strategy                       Westwood Studios 1.55000000
## 1785       Puzzle                White Park Bay Software 0.16000000
## 1786       Action                     Wizard Video Games 0.62000000
## 1787       Racing                      Xicat Interactive 0.03000000
## 1788 Role-Playing                      Xicat Interactive 0.03000000
## 1789       Sports                      Xicat Interactive 0.11000000
## 1790     Fighting                     Xing Entertainment 0.24000000
## 1791         Misc                                Xplosiv 0.07666667
## 1792       Puzzle                                Xplosiv 0.17000000
## 1793       Racing                                Xplosiv 0.21400000
## 1794         Misc                               XS Games 0.04000000
## 1795       Racing                               XS Games 0.08200000
## 1796       Sports                               XS Games 0.19400000
## 1797       Action                            Xseed Games 0.11000000
## 1798 Role-Playing                            Xseed Games 0.37000000
## 1799      Shooter                            Xseed Games 0.05000000
## 1800     Platform                       Yacht Club Games 0.10666667
## 1801         Misc                   Yamasa Entertainment 0.02000000
## 1802       Action                                   Yeti 0.01000000
## 1803    Adventure                                   Yeti 0.02333333
## 1804     Fighting                                   Yeti 0.02000000
## 1805     Fighting                                 Yuke's 0.02500000
## 1806       Racing                                 Yuke's 0.03000000
## 1807    Adventure                                Yumedia 0.06000000
## 1808         Misc                                 Zenrin 0.03000000
## 1809       Action                 Zoo Digital Publishing 0.09750000
## 1810    Adventure                 Zoo Digital Publishing 0.05571429
## 1811     Fighting                 Zoo Digital Publishing 0.09333333
## 1812         Misc                 Zoo Digital Publishing 0.14166667
## 1813     Platform                 Zoo Digital Publishing 0.17500000
## 1814       Puzzle                 Zoo Digital Publishing 0.09500000
## 1815       Racing                 Zoo Digital Publishing 0.12384615
## 1816      Shooter                 Zoo Digital Publishing 0.07500000
## 1817   Simulation                 Zoo Digital Publishing 0.11000000
## 1818       Sports                 Zoo Digital Publishing 0.19812500
## 1819     Strategy                 Zoo Digital Publishing 0.09000000
## 1820       Action                              Zoo Games 0.09000000
## 1821    Adventure                              Zoo Games 0.02000000
## 1822         Misc                              Zoo Games 0.23909091
## 1823       Puzzle                              Zoo Games 0.07333333
## 1824       Racing                              Zoo Games 0.10833333
## 1825      Shooter                              Zoo Games 0.12000000
## 1826   Simulation                              Zoo Games 0.07000000
## 1827       Sports                              Zoo Games 0.12000000
## 1828       Action                            Zushi Games 0.02000000
## 1829    Adventure                            Zushi Games 0.05000000
## 1830         Misc                            Zushi Games 0.09000000
## 1831       Puzzle                            Zushi Games 0.03500000
## 1832       Racing                            Zushi Games 0.05666667
## 1833 Role-Playing                            Zushi Games 0.13000000
## 1834      Shooter                            Zushi Games 0.18500000
## 1835   Simulation                            Zushi Games 0.02500000
## 1836       Sports                            Zushi Games 0.29000000
## 1837     Strategy                            Zushi Games 0.03500000

Running regression models

We now run regression models to understand the fields that affect sales in NA, EU, JP, Other regions and globally.

fit1 <- lm(Rank~Platform,data = game.df)
summary(fit1)
## 
## Call:
## lm(formula = Rank ~ Platform, data = game.df)
## 
## Residuals:
##      Min       1Q   Median       3Q      Max 
## -11354.3  -3662.7     83.9   3616.4  10731.6 
## 
## Coefficients:
##              Estimate Std. Error t value Pr(>|t|)    
## (Intercept)    4403.5      390.5  11.276  < 2e-16 ***
## Platform3DO    9969.2     2629.3   3.792  0.00015 ***
## Platform3DS    4756.9      438.6  10.846  < 2e-16 ***
## PlatformDC     4367.9      736.6   5.930 3.09e-09 ***
## PlatformDS     5234.0      402.3  13.009  < 2e-16 ***
## PlatformGB    -1011.5      599.6  -1.687  0.09162 .  
## PlatformGBA    4278.7      420.9  10.165  < 2e-16 ***
## PlatformGC     4260.9      434.7   9.801  < 2e-16 ***
## PlatformGEN    2634.2      950.6   2.771  0.00559 ** 
## PlatformGG     9123.5     4520.5   2.018  0.04358 *  
## PlatformN64    2126.9      464.8   4.575 4.79e-06 ***
## PlatformNES   -2497.1      599.6  -4.165 3.13e-05 ***
## PlatformNG     6262.2     1357.5   4.613 4.00e-06 ***
## PlatformPC     7034.8      416.7  16.883  < 2e-16 ***
## PlatformPCFX  10155.5     4520.5   2.247  0.02468 *  
## PlatformPS     2554.7      411.7   6.206 5.57e-10 ***
## PlatformPS2    3074.1      402.4   7.640 2.28e-14 ***
## PlatformPS3    2389.6      409.6   5.834 5.51e-09 ***
## PlatformPS4    3222.1      461.4   6.984 2.99e-12 ***
## PlatformPSP    5996.4      411.4  14.577  < 2e-16 ***
## PlatformPSV    7054.7      449.0  15.712  < 2e-16 ***
## PlatformSAT    4930.4      519.4   9.493  < 2e-16 ***
## PlatformSCD    5768.3     1879.6   3.069  0.00215 ** 
## PlatformSNES   1943.0      487.2   3.988 6.69e-05 ***
## PlatformTG16   7978.0     3208.4   2.487  0.01291 *  
## PlatformWii    3327.3      409.6   8.122 4.89e-16 ***
## PlatformWiiU   3352.7      542.5   6.180 6.57e-10 ***
## PlatformWS     3475.3     1879.6   1.849  0.06448 .  
## PlatformX360   2289.0      410.5   5.576 2.50e-08 ***
## PlatformXB     4357.8      420.9  10.355  < 2e-16 ***
## PlatformXOne   2993.6      497.7   6.015 1.84e-09 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 4504 on 16567 degrees of freedom
## Multiple R-squared:  0.1183, Adjusted R-squared:  0.1167 
## F-statistic: 74.08 on 30 and 16567 DF,  p-value: < 2.2e-16
fit1 <- lm(Rank~Year,data = game.df)
summary(fit1)
## 
## Call:
## lm(formula = Rank ~ Year, data = game.df)
## 
## Residuals:
##    Min     1Q Median     3Q    Max 
## -11207  -3942     52   3976  12031 
## 
## Coefficients:
##             Estimate Std. Error t value Pr(>|t|)    
## (Intercept)  3314.00    1557.03   2.128 0.033318 *  
## Year1981      827.04    1702.55   0.486 0.627138    
## Year1982      830.06    1740.81   0.477 0.633496    
## Year1983       24.76    1925.57   0.013 0.989739    
## Year1984    -1677.50    1995.71  -0.841 0.400610    
## Year1985      650.64    1995.71   0.326 0.744413    
## Year1986    -1600.38    1861.01  -0.860 0.389827    
## Year1987      104.81    1946.29   0.054 0.957053    
## Year1988     -835.27    1969.51  -0.424 0.671499    
## Year1989     -951.88    1925.57  -0.494 0.621074    
## Year1990    -1744.88    1946.29  -0.897 0.369991    
## Year1991     1876.76    1719.45   1.091 0.275076    
## Year1992     1544.74    1712.24   0.902 0.366976    
## Year1993     2998.70    1669.73   1.796 0.072525 .  
## Year1994     3866.92    1613.90   2.396 0.016586 *  
## Year1995     5268.62    1588.70   3.316 0.000914 ***
## Year1996     3954.71    1583.45   2.498 0.012516 *  
## Year1997     3249.94    1581.09   2.056 0.039846 *  
## Year1998     3608.14    1575.41   2.290 0.022017 *  
## Year1999     3156.54    1577.62   2.001 0.045428 *  
## Year2000     3495.09    1576.98   2.216 0.026683 *  
## Year2001     3712.49    1571.50   2.362 0.018169 *  
## Year2002     4925.07    1565.46   3.146 0.001658 ** 
## Year2003     4571.15    1566.05   2.919 0.003517 ** 
## Year2004     4301.17    1566.19   2.746 0.006034 ** 
## Year2005     4899.03    1564.46   3.131 0.001742 ** 
## Year2006     6173.69    1563.97   3.947 7.93e-05 ***
## Year2007     5292.16    1562.85   3.386 0.000710 ***
## Year2008     5150.99    1561.93   3.298 0.000976 ***
## Year2009     5365.40    1561.92   3.435 0.000594 ***
## Year2010     5469.96    1562.59   3.501 0.000465 ***
## Year2011     5480.94    1563.17   3.506 0.000456 ***
## Year2012     5141.04    1567.66   3.279 0.001042 ** 
## Year2013     4741.60    1569.81   3.020 0.002528 ** 
## Year2014     5005.23    1569.02   3.190 0.001425 ** 
## Year2015     6483.80    1568.40   4.134 3.58e-05 ***
## Year2016     8115.24    1577.27   5.145 2.70e-07 ***
## Year2017    12378.67    3114.06   3.975 7.07e-05 ***
## Year2020     2645.00    4923.76   0.537 0.591143    
## YearN/A      5452.74    1582.67   3.445 0.000572 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 4671 on 16558 degrees of freedom
## Multiple R-squared:  0.052,  Adjusted R-squared:  0.04977 
## F-statistic: 23.29 on 39 and 16558 DF,  p-value: < 2.2e-16
fit1 <- lm(Rank~Genre,data = game.df)
summary(fit1)
## 
## Call:
## lm(formula = Rank ~ Genre, data = game.df)
## 
## Residuals:
##      Min       1Q   Median       3Q      Max 
## -11481.8  -3958.0     23.7   3866.3   9672.7 
## 
## Coefficients:
##                   Estimate Std. Error t value Pr(>|t|)    
## (Intercept)        7973.88      80.76  98.730  < 2e-16 ***
## GenreAdventure     3558.91     152.78  23.294  < 2e-16 ***
## GenreFighting      -327.37     178.97  -1.829 0.067391 .  
## GenreMisc           587.97     137.70   4.270 1.97e-05 ***
## GenrePlatform     -1046.63     175.89  -5.951 2.73e-09 ***
## GenrePuzzle        1653.50     209.02   7.911 2.72e-15 ***
## GenreRacing         -12.36     154.40  -0.080 0.936181    
## GenreRole-Playing   112.30     145.12   0.774 0.439047    
## GenreShooter       -604.51     151.77  -3.983 6.83e-05 ***
## GenreSimulation     652.21     177.40   3.676 0.000237 ***
## GenreSports        -548.85     125.47  -4.374 1.23e-05 ***
## GenreStrategy      2098.02     195.67  10.722  < 2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 4651 on 16586 degrees of freedom
## Multiple R-squared:  0.05862,    Adjusted R-squared:  0.058 
## F-statistic:  93.9 on 11 and 16586 DF,  p-value: < 2.2e-16
fit1 <- lm(Rank~Publisher,data = game.df)
summary(fit1)
## 
## Call:
## lm(formula = Rank ~ Publisher, data = game.df)
## 
## Residuals:
##      Min       1Q   Median       3Q      Max 
## -12577.4  -3058.5    -52.9   2853.4  12684.2 
## 
## Coefficients:
##                                                  Estimate Std. Error
## (Intercept)                                      14064.00    2335.60
## Publisher1C Company                                348.33    3303.03
## Publisher20th Century Fox Video Games            -8610.80    2954.32
## Publisher2D Boy                                    -51.00    4671.19
## Publisher3DO                                     -6026.67    2430.97
## Publisher49Games                                  -485.00    4671.19
## Publisher505 Games                               -4338.77    2353.77
## Publisher5pb                                       964.03    2392.34
## Publisher7G//AMES                                 1585.75    3089.70
## Publisher989 Sports                              -9008.00    4671.19
## Publisher989 Studios                            -10600.29    2573.70
## PublisherAbylight                                -2562.00    4671.19
## PublisherAcclaim Entertainment                   -6161.62    2354.56
## PublisherAccolade                                -8266.67    3303.03
## PublisherAckkstudios                             -1948.50    2662.99
## PublisherAcquire                                 -2388.61    2591.11
## PublisherActivision                              -7532.39    2339.19
## PublisherActivision Blizzard                     -9955.00    4671.19
## PublisherActivision Value                        -5344.45    2453.43
## PublisherAdeline Software                        -5811.00    4671.19
## PublisherAerosoft                                 1705.00    3692.90
## PublisherAgatsuma Entertainment                  -2914.33    3303.03
## PublisherAgetec                                  -4203.88    2738.73
## PublisherAksys Games                             -1082.12    2738.73
## PublisherAlawar Entertainment                      825.00    3692.90
## PublisherAlchemist                                 154.44    2415.70
## PublisherAlternative Software                      286.17    2860.51
## PublisherAltron                                  -1833.00    4671.19
## PublisherAlvion                                   1837.50    3692.90
## PublisherAmerican Softworks                      -7016.00    4671.19
## PublisherAngel Studios                           -3900.33    3303.03
## PublisherAnswer Software                        -10046.00    4671.19
## PublisherAQ Interactive                          -2786.00    2954.32
## PublisherAqua Plus                                -860.26    2483.25
## PublisherAques                                   -5482.00    4671.19
## PublisherArc System Works                         -511.92    2466.66
## PublisherArena Entertainment                    -13367.00    3692.90
## PublisherAria                                    -1853.00    4671.19
## PublisherArika                                     808.00    3303.03
## PublisherArtDink                                 -1631.56    2696.91
## PublisherAruze Corp                              -8099.67    3303.03
## PublisherASC Games                               -8156.33    3303.03
## PublisherAscaron Entertainment                    2228.00    4671.19
## PublisherAscaron Entertainment GmbH                -13.00    3303.03
## PublisherASCII Entertainment                     -8112.30    2504.65
## PublisherASCII Media Works                         610.67    2696.91
## PublisherAsgard                                    641.12    2738.73
## PublisherASK                                       256.00    4671.19
## PublisherAsmik Ace Entertainment                 -2134.00    3303.03
## PublisherAsmik Corp                              -2771.50    3692.90
## PublisherAspyr                                   -1729.75    2738.73
## PublisherAstragon                                -3009.00    2860.51
## PublisherAsylum Entertainment                    -3012.17    2860.51
## PublisherAtari                                   -6124.35    2345.23
## PublisherAthena                                   -273.50    3692.90
## PublisherAtlus                                   -4380.37    2387.31
## PublisherAvalon Interactive                      -2173.83    2860.51
## PublisherAvanquest                               -2705.23    2466.66
## PublisherAvanquest Software                      -1581.44    2696.91
## PublisherAxela                                   -7453.00    4671.19
## PublisherBAM! Entertainment                      -3664.91    2433.64
## PublisherBanpresto                               -5084.25    2383.11
## PublisherBenesse                                  -951.17    2860.51
## PublisherBerkeley                                  149.00    4671.19
## PublisherBethesda Softworks                      -8855.77    2384.43
## PublisherBig Ben Interactive                     -1507.14    2791.57
## PublisherBig Fish Games                            881.50    3692.90
## PublisherBigben Interactive                      -1371.46    2591.11
## PublisherbitComposer Games                       -2185.80    2954.32
## PublisherBlack Bean Games                        -2255.79    2436.46
## PublisherBlack Label Games                      -12396.00    4671.19
## PublisherBlast! Entertainment Ltd                -1016.67    2860.51
## PublisherBlue Byte                                1558.50    3692.90
## PublisherBMG Interactive Entertainment           -4023.86    2791.57
## PublisherBohemia Interactive                     -4173.00    4671.19
## PublisherBomb                                    -6913.00    4671.19
## PublisherBoost On                                 2094.00    4671.19
## PublisherBPS                                     -7469.00    3692.90
## PublisherBrash Entertainment                     -3668.80    2662.99
## PublisherBroccoli                                  -63.00    2489.75
## PublisherBushiRoad                                 545.00    4671.19
## PublisherCapcom                                  -6245.59    2344.77
## PublisherCave                                      492.00    2662.99
## PublisherCBS Electronics                         -8289.00    4671.19
## PublisherCCP                                     -6756.00    4671.19
## PublisherCDV Software Entertainment                523.67    2860.51
## PublisherChunSoft                                -4199.83    2522.73
## PublisherCity Interactive                        -5039.42    2513.23
## PublisherCloud Imperium Games Corporation         -322.50    3692.90
## PublisherCoconuts Japan                             67.00    3692.90
## PublisherCodemasters                             -5187.12    2358.53
## PublisherCodemasters Online                       1246.00    4671.19
## PublisherCokeM Interactive                       -8318.00    4671.19
## PublisherColeco                                  -9829.40    2954.32
## PublisherComfort                                   983.17    2860.51
## PublisherCommseed                                 2396.00    4671.19
## PublisherCompile                                 -6287.17    2860.51
## PublisherCompile Heart                           -1316.05    2504.65
## PublisherConspiracy Entertainment                 -878.29    2573.70
## PublisherCore Design Ltd.                        -4820.00    3692.90
## PublisherCPG Products                           -10346.00    4671.19
## PublisherCrave Entertainment                     -3374.35    2384.43
## PublisherCreative Core                             558.33    3303.03
## PublisherCrimson Cow                                 9.00    3692.90
## PublisherCrystal Dynamics                        -6939.60    2954.32
## PublisherCTO SpA                                 -5275.00    3692.90
## PublisherCulture Brain                            -716.75    3089.70
## PublisherCulture Publishers                      -3038.00    4671.19
## PublisherCyberFront                               1518.50    2573.70
## PublisherCygames                                   333.00    4671.19
## PublisherD3Publisher                             -2473.72    2354.56
## PublisherDaedalic                                -2687.67    3303.03
## PublisherDaedalic Entertainment                   -578.67    3303.03
## PublisherDaito                                   -1340.00    3089.70
## PublisherData Age                                -8749.50    3692.90
## PublisherData Design Interactive                 -3284.67    3303.03
## PublisherData East                               -2190.50    3692.90
## PublisherDatam Polystar                           1903.00    3692.90
## PublisherDeep Silver                             -3753.01    2364.14
## PublisherDestination Software, Inc               -1036.50    2611.28
## PublisherDestineer                               -2148.20    2412.19
## PublisherDetn8 Games                             -7030.00    4671.19
## PublisherDevolver Digital                         1274.00    3692.90
## PublisherDHM Interactive                         -1007.67    3303.03
## PublisherDigiCube                                -1361.00    4671.19
## PublisherDisney Interactive Studios              -8281.36    2351.61
## PublisherDorart                                   1862.00    3692.90
## Publisherdramatic create                          1346.60    2954.32
## PublisherDreamCatcher Interactive                 -939.76    2533.31
## PublisherDreamWorks Interactive                  -4443.00    4671.19
## PublisherDSI Games                                -582.17    2860.51
## PublisherDTP Entertainment                       -1745.84    2412.19
## PublisherDusenberry Martin Racing                  581.50    3692.90
## PublisherEA Games                                -5223.00    4671.19
## PublisherEasy Interactive                         1284.00    3692.90
## PublisherEcole                                   -1484.00    4671.19
## PublisherEdia                                     -512.50    3692.90
## PublisherEidos Interactive                       -5955.03    2353.22
## PublisherElectronic Arts                         -8778.72    2338.19
## PublisherElectronic Arts Victor                  -4833.50    3692.90
## PublisherElf                                     -8369.50    3692.90
## PublisherElite                                   -2002.00    4671.19
## PublisherEmpire Interactive                      -4339.71    2402.03
## PublisherEncore                                   1470.75    3089.70
## PublisherEnix Corporation                        -9385.00    2449.59
## PublisherEnjoy Gaming ltd.                       -3350.00    4671.19
## PublisherEnterbrain                              -3711.33    2558.52
## PublisherEON Digital Entertainment                2178.00    4671.19
## PublisherEpic Games                               2199.00    4671.19
## PublisherEpoch                                   -4055.29    2791.57
## PublisherErtain                                  -1057.00    4671.19
## PublisherESP                                     -2276.20    2954.32
## PublisherEssential Games                         -1430.33    3303.03
## PublisherEvolution Games                         -1977.00    4671.19
## PublisherEvolved Games                              44.50    2738.73
## PublisherExcalibur Publishing                    -1606.75    3089.70
## PublisherExperience Inc.                          1303.67    3303.03
## PublisherExtreme Entertainment Group               406.00    4671.19
## PublisherFalcom Corporation                      -1600.56    2545.16
## PublisherFields                                     81.00    4671.19
## PublisherFlashpoint Games                         -314.50    3692.90
## PublisherFlight-Plan                             -1344.50    3692.90
## PublisherFocus Home Interactive                  -2313.55    2395.24
## PublisherFocus Multimedia                         1630.67    3303.03
## Publisherfonfun                                   1209.00    4671.19
## PublisherForeign Media Games                     -1491.89    2696.91
## PublisherFortyfive                               -1793.00    4671.19
## PublisherFox Interactive                         -9651.25    2738.73
## PublisherFrom Software                           -2836.93    2558.52
## PublisherFuji                                      165.00    4671.19
## PublisherFunbox Media                            -2115.33    2860.51
## PublisherFuncom                                  -2604.50    3692.90
## PublisherFunSoft                                 -4219.00    4671.19
## PublisherFunsta                                   -208.50    3089.70
## PublisherFuRyu                                    -463.30    2461.93
## PublisherFuRyu Corporation                         696.00    4671.19
## PublisherG.Rev                                    1316.00    3692.90
## PublisherGaga                                     1124.00    4671.19
## PublisherGainax Network Systems                  -2434.50    3692.90
## PublisherGakken                                   1620.50    3692.90
## PublisherGame Arts                               -5058.00    4671.19
## PublisherGame Factory                            -2427.06    2442.63
## PublisherGame Life                               -5021.00    3692.90
## PublisherGamebridge                              -8427.50    3692.90
## PublisherGamecock                                 -759.00    3089.70
## PublisherGameloft                                -3893.00    4671.19
## PublisherGameMill Entertainment                  -4734.25    2738.73
## PublisherGameTek                                 -3432.00    4671.19
## PublisherGathering of Developers                 -3719.44    2696.91
## PublisherGeneral Entertainment                   -4937.00    4671.19
## PublisherGenki                                   -3189.38    2738.73
## PublisherGenterprise                              2013.00    4671.19
## PublisherGhostlight                              -4661.47    2558.52
## PublisherGiga                                     1820.00    4671.19
## PublisherGiza10                                   1761.00    4671.19
## PublisherGlams                                   -2385.00    4671.19
## PublisherGlobal A Entertainment                     95.25    3089.70
## PublisherGlobal Star                             -3719.49    2423.76
## PublisherGN Software                              1585.67    3303.03
## PublisherGOA                                       884.00    4671.19
## PublisherGotham Games                            -7946.57    2791.57
## PublisherGraffiti                                -1554.17    2860.51
## PublisherGrand Prix Games                        -1403.00    4671.19
## PublisherGraphsim Entertainment                   1012.00    4671.19
## PublisherGremlin Interactive Ltd                 -3815.22    2696.91
## PublisherGriffin International                   -3022.00    4671.19
## PublisherGroove Games                             -466.00    3692.90
## PublisherGSP                                     -4563.94    2545.16
## PublisherGT Interactive                          -7149.02    2412.19
## PublisherGungHo                                  -4164.08    2591.11
## PublisherGust                                    -1937.54    2591.11
## PublisherHackberry                                -319.00    2791.57
## PublisherHAL Laboratory                          -1426.00    4671.19
## PublisherHamster Corporation                     -3227.00    3692.90
## PublisherHappinet                                  271.20    2954.32
## PublisherHarmonix Music Systems                  -9228.50    3692.90
## PublisherHasbro Interactive                      -9286.75    2545.16
## PublisherHavas Interactive                       -4615.00    4671.19
## PublisherHeadup Games                              269.00    4671.19
## PublisherHearty Robin                            -2900.00    4671.19
## PublisherHect                                    -4695.67    3303.03
## PublisherHello Games                            -12906.00    4671.19
## PublisherHer Interactive                           221.00    4671.19
## PublisherHip Interactive                         -1870.60    2954.32
## PublisherHMH Interactive                         -1827.50    3692.90
## PublisherHome Entertainment Suppliers            -3166.80    2954.32
## PublisherHudson Entertainment                    -2309.09    2634.91
## PublisherHudson Soft                             -5162.75    2378.45
## PublisherHuman Entertainment                     -6399.61    2591.11
## PublisherHuneX                                    2085.00    3692.90
## PublisherIceberg Interactive                       842.33    3303.03
## Publisherid Software                               538.00    4671.19
## PublisherIdea Factory                              637.24    2362.60
## PublisherIdea Factory International              -3179.83    2860.51
## PublisherIE Institute                            -3468.00    2954.32
## PublisherIgnition Entertainment                  -2666.51    2392.34
## PublisherIllusion Softworks                     -11131.00    4671.19
## PublisherImadio                                  -4881.00    4671.19
## PublisherImage Epoch                             -3276.00    4671.19
## Publisherimageepoch Inc.                          1280.00    3692.90
## PublisherImageworks                               1418.00    4671.19
## PublisherImagic                                 -11708.50    3089.70
## PublisherImagineer                               -4214.12    2545.16
## PublisherImax                                    -1773.00    4671.19
## PublisherIndie Games                             -2170.67    3303.03
## PublisherInfogrames                              -5147.66    2391.44
## PublisherInsomniac Games                           -89.33    3303.03
## PublisherInterchannel                              771.00    3089.70
## PublisherInterchannel-Holon                       2449.00    4671.19
## PublisherIntergrow                                 416.00    4671.19
## PublisherInterplay                               -4920.60    2449.59
## PublisherInterplay Productions                   -3313.00    4671.19
## PublisherInterworks Unlimited, Inc.               2020.00    4671.19
## PublisherInti Creates                             2411.00    4671.19
## PublisherIntroversion Software                    1021.00    4671.19
## PublisherinXile Entertainment                    -3306.00    4671.19
## PublisherIrem Software Engineering                 139.00    2611.28
## PublisherITT Family Games                        -8681.00    4671.19
## PublisherIvolgamus                                 -66.00    4671.19
## PublisheriWin                                    -1818.00    4671.19
## PublisherJack of All Games                       -2242.33    3303.03
## PublisherJaleco                                  -1243.48    2483.25
## PublisherJester Interactive                      -6785.00    3303.03
## PublisherJorudan                                 -8338.33    3303.03
## PublisherJoWood Productions                      -1295.23    2489.75
## PublisherJust Flight                                61.00    4671.19
## PublisherJVC                                     -2618.62    2738.73
## PublisherKadokawa Games                            436.73    2558.52
## PublisherKadokawa Shoten                         -1188.42    2404.64
## PublisherKaga Create                               959.67    2860.51
## PublisherKalypso Media                           -1553.28    2453.43
## PublisherKamui                                     249.00    4671.19
## PublisherKando Games                                38.00    4671.19
## PublisherKarin Entertainment                      1439.00    4671.19
## PublisherKemco                                   -2539.71    2496.86
## PublisherKID                                      1134.00    3089.70
## PublisherKids Station                              844.00    4671.19
## PublisherKing Records                             1014.00    4671.19
## PublisherKnowledge Adventure                     -8771.25    3089.70
## PublisherKoch Media                              -4661.47    2533.31
## PublisherKokopeli Digital Studios                  462.00    4671.19
## PublisherKonami Digital Entertainment            -5252.06    2339.80
## PublisherKool Kizz                                -521.00    4671.19
## PublisherKSS                                       295.00    4671.19
## PublisherLaguna                                  -8989.75    3089.70
## PublisherLegacy Interactive                       -468.00    4671.19
## PublisherLEGO Media                              -4804.71    2791.57
## PublisherLevel 5                                 -5914.19    2461.93
## PublisherLexicon Entertainment                    1011.00    3692.90
## PublisherLicensed 4U                              1036.00    3303.03
## PublisherLighthouse Interactive                   1902.00    4671.19
## PublisherLiquid Games                            -2608.00    3692.90
## PublisherLittle Orbit                            -1766.35    2466.66
## PublisherLocus                                   -2327.00    4671.19
## PublisherLSP Games                                 391.00    3089.70
## PublisherLucasArts                               -9103.68    2374.20
## PublisherMad Catz                                -2696.33    3303.03
## PublisherMagical Company                         -9308.00    4671.19
## PublisherMagix                                   -4166.00    3692.90
## PublisherMajesco Entertainment                   -3605.33    2373.37
## PublisherMamba Games                               911.00    3692.90
## PublisherMarvel Entertainment                    -1037.00    4671.19
## PublisherMarvelous Entertainment                 -3989.25    2611.28
## PublisherMarvelous Games                          1363.00    4671.19
## PublisherMarvelous Interactive                   -1165.70    2397.34
## PublisherMasque Publishing                        1907.00    4671.19
## PublisherMastertronic                            -1327.62    2591.11
## PublisherMastiff                                 -3056.56    2545.16
## PublisherMattel Interactive                      -7171.25    2611.28
## PublisherMax Five                                 -730.00    4671.19
## PublisherMaximum Family Games                      106.00    4671.19
## PublisherMaxis                                   -8422.67    3303.03
## PublisherMC2 Entertainment                        1126.00    3303.03
## PublisherMedia Entertainment                      1999.00    4671.19
## PublisherMedia Factory                           -5125.00    3692.90
## PublisherMedia Rings                             -6150.67    3303.03
## PublisherMedia Works                               -55.40    2954.32
## PublisherMediaQuest                               -792.00    4671.19
## PublisherMen-A-Vision                           -11398.00    4671.19
## PublisherMentor Interactive                      -4931.80    2954.32
## PublisherMercury Games                            -996.75    3089.70
## PublisherMerscom LLC                             -6336.00    4671.19
## PublisherMetro 3D                                -3288.33    2611.28
## PublisherMichaelsoft                              1981.00    4671.19
## PublisherMicro Cabin                             -1776.33    3303.03
## PublisherMicroids                                    6.00    2662.99
## PublisherMicroprose                              -5274.83    2860.51
## PublisherMicrosoft Game Studios                  -7933.94    2354.06
## PublisherMidas Interactive Entertainment         -2498.71    2477.27
## PublisherMidway Games                            -6259.28    2353.22
## PublisherMilestone                               -2570.00    4671.19
## PublisherMilestone S.r.l                           957.50    3692.90
## PublisherMilestone S.r.l.                        -1823.44    2545.16
## PublisherMinato Station                           1479.67    3303.03
## PublisherMindscape                               -4242.19    2442.63
## PublisherMirai Shounen                            1604.00    4671.19
## PublisherMisawa                                    355.50    3692.90
## PublisherMitsui                                  -2586.00    4671.19
## Publishermixi, Inc                              -11653.00    4671.19
## PublisherMLB.com                                  -533.00    4671.19
## PublisherMojang                                  -9348.00    2954.32
## PublisherMonte Christo Multimedia                 -659.00    4671.19
## PublisherMoss                                     -997.50    3692.90
## PublisherMTO                                      -396.50    2738.73
## PublisherMTV Games                               -7553.44    2419.54
## PublisherMud Duck Productions                    -7328.00    3303.03
## PublisherMumbo Jumbo                             -1971.67    2860.51
## PublisherMycom                                    1806.00    4671.19
## PublisherMyelin Media                             -539.00    3303.03
## PublisherMystique                               -11546.00    4671.19
## PublisherN/A                                     -3936.12    2395.24
## PublisherNamco Bandai Games                      -4685.08    2339.35
## PublisherNatsume                                 -4350.59    2533.31
## PublisherNavarre Corp                             -798.00    4671.19
## PublisherNaxat Soft                               2200.00    4671.19
## PublisherNCS                                     -4490.00    3303.03
## PublisherNCSoft                                  -2661.67    2860.51
## PublisherNDA Productions                         -4074.00    4671.19
## PublisherNEC                                     -3934.00    3303.03
## PublisherNEC Interchannel                        -2849.00    2738.73
## PublisherNeko Entertainment                        -47.00    2791.57
## PublisherNetRevo                                  1737.50    3692.90
## PublisherNew                                     -8817.00    4671.19
## PublisherNew World Computing                      2012.00    4671.19
## PublisherNewKidCo                                -3750.00    2696.91
## PublisherNexon                                     487.00    4671.19
## PublisherNichibutsu                              -7802.00    4671.19
## PublisherNihon Falcom Corporation                -2865.29    2791.57
## PublisherNintendo                               -10203.17    2340.57
## PublisherNippon Amuse                            -2823.00    4671.19
## PublisherNippon Columbia                         -4204.14    2791.57
## PublisherNippon Ichi Software                    -3220.43    2368.73
## PublisherNippon Telenet                          -4075.00    3692.90
## PublisherNitroplus                                2366.50    3692.90
## PublisherNobilis                                 -2516.23    2591.11
## PublisherNordcurrent                             -3326.40    2954.32
## PublisherNordic Games                            -2415.23    2433.64
## PublisherNovaLogic                               -5537.33    3303.03
## PublisherNumber None                               465.00    4671.19
## PublisherO-Games                                 -1410.65    2533.31
## PublisherO3 Entertainment                        -1776.33    3303.03
## PublisherOcean                                   -5838.79    2573.70
## PublisherOffice Create                             140.00    3692.90
## PublisherOn Demand                               -6638.00    4671.19
## PublisherOngakukan                                2361.00    4671.19
## PublisherOrigin Systems                          -2816.00    4671.19
## PublisherOtomate                                  2288.00    4671.19
## PublisherOxygen Interactive                      -2501.82    2489.75
## PublisherP2 Games                                -2911.67    3303.03
## PublisherPacific Century Cyber Works             -7621.00    4671.19
## PublisherPack-In-Video                           -1418.00    3692.90
## PublisherPack In Soft                            -9947.00    4671.19
## PublisherPalcom                                 -13787.00    4671.19
## PublisherPanther Software                        -5710.00    4671.19
## PublisherPaon                                      -32.67    2860.51
## PublisherPaon Corporation                          828.00    4671.19
## PublisherParadox Development                      2283.00    4671.19
## PublisherParadox Interactive                       524.13    2483.25
## PublisherParker Bros.                            -9586.71    2791.57
## PublisherPerformance Designed Products           -6000.00    3692.90
## PublisherPhantagram                              -1006.00    4671.19
## PublisherPhantom EFX                             -3231.00    4671.19
## PublisherPhenomedia                               -652.50    3089.70
## PublisherPhoenix Games                            1290.00    4671.19
## PublisherPiacci                                   2230.00    4671.19
## PublisherPinnacle                                -4714.80    2954.32
## PublisherPioneer LDC                             -4815.75    3089.70
## PublisherPlay It                                 -6062.79    2573.70
## PublisherPlaylogic Game Factory                  -2461.21    2573.70
## PublisherPlaymates                               -7952.00    4671.19
## PublisherPlaymore                                 -548.00    4671.19
## PublisherPlayV                                   -3264.25    3089.70
## PublisherPlenty                                   1126.00    4671.19
## PublisherPM Studios                              -3528.00    4671.19
## PublisherPony Canyon                              -652.00    4671.19
## PublisherPopCap Games                            -2390.33    2558.52
## PublisherPopcorn Arcade                           -410.60    2662.99
## PublisherPopTop Software                         -3737.00    4671.19
## PublisherPow                                      -807.00    4671.19
## PublisherPQube                                   -2683.20    2423.76
## PublisherPrincess Soft                             822.00    3303.03
## PublisherPrototype                                1215.85    2461.93
## PublisherPsygnosis                               -4603.22    2442.63
## PublisherQuelle                                 -11656.00    4671.19
## PublisherQuest                                  -11175.00    4671.19
## PublisherQuinrose                                 1731.00    2573.70
## PublisherQuintet                                  1285.00    4671.19
## PublisherRage Software                           -4230.00    2791.57
## PublisherRain Games                               2504.00    4671.19
## PublisherRebellion                               -3861.00    3692.90
## PublisherRebellion Developments                  -4944.00    3692.90
## PublisherRED Entertainment                        1911.00    4671.19
## PublisherRed Orb                                -13485.00    3692.90
## PublisherRed Storm Entertainment                 -8142.00    3303.03
## PublisherRedOctane                              -10456.00    3089.70
## PublisherReef Entertainment                       -475.43    2791.57
## PublisherresponDESIGN                            -1747.50    3692.90
## PublisherRevolution (Japan)                       1751.00    4671.19
## PublisherRevolution Software                       195.50    3692.90
## PublisherRising Star Games                       -4249.28    2375.99
## PublisherRiverhillsoft                            -604.00    4671.19
## PublisherRocket Company                          -1937.94    2533.31
## PublisherRondomedia                              -3348.57    2573.70
## PublisherRTL                                     -3603.25    2738.73
## PublisherRussel                                   -616.67    2860.51
## PublisherSammy Corporation                       -5832.55    2634.91
## PublisherSaurus                                   1730.00    4671.19
## PublisherScholastic Inc.                         -6733.20    2662.99
## PublisherSCi                                     -4004.76    2533.31
## PublisherScreenlife                              -4172.17    2860.51
## PublisherSCS Software                            -4692.00    4671.19
## PublisherSears                                   -6692.00    4671.19
## PublisherSega                                    -6128.47    2341.07
## PublisherSeta Corporation                        -2866.67    2860.51
## PublisherSeventh Chord                           -2677.00    4671.19
## PublisherShogakukan                              -2452.80    2954.32
## PublisherSimon & Schuster Interactive            -3809.00    4671.19
## PublisherSlightly Mad Studios                    -7656.33    3303.03
## PublisherSlitherine Software                      -535.50    3089.70
## PublisherSNK                                     -3543.91    2489.75
## PublisherSNK Playmore                             -576.67    2522.73
## PublisherSocieta                                  -347.00    4671.19
## PublisherSold Out                                 1879.00    4671.19
## PublisherSonnet                                    501.50    3692.90
## PublisherSony Computer Entertainment             -8052.87    2340.72
## PublisherSony Computer Entertainment America     -8276.00    3303.03
## PublisherSony Computer Entertainment Europe     -10762.33    2558.52
## PublisherSony Music Entertainment                -4842.00    4671.19
## PublisherSony Online Entertainment               -7932.50    2738.73
## PublisherSouthPeak Games                         -3743.03    2428.44
## PublisherSpike                                   -3902.24    2428.44
## PublisherSPS                                     -4176.00    4671.19
## PublisherSquare                                  -8832.67    2860.51
## PublisherSquare EA                              -11491.00    4671.19
## PublisherSquare Enix                             -7619.45    2350.59
## PublisherSquareSoft                             -10193.23    2402.03
## PublisherSSI                                     -6235.00    4671.19
## PublisherStainless Games                          2161.00    4671.19
## PublisherStarfish                                 -807.90    2662.99
## PublisherStarpath Corp.                          -8498.00    4671.19
## PublisherSting                                   -1863.56    2696.91
## PublisherStorm City Games                        -1324.26    2513.23
## PublisherStrategy First                            627.00    4671.19
## PublisherSuccess                                  -784.95    2513.23
## PublisherSummitsoft                               -562.00    4671.19
## PublisherSunflowers                                354.00    4671.19
## PublisherSunrise Interactive                      -129.00    3089.70
## PublisherSunsoft                                 -2577.60    2662.99
## PublisherSweets                                    712.00    3692.90
## PublisherSwing! Entertainment                    -2343.17    2860.51
## PublisherSyscom                                  -4605.00    3692.90
## PublisherSystem 3                                -1350.33    3303.03
## PublisherSystem 3 Arcade Software                -2606.07    2573.70
## PublisherSystem Soft                              2182.25    3089.70
## PublisherT&E Soft                                -4133.00    4671.19
## PublisherTaito                                   -2097.68    2513.23
## PublisherTakara                                  -4945.62    2545.16
## PublisherTakara Tomy                             -1519.87    2428.44
## PublisherTake-Two Interactive                    -7714.67    2344.06
## PublisherTakuyo                                   2442.00    4671.19
## PublisherTalonSoft                              -11687.00    4671.19
## PublisherTDK Core                                -3834.60    2954.32
## PublisherTDK Mediactive                          -4655.81    2430.97
## PublisherTeam17 Software                          -834.00    4671.19
## PublisherTechnos Japan Corporation                1492.00    4671.19
## PublisherTechnoSoft                               -996.00    4671.19
## PublisherTecmo Koei                              -3368.57    2345.94
## PublisherTelegames                               -3195.00    2738.73
## PublisherTelltale Games                          -2791.12    2471.76
## PublisherTelstar                                 -2992.67    3303.03
## PublisherTetris Online                           -9568.00    4671.19
## PublisherTGL                                       927.00    3089.70
## PublisherThe Adventure Company                   -3458.80    2954.32
## PublisherThe Learning Company                     -997.00    4671.19
## PublisherTHQ                                     -7388.93    2340.49
## PublisherTigervision                             -9566.33    3303.03
## PublisherTime Warner Interactive                 -1789.60    2954.32
## PublisherTitus                                   -3466.74    2513.23
## PublisherTivola                                  -1328.67    3303.03
## PublisherTOHO                                    -3731.00    4671.19
## PublisherTommo                                    -303.80    2954.32
## PublisherTomy Corporation                        -6165.00    2522.73
## PublisherTopWare Interactive                       441.25    3089.70
## PublisherTouchstone                              -6351.75    3089.70
## PublisherTradewest                                 300.67    3303.03
## PublisherTrion Worlds                            -5856.25    3089.70
## PublisherTripwire Interactive                    -4748.00    4671.19
## PublisherTru Blu Entertainment                     377.62    2738.73
## PublisherTryfirst                                  603.00    4671.19
## PublisherTYO                                     -9450.00    4671.19
## PublisherType-Moon                               -3365.00    4671.19
## PublisherU.S. Gold                               -2498.50    3089.70
## PublisherUbisoft                                 -6501.86    2339.40
## PublisherUbisoft Annecy                          -7109.50    2573.70
## PublisherUEP Systems                            -13347.00    4671.19
## PublisherUFO Interactive                          -809.75    2545.16
## PublisherUIG Entertainment                        2509.00    4671.19
## PublisherUltravision                             -9911.00    4671.19
## PublisherUniversal Gamex                        -10847.00    4671.19
## PublisherUniversal Interactive                   -8948.00    2483.25
## PublisherUnknown                                 -3020.55    2352.79
## PublisherValcon Games                             -889.00    2738.73
## PublisherValuSoft                                -2131.75    3089.70
## PublisherValve                                  -13046.00    4671.19
## PublisherValve Software                         -11180.00    3303.03
## PublisherVap                                      -921.00    4671.19
## PublisherVatical Entertainment                   -3449.00    3692.90
## PublisherVic Tokai                               -4793.50    3692.90
## PublisherVictor Interactive                      -2608.00    2696.91
## PublisherVideo System                            -7750.50    3089.70
## PublisherViews                                    1782.00    3692.90
## PublisherVir2L Studios                           -2275.67    3303.03
## PublisherVirgin Interactive                      -6804.68    2391.44
## PublisherVirtual Play Games                        631.50    3692.90
## PublisherVisco                                    1767.00    4671.19
## PublisherVivendi Games                           -5825.40    2356.86
## PublisherWanadoo                                 -1809.40    2954.32
## PublisherWarashi                                  1838.00    4671.19
## PublisherWargaming.net                           -8030.00    4671.19
## PublisherWarner Bros. Interactive Entertainment  -8468.21    2350.65
## PublisherWarp                                    -2278.00    4671.19
## PublisherWayForward Technologies                 -1175.00    4671.19
## PublisherWestwood Studios                       -12857.00    4671.19
## PublisherWhite Park Bay Software                 -5353.00    4671.19
## PublisherWizard Video Games                     -10796.00    4671.19
## PublisherXicat Interactive                        -904.00    3303.03
## PublisherXing Entertainment                      -7247.00    4671.19
## PublisherXplosiv                                 -4272.20    2662.99
## PublisherXS Games                                -2265.58    2611.28
## PublisherXseed Games                             -5320.25    3089.70
## PublisherYacht Club Games                        -3568.67    3303.03
## PublisherYamasa Entertainment                     1361.50    3692.90
## PublisherYeti                                     1319.64    2634.91
## PublisherYuke's                                    790.67    3303.03
## PublisherYumedia                                 -1470.00    4671.19
## PublisherZenrin                                    460.50    3692.90
## PublisherZoo Digital Publishing                  -2828.47    2369.04
## PublisherZoo Games                               -3008.70    2439.45
## PublisherZushi Games                             -2255.39    2522.73
##                                                 t value Pr(>|t|)    
## (Intercept)                                       6.022 1.76e-09 ***
## Publisher1C Company                               0.105 0.916013    
## Publisher20th Century Fox Video Games            -2.915 0.003566 ** 
## Publisher2D Boy                                  -0.011 0.991289    
## Publisher3DO                                     -2.479 0.013181 *  
## Publisher49Games                                 -0.104 0.917307    
## Publisher505 Games                               -1.843 0.065300 .  
## Publisher5pb                                      0.403 0.686978    
## Publisher7G//AMES                                 0.513 0.607793    
## Publisher989 Sports                              -1.928 0.053821 .  
## Publisher989 Studios                             -4.119 3.83e-05 ***
## PublisherAbylight                                -0.548 0.583378    
## PublisherAcclaim Entertainment                   -2.617 0.008882 ** 
## PublisherAccolade                                -2.503 0.012333 *  
## PublisherAckkstudios                             -0.732 0.464365    
## PublisherAcquire                                 -0.922 0.356621    
## PublisherActivision                              -3.220 0.001284 ** 
## PublisherActivision Blizzard                     -2.131 0.033092 *  
## PublisherActivision Value                        -2.178 0.029394 *  
## PublisherAdeline Software                        -1.244 0.213515    
## PublisherAerosoft                                 0.462 0.644305    
## PublisherAgatsuma Entertainment                  -0.882 0.377617    
## PublisherAgetec                                  -1.535 0.124810    
## PublisherAksys Games                             -0.395 0.692760    
## PublisherAlawar Entertainment                     0.223 0.823226    
## PublisherAlchemist                                0.064 0.949025    
## PublisherAlternative Software                     0.100 0.920313    
## PublisherAltron                                  -0.392 0.694764    
## PublisherAlvion                                   0.498 0.618790    
## PublisherAmerican Softworks                      -1.502 0.133124    
## PublisherAngel Studios                           -1.181 0.237686    
## PublisherAnswer Software                         -2.151 0.031520 *  
## PublisherAQ Interactive                          -0.943 0.345682    
## PublisherAqua Plus                               -0.346 0.729028    
## PublisherAques                                   -1.174 0.240582    
## PublisherArc System Works                        -0.208 0.835594    
## PublisherArena Entertainment                     -3.620 0.000296 ***
## PublisherAria                                    -0.397 0.691604    
## PublisherArika                                    0.245 0.806751    
## PublisherArtDink                                 -0.605 0.545207    
## PublisherAruze Corp                              -2.452 0.014210 *  
## PublisherASC Games                               -2.469 0.013546 *  
## PublisherAscaron Entertainment                    0.477 0.633393    
## PublisherAscaron Entertainment GmbH              -0.004 0.996860    
## PublisherASCII Entertainment                     -3.239 0.001202 ** 
## PublisherASCII Media Works                        0.226 0.820869    
## PublisherAsgard                                   0.234 0.814914    
## PublisherASK                                      0.055 0.956295    
## PublisherAsmik Ace Entertainment                 -0.646 0.518241    
## PublisherAsmik Corp                              -0.750 0.452968    
## PublisherAspyr                                   -0.632 0.527665    
## PublisherAstragon                                -1.052 0.292857    
## PublisherAsylum Entertainment                    -1.053 0.292349    
## PublisherAtari                                   -2.611 0.009025 ** 
## PublisherAthena                                  -0.074 0.940963    
## PublisherAtlus                                   -1.835 0.066546 .  
## PublisherAvalon Interactive                      -0.760 0.447298    
## PublisherAvanquest                               -1.097 0.272782    
## PublisherAvanquest Software                      -0.586 0.557622    
## PublisherAxela                                   -1.596 0.110615    
## PublisherBAM! Entertainment                      -1.506 0.132102    
## PublisherBanpresto                               -2.133 0.032903 *  
## PublisherBenesse                                 -0.333 0.739504    
## PublisherBerkeley                                 0.032 0.974554    
## PublisherBethesda Softworks                      -3.714 0.000205 ***
## PublisherBig Ben Interactive                     -0.540 0.589280    
## PublisherBig Fish Games                           0.239 0.811340    
## PublisherBigben Interactive                      -0.529 0.596608    
## PublisherbitComposer Games                       -0.740 0.459393    
## PublisherBlack Bean Games                        -0.926 0.354538    
## PublisherBlack Label Games                       -2.654 0.007969 ** 
## PublisherBlast! Entertainment Ltd                -0.355 0.722284    
## PublisherBlue Byte                                0.422 0.673012    
## PublisherBMG Interactive Entertainment           -1.441 0.149483    
## PublisherBohemia Interactive                     -0.893 0.371684    
## PublisherBomb                                    -1.480 0.138914    
## PublisherBoost On                                 0.448 0.653958    
## PublisherBPS                                     -2.023 0.043138 *  
## PublisherBrash Entertainment                     -1.378 0.168315    
## PublisherBroccoli                                -0.025 0.979813    
## PublisherBushiRoad                                0.117 0.907121    
## PublisherCapcom                                  -2.664 0.007738 ** 
## PublisherCave                                     0.185 0.853424    
## PublisherCBS Electronics                         -1.774 0.076001 .  
## PublisherCCP                                     -1.446 0.148109    
## PublisherCDV Software Entertainment               0.183 0.854747    
## PublisherChunSoft                                -1.665 0.095973 .  
## PublisherCity Interactive                        -2.005 0.044963 *  
## PublisherCloud Imperium Games Corporation        -0.087 0.930411    
## PublisherCoconuts Japan                           0.018 0.985525    
## PublisherCodemasters                             -2.199 0.027871 *  
## PublisherCodemasters Online                       0.267 0.789672    
## PublisherCokeM Interactive                       -1.781 0.074980 .  
## PublisherColeco                                  -3.327 0.000879 ***
## PublisherComfort                                  0.344 0.731074    
## PublisherCommseed                                 0.513 0.608007    
## PublisherCompile                                 -2.198 0.027969 *  
## PublisherCompile Heart                           -0.525 0.599283    
## PublisherConspiracy Entertainment                -0.341 0.732917    
## PublisherCore Design Ltd.                        -1.305 0.191841    
## PublisherCPG Products                            -2.215 0.026784 *  
## PublisherCrave Entertainment                     -1.415 0.157041    
## PublisherCreative Core                            0.169 0.865770    
## PublisherCrimson Cow                              0.002 0.998056    
## PublisherCrystal Dynamics                        -2.349 0.018838 *  
## PublisherCTO SpA                                 -1.428 0.153192    
## PublisherCulture Brain                           -0.232 0.816556    
## PublisherCulture Publishers                      -0.650 0.515463    
## PublisherCyberFront                               0.590 0.555195    
## PublisherCygames                                  0.071 0.943169    
## PublisherD3Publisher                             -1.051 0.293454    
## PublisherDaedalic                                -0.814 0.415831    
## PublisherDaedalic Entertainment                  -0.175 0.860931    
## PublisherDaito                                   -0.434 0.664513    
## PublisherData Age                                -2.369 0.017835 *  
## PublisherData Design Interactive                 -0.994 0.320024    
## PublisherData East                               -0.593 0.553079    
## PublisherDatam Polystar                           0.515 0.606342    
## PublisherDeep Silver                             -1.587 0.112425    
## PublisherDestination Software, Inc               -0.397 0.691423    
## PublisherDestineer                               -0.891 0.373179    
## PublisherDetn8 Games                             -1.505 0.132352    
## PublisherDevolver Digital                         0.345 0.730109    
## PublisherDHM Interactive                         -0.305 0.760314    
## PublisherDigiCube                                -0.291 0.770780    
## PublisherDisney Interactive Studios              -3.522 0.000430 ***
## PublisherDorart                                   0.504 0.614120    
## Publisherdramatic create                          0.456 0.648535    
## PublisherDreamCatcher Interactive                -0.371 0.710670    
## PublisherDreamWorks Interactive                  -0.951 0.341543    
## PublisherDSI Games                               -0.204 0.838732    
## PublisherDTP Entertainment                       -0.724 0.469225    
## PublisherDusenberry Martin Racing                 0.157 0.874881    
## PublisherEA Games                                -1.118 0.263528    
## PublisherEasy Interactive                         0.348 0.728075    
## PublisherEcole                                   -0.318 0.750723    
## PublisherEdia                                    -0.139 0.889626    
## PublisherEidos Interactive                       -2.531 0.011397 *  
## PublisherElectronic Arts                         -3.754 0.000174 ***
## PublisherElectronic Arts Victor                  -1.309 0.190600    
## PublisherElf                                     -2.266 0.023442 *  
## PublisherElite                                   -0.429 0.668232    
## PublisherEmpire Interactive                      -1.807 0.070830 .  
## PublisherEncore                                   0.476 0.634069    
## PublisherEnix Corporation                        -3.831 0.000128 ***
## PublisherEnjoy Gaming ltd.                       -0.717 0.473285    
## PublisherEnterbrain                              -1.451 0.146917    
## PublisherEON Digital Entertainment                0.466 0.641034    
## PublisherEpic Games                               0.471 0.637820    
## PublisherEpoch                                   -1.453 0.146330    
## PublisherErtain                                  -0.226 0.820986    
## PublisherESP                                     -0.770 0.441036    
## PublisherEssential Games                         -0.433 0.664994    
## PublisherEvolution Games                         -0.423 0.672131    
## PublisherEvolved Games                            0.016 0.987036    
## PublisherExcalibur Publishing                    -0.520 0.603047    
## PublisherExperience Inc.                          0.395 0.693079    
## PublisherExtreme Entertainment Group              0.087 0.930740    
## PublisherFalcom Corporation                      -0.629 0.529446    
## PublisherFields                                   0.017 0.986165    
## PublisherFlashpoint Games                        -0.085 0.932133    
## PublisherFlight-Plan                             -0.364 0.715806    
## PublisherFocus Home Interactive                  -0.966 0.334111    
## PublisherFocus Multimedia                         0.494 0.621533    
## Publisherfonfun                                   0.259 0.795777    
## PublisherForeign Media Games                     -0.553 0.580145    
## PublisherFortyfive                               -0.384 0.701101    
## PublisherFox Interactive                         -3.524 0.000426 ***
## PublisherFrom Software                           -1.109 0.267525    
## PublisherFuji                                     0.035 0.971823    
## PublisherFunbox Media                            -0.739 0.459617    
## PublisherFuncom                                  -0.705 0.480651    
## PublisherFunSoft                                 -0.903 0.366436    
## PublisherFunsta                                  -0.067 0.946199    
## PublisherFuRyu                                   -0.188 0.850735    
## PublisherFuRyu Corporation                        0.149 0.881557    
## PublisherG.Rev                                    0.356 0.721576    
## PublisherGaga                                     0.241 0.809850    
## PublisherGainax Network Systems                  -0.659 0.509753    
## PublisherGakken                                   0.439 0.660802    
## PublisherGame Arts                               -1.083 0.278910    
## PublisherGame Factory                            -0.994 0.320419    
## PublisherGame Life                               -1.360 0.173965    
## PublisherGamebridge                              -2.282 0.022498 *  
## PublisherGamecock                                -0.246 0.805953    
## PublisherGameloft                                -0.833 0.404628    
## PublisherGameMill Entertainment                  -1.729 0.083895 .  
## PublisherGameTek                                 -0.735 0.462523    
## PublisherGathering of Developers                 -1.379 0.167868    
## PublisherGeneral Entertainment                   -1.057 0.290572    
## PublisherGenki                                   -1.165 0.244220    
## PublisherGenterprise                              0.431 0.666518    
## PublisherGhostlight                              -1.822 0.068483 .  
## PublisherGiga                                     0.390 0.696821    
## PublisherGiza10                                   0.377 0.706185    
## PublisherGlams                                   -0.511 0.609655    
## PublisherGlobal A Entertainment                   0.031 0.975407    
## PublisherGlobal Star                             -1.535 0.124904    
## PublisherGN Software                              0.480 0.631189    
## PublisherGOA                                      0.189 0.849903    
## PublisherGotham Games                            -2.847 0.004424 ** 
## PublisherGraffiti                                -0.543 0.586918    
## PublisherGrand Prix Games                        -0.300 0.763913    
## PublisherGraphsim Entertainment                   0.217 0.828486    
## PublisherGremlin Interactive Ltd                 -1.415 0.157187    
## PublisherGriffin International                   -0.647 0.517678    
## PublisherGroove Games                            -0.126 0.899585    
## PublisherGSP                                     -1.793 0.072962 .  
## PublisherGT Interactive                          -2.964 0.003044 ** 
## PublisherGungHo                                  -1.607 0.108061    
## PublisherGust                                    -0.748 0.454614    
## PublisherHackberry                               -0.114 0.909023    
## PublisherHAL Laboratory                          -0.305 0.760160    
## PublisherHamster Corporation                     -0.874 0.382219    
## PublisherHappinet                                 0.092 0.926860    
## PublisherHarmonix Music Systems                  -2.499 0.012465 *  
## PublisherHasbro Interactive                      -3.649 0.000264 ***
## PublisherHavas Interactive                       -0.988 0.323182    
## PublisherHeadup Games                             0.058 0.954078    
## PublisherHearty Robin                            -0.621 0.534723    
## PublisherHect                                    -1.422 0.155155    
## PublisherHello Games                             -2.763 0.005736 ** 
## PublisherHer Interactive                          0.047 0.962266    
## PublisherHip Interactive                         -0.633 0.526629    
## PublisherHMH Interactive                         -0.495 0.620700    
## PublisherHome Entertainment Suppliers            -1.072 0.283772    
## PublisherHudson Entertainment                    -0.876 0.380855    
## PublisherHudson Soft                             -2.171 0.029974 *  
## PublisherHuman Entertainment                     -2.470 0.013528 *  
## PublisherHuneX                                    0.565 0.572356    
## PublisherIceberg Interactive                      0.255 0.798712    
## Publisherid Software                              0.115 0.908309    
## PublisherIdea Factory                             0.270 0.787379    
## PublisherIdea Factory International              -1.112 0.266313    
## PublisherIE Institute                            -1.174 0.240463    
## PublisherIgnition Entertainment                  -1.115 0.265038    
## PublisherIllusion Softworks                      -2.383 0.017188 *  
## PublisherImadio                                  -1.045 0.296078    
## PublisherImage Epoch                             -0.701 0.483114    
## Publisherimageepoch Inc.                          0.347 0.728888    
## PublisherImageworks                               0.304 0.761465    
## PublisherImagic                                  -3.790 0.000151 ***
## PublisherImagineer                               -1.656 0.097794 .  
## PublisherImax                                    -0.380 0.704277    
## PublisherIndie Games                             -0.657 0.511079    
## PublisherInfogrames                              -2.153 0.031370 *  
## PublisherInsomniac Games                         -0.027 0.978423    
## PublisherInterchannel                             0.250 0.802947    
## PublisherInterchannel-Holon                       0.524 0.600093    
## PublisherIntergrow                                0.089 0.929038    
## PublisherInterplay                               -2.009 0.044581 *  
## PublisherInterplay Productions                   -0.709 0.478186    
## PublisherInterworks Unlimited, Inc.               0.432 0.665429    
## PublisherInti Creates                             0.516 0.605762    
## PublisherIntroversion Software                    0.219 0.826985    
## PublisherinXile Entertainment                    -0.708 0.479116    
## PublisherIrem Software Engineering                0.053 0.957549    
## PublisherITT Family Games                        -1.858 0.063129 .  
## PublisherIvolgamus                               -0.014 0.988727    
## PublisheriWin                                    -0.389 0.697138    
## PublisherJack of All Games                       -0.679 0.497229    
## PublisherJaleco                                  -0.501 0.616557    
## PublisherJester Interactive                      -2.054 0.039975 *  
## PublisherJorudan                                 -2.524 0.011598 *  
## PublisherJoWood Productions                      -0.520 0.602915    
## PublisherJust Flight                              0.013 0.989581    
## PublisherJVC                                     -0.956 0.339013    
## PublisherKadokawa Games                           0.171 0.864464    
## PublisherKadokawa Shoten                         -0.494 0.621159    
## PublisherKaga Create                              0.335 0.737261    
## PublisherKalypso Media                           -0.633 0.526675    
## PublisherKamui                                    0.053 0.957489    
## PublisherKando Games                              0.008 0.993509    
## PublisherKarin Entertainment                      0.308 0.758042    
## PublisherKemco                                   -1.017 0.309091    
## PublisherKID                                      0.367 0.713605    
## PublisherKids Station                             0.181 0.856620    
## PublisherKing Records                             0.217 0.828153    
## PublisherKnowledge Adventure                     -2.839 0.004533 ** 
## PublisherKoch Media                              -1.840 0.065776 .  
## PublisherKokopeli Digital Studios                 0.099 0.921216    
## PublisherKonami Digital Entertainment            -2.245 0.024804 *  
## PublisherKool Kizz                               -0.112 0.911194    
## PublisherKSS                                      0.063 0.949645    
## PublisherLaguna                                  -2.910 0.003624 ** 
## PublisherLegacy Interactive                      -0.100 0.920196    
## PublisherLEGO Media                              -1.721 0.085243 .  
## PublisherLevel 5                                 -2.402 0.016306 *  
## PublisherLexicon Entertainment                    0.274 0.784266    
## PublisherLicensed 4U                              0.314 0.753790    
## PublisherLighthouse Interactive                   0.407 0.683884    
## PublisherLiquid Games                            -0.706 0.480062    
## PublisherLittle Orbit                            -0.716 0.473948    
## PublisherLocus                                   -0.498 0.618378    
## PublisherLSP Games                                0.127 0.899299    
## PublisherLucasArts                               -3.834 0.000126 ***
## PublisherMad Catz                                -0.816 0.414329    
## PublisherMagical Company                         -1.993 0.046318 *  
## PublisherMagix                                   -1.128 0.259290    
## PublisherMajesco Entertainment                   -1.519 0.128764    
## PublisherMamba Games                              0.247 0.805152    
## PublisherMarvel Entertainment                    -0.222 0.824318    
## PublisherMarvelous Entertainment                 -1.528 0.126607    
## PublisherMarvelous Games                          0.292 0.770452    
## PublisherMarvelous Interactive                   -0.486 0.626800    
## PublisherMasque Publishing                        0.408 0.683098    
## PublisherMastertronic                            -0.512 0.608397    
## PublisherMastiff                                 -1.201 0.229795    
## PublisherMattel Interactive                      -2.746 0.006035 ** 
## PublisherMax Five                                -0.156 0.875817    
## PublisherMaximum Family Games                     0.023 0.981896    
## PublisherMaxis                                   -2.550 0.010782 *  
## PublisherMC2 Entertainment                        0.341 0.733184    
## PublisherMedia Entertainment                      0.428 0.668699    
## PublisherMedia Factory                           -1.388 0.165218    
## PublisherMedia Rings                             -1.862 0.062603 .  
## PublisherMedia Works                             -0.019 0.985039    
## PublisherMediaQuest                              -0.170 0.865366    
## PublisherMen-A-Vision                            -2.440 0.014696 *  
## PublisherMentor Interactive                      -1.669 0.095067 .  
## PublisherMercury Games                           -0.323 0.747000    
## PublisherMerscom LLC                             -1.356 0.174992    
## PublisherMetro 3D                                -1.259 0.207947    
## PublisherMichaelsoft                              0.424 0.671507    
## PublisherMicro Cabin                             -0.538 0.590730    
## PublisherMicroids                                 0.002 0.998202    
## PublisherMicroprose                              -1.844 0.065199 .  
## PublisherMicrosoft Game Studios                  -3.370 0.000753 ***
## PublisherMidas Interactive Entertainment         -1.009 0.313157    
## PublisherMidway Games                            -2.660 0.007825 ** 
## PublisherMilestone                               -0.550 0.582203    
## PublisherMilestone S.r.l                          0.259 0.795422    
## PublisherMilestone S.r.l.                        -0.716 0.473734    
## PublisherMinato Station                           0.448 0.654179    
## PublisherMindscape                               -1.737 0.082454 .  
## PublisherMirai Shounen                            0.343 0.731316    
## PublisherMisawa                                   0.096 0.923311    
## PublisherMitsui                                  -0.554 0.579856    
## Publishermixi, Inc                               -2.495 0.012618 *  
## PublisherMLB.com                                 -0.114 0.909157    
## PublisherMojang                                  -3.164 0.001558 ** 
## PublisherMonte Christo Multimedia                -0.141 0.887811    
## PublisherMoss                                    -0.270 0.787077    
## PublisherMTO                                     -0.145 0.884890    
## PublisherMTV Games                               -3.122 0.001800 ** 
## PublisherMud Duck Productions                    -2.219 0.026530 *  
## PublisherMumbo Jumbo                             -0.689 0.490663    
## PublisherMycom                                    0.387 0.699039    
## PublisherMyelin Media                            -0.163 0.870376    
## PublisherMystique                                -2.472 0.013456 *  
## PublisherN/A                                     -1.643 0.100338    
## PublisherNamco Bandai Games                      -2.003 0.045224 *  
## PublisherNatsume                                 -1.717 0.085934 .  
## PublisherNavarre Corp                            -0.171 0.864356    
## PublisherNaxat Soft                               0.471 0.637667    
## PublisherNCS                                     -1.359 0.174053    
## PublisherNCSoft                                  -0.930 0.352133    
## PublisherNDA Productions                         -0.872 0.383137    
## PublisherNEC                                     -1.191 0.233661    
## PublisherNEC Interchannel                        -1.040 0.298233    
## PublisherNeko Entertainment                      -0.017 0.986567    
## PublisherNetRevo                                  0.470 0.638006    
## PublisherNew                                     -1.888 0.059108 .  
## PublisherNew World Computing                      0.431 0.666674    
## PublisherNewKidCo                                -1.390 0.164403    
## PublisherNexon                                    0.104 0.916967    
## PublisherNichibutsu                              -1.670 0.094892 .  
## PublisherNihon Falcom Corporation                -1.026 0.304716    
## PublisherNintendo                                -4.359 1.31e-05 ***
## PublisherNippon Amuse                            -0.604 0.545625    
## PublisherNippon Columbia                         -1.506 0.132084    
## PublisherNippon Ichi Software                    -1.360 0.173988    
## PublisherNippon Telenet                          -1.103 0.269841    
## PublisherNitroplus                                0.641 0.521646    
## PublisherNobilis                                 -0.971 0.331513    
## PublisherNordcurrent                             -1.126 0.260206    
## PublisherNordic Games                            -0.992 0.321000    
## PublisherNovaLogic                               -1.676 0.093672 .  
## PublisherNumber None                              0.100 0.920706    
## PublisherO-Games                                 -0.557 0.577645    
## PublisherO3 Entertainment                        -0.538 0.590730    
## PublisherOcean                                   -2.269 0.023304 *  
## PublisherOffice Create                            0.038 0.969759    
## PublisherOn Demand                               -1.421 0.155322    
## PublisherOngakukan                                0.505 0.613258    
## PublisherOrigin Systems                          -0.603 0.546621    
## PublisherOtomate                                  0.490 0.624275    
## PublisherOxygen Interactive                      -1.005 0.314987    
## PublisherP2 Games                                -0.882 0.378053    
## PublisherPacific Century Cyber Works             -1.631 0.102807    
## PublisherPack-In-Video                           -0.384 0.700999    
## PublisherPack In Soft                            -2.129 0.033234 *  
## PublisherPalcom                                  -2.951 0.003167 ** 
## PublisherPanther Software                        -1.222 0.221580    
## PublisherPaon                                    -0.011 0.990889    
## PublisherPaon Corporation                         0.177 0.859309    
## PublisherParadox Development                      0.489 0.625032    
## PublisherParadox Interactive                      0.211 0.832838    
## PublisherParker Bros.                            -3.434 0.000596 ***
## PublisherPerformance Designed Products           -1.625 0.104238    
## PublisherPhantagram                              -0.215 0.829487    
## PublisherPhantom EFX                             -0.692 0.489144    
## PublisherPhenomedia                              -0.211 0.832745    
## PublisherPhoenix Games                            0.276 0.782428    
## PublisherPiacci                                   0.477 0.633088    
## PublisherPinnacle                                -1.596 0.110531    
## PublisherPioneer LDC                             -1.559 0.119100    
## PublisherPlay It                                 -2.356 0.018501 *  
## PublisherPlaylogic Game Factory                  -0.956 0.338938    
## PublisherPlaymates                               -1.702 0.088709 .  
## PublisherPlaymore                                -0.117 0.906612    
## PublisherPlayV                                   -1.056 0.290759    
## PublisherPlenty                                   0.241 0.809518    
## PublisherPM Studios                              -0.755 0.450100    
## PublisherPony Canyon                             -0.140 0.888994    
## PublisherPopCap Games                            -0.934 0.350181    
## PublisherPopcorn Arcade                          -0.154 0.877464    
## PublisherPopTop Software                         -0.800 0.423717    
## PublisherPow                                     -0.173 0.862841    
## PublisherPQube                                   -1.107 0.268293    
## PublisherPrincess Soft                            0.249 0.803471    
## PublisherPrototype                                0.494 0.621412    
## PublisherPsygnosis                               -1.885 0.059510 .  
## PublisherQuelle                                  -2.495 0.012595 *  
## PublisherQuest                                   -2.392 0.016754 *  
## PublisherQuinrose                                 0.673 0.501229    
## PublisherQuintet                                  0.275 0.783250    
## PublisherRage Software                           -1.515 0.129722    
## PublisherRain Games                               0.536 0.591930    
## PublisherRebellion                               -1.046 0.295799    
## PublisherRebellion Developments                  -1.339 0.180660    
## PublisherRED Entertainment                        0.409 0.682469    
## PublisherRed Orb                                 -3.652 0.000261 ***
## PublisherRed Storm Entertainment                 -2.465 0.013711 *  
## PublisherRedOctane                               -3.384 0.000716 ***
## PublisherReef Entertainment                      -0.170 0.864770    
## PublisherresponDESIGN                            -0.473 0.636073    
## PublisherRevolution (Japan)                       0.375 0.707776    
## PublisherRevolution Software                      0.053 0.957781    
## PublisherRising Star Games                       -1.788 0.073726 .  
## PublisherRiverhillsoft                           -0.129 0.897119    
## PublisherRocket Company                          -0.765 0.444293    
## PublisherRondomedia                              -1.301 0.193253    
## PublisherRTL                                     -1.316 0.188305    
## PublisherRussel                                  -0.216 0.829318    
## PublisherSammy Corporation                       -2.214 0.026873 *  
## PublisherSaurus                                   0.370 0.711123    
## PublisherScholastic Inc.                         -2.528 0.011467 *  
## PublisherSCi                                     -1.581 0.113934    
## PublisherScreenlife                              -1.459 0.144712    
## PublisherSCS Software                            -1.004 0.315175    
## PublisherSears                                   -1.433 0.151989    
## PublisherSega                                    -2.618 0.008858 ** 
## PublisherSeta Corporation                        -1.002 0.316285    
## PublisherSeventh Chord                           -0.573 0.566594    
## PublisherShogakukan                              -0.830 0.406415    
## PublisherSimon & Schuster Interactive            -0.815 0.414842    
## PublisherSlightly Mad Studios                    -2.318 0.020463 *  
## PublisherSlitherine Software                     -0.173 0.862404    
## PublisherSNK                                     -1.423 0.154641    
## PublisherSNK Playmore                            -0.229 0.819192    
## PublisherSocieta                                 -0.074 0.940784    
## PublisherSold Out                                 0.402 0.687503    
## PublisherSonnet                                   0.136 0.891980    
## PublisherSony Computer Entertainment             -3.440 0.000582 ***
## PublisherSony Computer Entertainment America     -2.506 0.012235 *  
## PublisherSony Computer Entertainment Europe      -4.206 2.61e-05 ***
## PublisherSony Music Entertainment                -1.037 0.299954    
## PublisherSony Online Entertainment               -2.896 0.003780 ** 
## PublisherSouthPeak Games                         -1.541 0.123256    
## PublisherSpike                                   -1.607 0.108097    
## PublisherSPS                                     -0.894 0.371341    
## PublisherSquare                                  -3.088 0.002020 ** 
## PublisherSquare EA                               -2.460 0.013905 *  
## PublisherSquare Enix                             -3.242 0.001191 ** 
## PublisherSquareSoft                              -4.244 2.21e-05 ***
## PublisherSSI                                     -1.335 0.181968    
## PublisherStainless Games                          0.463 0.643641    
## PublisherStarfish                                -0.303 0.761604    
## PublisherStarpath Corp.                          -1.819 0.068894 .  
## PublisherSting                                   -0.691 0.489578    
## PublisherStorm City Games                        -0.527 0.598259    
## PublisherStrategy First                           0.134 0.893225    
## PublisherSuccess                                 -0.312 0.754797    
## PublisherSummitsoft                              -0.120 0.904238    
## PublisherSunflowers                               0.076 0.939592    
## PublisherSunrise Interactive                     -0.042 0.966697    
## PublisherSunsoft                                 -0.968 0.333092    
## PublisherSweets                                   0.193 0.847116    
## PublisherSwing! Entertainment                    -0.819 0.412717    
## PublisherSyscom                                  -1.247 0.212421    
## PublisherSystem 3                                -0.409 0.682680    
## PublisherSystem 3 Arcade Software                -1.013 0.311278    
## PublisherSystem Soft                              0.706 0.480013    
## PublisherT&E Soft                                -0.885 0.376286    
## PublisherTaito                                   -0.835 0.403924    
## PublisherTakara                                  -1.943 0.052015 .  
## PublisherTakara Tomy                             -0.626 0.531415    
## PublisherTake-Two Interactive                    -3.291 0.001000 ***
## PublisherTakuyo                                   0.523 0.601136    
## PublisherTalonSoft                               -2.502 0.012362 *  
## PublisherTDK Core                                -1.298 0.194319    
## PublisherTDK Mediactive                          -1.915 0.055484 .  
## PublisherTeam17 Software                         -0.179 0.858300    
## PublisherTechnos Japan Corporation                0.319 0.749424    
## PublisherTechnoSoft                              -0.213 0.831157    
## PublisherTecmo Koei                              -1.436 0.151045    
## PublisherTelegames                               -1.167 0.243390    
## PublisherTelltale Games                          -1.129 0.258830    
## PublisherTelstar                                 -0.906 0.364930    
## PublisherTetris Online                           -2.048 0.040547 *  
## PublisherTGL                                      0.300 0.764159    
## PublisherThe Adventure Company                   -1.171 0.241713    
## PublisherThe Learning Company                    -0.213 0.830990    
## PublisherTHQ                                     -3.157 0.001597 ** 
## PublisherTigervision                             -2.896 0.003782 ** 
## PublisherTime Warner Interactive                 -0.606 0.544685    
## PublisherTitus                                   -1.379 0.167792    
## PublisherTivola                                  -0.402 0.687501    
## PublisherTOHO                                    -0.799 0.424462    
## PublisherTommo                                   -0.103 0.918097    
## PublisherTomy Corporation                        -2.444 0.014545 *  
## PublisherTopWare Interactive                      0.143 0.886440    
## PublisherTouchstone                              -2.056 0.039820 *  
## PublisherTradewest                                0.091 0.927472    
## PublisherTrion Worlds                            -1.895 0.058056 .  
## PublisherTripwire Interactive                    -1.016 0.309434    
## PublisherTru Blu Entertainment                    0.138 0.890334    
## PublisherTryfirst                                 0.129 0.897289    
## PublisherTYO                                     -2.023 0.043086 *  
## PublisherType-Moon                               -0.720 0.471306    
## PublisherU.S. Gold                               -0.809 0.418726    
## PublisherUbisoft                                 -2.779 0.005454 ** 
## PublisherUbisoft Annecy                          -2.762 0.005745 ** 
## PublisherUEP Systems                             -2.857 0.004278 ** 
## PublisherUFO Interactive                         -0.318 0.750373    
## PublisherUIG Entertainment                        0.537 0.591191    
## PublisherUltravision                             -2.122 0.033876 *  
## PublisherUniversal Gamex                         -2.322 0.020240 *  
## PublisherUniversal Interactive                   -3.603 0.000315 ***
## PublisherUnknown                                 -1.284 0.199226    
## PublisherValcon Games                            -0.325 0.745486    
## PublisherValuSoft                                -0.690 0.490234    
## PublisherValve                                   -2.793 0.005231 ** 
## PublisherValve Software                          -3.385 0.000714 ***
## PublisherVap                                     -0.197 0.843700    
## PublisherVatical Entertainment                   -0.934 0.350342    
## PublisherVic Tokai                               -1.298 0.194296    
## PublisherVictor Interactive                      -0.967 0.333543    
## PublisherVideo System                            -2.508 0.012135 *  
## PublisherViews                                    0.483 0.629424    
## PublisherVir2L Studios                           -0.689 0.490857    
## PublisherVirgin Interactive                      -2.845 0.004441 ** 
## PublisherVirtual Play Games                       0.171 0.864223    
## PublisherVisco                                    0.378 0.705231    
## PublisherVivendi Games                           -2.472 0.013458 *  
## PublisherWanadoo                                 -0.612 0.540243    
## PublisherWarashi                                  0.393 0.693974    
## PublisherWargaming.net                           -1.719 0.085625 .  
## PublisherWarner Bros. Interactive Entertainment  -3.602 0.000316 ***
## PublisherWarp                                    -0.488 0.625790    
## PublisherWayForward Technologies                 -0.252 0.801399    
## PublisherWestwood Studios                        -2.752 0.005923 ** 
## PublisherWhite Park Bay Software                 -1.146 0.251829    
## PublisherWizard Video Games                      -2.311 0.020835 *  
## PublisherXicat Interactive                       -0.274 0.784328    
## PublisherXing Entertainment                      -1.551 0.120820    
## PublisherXplosiv                                 -1.604 0.108671    
## PublisherXS Games                                -0.868 0.385618    
## PublisherXseed Games                             -1.722 0.085102 .  
## PublisherYacht Club Games                        -1.080 0.279971    
## PublisherYamasa Entertainment                     0.369 0.712371    
## PublisherYeti                                     0.501 0.616499    
## PublisherYuke's                                   0.239 0.810817    
## PublisherYumedia                                 -0.315 0.752998    
## PublisherZenrin                                   0.125 0.900764    
## PublisherZoo Digital Publishing                  -1.194 0.232523    
## PublisherZoo Games                               -1.233 0.217463    
## PublisherZushi Games                             -0.894 0.371321    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 4045 on 16019 degrees of freedom
## Multiple R-squared:  0.3121, Adjusted R-squared:  0.2873 
## F-statistic: 12.57 on 578 and 16019 DF,  p-value: < 2.2e-16
fit1 <- lm(Rank~NA_Sales+EU_Sales+JP_Sales+Other_Sales+Global_Sales,data = game.df)
summary(fit1)
## 
## Call:
## lm(formula = Rank ~ NA_Sales + EU_Sales + JP_Sales + Other_Sales + 
##     Global_Sales, data = game.df)
## 
## Residuals:
##    Min     1Q Median     3Q    Max 
##  -6964  -3900   -339   3517  97539 
## 
## Coefficients:
##              Estimate Std. Error t value Pr(>|t|)    
## (Intercept)    8996.7       35.6 252.681   <2e-16 ***
## NA_Sales     -55850.7     6422.9  -8.696   <2e-16 ***
## EU_Sales     -55472.6     6424.0  -8.635   <2e-16 ***
## JP_Sales     -56046.2     6423.4  -8.725   <2e-16 ***
## Other_Sales  -56823.1     6425.7  -8.843   <2e-16 ***
## Global_Sales  54538.9     6422.9   8.491   <2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 4321 on 16592 degrees of freedom
## Multiple R-squared:  0.1872, Adjusted R-squared:  0.187 
## F-statistic: 764.5 on 5 and 16592 DF,  p-value: < 2.2e-16
fit1$coefficients
##  (Intercept)     NA_Sales     EU_Sales     JP_Sales  Other_Sales 
##     8996.703   -55850.736   -55472.623   -56046.217   -56823.119 
## Global_Sales 
##    54538.864
confint(fit1)
##                   2.5 %     97.5 %
## (Intercept)    8926.913   9066.493
## NA_Sales     -68440.280 -43261.193
## EU_Sales     -68064.284 -42880.962
## JP_Sales     -68636.691 -43455.744
## Other_Sales  -69418.147 -44228.090
## Global_Sales  41949.250  67128.479

The above regression models show that the rank of a game depends on - (since the p-values are less than 0.05) 1. The platform game is developed on, for all platforms. 2. The year the game was developed in, after 2005. 3. The genre of the game, except for racing and role-playing. 4. The publisher for a few specific publishers 5. Sales of all the regions (NA, EU, JP, other regions and global).

Conclusion and Inference